entities
listlengths
1
44.6k
max_stars_repo_path
stringlengths
6
160
max_stars_repo_name
stringlengths
6
66
max_stars_count
int64
0
47.9k
content
stringlengths
18
1.04M
id
stringlengths
1
6
new_content
stringlengths
18
1.04M
modified
bool
1 class
references
stringlengths
32
1.52M
[ { "context": "; Copyright (c) Rich Hickey. All rights reserved.\n; The use and distributio", "end": 29, "score": 0.9998729228973389, "start": 18, "tag": "NAME", "value": "Rich Hickey" }, { "context": "tice, or any other, from this software.\n\n; Author: Frantisek Sodomka\n\n(ns clojure.test-clojure.ns-libs\n (:use clojure", "end": 491, "score": 0.9998871088027954, "start": 474, "tag": "NAME", "value": "Frantisek Sodomka" } ]
ThirdParty/clojure-1.1.0/test/clojure/test_clojure/ns_libs.clj
allertonm/Couverjure
3
; Copyright (c) Rich Hickey. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any fashion, you are agreeing to be bound by ; the terms of this license. ; You must not remove this notice, or any other, from this software. ; Author: Frantisek Sodomka (ns clojure.test-clojure.ns-libs (:use clojure.test)) ; http://clojure.org/namespaces ; in-ns ns create-ns ; alias import intern refer ; all-ns find-ns ; ns-name ns-aliases ns-imports ns-interns ns-map ns-publics ns-refers ; resolve ns-resolve namespace ; ns-unalias ns-unmap remove-ns ; http://clojure.org/libs ; require use ; loaded-libs
65953
; Copyright (c) <NAME>. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any fashion, you are agreeing to be bound by ; the terms of this license. ; You must not remove this notice, or any other, from this software. ; Author: <NAME> (ns clojure.test-clojure.ns-libs (:use clojure.test)) ; http://clojure.org/namespaces ; in-ns ns create-ns ; alias import intern refer ; all-ns find-ns ; ns-name ns-aliases ns-imports ns-interns ns-map ns-publics ns-refers ; resolve ns-resolve namespace ; ns-unalias ns-unmap remove-ns ; http://clojure.org/libs ; require use ; loaded-libs
true
; Copyright (c) PI:NAME:<NAME>END_PI. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any fashion, you are agreeing to be bound by ; the terms of this license. ; You must not remove this notice, or any other, from this software. ; Author: PI:NAME:<NAME>END_PI (ns clojure.test-clojure.ns-libs (:use clojure.test)) ; http://clojure.org/namespaces ; in-ns ns create-ns ; alias import intern refer ; all-ns find-ns ; ns-name ns-aliases ns-imports ns-interns ns-map ns-publics ns-refers ; resolve ns-resolve namespace ; ns-unalias ns-unmap remove-ns ; http://clojure.org/libs ; require use ; loaded-libs
[ { "context": " avatar\n :name name\n :access-token token\n ", "end": 2004, "score": 0.9951139092445374, "start": 2000, "tag": "NAME", "value": "name" } ]
src/twitter/status.clj
thierrymarianne/devobs-worker
0
(ns twitter.status (:require [clojure.data.json :as json] [clj-time.format :as f] [clj-time.coerce :as c] [clojure.tools.logging :as log]) (:use [korma.db] [repository.entity-manager] [repository.publishers-list] [repository.member] [repository.status] [twitter.api-client] [twitter.date] [twitter.member])) (def ^:dynamic *twitter-status-enabled-logging* false) (defn filter-out-known-statuses [find statuses] (let [statuses-ids (map #(:status-id %) statuses) matching-statuses (find statuses-ids) matching-ids (set (map #(:status-id %) matching-statuses)) missing-ids (clojure.set/difference (set statuses-ids) (set matching-ids)) filtered-statuses (filter #(clojure.set/subset? #{(:status-id %)} (set missing-ids)) statuses)] filtered-statuses)) (defn get-ids-of-statuses [statuses] (map (fn [{twitter-id :id_str}] twitter-id) statuses)) (defn get-missing-statuses-ids [statuses model] (let [ids (get-ids-of-statuses statuses) found-statuses (find-statuses-having-twitter-ids ids model) matching-ids (set (map #(:twitter-id %) found-statuses)) missing-ids (clojure.set/difference (set ids) (set matching-ids))] missing-ids)) (defn get-status-json [{twitter-id :id_str text :full_text created-at :created_at {screen-name :screen_name avatar :profile_image_url name :name} :user :as status}] (let [document (json/write-str status) token (:token @next-token) parsed-publication-date (c/to-long (f/parse date-formatter created-at)) mysql-formatted-publication-date (f/unparse db-date-formatter (c/from-long parsed-publication-date)) twitter-status {:text text :full-name screen-name :avatar avatar :name name :access-token token :api-document document :created-at mysql-formatted-publication-date :status-id twitter-id}] twitter-status)) (defn ensure-statuses-exist [statuses model] (let [total-statuses (count statuses) new-statuses (if (pos? total-statuses) (do (log/info (str "About to ensure " total-statuses " statuses exist for \"" (:screen_name (:user (first statuses))) "\"")) (bulk-insert-new-statuses (pmap #(get-status-json %) statuses) model)) (do (log/info (str "No need to find some missing status.")) '()))] (when (and *twitter-status-enabled-logging* (pos? total-statuses)) (doall (map #(log/info (str "Status #" (:twitter-id %) " authored by \"" (:screen-name %) "\" has been saved under id \"" (:id %))) new-statuses))) new-statuses)) (defn get-id-as-string [status] (let [id-as-string (:id_str status) id-set #{id-as-string}] id-set)) (defn in-ids-as-string-set [set] (fn [status] (let [id-singleton (get-id-as-string status)] (clojure.set/subset? id-singleton set)))) (defn process-statuses [favorites model] (let [missing-statuses-ids (get-missing-statuses-ids favorites model) remaining-favorites (filter (in-ids-as-string-set missing-statuses-ids) favorites)] (when (and (pos? (count missing-statuses-ids)) (pos? (count remaining-favorites))) (ensure-statuses-exist remaining-favorites model)))) (defn preprocess-statuses [statuses status-model member-model token-model token-type-model] (when (pos? (count statuses)) (process-authors-of-statuses statuses member-model token-model token-type-model) (process-statuses statuses status-model))) (defn get-author-by-id "Provide with a map of authors indexed by theirs Twitter ids in order to get a function returning an author matching a Twitter id passed as argument" [indexed-authors] (fn [status-id] ((keyword status-id) indexed-authors))) (defn get-id-of-status-author "Get the Twitter id of the author of a status" [status] (let [{{author-id :id_str} :user} status] author-id)) (defn get-author-key-value "Get a pair made of a Twitter id and a value" [args] (let [twitter-id (:twitter-id args) key-value [(keyword twitter-id) args]] key-value)) (defn get-statuses-authors "Get authors of statuses" [favorites model] (let [author-ids (pmap get-id-of-status-author favorites) distinct-status-authors (find-members-having-ids author-ids model) indexed-authors (->> (map get-author-key-value distinct-status-authors) (into {})) favorited-status-authors (map (get-author-by-id indexed-authors) author-ids)] (log/info (str "Found " (count favorited-status-authors) " ids of status authors")) favorited-status-authors)) (defn is-subset-of-relationships-set [relationships-set] (fn [relationship] (let [relationship-status-id (:status-id relationship)] (clojure.set/subset? #{relationship-status-id} relationships-set)))) (defn new-relationships [aggregate new-statuses model status-model] (if (pos? (count new-statuses)) (let [aggregate-id (:id aggregate) new-statuses-ids (map #(:id %) new-statuses) existing-relationships (find-relationships-between-aggregate-and-statuses-having-ids aggregate-id new-statuses-ids model status-model) statuses-ids-of-existing-relationships (map #(:status-id %) existing-relationships) relationship-values (map (new-relationship aggregate-id) new-statuses-ids) filtered-relationship-values (doall (remove (is-subset-of-relationships-set (set statuses-ids-of-existing-relationships)) relationship-values)) new-relationships (bulk-insert-status-aggregate-relationship filtered-relationship-values aggregate-id model status-model) total-new-relationships (count new-relationships)] {:new-relationships new-relationships :total-new-relationships total-new-relationships}) {:new-relationships '() :total-new-relationships 0})) (defn log-new-relationships-between-aggregate-and-statuses [total-new-relationships total-new-statuses aggregate-name & [screen-name]] (let [related-to-member (if screen-name (str "\" for \"" screen-name "\"") "\"")] (if (pos? total-new-relationships) (log/info (str "There are " total-new-relationships " new relationships between aggregate \"" aggregate-name related-to-member " and " total-new-statuses " statuses.")) (log/info (str "There are no new relationships for aggregate \"" aggregate-name "\"."))))) (defn cache-statuses-along-with-authors "Ensure statuses and their authors are cached" [statuses screen-name aggregate {member-model :members status-model :status token-model :token token-type-model :token-type status-aggregate-model :status-aggregate}] (if (pos? (count statuses)) (let [new-statuses (preprocess-statuses statuses status-model member-model token-model token-type-model) {total-new-relationships :total-new-relationships new-relationships :new-relationships} (new-relationships aggregate new-statuses status-aggregate-model status-model) total-new-statuses (count new-statuses) aggregate-name (:name aggregate)] (log-new-relationships-between-aggregate-and-statuses total-new-relationships total-new-statuses aggregate-name screen-name) new-relationships) '())) (defn fetch-statuses [statuses token token-type] (let [_ (find-next-token token token-type "statuses/show/:id" "trying to call \"statuses/show\" with an id") remaining-calls (how-many-remaining-calls-for-statuses token token-type) filtered-statuses (remove #(nil? (:status-id %)) statuses) total-statuses (count filtered-statuses)] (if (pos? total-statuses) (log/info (str "About to fetch " total-statuses " statuse(s).")) (log/info (str "No need to find some status."))) (if (and (not (nil? remaining-calls)) (< total-statuses remaining-calls)) (doall (pmap #(get-status-by-id % token token-type) filtered-statuses)) (doall (map #(get-status-by-id % token token-type) filtered-statuses)))))
100080
(ns twitter.status (:require [clojure.data.json :as json] [clj-time.format :as f] [clj-time.coerce :as c] [clojure.tools.logging :as log]) (:use [korma.db] [repository.entity-manager] [repository.publishers-list] [repository.member] [repository.status] [twitter.api-client] [twitter.date] [twitter.member])) (def ^:dynamic *twitter-status-enabled-logging* false) (defn filter-out-known-statuses [find statuses] (let [statuses-ids (map #(:status-id %) statuses) matching-statuses (find statuses-ids) matching-ids (set (map #(:status-id %) matching-statuses)) missing-ids (clojure.set/difference (set statuses-ids) (set matching-ids)) filtered-statuses (filter #(clojure.set/subset? #{(:status-id %)} (set missing-ids)) statuses)] filtered-statuses)) (defn get-ids-of-statuses [statuses] (map (fn [{twitter-id :id_str}] twitter-id) statuses)) (defn get-missing-statuses-ids [statuses model] (let [ids (get-ids-of-statuses statuses) found-statuses (find-statuses-having-twitter-ids ids model) matching-ids (set (map #(:twitter-id %) found-statuses)) missing-ids (clojure.set/difference (set ids) (set matching-ids))] missing-ids)) (defn get-status-json [{twitter-id :id_str text :full_text created-at :created_at {screen-name :screen_name avatar :profile_image_url name :name} :user :as status}] (let [document (json/write-str status) token (:token @next-token) parsed-publication-date (c/to-long (f/parse date-formatter created-at)) mysql-formatted-publication-date (f/unparse db-date-formatter (c/from-long parsed-publication-date)) twitter-status {:text text :full-name screen-name :avatar avatar :name <NAME> :access-token token :api-document document :created-at mysql-formatted-publication-date :status-id twitter-id}] twitter-status)) (defn ensure-statuses-exist [statuses model] (let [total-statuses (count statuses) new-statuses (if (pos? total-statuses) (do (log/info (str "About to ensure " total-statuses " statuses exist for \"" (:screen_name (:user (first statuses))) "\"")) (bulk-insert-new-statuses (pmap #(get-status-json %) statuses) model)) (do (log/info (str "No need to find some missing status.")) '()))] (when (and *twitter-status-enabled-logging* (pos? total-statuses)) (doall (map #(log/info (str "Status #" (:twitter-id %) " authored by \"" (:screen-name %) "\" has been saved under id \"" (:id %))) new-statuses))) new-statuses)) (defn get-id-as-string [status] (let [id-as-string (:id_str status) id-set #{id-as-string}] id-set)) (defn in-ids-as-string-set [set] (fn [status] (let [id-singleton (get-id-as-string status)] (clojure.set/subset? id-singleton set)))) (defn process-statuses [favorites model] (let [missing-statuses-ids (get-missing-statuses-ids favorites model) remaining-favorites (filter (in-ids-as-string-set missing-statuses-ids) favorites)] (when (and (pos? (count missing-statuses-ids)) (pos? (count remaining-favorites))) (ensure-statuses-exist remaining-favorites model)))) (defn preprocess-statuses [statuses status-model member-model token-model token-type-model] (when (pos? (count statuses)) (process-authors-of-statuses statuses member-model token-model token-type-model) (process-statuses statuses status-model))) (defn get-author-by-id "Provide with a map of authors indexed by theirs Twitter ids in order to get a function returning an author matching a Twitter id passed as argument" [indexed-authors] (fn [status-id] ((keyword status-id) indexed-authors))) (defn get-id-of-status-author "Get the Twitter id of the author of a status" [status] (let [{{author-id :id_str} :user} status] author-id)) (defn get-author-key-value "Get a pair made of a Twitter id and a value" [args] (let [twitter-id (:twitter-id args) key-value [(keyword twitter-id) args]] key-value)) (defn get-statuses-authors "Get authors of statuses" [favorites model] (let [author-ids (pmap get-id-of-status-author favorites) distinct-status-authors (find-members-having-ids author-ids model) indexed-authors (->> (map get-author-key-value distinct-status-authors) (into {})) favorited-status-authors (map (get-author-by-id indexed-authors) author-ids)] (log/info (str "Found " (count favorited-status-authors) " ids of status authors")) favorited-status-authors)) (defn is-subset-of-relationships-set [relationships-set] (fn [relationship] (let [relationship-status-id (:status-id relationship)] (clojure.set/subset? #{relationship-status-id} relationships-set)))) (defn new-relationships [aggregate new-statuses model status-model] (if (pos? (count new-statuses)) (let [aggregate-id (:id aggregate) new-statuses-ids (map #(:id %) new-statuses) existing-relationships (find-relationships-between-aggregate-and-statuses-having-ids aggregate-id new-statuses-ids model status-model) statuses-ids-of-existing-relationships (map #(:status-id %) existing-relationships) relationship-values (map (new-relationship aggregate-id) new-statuses-ids) filtered-relationship-values (doall (remove (is-subset-of-relationships-set (set statuses-ids-of-existing-relationships)) relationship-values)) new-relationships (bulk-insert-status-aggregate-relationship filtered-relationship-values aggregate-id model status-model) total-new-relationships (count new-relationships)] {:new-relationships new-relationships :total-new-relationships total-new-relationships}) {:new-relationships '() :total-new-relationships 0})) (defn log-new-relationships-between-aggregate-and-statuses [total-new-relationships total-new-statuses aggregate-name & [screen-name]] (let [related-to-member (if screen-name (str "\" for \"" screen-name "\"") "\"")] (if (pos? total-new-relationships) (log/info (str "There are " total-new-relationships " new relationships between aggregate \"" aggregate-name related-to-member " and " total-new-statuses " statuses.")) (log/info (str "There are no new relationships for aggregate \"" aggregate-name "\"."))))) (defn cache-statuses-along-with-authors "Ensure statuses and their authors are cached" [statuses screen-name aggregate {member-model :members status-model :status token-model :token token-type-model :token-type status-aggregate-model :status-aggregate}] (if (pos? (count statuses)) (let [new-statuses (preprocess-statuses statuses status-model member-model token-model token-type-model) {total-new-relationships :total-new-relationships new-relationships :new-relationships} (new-relationships aggregate new-statuses status-aggregate-model status-model) total-new-statuses (count new-statuses) aggregate-name (:name aggregate)] (log-new-relationships-between-aggregate-and-statuses total-new-relationships total-new-statuses aggregate-name screen-name) new-relationships) '())) (defn fetch-statuses [statuses token token-type] (let [_ (find-next-token token token-type "statuses/show/:id" "trying to call \"statuses/show\" with an id") remaining-calls (how-many-remaining-calls-for-statuses token token-type) filtered-statuses (remove #(nil? (:status-id %)) statuses) total-statuses (count filtered-statuses)] (if (pos? total-statuses) (log/info (str "About to fetch " total-statuses " statuse(s).")) (log/info (str "No need to find some status."))) (if (and (not (nil? remaining-calls)) (< total-statuses remaining-calls)) (doall (pmap #(get-status-by-id % token token-type) filtered-statuses)) (doall (map #(get-status-by-id % token token-type) filtered-statuses)))))
true
(ns twitter.status (:require [clojure.data.json :as json] [clj-time.format :as f] [clj-time.coerce :as c] [clojure.tools.logging :as log]) (:use [korma.db] [repository.entity-manager] [repository.publishers-list] [repository.member] [repository.status] [twitter.api-client] [twitter.date] [twitter.member])) (def ^:dynamic *twitter-status-enabled-logging* false) (defn filter-out-known-statuses [find statuses] (let [statuses-ids (map #(:status-id %) statuses) matching-statuses (find statuses-ids) matching-ids (set (map #(:status-id %) matching-statuses)) missing-ids (clojure.set/difference (set statuses-ids) (set matching-ids)) filtered-statuses (filter #(clojure.set/subset? #{(:status-id %)} (set missing-ids)) statuses)] filtered-statuses)) (defn get-ids-of-statuses [statuses] (map (fn [{twitter-id :id_str}] twitter-id) statuses)) (defn get-missing-statuses-ids [statuses model] (let [ids (get-ids-of-statuses statuses) found-statuses (find-statuses-having-twitter-ids ids model) matching-ids (set (map #(:twitter-id %) found-statuses)) missing-ids (clojure.set/difference (set ids) (set matching-ids))] missing-ids)) (defn get-status-json [{twitter-id :id_str text :full_text created-at :created_at {screen-name :screen_name avatar :profile_image_url name :name} :user :as status}] (let [document (json/write-str status) token (:token @next-token) parsed-publication-date (c/to-long (f/parse date-formatter created-at)) mysql-formatted-publication-date (f/unparse db-date-formatter (c/from-long parsed-publication-date)) twitter-status {:text text :full-name screen-name :avatar avatar :name PI:NAME:<NAME>END_PI :access-token token :api-document document :created-at mysql-formatted-publication-date :status-id twitter-id}] twitter-status)) (defn ensure-statuses-exist [statuses model] (let [total-statuses (count statuses) new-statuses (if (pos? total-statuses) (do (log/info (str "About to ensure " total-statuses " statuses exist for \"" (:screen_name (:user (first statuses))) "\"")) (bulk-insert-new-statuses (pmap #(get-status-json %) statuses) model)) (do (log/info (str "No need to find some missing status.")) '()))] (when (and *twitter-status-enabled-logging* (pos? total-statuses)) (doall (map #(log/info (str "Status #" (:twitter-id %) " authored by \"" (:screen-name %) "\" has been saved under id \"" (:id %))) new-statuses))) new-statuses)) (defn get-id-as-string [status] (let [id-as-string (:id_str status) id-set #{id-as-string}] id-set)) (defn in-ids-as-string-set [set] (fn [status] (let [id-singleton (get-id-as-string status)] (clojure.set/subset? id-singleton set)))) (defn process-statuses [favorites model] (let [missing-statuses-ids (get-missing-statuses-ids favorites model) remaining-favorites (filter (in-ids-as-string-set missing-statuses-ids) favorites)] (when (and (pos? (count missing-statuses-ids)) (pos? (count remaining-favorites))) (ensure-statuses-exist remaining-favorites model)))) (defn preprocess-statuses [statuses status-model member-model token-model token-type-model] (when (pos? (count statuses)) (process-authors-of-statuses statuses member-model token-model token-type-model) (process-statuses statuses status-model))) (defn get-author-by-id "Provide with a map of authors indexed by theirs Twitter ids in order to get a function returning an author matching a Twitter id passed as argument" [indexed-authors] (fn [status-id] ((keyword status-id) indexed-authors))) (defn get-id-of-status-author "Get the Twitter id of the author of a status" [status] (let [{{author-id :id_str} :user} status] author-id)) (defn get-author-key-value "Get a pair made of a Twitter id and a value" [args] (let [twitter-id (:twitter-id args) key-value [(keyword twitter-id) args]] key-value)) (defn get-statuses-authors "Get authors of statuses" [favorites model] (let [author-ids (pmap get-id-of-status-author favorites) distinct-status-authors (find-members-having-ids author-ids model) indexed-authors (->> (map get-author-key-value distinct-status-authors) (into {})) favorited-status-authors (map (get-author-by-id indexed-authors) author-ids)] (log/info (str "Found " (count favorited-status-authors) " ids of status authors")) favorited-status-authors)) (defn is-subset-of-relationships-set [relationships-set] (fn [relationship] (let [relationship-status-id (:status-id relationship)] (clojure.set/subset? #{relationship-status-id} relationships-set)))) (defn new-relationships [aggregate new-statuses model status-model] (if (pos? (count new-statuses)) (let [aggregate-id (:id aggregate) new-statuses-ids (map #(:id %) new-statuses) existing-relationships (find-relationships-between-aggregate-and-statuses-having-ids aggregate-id new-statuses-ids model status-model) statuses-ids-of-existing-relationships (map #(:status-id %) existing-relationships) relationship-values (map (new-relationship aggregate-id) new-statuses-ids) filtered-relationship-values (doall (remove (is-subset-of-relationships-set (set statuses-ids-of-existing-relationships)) relationship-values)) new-relationships (bulk-insert-status-aggregate-relationship filtered-relationship-values aggregate-id model status-model) total-new-relationships (count new-relationships)] {:new-relationships new-relationships :total-new-relationships total-new-relationships}) {:new-relationships '() :total-new-relationships 0})) (defn log-new-relationships-between-aggregate-and-statuses [total-new-relationships total-new-statuses aggregate-name & [screen-name]] (let [related-to-member (if screen-name (str "\" for \"" screen-name "\"") "\"")] (if (pos? total-new-relationships) (log/info (str "There are " total-new-relationships " new relationships between aggregate \"" aggregate-name related-to-member " and " total-new-statuses " statuses.")) (log/info (str "There are no new relationships for aggregate \"" aggregate-name "\"."))))) (defn cache-statuses-along-with-authors "Ensure statuses and their authors are cached" [statuses screen-name aggregate {member-model :members status-model :status token-model :token token-type-model :token-type status-aggregate-model :status-aggregate}] (if (pos? (count statuses)) (let [new-statuses (preprocess-statuses statuses status-model member-model token-model token-type-model) {total-new-relationships :total-new-relationships new-relationships :new-relationships} (new-relationships aggregate new-statuses status-aggregate-model status-model) total-new-statuses (count new-statuses) aggregate-name (:name aggregate)] (log-new-relationships-between-aggregate-and-statuses total-new-relationships total-new-statuses aggregate-name screen-name) new-relationships) '())) (defn fetch-statuses [statuses token token-type] (let [_ (find-next-token token token-type "statuses/show/:id" "trying to call \"statuses/show\" with an id") remaining-calls (how-many-remaining-calls-for-statuses token token-type) filtered-statuses (remove #(nil? (:status-id %)) statuses) total-statuses (count filtered-statuses)] (if (pos? total-statuses) (log/info (str "About to fetch " total-statuses " statuse(s).")) (log/info (str "No need to find some status."))) (if (and (not (nil? remaining-calls)) (< total-statuses remaining-calls)) (doall (pmap #(get-status-by-id % token token-type) filtered-statuses)) (doall (map #(get-status-by-id % token token-type) filtered-statuses)))))
[ { "context": "; Copyright (c) Rich Hickey. All rights reserved.\n; The use and distributio", "end": 29, "score": 0.999889612197876, "start": 18, "tag": "NAME", "value": "Rich Hickey" }, { "context": "s notice, or any other, from this software.\n\n;; by Timothy Baldridge\n;; April 13, 2013\n\n(ns ^{:skip-wiki true}\n cloju", "end": 487, "score": 0.9999029040336609, "start": 470, "tag": "NAME", "value": "Timothy Baldridge" } ]
server/target/clojure/core/async/impl/ioc_macros.clj
OctavioBR/healthcheck
0
; Copyright (c) Rich Hickey. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any fashion, you are agreeing to be bound by ; the terms of this license. ; You must not remove this notice, or any other, from this software. ;; by Timothy Baldridge ;; April 13, 2013 (ns ^{:skip-wiki true} clojure.core.async.impl.ioc-macros (:refer-clojure :exclude [all]) (:require [clojure.pprint :refer [pprint]] [clojure.tools.analyzer :as an] [clojure.tools.analyzer.ast :as ast] [clojure.tools.analyzer.env :as env] [clojure.tools.analyzer.passes :refer [schedule]] [clojure.tools.analyzer.passes.jvm.annotate-loops :refer [annotate-loops]] [clojure.tools.analyzer.passes.jvm.warn-on-reflection :refer [warn-on-reflection]] [clojure.tools.analyzer.jvm :as an-jvm] [clojure.core.async.impl.protocols :as impl] [clojure.core.async.impl.dispatch :as dispatch] [clojure.set :refer (intersection union difference)]) (:import [java.util.concurrent.locks Lock] [java.util.concurrent.atomic AtomicReferenceArray])) (defn debug [x] (pprint x) x) (def ^:const FN-IDX 0) (def ^:const STATE-IDX 1) (def ^:const VALUE-IDX 2) (def ^:const BINDINGS-IDX 3) (def ^:const EXCEPTION-FRAMES 4) (def ^:const CURRENT-EXCEPTION 5) (def ^:const USER-START-IDX 6) (defn aset-object [^AtomicReferenceArray arr idx ^Object o] (.set arr idx o)) (defn aget-object [^AtomicReferenceArray arr idx] (.get arr idx)) (defmacro aset-all! [arr & more] (assert (even? (count more)) "Must give an even number of args to aset-all!") (let [bindings (partition 2 more) arr-sym (gensym "statearr-")] `(let [~arr-sym ~arr] ~@(map (fn [[idx val]] `(aset-object ~arr-sym ~idx ~val)) bindings) ~arr-sym))) ;; State monad stuff, used only in SSA construction (defmacro gen-plan "Allows a user to define a state monad binding plan. (gen-plan [_ (assoc-in-plan [:foo :bar] 42) val (get-in-plan [:foo :bar])] val)" [binds id-expr] (let [binds (partition 2 binds) psym (gensym "plan_") forms (reduce (fn [acc [id expr]] (concat acc `[[~id ~psym] (~expr ~psym)])) [] binds)] `(fn [~psym] (let [~@forms] [~id-expr ~psym])))) (defn get-plan "Returns the final [id state] from a plan. " [f] (f {})) (defn push-binding "Sets the binding 'key' to value. This operation can be undone via pop-bindings. Bindings are stored in the state hashmap." [key value] (fn [plan] [nil (update-in plan [:bindings key] conj value)])) (defn push-alter-binding "Pushes the result of (apply f old-value args) as current value of binding key" [key f & args] (fn [plan] [nil (update-in plan [:bindings key] #(conj % (apply f (first %) args)))])) (defn get-binding "Gets the value of the current binding for key" [key] (fn [plan] [(first (get-in plan [:bindings key])) plan])) (defn pop-binding "Removes the most recent binding for key" [key] (fn [plan] [(first (get-in plan [:bindings key])) (update-in plan [:bindings key] pop)])) (defn no-op "This function can be used inside a gen-plan when no operation is to be performed" [] (fn [plan] [nil plan])) (defn all "Assumes that itms is a list of state monad function results, threads the state map through all of them. Returns a vector of all the results." [itms] (fn [plan] (reduce (fn [[ids plan] f] (let [[id plan] (f plan)] [(conj ids id) plan])) [[] plan] itms))) (defn assoc-in-plan "Same as assoc-in, but for state hash map" [path val] (fn [plan] [val (assoc-in plan path val)])) (defn update-in-plan "Same as update-in, but for a state hash map" [path f & args] (fn [plan] [nil (apply update-in plan path f args)])) (defn get-in-plan "Same as get-in, but for a state hash map" [path] (fn [plan] [(get-in plan path) plan])) (defn print-plan [] (fn [plan] (pprint plan) [nil plan])) (defn set-block "Sets the current block being written to by the functions. The next add-instruction call will append to this block" [block-id] (fn [plan] [block-id (assoc plan :current-block block-id)])) (defn get-block "Gets the current block" [] (fn [plan] [(:current-block plan) plan])) (defn add-block "Adds a new block, returns its id, but does not change the current block (does not call set-block)." [] (gen-plan [_ (update-in-plan [:block-id] (fnil inc 0)) blk-id (get-in-plan [:block-id]) cur-blk (get-block) _ (assoc-in-plan [:blocks blk-id] []) catches (get-binding :catch) _ (assoc-in-plan [:block-catches blk-id] catches) _ (if-not cur-blk (assoc-in-plan [:start-block] blk-id) (no-op))] blk-id)) (defn instruction? [x] (::instruction (meta x))) (defn add-instruction "Appends an instruction to the current block. " [inst] (let [inst-id (with-meta (gensym "inst_") {::instruction true}) inst (assoc inst :id inst-id)] (gen-plan [blk-id (get-block) _ (update-in-plan [:blocks blk-id] (fnil conj []) inst)] inst-id))) ;; ;; We're going to reduce Clojure expressions to a ssa format, ;; and then translate the instructions for this ;; virtual-virtual-machine back into Clojure data. ;; Here we define the instructions: (defprotocol IInstruction (reads-from [this] "Returns a list of instructions this instruction reads from") (writes-to [this] "Returns a list of instructions this instruction writes to") (block-references [this] "Returns all the blocks this instruction references")) (defprotocol IEmittableInstruction (emit-instruction [this state-sym] "Returns the clojure code that this instruction represents")) (defprotocol ITerminator (terminator-code [this] "Returns a unique symbol for this instruction") (terminate-block [this state-sym custom-terminators] "Emites the code to terminate a given block")) (defrecord Const [value] IInstruction (reads-from [this] [value]) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] (if (= value ::value) `[~(:id this) (aget-object ~state-sym ~VALUE-IDX)] `[~(:id this) ~value]))) (defrecord RawCode [ast locals] IInstruction (reads-from [this] (keep (or locals #{}) (map :name (-> ast :env :locals vals)))) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] (if (not-empty (reads-from this)) `[~@(->> (-> ast :env :locals vals) (map #(select-keys % [:op :name :form])) (filter (fn [local] (when locals (get locals (:name local))))) set (mapcat (fn [local] `[~(:form local) ~(get locals (:name local))]))) ~(:id this) ~(:form ast)] `[~(:id this) ~(:form ast)]))) (defrecord CustomTerminator [f blk values meta] IInstruction (reads-from [this] values) (writes-to [this] []) (block-references [this] []) ITerminator (terminate-block [this state-sym _] (with-meta `(~f ~state-sym ~blk ~@values) meta))) (defn- emit-clashing-binds [recur-nodes ids clashes] (let [temp-binds (reduce (fn [acc i] (assoc acc i (gensym "tmp"))) {} clashes)] (concat (mapcat (fn [i] `[~(temp-binds i) ~i]) clashes) (mapcat (fn [node id] `[~node ~(get temp-binds id id)]) recur-nodes ids)))) (defrecord Recur [recur-nodes ids] IInstruction (reads-from [this] ids) (writes-to [this] recur-nodes) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] (if-let [overlap (seq (intersection (set recur-nodes) (set ids)))] (emit-clashing-binds recur-nodes ids overlap) (mapcat (fn [r i] `[~r ~i]) recur-nodes ids)))) (defrecord Call [refs] IInstruction (reads-from [this] refs) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~(:id this) ~(seq refs)])) (defrecord StaticCall [class method refs] IInstruction (reads-from [this] refs) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~(:id this) (. ~class ~method ~@(seq refs))])) (defrecord InstanceInterop [instance-id op refs] IInstruction (reads-from [this] (cons instance-id refs)) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~(:id this) (. ~instance-id ~op ~@(seq refs))])) (defrecord Case [val-id test-vals jmp-blocks default-block] IInstruction (reads-from [this] [val-id]) (writes-to [this] []) (block-references [this] []) ITerminator (terminate-block [this state-sym _] `(do (case ~val-id ~@(concat (mapcat (fn [test blk] `[~test (aset-all! ~state-sym ~STATE-IDX ~blk)]) test-vals jmp-blocks) (when default-block `[(do (aset-all! ~state-sym ~STATE-IDX ~default-block) :recur)]))) :recur))) (defrecord Fn [fn-expr local-names local-refs] IInstruction (reads-from [this] local-refs) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~(:id this) (let [~@(interleave local-names local-refs)] ~@fn-expr)])) (defrecord Dot [cls-or-instance method args] IInstruction (reads-from [this] `[~cls-or-instance ~method ~@args]) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~(:id this) (. ~cls-or-instance ~method ~@args)])) (defrecord Jmp [value block] IInstruction (reads-from [this] [value]) (writes-to [this] []) (block-references [this] [block]) ITerminator (terminate-block [this state-sym _] `(do (aset-all! ~state-sym ~VALUE-IDX ~value ~STATE-IDX ~block) :recur))) (defrecord Return [value] IInstruction (reads-from [this] [value]) (writes-to [this] []) (block-references [this] []) ITerminator (terminator-code [this] :Return) (terminate-block [this state-sym custom-terminators] (if-let [f (get custom-terminators (terminator-code this))] `(~f ~state-sym ~value) `(do (aset-all! ~state-sym ~VALUE-IDX ~value ~STATE-IDX ::finished) nil)))) (defrecord CondBr [test then-block else-block] IInstruction (reads-from [this] [test]) (writes-to [this] []) (block-references [this] [then-block else-block]) ITerminator (terminate-block [this state-sym _] `(do (if ~test (aset-all! ~state-sym ~STATE-IDX ~then-block) (aset-all! ~state-sym ~STATE-IDX ~else-block)) :recur))) (defrecord PushTry [catch-block] IInstruction (reads-from [this] []) (writes-to [this] []) (block-references [this] [catch-block]) IEmittableInstruction (emit-instruction [this state-sym] `[~'_ (aset-all! ~state-sym ~EXCEPTION-FRAMES (cons ~catch-block (aget-object ~state-sym ~EXCEPTION-FRAMES)))])) (defrecord PopTry [] IInstruction (reads-from [this] []) (writes-to [this] []) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~'_ (aset-all! ~state-sym ~EXCEPTION-FRAMES (rest (aget-object ~state-sym ~EXCEPTION-FRAMES)))])) (defrecord CatchHandler [catches] IInstruction (reads-from [this] []) (writes-to [this] []) (block-references [this] (map first catches)) ITerminator (terminate-block [this state-sym _] (let [ex (gensym 'ex)] `(let [~ex (aget-object ~state-sym ~VALUE-IDX)] (aset-all! ~state-sym ~CURRENT-EXCEPTION ~ex) (cond ~@(for [[handler-idx type] catches i [`(instance? ~type ~ex) ` (aset-all! ~state-sym ~STATE-IDX ~handler-idx ~CURRENT-EXCEPTION nil)]] i) :else (throw ~ex)) :recur)))) (defrecord EndFinally [] IInstruction (reads-from [this] []) (writes-to [this] []) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~'_ (when-let [e# (aget-object ~state-sym ~CURRENT-EXCEPTION)] (throw e#))])) ;; Dispatch clojure forms based on :op (def -item-to-ssa nil) ;; for help in the repl (defmulti -item-to-ssa :op) (defmethod -item-to-ssa :default [ast] (gen-plan [locals (get-binding :locals) id (add-instruction (->RawCode ast locals))] id)) (defn item-to-ssa [ast] (if (or (::transform? ast) (contains? #{:local :const :quote} (:op ast))) (-item-to-ssa ast) (gen-plan [locals (get-binding :locals) id (add-instruction (->RawCode ast locals))] id))) (defmethod -item-to-ssa :invoke [{f :fn args :args}] (gen-plan [arg-ids (all (map item-to-ssa (cons f args))) inst-id (add-instruction (->Call arg-ids))] inst-id)) (defmethod -item-to-ssa :keyword-invoke [{f :keyword target :target}] (gen-plan [arg-ids (all (map item-to-ssa (list f target))) inst-id (add-instruction (->Call arg-ids))] inst-id)) (defmethod -item-to-ssa :protocol-invoke [{f :protocol-fn target :target args :args}] (gen-plan [arg-ids (all (map item-to-ssa (list* f target args))) inst-id (add-instruction (->Call arg-ids))] inst-id)) (defmethod -item-to-ssa :instance? [{:keys [class target]}] (gen-plan [arg-id (item-to-ssa target) inst-id (add-instruction (->Call (list `instance? class arg-id)))] inst-id)) (defmethod -item-to-ssa :prim-invoke [{f :fn args :args}] (gen-plan [arg-ids (all (map item-to-ssa (cons f args))) inst-id (add-instruction (->Call arg-ids))] inst-id)) (defmethod -item-to-ssa :instance-call [{:keys [instance method args]}] (gen-plan [arg-ids (all (map item-to-ssa args)) instance-id (item-to-ssa instance) inst-id (add-instruction (->InstanceInterop instance-id method arg-ids))] inst-id)) (defmethod -item-to-ssa :instance-field [{:keys [instance field]}] (gen-plan [instance-id (item-to-ssa instance) inst-id (add-instruction (->InstanceInterop instance-id (symbol (str "-" field)) ()))] inst-id)) (defmethod -item-to-ssa :host-interop [{:keys [target m-or-f]}] (gen-plan [instance-id (item-to-ssa target) inst-id (add-instruction (->InstanceInterop instance-id m-or-f ()))] inst-id)) (defmethod -item-to-ssa :static-call [{:keys [class method args]}] (gen-plan [arg-ids (all (map item-to-ssa args)) inst-id (add-instruction (->StaticCall class method arg-ids))] inst-id)) (defmethod -item-to-ssa :set! [{:keys [val target]}] (gen-plan [arg-ids (all (map item-to-ssa (list target val))) inst-id (add-instruction (->Call (cons 'set! arg-ids)))] inst-id)) (defn var-name [v] (let [nm (:name (meta v)) nsp (.getName ^clojure.lang.Namespace (:ns (meta v)))] (symbol (name nsp) (name nm)))) (defmethod -item-to-ssa :var [{:keys [var]}] (gen-plan [] (var-name var))) (defmethod -item-to-ssa :const [{:keys [form]}] (gen-plan [] form)) (defn let-binding-to-ssa [{:keys [name init form]}] (gen-plan [bind-id (item-to-ssa init) _ (push-alter-binding :locals assoc (vary-meta name merge (meta form)) bind-id)] bind-id)) (defmethod -item-to-ssa :let [{:keys [bindings body]}] (gen-plan [let-ids (all (map let-binding-to-ssa bindings)) _ (all (map (fn [_] (pop-binding :locals)) bindings)) local-ids (all (map (comp add-instruction ->Const) let-ids)) _ (push-alter-binding :locals merge (into {} (map (fn [id {:keys [name form]}] [name (vary-meta id merge (meta form))]) local-ids bindings))) body-id (item-to-ssa body) _ (pop-binding :locals)] body-id)) (defmethod -item-to-ssa :loop [{:keys [body bindings] :as ast}] (gen-plan [local-val-ids (all (map let-binding-to-ssa bindings)) _ (all (for [_ bindings] (pop-binding :locals))) local-ids (all (map (comp add-instruction ->Const) local-val-ids)) body-blk (add-block) final-blk (add-block) _ (add-instruction (->Jmp nil body-blk)) _ (set-block body-blk) _ (push-alter-binding :locals merge (into {} (map (fn [id {:keys [name form]}] [name (vary-meta id merge (meta form))]) local-ids bindings))) _ (push-binding :recur-point body-blk) _ (push-binding :recur-nodes local-ids) ret-id (item-to-ssa body) _ (pop-binding :recur-nodes) _ (pop-binding :recur-point) _ (pop-binding :locals) _ (if (not= ret-id ::terminated) (add-instruction (->Jmp ret-id final-blk)) (no-op)) _ (set-block final-blk) ret-id (add-instruction (->Const ::value))] ret-id)) (defmethod -item-to-ssa :do [{:keys [statements ret] :as ast}] (gen-plan [_ (all (map item-to-ssa statements)) ret-id (item-to-ssa ret)] ret-id)) (defmethod -item-to-ssa :case [{:keys [test tests thens default] :as ast}] (gen-plan [end-blk (add-block) start-blk (get-block) clause-blocks (all (map (fn [expr] (assert expr) (gen-plan [blk-id (add-block) _ (set-block blk-id) expr-id (item-to-ssa expr) _ (if (not= expr-id ::terminated) (add-instruction (->Jmp expr-id end-blk)) (no-op))] blk-id)) (map :then thens))) default-block (if default (gen-plan [blk-id (add-block) _ (set-block blk-id) expr-id (item-to-ssa default) _ (if (not= expr-id ::terminated) (add-instruction (->Jmp expr-id end-blk)) (no-op))] blk-id) (no-op)) _ (set-block start-blk) val-id (item-to-ssa test) case-id (add-instruction (->Case val-id (map (comp :form :test) tests) clause-blocks default-block)) _ (set-block end-blk) ret-id (add-instruction (->Const ::value))] ret-id)) (defmethod -item-to-ssa :quote [{:keys [form]}] (gen-plan [ret-id (add-instruction (->Const form))] ret-id)) (defmethod -item-to-ssa :try [{:keys [catches body finally] :as ast}] (gen-plan [body-block (add-block) exit-block (add-block) ;; Two routes to the finally block, via normal execution and ;; exception execution finally-blk (if finally (gen-plan [cur-blk (get-block) finally-blk (add-block) _ (set-block finally-blk) result-id (add-instruction (->Const ::value)) _ (item-to-ssa finally) ;; rethrow exception on exception path _ (add-instruction (->EndFinally)) _ (add-instruction (->Jmp result-id exit-block)) _ (set-block cur-blk)] finally-blk) (gen-plan [] exit-block)) catch-blocks (all (for [{ex-bind :local {ex :val} :class catch-body :body} catches] (gen-plan [cur-blk (get-block) catch-blk (add-block) _ (set-block catch-blk) ex-id (add-instruction (->Const ::value)) _ (push-alter-binding :locals assoc (:name ex-bind) (vary-meta ex-id merge (when (:tag ex-bind) {:tag (.getName ^Class (:tag ex-bind))}))) result-id (item-to-ssa catch-body) ;; if there is a finally, jump to it after ;; handling the exception, if not jump to exit _ (add-instruction (->Jmp result-id finally-blk)) _ (pop-binding :locals) _ (set-block cur-blk)] [catch-blk ex]))) ;; catch block handler routes exceptions to the correct handler, ;; rethrows if there is no match catch-handler-block (add-block) cur-blk (get-block) _ (set-block catch-handler-block) _ (add-instruction (->CatchHandler catch-blocks)) _ (set-block cur-blk) _ (add-instruction (->Jmp nil body-block)) _ (set-block body-block) ;; the finally gets pushed on to the exception handler stack, so ;; it will be executed if there is an exception _ (if finally (add-instruction (->PushTry finally-blk)) (no-op)) _ (add-instruction (->PushTry catch-handler-block)) body (item-to-ssa body) _ (add-instruction (->PopTry)) _ (if finally (add-instruction (->PopTry)) (no-op)) ;; if the body finishes executing normally, jump to the finally ;; block, if it exists _ (add-instruction (->Jmp body finally-blk)) _ (set-block exit-block) ret (add-instruction (->Const ::value))] ret)) (defmethod -item-to-ssa :throw [{:keys [exception] :as ast}] (gen-plan [exception-id (item-to-ssa exception) ret-id (add-instruction (->Call ['throw exception-id]))] ret-id)) (defmethod -item-to-ssa :new [{:keys [args class] :as ast}] (gen-plan [arg-ids (all (map item-to-ssa args)) ret-id (add-instruction (->Call (list* 'new (:val class) arg-ids)))] ret-id)) (defmethod -item-to-ssa :recur [{:keys [exprs] :as ast}] (gen-plan [val-ids (all (map item-to-ssa exprs)) recurs (get-binding :recur-nodes) _ (do (assert (= (count val-ids) (count recurs)) "Wrong number of arguments to recur") (no-op)) _ (add-instruction (->Recur recurs val-ids)) recur-point (get-binding :recur-point) _ (add-instruction (->Jmp nil recur-point))] ::terminated)) (defmethod -item-to-ssa :if [{:keys [test then else]}] (gen-plan [test-id (item-to-ssa test) then-blk (add-block) else-blk (add-block) final-blk (add-block) _ (add-instruction (->CondBr test-id then-blk else-blk)) _ (set-block then-blk) then-id (item-to-ssa then) _ (if (not= then-id ::terminated) (gen-plan [_ (add-instruction (->Jmp then-id final-blk))] then-id) (no-op)) _ (set-block else-blk) else-id (item-to-ssa else) _ (if (not= else-id ::terminated) (gen-plan [_ (add-instruction (->Jmp else-id final-blk))] then-id) (no-op)) _ (set-block final-blk) val-id (add-instruction (->Const ::value))] val-id)) (defmethod -item-to-ssa :transition [{:keys [name args form]}] (gen-plan [blk (add-block) vals (all (map item-to-ssa args)) val (add-instruction (->CustomTerminator name blk vals (meta form))) _ (set-block blk) res (add-instruction (->Const ::value))] res)) (defmethod -item-to-ssa :local [{:keys [name form]}] (gen-plan [locals (get-binding :locals) inst-id (if (contains? locals name) (fn [p] [(locals name) p]) (fn [p] [form p]))] inst-id)) (defmethod -item-to-ssa :map [{:keys [keys vals]}] (gen-plan [keys-ids (all (map item-to-ssa keys)) vals-ids (all (map item-to-ssa vals)) id (add-instruction (->Call (cons 'clojure.core/hash-map (interleave keys-ids vals-ids))))] id)) (defmethod -item-to-ssa :with-meta [{:keys [expr meta]}] (gen-plan [meta-id (item-to-ssa meta) expr-id (item-to-ssa expr) id (add-instruction (->Call (list 'clojure.core/with-meta expr-id meta-id)))] id)) (defmethod -item-to-ssa :record [x] (-item-to-ssa `(~(symbol (.getName (class x)) "create") (hash-map ~@(mapcat identity x))))) (defmethod -item-to-ssa :vector [{:keys [items]}] (gen-plan [item-ids (all (map item-to-ssa items)) id (add-instruction (->Call (cons 'clojure.core/vector item-ids)))] id)) (defmethod -item-to-ssa :set [{:keys [items]}] (gen-plan [item-ids (all (map item-to-ssa items)) id (add-instruction (->Call (cons 'clojure.core/hash-set item-ids)))] id)) (defn parse-to-state-machine "Takes an sexpr and returns a hashmap that describes the execution flow of the sexpr as a series of SSA style blocks." [body terminators] (-> (gen-plan [_ (push-binding :terminators terminators) blk (add-block) _ (set-block blk) id (item-to-ssa body) term-id (add-instruction (->Return id)) _ (pop-binding :terminators)] term-id) get-plan)) (defn index-instruction [blk-id idx inst] (let [idx (reduce (fn [acc id] (update-in acc [id :read-in] (fnil conj #{}) blk-id)) idx (filter instruction? (reads-from inst))) idx (reduce (fn [acc id] (update-in acc [id :written-in] (fnil conj #{}) blk-id)) idx (filter instruction? (writes-to inst)))] idx)) (defn index-block [idx [blk-id blk]] (reduce (partial index-instruction blk-id) idx blk)) (defn index-state-machine [machine] (reduce index-block {} (:blocks machine))) (defn id-for-inst [m sym] ;; m :: symbols -> integers (if-let [i (get @m sym)] i (let [next-idx (get @m ::next-idx)] (swap! m assoc sym next-idx) (swap! m assoc ::next-idx (inc next-idx)) next-idx))) (defn persistent-value? "Returns true if this value should be saved in the state hash map" [index value] (or (not= (-> index value :read-in) (-> index value :written-in)) (-> index value :read-in count (> 1)))) (defn count-persistent-values [index] (->> (keys index) (filter instruction?) (filter (partial persistent-value? index)) count)) (defn- build-block-preamble [local-map idx state-sym blk] (let [args (->> (mapcat reads-from blk) (filter instruction?) (filter (partial persistent-value? idx)) set vec)] (if (empty? args) [] (mapcat (fn [sym] `[~sym (aget-object ~state-sym ~(id-for-inst local-map sym))]) args)))) (defn- build-block-body [state-sym blk] (mapcat #(emit-instruction % state-sym) (butlast blk))) (defn- build-new-state [local-map idx state-sym blk] (let [results (->> blk (mapcat writes-to) (filter instruction?) (filter (partial persistent-value? idx)) set vec) results (interleave (map (partial id-for-inst local-map) results) results)] (if-not (empty? results) [state-sym `(aset-all! ~state-sym ~@results)] []))) (defn- emit-state-machine [machine num-user-params custom-terminators] (let [index (index-state-machine machine) state-sym (with-meta (gensym "state_") {:tag 'objects}) local-start-idx (+ num-user-params USER-START-IDX) state-arr-size (+ local-start-idx (count-persistent-values index)) local-map (atom {::next-idx local-start-idx}) block-catches (:block-catches machine)] `(fn state-machine# ([] (aset-all! (AtomicReferenceArray. ~state-arr-size) ~FN-IDX state-machine# ~STATE-IDX ~(:start-block machine))) ([~state-sym] (let [old-frame# (clojure.lang.Var/getThreadBindingFrame) ret-value# (try (clojure.lang.Var/resetThreadBindingFrame (aget-object ~state-sym ~BINDINGS-IDX)) (loop [] (let [result# (case (int (aget-object ~state-sym ~STATE-IDX)) ~@(mapcat (fn [[id blk]] [id `(let [~@(concat (build-block-preamble local-map index state-sym blk) (build-block-body state-sym blk)) ~@(build-new-state local-map index state-sym blk)] ~(terminate-block (last blk) state-sym custom-terminators))]) (:blocks machine)))] (if (identical? result# :recur) (recur) result#))) (catch Throwable ex# (aset-all! ~state-sym ~VALUE-IDX ex#) (if (seq (aget-object ~state-sym ~EXCEPTION-FRAMES)) (aset-all! ~state-sym ~STATE-IDX (first (aget-object ~state-sym ~EXCEPTION-FRAMES)) ~EXCEPTION-FRAMES (rest (aget-object ~state-sym ~EXCEPTION-FRAMES))) (throw ex#)) :recur) (finally (clojure.lang.Var/resetThreadBindingFrame old-frame#)))] (if (identical? ret-value# :recur) (recur ~state-sym) ret-value#)))))) (defn finished? "Returns true if the machine is in a finished state" [state-array] (identical? (aget-object state-array STATE-IDX) ::finished)) (defn- fn-handler [f] (reify Lock (lock [_]) (unlock [_]) impl/Handler (active? [_] true) (blockable? [_] true) (lock-id [_] 0) (commit [_] f))) (defn run-state-machine [state] ((aget-object state FN-IDX) state)) (defn run-state-machine-wrapped [state] (try (run-state-machine state) (catch Throwable ex (impl/close! (aget-object state USER-START-IDX)) (throw ex)))) (defn take! [state blk c] (if-let [cb (impl/take! c (fn-handler (fn [x] (aset-all! state VALUE-IDX x STATE-IDX blk) (run-state-machine-wrapped state))))] (do (aset-all! state VALUE-IDX @cb STATE-IDX blk) :recur) nil)) (defn put! [state blk c val] (if-let [cb (impl/put! c val (fn-handler (fn [ret-val] (aset-all! state VALUE-IDX ret-val STATE-IDX blk) (run-state-machine-wrapped state))))] (do (aset-all! state VALUE-IDX @cb STATE-IDX blk) :recur) nil)) (defn return-chan [state value] (let [c (aget-object state USER-START-IDX)] (when-not (nil? value) (impl/put! c value (fn-handler (fn [] nil)))) (impl/close! c) c)) (def async-custom-terminators {'clojure.core.async/<! `take! 'clojure.core.async/>! `put! 'clojure.core.async/alts! 'clojure.core.async/ioc-alts! :Return `return-chan}) (defn mark-transitions {:pass-info {:walk :post :depends #{} :after an-jvm/default-passes}} [{:keys [op fn] :as ast}] (let [transitions (-> (env/deref-env) :passes-opts :mark-transitions/transitions)] (if (and (= op :invoke) (= (:op fn) :var) (contains? transitions (var-name (:var fn)))) (merge ast {:op :transition :name (get transitions (var-name (:var fn)))}) ast))) (defn propagate-transitions {:pass-info {:walk :post :depends #{#'mark-transitions}}} [{:keys [op] :as ast}] (if (or (= op :transition) (some #(or (= (:op %) :transition) (::transform? %)) (ast/children ast))) (assoc ast ::transform? true) ast)) (defn propagate-recur {:pass-info {:walk :post :depends #{#'annotate-loops #'propagate-transitions}}} [ast] (if (and (= (:op ast) :loop) (::transform? ast)) ;; If we are a loop and we need to transform, and ;; one of our children is a recur, then we must transform everything ;; that has a recur (let [loop-id (:loop-id ast)] (ast/postwalk ast #(if (contains? (:loops %) loop-id) (assoc % ::transform? true) %))) ast)) (defn nested-go? [env] (-> env vals first map?)) (defn make-env [input-env crossing-env] (assoc (an-jvm/empty-env) :locals (into {} (if (nested-go? input-env) (for [[l expr] input-env :let [local (get crossing-env l)]] [local (-> expr (assoc :form local) (assoc :name local))]) (for [l (keys input-env) :let [local (get crossing-env l)]] [local {:op :local :form local :name local}]))))) (defn pdebug [x] (clojure.pprint/pprint x) (println "----") x) (def passes (into (disj an-jvm/default-passes #'warn-on-reflection) #{#'propagate-recur #'propagate-transitions #'mark-transitions})) (def run-passes (schedule passes)) (defn emit-hinted [local tag env] (let [tag (or tag (-> local meta :tag)) init (list (get env local))] (if-let [prim-fn (case (cond-> tag (string? tag) symbol) int `int long `long char `char float `float double `double byte `byte short `short boolean `boolean nil)] [(vary-meta local dissoc :tag) (list prim-fn init)] [(vary-meta local merge (when tag {:tag tag})) init]))) (defn state-machine [body num-user-params [crossing-env env] user-transitions] (binding [an-jvm/run-passes run-passes] (-> (an-jvm/analyze `(let [~@(if (nested-go? env) (mapcat (fn [[l {:keys [tag]}]] (emit-hinted l tag crossing-env)) env) (mapcat (fn [[l ^clojure.lang.Compiler$LocalBinding lb]] (emit-hinted l (when (.hasJavaClass lb) (some-> lb .getJavaClass .getName)) crossing-env)) env))] ~body) (make-env env crossing-env) {:passes-opts (merge an-jvm/default-passes-opts {:uniquify/uniquify-env true :mark-transitions/transitions user-transitions})}) (parse-to-state-machine user-transitions) second (emit-state-machine num-user-params user-transitions))))
40878
; Copyright (c) <NAME>. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any fashion, you are agreeing to be bound by ; the terms of this license. ; You must not remove this notice, or any other, from this software. ;; by <NAME> ;; April 13, 2013 (ns ^{:skip-wiki true} clojure.core.async.impl.ioc-macros (:refer-clojure :exclude [all]) (:require [clojure.pprint :refer [pprint]] [clojure.tools.analyzer :as an] [clojure.tools.analyzer.ast :as ast] [clojure.tools.analyzer.env :as env] [clojure.tools.analyzer.passes :refer [schedule]] [clojure.tools.analyzer.passes.jvm.annotate-loops :refer [annotate-loops]] [clojure.tools.analyzer.passes.jvm.warn-on-reflection :refer [warn-on-reflection]] [clojure.tools.analyzer.jvm :as an-jvm] [clojure.core.async.impl.protocols :as impl] [clojure.core.async.impl.dispatch :as dispatch] [clojure.set :refer (intersection union difference)]) (:import [java.util.concurrent.locks Lock] [java.util.concurrent.atomic AtomicReferenceArray])) (defn debug [x] (pprint x) x) (def ^:const FN-IDX 0) (def ^:const STATE-IDX 1) (def ^:const VALUE-IDX 2) (def ^:const BINDINGS-IDX 3) (def ^:const EXCEPTION-FRAMES 4) (def ^:const CURRENT-EXCEPTION 5) (def ^:const USER-START-IDX 6) (defn aset-object [^AtomicReferenceArray arr idx ^Object o] (.set arr idx o)) (defn aget-object [^AtomicReferenceArray arr idx] (.get arr idx)) (defmacro aset-all! [arr & more] (assert (even? (count more)) "Must give an even number of args to aset-all!") (let [bindings (partition 2 more) arr-sym (gensym "statearr-")] `(let [~arr-sym ~arr] ~@(map (fn [[idx val]] `(aset-object ~arr-sym ~idx ~val)) bindings) ~arr-sym))) ;; State monad stuff, used only in SSA construction (defmacro gen-plan "Allows a user to define a state monad binding plan. (gen-plan [_ (assoc-in-plan [:foo :bar] 42) val (get-in-plan [:foo :bar])] val)" [binds id-expr] (let [binds (partition 2 binds) psym (gensym "plan_") forms (reduce (fn [acc [id expr]] (concat acc `[[~id ~psym] (~expr ~psym)])) [] binds)] `(fn [~psym] (let [~@forms] [~id-expr ~psym])))) (defn get-plan "Returns the final [id state] from a plan. " [f] (f {})) (defn push-binding "Sets the binding 'key' to value. This operation can be undone via pop-bindings. Bindings are stored in the state hashmap." [key value] (fn [plan] [nil (update-in plan [:bindings key] conj value)])) (defn push-alter-binding "Pushes the result of (apply f old-value args) as current value of binding key" [key f & args] (fn [plan] [nil (update-in plan [:bindings key] #(conj % (apply f (first %) args)))])) (defn get-binding "Gets the value of the current binding for key" [key] (fn [plan] [(first (get-in plan [:bindings key])) plan])) (defn pop-binding "Removes the most recent binding for key" [key] (fn [plan] [(first (get-in plan [:bindings key])) (update-in plan [:bindings key] pop)])) (defn no-op "This function can be used inside a gen-plan when no operation is to be performed" [] (fn [plan] [nil plan])) (defn all "Assumes that itms is a list of state monad function results, threads the state map through all of them. Returns a vector of all the results." [itms] (fn [plan] (reduce (fn [[ids plan] f] (let [[id plan] (f plan)] [(conj ids id) plan])) [[] plan] itms))) (defn assoc-in-plan "Same as assoc-in, but for state hash map" [path val] (fn [plan] [val (assoc-in plan path val)])) (defn update-in-plan "Same as update-in, but for a state hash map" [path f & args] (fn [plan] [nil (apply update-in plan path f args)])) (defn get-in-plan "Same as get-in, but for a state hash map" [path] (fn [plan] [(get-in plan path) plan])) (defn print-plan [] (fn [plan] (pprint plan) [nil plan])) (defn set-block "Sets the current block being written to by the functions. The next add-instruction call will append to this block" [block-id] (fn [plan] [block-id (assoc plan :current-block block-id)])) (defn get-block "Gets the current block" [] (fn [plan] [(:current-block plan) plan])) (defn add-block "Adds a new block, returns its id, but does not change the current block (does not call set-block)." [] (gen-plan [_ (update-in-plan [:block-id] (fnil inc 0)) blk-id (get-in-plan [:block-id]) cur-blk (get-block) _ (assoc-in-plan [:blocks blk-id] []) catches (get-binding :catch) _ (assoc-in-plan [:block-catches blk-id] catches) _ (if-not cur-blk (assoc-in-plan [:start-block] blk-id) (no-op))] blk-id)) (defn instruction? [x] (::instruction (meta x))) (defn add-instruction "Appends an instruction to the current block. " [inst] (let [inst-id (with-meta (gensym "inst_") {::instruction true}) inst (assoc inst :id inst-id)] (gen-plan [blk-id (get-block) _ (update-in-plan [:blocks blk-id] (fnil conj []) inst)] inst-id))) ;; ;; We're going to reduce Clojure expressions to a ssa format, ;; and then translate the instructions for this ;; virtual-virtual-machine back into Clojure data. ;; Here we define the instructions: (defprotocol IInstruction (reads-from [this] "Returns a list of instructions this instruction reads from") (writes-to [this] "Returns a list of instructions this instruction writes to") (block-references [this] "Returns all the blocks this instruction references")) (defprotocol IEmittableInstruction (emit-instruction [this state-sym] "Returns the clojure code that this instruction represents")) (defprotocol ITerminator (terminator-code [this] "Returns a unique symbol for this instruction") (terminate-block [this state-sym custom-terminators] "Emites the code to terminate a given block")) (defrecord Const [value] IInstruction (reads-from [this] [value]) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] (if (= value ::value) `[~(:id this) (aget-object ~state-sym ~VALUE-IDX)] `[~(:id this) ~value]))) (defrecord RawCode [ast locals] IInstruction (reads-from [this] (keep (or locals #{}) (map :name (-> ast :env :locals vals)))) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] (if (not-empty (reads-from this)) `[~@(->> (-> ast :env :locals vals) (map #(select-keys % [:op :name :form])) (filter (fn [local] (when locals (get locals (:name local))))) set (mapcat (fn [local] `[~(:form local) ~(get locals (:name local))]))) ~(:id this) ~(:form ast)] `[~(:id this) ~(:form ast)]))) (defrecord CustomTerminator [f blk values meta] IInstruction (reads-from [this] values) (writes-to [this] []) (block-references [this] []) ITerminator (terminate-block [this state-sym _] (with-meta `(~f ~state-sym ~blk ~@values) meta))) (defn- emit-clashing-binds [recur-nodes ids clashes] (let [temp-binds (reduce (fn [acc i] (assoc acc i (gensym "tmp"))) {} clashes)] (concat (mapcat (fn [i] `[~(temp-binds i) ~i]) clashes) (mapcat (fn [node id] `[~node ~(get temp-binds id id)]) recur-nodes ids)))) (defrecord Recur [recur-nodes ids] IInstruction (reads-from [this] ids) (writes-to [this] recur-nodes) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] (if-let [overlap (seq (intersection (set recur-nodes) (set ids)))] (emit-clashing-binds recur-nodes ids overlap) (mapcat (fn [r i] `[~r ~i]) recur-nodes ids)))) (defrecord Call [refs] IInstruction (reads-from [this] refs) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~(:id this) ~(seq refs)])) (defrecord StaticCall [class method refs] IInstruction (reads-from [this] refs) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~(:id this) (. ~class ~method ~@(seq refs))])) (defrecord InstanceInterop [instance-id op refs] IInstruction (reads-from [this] (cons instance-id refs)) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~(:id this) (. ~instance-id ~op ~@(seq refs))])) (defrecord Case [val-id test-vals jmp-blocks default-block] IInstruction (reads-from [this] [val-id]) (writes-to [this] []) (block-references [this] []) ITerminator (terminate-block [this state-sym _] `(do (case ~val-id ~@(concat (mapcat (fn [test blk] `[~test (aset-all! ~state-sym ~STATE-IDX ~blk)]) test-vals jmp-blocks) (when default-block `[(do (aset-all! ~state-sym ~STATE-IDX ~default-block) :recur)]))) :recur))) (defrecord Fn [fn-expr local-names local-refs] IInstruction (reads-from [this] local-refs) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~(:id this) (let [~@(interleave local-names local-refs)] ~@fn-expr)])) (defrecord Dot [cls-or-instance method args] IInstruction (reads-from [this] `[~cls-or-instance ~method ~@args]) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~(:id this) (. ~cls-or-instance ~method ~@args)])) (defrecord Jmp [value block] IInstruction (reads-from [this] [value]) (writes-to [this] []) (block-references [this] [block]) ITerminator (terminate-block [this state-sym _] `(do (aset-all! ~state-sym ~VALUE-IDX ~value ~STATE-IDX ~block) :recur))) (defrecord Return [value] IInstruction (reads-from [this] [value]) (writes-to [this] []) (block-references [this] []) ITerminator (terminator-code [this] :Return) (terminate-block [this state-sym custom-terminators] (if-let [f (get custom-terminators (terminator-code this))] `(~f ~state-sym ~value) `(do (aset-all! ~state-sym ~VALUE-IDX ~value ~STATE-IDX ::finished) nil)))) (defrecord CondBr [test then-block else-block] IInstruction (reads-from [this] [test]) (writes-to [this] []) (block-references [this] [then-block else-block]) ITerminator (terminate-block [this state-sym _] `(do (if ~test (aset-all! ~state-sym ~STATE-IDX ~then-block) (aset-all! ~state-sym ~STATE-IDX ~else-block)) :recur))) (defrecord PushTry [catch-block] IInstruction (reads-from [this] []) (writes-to [this] []) (block-references [this] [catch-block]) IEmittableInstruction (emit-instruction [this state-sym] `[~'_ (aset-all! ~state-sym ~EXCEPTION-FRAMES (cons ~catch-block (aget-object ~state-sym ~EXCEPTION-FRAMES)))])) (defrecord PopTry [] IInstruction (reads-from [this] []) (writes-to [this] []) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~'_ (aset-all! ~state-sym ~EXCEPTION-FRAMES (rest (aget-object ~state-sym ~EXCEPTION-FRAMES)))])) (defrecord CatchHandler [catches] IInstruction (reads-from [this] []) (writes-to [this] []) (block-references [this] (map first catches)) ITerminator (terminate-block [this state-sym _] (let [ex (gensym 'ex)] `(let [~ex (aget-object ~state-sym ~VALUE-IDX)] (aset-all! ~state-sym ~CURRENT-EXCEPTION ~ex) (cond ~@(for [[handler-idx type] catches i [`(instance? ~type ~ex) ` (aset-all! ~state-sym ~STATE-IDX ~handler-idx ~CURRENT-EXCEPTION nil)]] i) :else (throw ~ex)) :recur)))) (defrecord EndFinally [] IInstruction (reads-from [this] []) (writes-to [this] []) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~'_ (when-let [e# (aget-object ~state-sym ~CURRENT-EXCEPTION)] (throw e#))])) ;; Dispatch clojure forms based on :op (def -item-to-ssa nil) ;; for help in the repl (defmulti -item-to-ssa :op) (defmethod -item-to-ssa :default [ast] (gen-plan [locals (get-binding :locals) id (add-instruction (->RawCode ast locals))] id)) (defn item-to-ssa [ast] (if (or (::transform? ast) (contains? #{:local :const :quote} (:op ast))) (-item-to-ssa ast) (gen-plan [locals (get-binding :locals) id (add-instruction (->RawCode ast locals))] id))) (defmethod -item-to-ssa :invoke [{f :fn args :args}] (gen-plan [arg-ids (all (map item-to-ssa (cons f args))) inst-id (add-instruction (->Call arg-ids))] inst-id)) (defmethod -item-to-ssa :keyword-invoke [{f :keyword target :target}] (gen-plan [arg-ids (all (map item-to-ssa (list f target))) inst-id (add-instruction (->Call arg-ids))] inst-id)) (defmethod -item-to-ssa :protocol-invoke [{f :protocol-fn target :target args :args}] (gen-plan [arg-ids (all (map item-to-ssa (list* f target args))) inst-id (add-instruction (->Call arg-ids))] inst-id)) (defmethod -item-to-ssa :instance? [{:keys [class target]}] (gen-plan [arg-id (item-to-ssa target) inst-id (add-instruction (->Call (list `instance? class arg-id)))] inst-id)) (defmethod -item-to-ssa :prim-invoke [{f :fn args :args}] (gen-plan [arg-ids (all (map item-to-ssa (cons f args))) inst-id (add-instruction (->Call arg-ids))] inst-id)) (defmethod -item-to-ssa :instance-call [{:keys [instance method args]}] (gen-plan [arg-ids (all (map item-to-ssa args)) instance-id (item-to-ssa instance) inst-id (add-instruction (->InstanceInterop instance-id method arg-ids))] inst-id)) (defmethod -item-to-ssa :instance-field [{:keys [instance field]}] (gen-plan [instance-id (item-to-ssa instance) inst-id (add-instruction (->InstanceInterop instance-id (symbol (str "-" field)) ()))] inst-id)) (defmethod -item-to-ssa :host-interop [{:keys [target m-or-f]}] (gen-plan [instance-id (item-to-ssa target) inst-id (add-instruction (->InstanceInterop instance-id m-or-f ()))] inst-id)) (defmethod -item-to-ssa :static-call [{:keys [class method args]}] (gen-plan [arg-ids (all (map item-to-ssa args)) inst-id (add-instruction (->StaticCall class method arg-ids))] inst-id)) (defmethod -item-to-ssa :set! [{:keys [val target]}] (gen-plan [arg-ids (all (map item-to-ssa (list target val))) inst-id (add-instruction (->Call (cons 'set! arg-ids)))] inst-id)) (defn var-name [v] (let [nm (:name (meta v)) nsp (.getName ^clojure.lang.Namespace (:ns (meta v)))] (symbol (name nsp) (name nm)))) (defmethod -item-to-ssa :var [{:keys [var]}] (gen-plan [] (var-name var))) (defmethod -item-to-ssa :const [{:keys [form]}] (gen-plan [] form)) (defn let-binding-to-ssa [{:keys [name init form]}] (gen-plan [bind-id (item-to-ssa init) _ (push-alter-binding :locals assoc (vary-meta name merge (meta form)) bind-id)] bind-id)) (defmethod -item-to-ssa :let [{:keys [bindings body]}] (gen-plan [let-ids (all (map let-binding-to-ssa bindings)) _ (all (map (fn [_] (pop-binding :locals)) bindings)) local-ids (all (map (comp add-instruction ->Const) let-ids)) _ (push-alter-binding :locals merge (into {} (map (fn [id {:keys [name form]}] [name (vary-meta id merge (meta form))]) local-ids bindings))) body-id (item-to-ssa body) _ (pop-binding :locals)] body-id)) (defmethod -item-to-ssa :loop [{:keys [body bindings] :as ast}] (gen-plan [local-val-ids (all (map let-binding-to-ssa bindings)) _ (all (for [_ bindings] (pop-binding :locals))) local-ids (all (map (comp add-instruction ->Const) local-val-ids)) body-blk (add-block) final-blk (add-block) _ (add-instruction (->Jmp nil body-blk)) _ (set-block body-blk) _ (push-alter-binding :locals merge (into {} (map (fn [id {:keys [name form]}] [name (vary-meta id merge (meta form))]) local-ids bindings))) _ (push-binding :recur-point body-blk) _ (push-binding :recur-nodes local-ids) ret-id (item-to-ssa body) _ (pop-binding :recur-nodes) _ (pop-binding :recur-point) _ (pop-binding :locals) _ (if (not= ret-id ::terminated) (add-instruction (->Jmp ret-id final-blk)) (no-op)) _ (set-block final-blk) ret-id (add-instruction (->Const ::value))] ret-id)) (defmethod -item-to-ssa :do [{:keys [statements ret] :as ast}] (gen-plan [_ (all (map item-to-ssa statements)) ret-id (item-to-ssa ret)] ret-id)) (defmethod -item-to-ssa :case [{:keys [test tests thens default] :as ast}] (gen-plan [end-blk (add-block) start-blk (get-block) clause-blocks (all (map (fn [expr] (assert expr) (gen-plan [blk-id (add-block) _ (set-block blk-id) expr-id (item-to-ssa expr) _ (if (not= expr-id ::terminated) (add-instruction (->Jmp expr-id end-blk)) (no-op))] blk-id)) (map :then thens))) default-block (if default (gen-plan [blk-id (add-block) _ (set-block blk-id) expr-id (item-to-ssa default) _ (if (not= expr-id ::terminated) (add-instruction (->Jmp expr-id end-blk)) (no-op))] blk-id) (no-op)) _ (set-block start-blk) val-id (item-to-ssa test) case-id (add-instruction (->Case val-id (map (comp :form :test) tests) clause-blocks default-block)) _ (set-block end-blk) ret-id (add-instruction (->Const ::value))] ret-id)) (defmethod -item-to-ssa :quote [{:keys [form]}] (gen-plan [ret-id (add-instruction (->Const form))] ret-id)) (defmethod -item-to-ssa :try [{:keys [catches body finally] :as ast}] (gen-plan [body-block (add-block) exit-block (add-block) ;; Two routes to the finally block, via normal execution and ;; exception execution finally-blk (if finally (gen-plan [cur-blk (get-block) finally-blk (add-block) _ (set-block finally-blk) result-id (add-instruction (->Const ::value)) _ (item-to-ssa finally) ;; rethrow exception on exception path _ (add-instruction (->EndFinally)) _ (add-instruction (->Jmp result-id exit-block)) _ (set-block cur-blk)] finally-blk) (gen-plan [] exit-block)) catch-blocks (all (for [{ex-bind :local {ex :val} :class catch-body :body} catches] (gen-plan [cur-blk (get-block) catch-blk (add-block) _ (set-block catch-blk) ex-id (add-instruction (->Const ::value)) _ (push-alter-binding :locals assoc (:name ex-bind) (vary-meta ex-id merge (when (:tag ex-bind) {:tag (.getName ^Class (:tag ex-bind))}))) result-id (item-to-ssa catch-body) ;; if there is a finally, jump to it after ;; handling the exception, if not jump to exit _ (add-instruction (->Jmp result-id finally-blk)) _ (pop-binding :locals) _ (set-block cur-blk)] [catch-blk ex]))) ;; catch block handler routes exceptions to the correct handler, ;; rethrows if there is no match catch-handler-block (add-block) cur-blk (get-block) _ (set-block catch-handler-block) _ (add-instruction (->CatchHandler catch-blocks)) _ (set-block cur-blk) _ (add-instruction (->Jmp nil body-block)) _ (set-block body-block) ;; the finally gets pushed on to the exception handler stack, so ;; it will be executed if there is an exception _ (if finally (add-instruction (->PushTry finally-blk)) (no-op)) _ (add-instruction (->PushTry catch-handler-block)) body (item-to-ssa body) _ (add-instruction (->PopTry)) _ (if finally (add-instruction (->PopTry)) (no-op)) ;; if the body finishes executing normally, jump to the finally ;; block, if it exists _ (add-instruction (->Jmp body finally-blk)) _ (set-block exit-block) ret (add-instruction (->Const ::value))] ret)) (defmethod -item-to-ssa :throw [{:keys [exception] :as ast}] (gen-plan [exception-id (item-to-ssa exception) ret-id (add-instruction (->Call ['throw exception-id]))] ret-id)) (defmethod -item-to-ssa :new [{:keys [args class] :as ast}] (gen-plan [arg-ids (all (map item-to-ssa args)) ret-id (add-instruction (->Call (list* 'new (:val class) arg-ids)))] ret-id)) (defmethod -item-to-ssa :recur [{:keys [exprs] :as ast}] (gen-plan [val-ids (all (map item-to-ssa exprs)) recurs (get-binding :recur-nodes) _ (do (assert (= (count val-ids) (count recurs)) "Wrong number of arguments to recur") (no-op)) _ (add-instruction (->Recur recurs val-ids)) recur-point (get-binding :recur-point) _ (add-instruction (->Jmp nil recur-point))] ::terminated)) (defmethod -item-to-ssa :if [{:keys [test then else]}] (gen-plan [test-id (item-to-ssa test) then-blk (add-block) else-blk (add-block) final-blk (add-block) _ (add-instruction (->CondBr test-id then-blk else-blk)) _ (set-block then-blk) then-id (item-to-ssa then) _ (if (not= then-id ::terminated) (gen-plan [_ (add-instruction (->Jmp then-id final-blk))] then-id) (no-op)) _ (set-block else-blk) else-id (item-to-ssa else) _ (if (not= else-id ::terminated) (gen-plan [_ (add-instruction (->Jmp else-id final-blk))] then-id) (no-op)) _ (set-block final-blk) val-id (add-instruction (->Const ::value))] val-id)) (defmethod -item-to-ssa :transition [{:keys [name args form]}] (gen-plan [blk (add-block) vals (all (map item-to-ssa args)) val (add-instruction (->CustomTerminator name blk vals (meta form))) _ (set-block blk) res (add-instruction (->Const ::value))] res)) (defmethod -item-to-ssa :local [{:keys [name form]}] (gen-plan [locals (get-binding :locals) inst-id (if (contains? locals name) (fn [p] [(locals name) p]) (fn [p] [form p]))] inst-id)) (defmethod -item-to-ssa :map [{:keys [keys vals]}] (gen-plan [keys-ids (all (map item-to-ssa keys)) vals-ids (all (map item-to-ssa vals)) id (add-instruction (->Call (cons 'clojure.core/hash-map (interleave keys-ids vals-ids))))] id)) (defmethod -item-to-ssa :with-meta [{:keys [expr meta]}] (gen-plan [meta-id (item-to-ssa meta) expr-id (item-to-ssa expr) id (add-instruction (->Call (list 'clojure.core/with-meta expr-id meta-id)))] id)) (defmethod -item-to-ssa :record [x] (-item-to-ssa `(~(symbol (.getName (class x)) "create") (hash-map ~@(mapcat identity x))))) (defmethod -item-to-ssa :vector [{:keys [items]}] (gen-plan [item-ids (all (map item-to-ssa items)) id (add-instruction (->Call (cons 'clojure.core/vector item-ids)))] id)) (defmethod -item-to-ssa :set [{:keys [items]}] (gen-plan [item-ids (all (map item-to-ssa items)) id (add-instruction (->Call (cons 'clojure.core/hash-set item-ids)))] id)) (defn parse-to-state-machine "Takes an sexpr and returns a hashmap that describes the execution flow of the sexpr as a series of SSA style blocks." [body terminators] (-> (gen-plan [_ (push-binding :terminators terminators) blk (add-block) _ (set-block blk) id (item-to-ssa body) term-id (add-instruction (->Return id)) _ (pop-binding :terminators)] term-id) get-plan)) (defn index-instruction [blk-id idx inst] (let [idx (reduce (fn [acc id] (update-in acc [id :read-in] (fnil conj #{}) blk-id)) idx (filter instruction? (reads-from inst))) idx (reduce (fn [acc id] (update-in acc [id :written-in] (fnil conj #{}) blk-id)) idx (filter instruction? (writes-to inst)))] idx)) (defn index-block [idx [blk-id blk]] (reduce (partial index-instruction blk-id) idx blk)) (defn index-state-machine [machine] (reduce index-block {} (:blocks machine))) (defn id-for-inst [m sym] ;; m :: symbols -> integers (if-let [i (get @m sym)] i (let [next-idx (get @m ::next-idx)] (swap! m assoc sym next-idx) (swap! m assoc ::next-idx (inc next-idx)) next-idx))) (defn persistent-value? "Returns true if this value should be saved in the state hash map" [index value] (or (not= (-> index value :read-in) (-> index value :written-in)) (-> index value :read-in count (> 1)))) (defn count-persistent-values [index] (->> (keys index) (filter instruction?) (filter (partial persistent-value? index)) count)) (defn- build-block-preamble [local-map idx state-sym blk] (let [args (->> (mapcat reads-from blk) (filter instruction?) (filter (partial persistent-value? idx)) set vec)] (if (empty? args) [] (mapcat (fn [sym] `[~sym (aget-object ~state-sym ~(id-for-inst local-map sym))]) args)))) (defn- build-block-body [state-sym blk] (mapcat #(emit-instruction % state-sym) (butlast blk))) (defn- build-new-state [local-map idx state-sym blk] (let [results (->> blk (mapcat writes-to) (filter instruction?) (filter (partial persistent-value? idx)) set vec) results (interleave (map (partial id-for-inst local-map) results) results)] (if-not (empty? results) [state-sym `(aset-all! ~state-sym ~@results)] []))) (defn- emit-state-machine [machine num-user-params custom-terminators] (let [index (index-state-machine machine) state-sym (with-meta (gensym "state_") {:tag 'objects}) local-start-idx (+ num-user-params USER-START-IDX) state-arr-size (+ local-start-idx (count-persistent-values index)) local-map (atom {::next-idx local-start-idx}) block-catches (:block-catches machine)] `(fn state-machine# ([] (aset-all! (AtomicReferenceArray. ~state-arr-size) ~FN-IDX state-machine# ~STATE-IDX ~(:start-block machine))) ([~state-sym] (let [old-frame# (clojure.lang.Var/getThreadBindingFrame) ret-value# (try (clojure.lang.Var/resetThreadBindingFrame (aget-object ~state-sym ~BINDINGS-IDX)) (loop [] (let [result# (case (int (aget-object ~state-sym ~STATE-IDX)) ~@(mapcat (fn [[id blk]] [id `(let [~@(concat (build-block-preamble local-map index state-sym blk) (build-block-body state-sym blk)) ~@(build-new-state local-map index state-sym blk)] ~(terminate-block (last blk) state-sym custom-terminators))]) (:blocks machine)))] (if (identical? result# :recur) (recur) result#))) (catch Throwable ex# (aset-all! ~state-sym ~VALUE-IDX ex#) (if (seq (aget-object ~state-sym ~EXCEPTION-FRAMES)) (aset-all! ~state-sym ~STATE-IDX (first (aget-object ~state-sym ~EXCEPTION-FRAMES)) ~EXCEPTION-FRAMES (rest (aget-object ~state-sym ~EXCEPTION-FRAMES))) (throw ex#)) :recur) (finally (clojure.lang.Var/resetThreadBindingFrame old-frame#)))] (if (identical? ret-value# :recur) (recur ~state-sym) ret-value#)))))) (defn finished? "Returns true if the machine is in a finished state" [state-array] (identical? (aget-object state-array STATE-IDX) ::finished)) (defn- fn-handler [f] (reify Lock (lock [_]) (unlock [_]) impl/Handler (active? [_] true) (blockable? [_] true) (lock-id [_] 0) (commit [_] f))) (defn run-state-machine [state] ((aget-object state FN-IDX) state)) (defn run-state-machine-wrapped [state] (try (run-state-machine state) (catch Throwable ex (impl/close! (aget-object state USER-START-IDX)) (throw ex)))) (defn take! [state blk c] (if-let [cb (impl/take! c (fn-handler (fn [x] (aset-all! state VALUE-IDX x STATE-IDX blk) (run-state-machine-wrapped state))))] (do (aset-all! state VALUE-IDX @cb STATE-IDX blk) :recur) nil)) (defn put! [state blk c val] (if-let [cb (impl/put! c val (fn-handler (fn [ret-val] (aset-all! state VALUE-IDX ret-val STATE-IDX blk) (run-state-machine-wrapped state))))] (do (aset-all! state VALUE-IDX @cb STATE-IDX blk) :recur) nil)) (defn return-chan [state value] (let [c (aget-object state USER-START-IDX)] (when-not (nil? value) (impl/put! c value (fn-handler (fn [] nil)))) (impl/close! c) c)) (def async-custom-terminators {'clojure.core.async/<! `take! 'clojure.core.async/>! `put! 'clojure.core.async/alts! 'clojure.core.async/ioc-alts! :Return `return-chan}) (defn mark-transitions {:pass-info {:walk :post :depends #{} :after an-jvm/default-passes}} [{:keys [op fn] :as ast}] (let [transitions (-> (env/deref-env) :passes-opts :mark-transitions/transitions)] (if (and (= op :invoke) (= (:op fn) :var) (contains? transitions (var-name (:var fn)))) (merge ast {:op :transition :name (get transitions (var-name (:var fn)))}) ast))) (defn propagate-transitions {:pass-info {:walk :post :depends #{#'mark-transitions}}} [{:keys [op] :as ast}] (if (or (= op :transition) (some #(or (= (:op %) :transition) (::transform? %)) (ast/children ast))) (assoc ast ::transform? true) ast)) (defn propagate-recur {:pass-info {:walk :post :depends #{#'annotate-loops #'propagate-transitions}}} [ast] (if (and (= (:op ast) :loop) (::transform? ast)) ;; If we are a loop and we need to transform, and ;; one of our children is a recur, then we must transform everything ;; that has a recur (let [loop-id (:loop-id ast)] (ast/postwalk ast #(if (contains? (:loops %) loop-id) (assoc % ::transform? true) %))) ast)) (defn nested-go? [env] (-> env vals first map?)) (defn make-env [input-env crossing-env] (assoc (an-jvm/empty-env) :locals (into {} (if (nested-go? input-env) (for [[l expr] input-env :let [local (get crossing-env l)]] [local (-> expr (assoc :form local) (assoc :name local))]) (for [l (keys input-env) :let [local (get crossing-env l)]] [local {:op :local :form local :name local}]))))) (defn pdebug [x] (clojure.pprint/pprint x) (println "----") x) (def passes (into (disj an-jvm/default-passes #'warn-on-reflection) #{#'propagate-recur #'propagate-transitions #'mark-transitions})) (def run-passes (schedule passes)) (defn emit-hinted [local tag env] (let [tag (or tag (-> local meta :tag)) init (list (get env local))] (if-let [prim-fn (case (cond-> tag (string? tag) symbol) int `int long `long char `char float `float double `double byte `byte short `short boolean `boolean nil)] [(vary-meta local dissoc :tag) (list prim-fn init)] [(vary-meta local merge (when tag {:tag tag})) init]))) (defn state-machine [body num-user-params [crossing-env env] user-transitions] (binding [an-jvm/run-passes run-passes] (-> (an-jvm/analyze `(let [~@(if (nested-go? env) (mapcat (fn [[l {:keys [tag]}]] (emit-hinted l tag crossing-env)) env) (mapcat (fn [[l ^clojure.lang.Compiler$LocalBinding lb]] (emit-hinted l (when (.hasJavaClass lb) (some-> lb .getJavaClass .getName)) crossing-env)) env))] ~body) (make-env env crossing-env) {:passes-opts (merge an-jvm/default-passes-opts {:uniquify/uniquify-env true :mark-transitions/transitions user-transitions})}) (parse-to-state-machine user-transitions) second (emit-state-machine num-user-params user-transitions))))
true
; Copyright (c) PI:NAME:<NAME>END_PI. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any fashion, you are agreeing to be bound by ; the terms of this license. ; You must not remove this notice, or any other, from this software. ;; by PI:NAME:<NAME>END_PI ;; April 13, 2013 (ns ^{:skip-wiki true} clojure.core.async.impl.ioc-macros (:refer-clojure :exclude [all]) (:require [clojure.pprint :refer [pprint]] [clojure.tools.analyzer :as an] [clojure.tools.analyzer.ast :as ast] [clojure.tools.analyzer.env :as env] [clojure.tools.analyzer.passes :refer [schedule]] [clojure.tools.analyzer.passes.jvm.annotate-loops :refer [annotate-loops]] [clojure.tools.analyzer.passes.jvm.warn-on-reflection :refer [warn-on-reflection]] [clojure.tools.analyzer.jvm :as an-jvm] [clojure.core.async.impl.protocols :as impl] [clojure.core.async.impl.dispatch :as dispatch] [clojure.set :refer (intersection union difference)]) (:import [java.util.concurrent.locks Lock] [java.util.concurrent.atomic AtomicReferenceArray])) (defn debug [x] (pprint x) x) (def ^:const FN-IDX 0) (def ^:const STATE-IDX 1) (def ^:const VALUE-IDX 2) (def ^:const BINDINGS-IDX 3) (def ^:const EXCEPTION-FRAMES 4) (def ^:const CURRENT-EXCEPTION 5) (def ^:const USER-START-IDX 6) (defn aset-object [^AtomicReferenceArray arr idx ^Object o] (.set arr idx o)) (defn aget-object [^AtomicReferenceArray arr idx] (.get arr idx)) (defmacro aset-all! [arr & more] (assert (even? (count more)) "Must give an even number of args to aset-all!") (let [bindings (partition 2 more) arr-sym (gensym "statearr-")] `(let [~arr-sym ~arr] ~@(map (fn [[idx val]] `(aset-object ~arr-sym ~idx ~val)) bindings) ~arr-sym))) ;; State monad stuff, used only in SSA construction (defmacro gen-plan "Allows a user to define a state monad binding plan. (gen-plan [_ (assoc-in-plan [:foo :bar] 42) val (get-in-plan [:foo :bar])] val)" [binds id-expr] (let [binds (partition 2 binds) psym (gensym "plan_") forms (reduce (fn [acc [id expr]] (concat acc `[[~id ~psym] (~expr ~psym)])) [] binds)] `(fn [~psym] (let [~@forms] [~id-expr ~psym])))) (defn get-plan "Returns the final [id state] from a plan. " [f] (f {})) (defn push-binding "Sets the binding 'key' to value. This operation can be undone via pop-bindings. Bindings are stored in the state hashmap." [key value] (fn [plan] [nil (update-in plan [:bindings key] conj value)])) (defn push-alter-binding "Pushes the result of (apply f old-value args) as current value of binding key" [key f & args] (fn [plan] [nil (update-in plan [:bindings key] #(conj % (apply f (first %) args)))])) (defn get-binding "Gets the value of the current binding for key" [key] (fn [plan] [(first (get-in plan [:bindings key])) plan])) (defn pop-binding "Removes the most recent binding for key" [key] (fn [plan] [(first (get-in plan [:bindings key])) (update-in plan [:bindings key] pop)])) (defn no-op "This function can be used inside a gen-plan when no operation is to be performed" [] (fn [plan] [nil plan])) (defn all "Assumes that itms is a list of state monad function results, threads the state map through all of them. Returns a vector of all the results." [itms] (fn [plan] (reduce (fn [[ids plan] f] (let [[id plan] (f plan)] [(conj ids id) plan])) [[] plan] itms))) (defn assoc-in-plan "Same as assoc-in, but for state hash map" [path val] (fn [plan] [val (assoc-in plan path val)])) (defn update-in-plan "Same as update-in, but for a state hash map" [path f & args] (fn [plan] [nil (apply update-in plan path f args)])) (defn get-in-plan "Same as get-in, but for a state hash map" [path] (fn [plan] [(get-in plan path) plan])) (defn print-plan [] (fn [plan] (pprint plan) [nil plan])) (defn set-block "Sets the current block being written to by the functions. The next add-instruction call will append to this block" [block-id] (fn [plan] [block-id (assoc plan :current-block block-id)])) (defn get-block "Gets the current block" [] (fn [plan] [(:current-block plan) plan])) (defn add-block "Adds a new block, returns its id, but does not change the current block (does not call set-block)." [] (gen-plan [_ (update-in-plan [:block-id] (fnil inc 0)) blk-id (get-in-plan [:block-id]) cur-blk (get-block) _ (assoc-in-plan [:blocks blk-id] []) catches (get-binding :catch) _ (assoc-in-plan [:block-catches blk-id] catches) _ (if-not cur-blk (assoc-in-plan [:start-block] blk-id) (no-op))] blk-id)) (defn instruction? [x] (::instruction (meta x))) (defn add-instruction "Appends an instruction to the current block. " [inst] (let [inst-id (with-meta (gensym "inst_") {::instruction true}) inst (assoc inst :id inst-id)] (gen-plan [blk-id (get-block) _ (update-in-plan [:blocks blk-id] (fnil conj []) inst)] inst-id))) ;; ;; We're going to reduce Clojure expressions to a ssa format, ;; and then translate the instructions for this ;; virtual-virtual-machine back into Clojure data. ;; Here we define the instructions: (defprotocol IInstruction (reads-from [this] "Returns a list of instructions this instruction reads from") (writes-to [this] "Returns a list of instructions this instruction writes to") (block-references [this] "Returns all the blocks this instruction references")) (defprotocol IEmittableInstruction (emit-instruction [this state-sym] "Returns the clojure code that this instruction represents")) (defprotocol ITerminator (terminator-code [this] "Returns a unique symbol for this instruction") (terminate-block [this state-sym custom-terminators] "Emites the code to terminate a given block")) (defrecord Const [value] IInstruction (reads-from [this] [value]) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] (if (= value ::value) `[~(:id this) (aget-object ~state-sym ~VALUE-IDX)] `[~(:id this) ~value]))) (defrecord RawCode [ast locals] IInstruction (reads-from [this] (keep (or locals #{}) (map :name (-> ast :env :locals vals)))) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] (if (not-empty (reads-from this)) `[~@(->> (-> ast :env :locals vals) (map #(select-keys % [:op :name :form])) (filter (fn [local] (when locals (get locals (:name local))))) set (mapcat (fn [local] `[~(:form local) ~(get locals (:name local))]))) ~(:id this) ~(:form ast)] `[~(:id this) ~(:form ast)]))) (defrecord CustomTerminator [f blk values meta] IInstruction (reads-from [this] values) (writes-to [this] []) (block-references [this] []) ITerminator (terminate-block [this state-sym _] (with-meta `(~f ~state-sym ~blk ~@values) meta))) (defn- emit-clashing-binds [recur-nodes ids clashes] (let [temp-binds (reduce (fn [acc i] (assoc acc i (gensym "tmp"))) {} clashes)] (concat (mapcat (fn [i] `[~(temp-binds i) ~i]) clashes) (mapcat (fn [node id] `[~node ~(get temp-binds id id)]) recur-nodes ids)))) (defrecord Recur [recur-nodes ids] IInstruction (reads-from [this] ids) (writes-to [this] recur-nodes) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] (if-let [overlap (seq (intersection (set recur-nodes) (set ids)))] (emit-clashing-binds recur-nodes ids overlap) (mapcat (fn [r i] `[~r ~i]) recur-nodes ids)))) (defrecord Call [refs] IInstruction (reads-from [this] refs) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~(:id this) ~(seq refs)])) (defrecord StaticCall [class method refs] IInstruction (reads-from [this] refs) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~(:id this) (. ~class ~method ~@(seq refs))])) (defrecord InstanceInterop [instance-id op refs] IInstruction (reads-from [this] (cons instance-id refs)) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~(:id this) (. ~instance-id ~op ~@(seq refs))])) (defrecord Case [val-id test-vals jmp-blocks default-block] IInstruction (reads-from [this] [val-id]) (writes-to [this] []) (block-references [this] []) ITerminator (terminate-block [this state-sym _] `(do (case ~val-id ~@(concat (mapcat (fn [test blk] `[~test (aset-all! ~state-sym ~STATE-IDX ~blk)]) test-vals jmp-blocks) (when default-block `[(do (aset-all! ~state-sym ~STATE-IDX ~default-block) :recur)]))) :recur))) (defrecord Fn [fn-expr local-names local-refs] IInstruction (reads-from [this] local-refs) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~(:id this) (let [~@(interleave local-names local-refs)] ~@fn-expr)])) (defrecord Dot [cls-or-instance method args] IInstruction (reads-from [this] `[~cls-or-instance ~method ~@args]) (writes-to [this] [(:id this)]) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~(:id this) (. ~cls-or-instance ~method ~@args)])) (defrecord Jmp [value block] IInstruction (reads-from [this] [value]) (writes-to [this] []) (block-references [this] [block]) ITerminator (terminate-block [this state-sym _] `(do (aset-all! ~state-sym ~VALUE-IDX ~value ~STATE-IDX ~block) :recur))) (defrecord Return [value] IInstruction (reads-from [this] [value]) (writes-to [this] []) (block-references [this] []) ITerminator (terminator-code [this] :Return) (terminate-block [this state-sym custom-terminators] (if-let [f (get custom-terminators (terminator-code this))] `(~f ~state-sym ~value) `(do (aset-all! ~state-sym ~VALUE-IDX ~value ~STATE-IDX ::finished) nil)))) (defrecord CondBr [test then-block else-block] IInstruction (reads-from [this] [test]) (writes-to [this] []) (block-references [this] [then-block else-block]) ITerminator (terminate-block [this state-sym _] `(do (if ~test (aset-all! ~state-sym ~STATE-IDX ~then-block) (aset-all! ~state-sym ~STATE-IDX ~else-block)) :recur))) (defrecord PushTry [catch-block] IInstruction (reads-from [this] []) (writes-to [this] []) (block-references [this] [catch-block]) IEmittableInstruction (emit-instruction [this state-sym] `[~'_ (aset-all! ~state-sym ~EXCEPTION-FRAMES (cons ~catch-block (aget-object ~state-sym ~EXCEPTION-FRAMES)))])) (defrecord PopTry [] IInstruction (reads-from [this] []) (writes-to [this] []) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~'_ (aset-all! ~state-sym ~EXCEPTION-FRAMES (rest (aget-object ~state-sym ~EXCEPTION-FRAMES)))])) (defrecord CatchHandler [catches] IInstruction (reads-from [this] []) (writes-to [this] []) (block-references [this] (map first catches)) ITerminator (terminate-block [this state-sym _] (let [ex (gensym 'ex)] `(let [~ex (aget-object ~state-sym ~VALUE-IDX)] (aset-all! ~state-sym ~CURRENT-EXCEPTION ~ex) (cond ~@(for [[handler-idx type] catches i [`(instance? ~type ~ex) ` (aset-all! ~state-sym ~STATE-IDX ~handler-idx ~CURRENT-EXCEPTION nil)]] i) :else (throw ~ex)) :recur)))) (defrecord EndFinally [] IInstruction (reads-from [this] []) (writes-to [this] []) (block-references [this] []) IEmittableInstruction (emit-instruction [this state-sym] `[~'_ (when-let [e# (aget-object ~state-sym ~CURRENT-EXCEPTION)] (throw e#))])) ;; Dispatch clojure forms based on :op (def -item-to-ssa nil) ;; for help in the repl (defmulti -item-to-ssa :op) (defmethod -item-to-ssa :default [ast] (gen-plan [locals (get-binding :locals) id (add-instruction (->RawCode ast locals))] id)) (defn item-to-ssa [ast] (if (or (::transform? ast) (contains? #{:local :const :quote} (:op ast))) (-item-to-ssa ast) (gen-plan [locals (get-binding :locals) id (add-instruction (->RawCode ast locals))] id))) (defmethod -item-to-ssa :invoke [{f :fn args :args}] (gen-plan [arg-ids (all (map item-to-ssa (cons f args))) inst-id (add-instruction (->Call arg-ids))] inst-id)) (defmethod -item-to-ssa :keyword-invoke [{f :keyword target :target}] (gen-plan [arg-ids (all (map item-to-ssa (list f target))) inst-id (add-instruction (->Call arg-ids))] inst-id)) (defmethod -item-to-ssa :protocol-invoke [{f :protocol-fn target :target args :args}] (gen-plan [arg-ids (all (map item-to-ssa (list* f target args))) inst-id (add-instruction (->Call arg-ids))] inst-id)) (defmethod -item-to-ssa :instance? [{:keys [class target]}] (gen-plan [arg-id (item-to-ssa target) inst-id (add-instruction (->Call (list `instance? class arg-id)))] inst-id)) (defmethod -item-to-ssa :prim-invoke [{f :fn args :args}] (gen-plan [arg-ids (all (map item-to-ssa (cons f args))) inst-id (add-instruction (->Call arg-ids))] inst-id)) (defmethod -item-to-ssa :instance-call [{:keys [instance method args]}] (gen-plan [arg-ids (all (map item-to-ssa args)) instance-id (item-to-ssa instance) inst-id (add-instruction (->InstanceInterop instance-id method arg-ids))] inst-id)) (defmethod -item-to-ssa :instance-field [{:keys [instance field]}] (gen-plan [instance-id (item-to-ssa instance) inst-id (add-instruction (->InstanceInterop instance-id (symbol (str "-" field)) ()))] inst-id)) (defmethod -item-to-ssa :host-interop [{:keys [target m-or-f]}] (gen-plan [instance-id (item-to-ssa target) inst-id (add-instruction (->InstanceInterop instance-id m-or-f ()))] inst-id)) (defmethod -item-to-ssa :static-call [{:keys [class method args]}] (gen-plan [arg-ids (all (map item-to-ssa args)) inst-id (add-instruction (->StaticCall class method arg-ids))] inst-id)) (defmethod -item-to-ssa :set! [{:keys [val target]}] (gen-plan [arg-ids (all (map item-to-ssa (list target val))) inst-id (add-instruction (->Call (cons 'set! arg-ids)))] inst-id)) (defn var-name [v] (let [nm (:name (meta v)) nsp (.getName ^clojure.lang.Namespace (:ns (meta v)))] (symbol (name nsp) (name nm)))) (defmethod -item-to-ssa :var [{:keys [var]}] (gen-plan [] (var-name var))) (defmethod -item-to-ssa :const [{:keys [form]}] (gen-plan [] form)) (defn let-binding-to-ssa [{:keys [name init form]}] (gen-plan [bind-id (item-to-ssa init) _ (push-alter-binding :locals assoc (vary-meta name merge (meta form)) bind-id)] bind-id)) (defmethod -item-to-ssa :let [{:keys [bindings body]}] (gen-plan [let-ids (all (map let-binding-to-ssa bindings)) _ (all (map (fn [_] (pop-binding :locals)) bindings)) local-ids (all (map (comp add-instruction ->Const) let-ids)) _ (push-alter-binding :locals merge (into {} (map (fn [id {:keys [name form]}] [name (vary-meta id merge (meta form))]) local-ids bindings))) body-id (item-to-ssa body) _ (pop-binding :locals)] body-id)) (defmethod -item-to-ssa :loop [{:keys [body bindings] :as ast}] (gen-plan [local-val-ids (all (map let-binding-to-ssa bindings)) _ (all (for [_ bindings] (pop-binding :locals))) local-ids (all (map (comp add-instruction ->Const) local-val-ids)) body-blk (add-block) final-blk (add-block) _ (add-instruction (->Jmp nil body-blk)) _ (set-block body-blk) _ (push-alter-binding :locals merge (into {} (map (fn [id {:keys [name form]}] [name (vary-meta id merge (meta form))]) local-ids bindings))) _ (push-binding :recur-point body-blk) _ (push-binding :recur-nodes local-ids) ret-id (item-to-ssa body) _ (pop-binding :recur-nodes) _ (pop-binding :recur-point) _ (pop-binding :locals) _ (if (not= ret-id ::terminated) (add-instruction (->Jmp ret-id final-blk)) (no-op)) _ (set-block final-blk) ret-id (add-instruction (->Const ::value))] ret-id)) (defmethod -item-to-ssa :do [{:keys [statements ret] :as ast}] (gen-plan [_ (all (map item-to-ssa statements)) ret-id (item-to-ssa ret)] ret-id)) (defmethod -item-to-ssa :case [{:keys [test tests thens default] :as ast}] (gen-plan [end-blk (add-block) start-blk (get-block) clause-blocks (all (map (fn [expr] (assert expr) (gen-plan [blk-id (add-block) _ (set-block blk-id) expr-id (item-to-ssa expr) _ (if (not= expr-id ::terminated) (add-instruction (->Jmp expr-id end-blk)) (no-op))] blk-id)) (map :then thens))) default-block (if default (gen-plan [blk-id (add-block) _ (set-block blk-id) expr-id (item-to-ssa default) _ (if (not= expr-id ::terminated) (add-instruction (->Jmp expr-id end-blk)) (no-op))] blk-id) (no-op)) _ (set-block start-blk) val-id (item-to-ssa test) case-id (add-instruction (->Case val-id (map (comp :form :test) tests) clause-blocks default-block)) _ (set-block end-blk) ret-id (add-instruction (->Const ::value))] ret-id)) (defmethod -item-to-ssa :quote [{:keys [form]}] (gen-plan [ret-id (add-instruction (->Const form))] ret-id)) (defmethod -item-to-ssa :try [{:keys [catches body finally] :as ast}] (gen-plan [body-block (add-block) exit-block (add-block) ;; Two routes to the finally block, via normal execution and ;; exception execution finally-blk (if finally (gen-plan [cur-blk (get-block) finally-blk (add-block) _ (set-block finally-blk) result-id (add-instruction (->Const ::value)) _ (item-to-ssa finally) ;; rethrow exception on exception path _ (add-instruction (->EndFinally)) _ (add-instruction (->Jmp result-id exit-block)) _ (set-block cur-blk)] finally-blk) (gen-plan [] exit-block)) catch-blocks (all (for [{ex-bind :local {ex :val} :class catch-body :body} catches] (gen-plan [cur-blk (get-block) catch-blk (add-block) _ (set-block catch-blk) ex-id (add-instruction (->Const ::value)) _ (push-alter-binding :locals assoc (:name ex-bind) (vary-meta ex-id merge (when (:tag ex-bind) {:tag (.getName ^Class (:tag ex-bind))}))) result-id (item-to-ssa catch-body) ;; if there is a finally, jump to it after ;; handling the exception, if not jump to exit _ (add-instruction (->Jmp result-id finally-blk)) _ (pop-binding :locals) _ (set-block cur-blk)] [catch-blk ex]))) ;; catch block handler routes exceptions to the correct handler, ;; rethrows if there is no match catch-handler-block (add-block) cur-blk (get-block) _ (set-block catch-handler-block) _ (add-instruction (->CatchHandler catch-blocks)) _ (set-block cur-blk) _ (add-instruction (->Jmp nil body-block)) _ (set-block body-block) ;; the finally gets pushed on to the exception handler stack, so ;; it will be executed if there is an exception _ (if finally (add-instruction (->PushTry finally-blk)) (no-op)) _ (add-instruction (->PushTry catch-handler-block)) body (item-to-ssa body) _ (add-instruction (->PopTry)) _ (if finally (add-instruction (->PopTry)) (no-op)) ;; if the body finishes executing normally, jump to the finally ;; block, if it exists _ (add-instruction (->Jmp body finally-blk)) _ (set-block exit-block) ret (add-instruction (->Const ::value))] ret)) (defmethod -item-to-ssa :throw [{:keys [exception] :as ast}] (gen-plan [exception-id (item-to-ssa exception) ret-id (add-instruction (->Call ['throw exception-id]))] ret-id)) (defmethod -item-to-ssa :new [{:keys [args class] :as ast}] (gen-plan [arg-ids (all (map item-to-ssa args)) ret-id (add-instruction (->Call (list* 'new (:val class) arg-ids)))] ret-id)) (defmethod -item-to-ssa :recur [{:keys [exprs] :as ast}] (gen-plan [val-ids (all (map item-to-ssa exprs)) recurs (get-binding :recur-nodes) _ (do (assert (= (count val-ids) (count recurs)) "Wrong number of arguments to recur") (no-op)) _ (add-instruction (->Recur recurs val-ids)) recur-point (get-binding :recur-point) _ (add-instruction (->Jmp nil recur-point))] ::terminated)) (defmethod -item-to-ssa :if [{:keys [test then else]}] (gen-plan [test-id (item-to-ssa test) then-blk (add-block) else-blk (add-block) final-blk (add-block) _ (add-instruction (->CondBr test-id then-blk else-blk)) _ (set-block then-blk) then-id (item-to-ssa then) _ (if (not= then-id ::terminated) (gen-plan [_ (add-instruction (->Jmp then-id final-blk))] then-id) (no-op)) _ (set-block else-blk) else-id (item-to-ssa else) _ (if (not= else-id ::terminated) (gen-plan [_ (add-instruction (->Jmp else-id final-blk))] then-id) (no-op)) _ (set-block final-blk) val-id (add-instruction (->Const ::value))] val-id)) (defmethod -item-to-ssa :transition [{:keys [name args form]}] (gen-plan [blk (add-block) vals (all (map item-to-ssa args)) val (add-instruction (->CustomTerminator name blk vals (meta form))) _ (set-block blk) res (add-instruction (->Const ::value))] res)) (defmethod -item-to-ssa :local [{:keys [name form]}] (gen-plan [locals (get-binding :locals) inst-id (if (contains? locals name) (fn [p] [(locals name) p]) (fn [p] [form p]))] inst-id)) (defmethod -item-to-ssa :map [{:keys [keys vals]}] (gen-plan [keys-ids (all (map item-to-ssa keys)) vals-ids (all (map item-to-ssa vals)) id (add-instruction (->Call (cons 'clojure.core/hash-map (interleave keys-ids vals-ids))))] id)) (defmethod -item-to-ssa :with-meta [{:keys [expr meta]}] (gen-plan [meta-id (item-to-ssa meta) expr-id (item-to-ssa expr) id (add-instruction (->Call (list 'clojure.core/with-meta expr-id meta-id)))] id)) (defmethod -item-to-ssa :record [x] (-item-to-ssa `(~(symbol (.getName (class x)) "create") (hash-map ~@(mapcat identity x))))) (defmethod -item-to-ssa :vector [{:keys [items]}] (gen-plan [item-ids (all (map item-to-ssa items)) id (add-instruction (->Call (cons 'clojure.core/vector item-ids)))] id)) (defmethod -item-to-ssa :set [{:keys [items]}] (gen-plan [item-ids (all (map item-to-ssa items)) id (add-instruction (->Call (cons 'clojure.core/hash-set item-ids)))] id)) (defn parse-to-state-machine "Takes an sexpr and returns a hashmap that describes the execution flow of the sexpr as a series of SSA style blocks." [body terminators] (-> (gen-plan [_ (push-binding :terminators terminators) blk (add-block) _ (set-block blk) id (item-to-ssa body) term-id (add-instruction (->Return id)) _ (pop-binding :terminators)] term-id) get-plan)) (defn index-instruction [blk-id idx inst] (let [idx (reduce (fn [acc id] (update-in acc [id :read-in] (fnil conj #{}) blk-id)) idx (filter instruction? (reads-from inst))) idx (reduce (fn [acc id] (update-in acc [id :written-in] (fnil conj #{}) blk-id)) idx (filter instruction? (writes-to inst)))] idx)) (defn index-block [idx [blk-id blk]] (reduce (partial index-instruction blk-id) idx blk)) (defn index-state-machine [machine] (reduce index-block {} (:blocks machine))) (defn id-for-inst [m sym] ;; m :: symbols -> integers (if-let [i (get @m sym)] i (let [next-idx (get @m ::next-idx)] (swap! m assoc sym next-idx) (swap! m assoc ::next-idx (inc next-idx)) next-idx))) (defn persistent-value? "Returns true if this value should be saved in the state hash map" [index value] (or (not= (-> index value :read-in) (-> index value :written-in)) (-> index value :read-in count (> 1)))) (defn count-persistent-values [index] (->> (keys index) (filter instruction?) (filter (partial persistent-value? index)) count)) (defn- build-block-preamble [local-map idx state-sym blk] (let [args (->> (mapcat reads-from blk) (filter instruction?) (filter (partial persistent-value? idx)) set vec)] (if (empty? args) [] (mapcat (fn [sym] `[~sym (aget-object ~state-sym ~(id-for-inst local-map sym))]) args)))) (defn- build-block-body [state-sym blk] (mapcat #(emit-instruction % state-sym) (butlast blk))) (defn- build-new-state [local-map idx state-sym blk] (let [results (->> blk (mapcat writes-to) (filter instruction?) (filter (partial persistent-value? idx)) set vec) results (interleave (map (partial id-for-inst local-map) results) results)] (if-not (empty? results) [state-sym `(aset-all! ~state-sym ~@results)] []))) (defn- emit-state-machine [machine num-user-params custom-terminators] (let [index (index-state-machine machine) state-sym (with-meta (gensym "state_") {:tag 'objects}) local-start-idx (+ num-user-params USER-START-IDX) state-arr-size (+ local-start-idx (count-persistent-values index)) local-map (atom {::next-idx local-start-idx}) block-catches (:block-catches machine)] `(fn state-machine# ([] (aset-all! (AtomicReferenceArray. ~state-arr-size) ~FN-IDX state-machine# ~STATE-IDX ~(:start-block machine))) ([~state-sym] (let [old-frame# (clojure.lang.Var/getThreadBindingFrame) ret-value# (try (clojure.lang.Var/resetThreadBindingFrame (aget-object ~state-sym ~BINDINGS-IDX)) (loop [] (let [result# (case (int (aget-object ~state-sym ~STATE-IDX)) ~@(mapcat (fn [[id blk]] [id `(let [~@(concat (build-block-preamble local-map index state-sym blk) (build-block-body state-sym blk)) ~@(build-new-state local-map index state-sym blk)] ~(terminate-block (last blk) state-sym custom-terminators))]) (:blocks machine)))] (if (identical? result# :recur) (recur) result#))) (catch Throwable ex# (aset-all! ~state-sym ~VALUE-IDX ex#) (if (seq (aget-object ~state-sym ~EXCEPTION-FRAMES)) (aset-all! ~state-sym ~STATE-IDX (first (aget-object ~state-sym ~EXCEPTION-FRAMES)) ~EXCEPTION-FRAMES (rest (aget-object ~state-sym ~EXCEPTION-FRAMES))) (throw ex#)) :recur) (finally (clojure.lang.Var/resetThreadBindingFrame old-frame#)))] (if (identical? ret-value# :recur) (recur ~state-sym) ret-value#)))))) (defn finished? "Returns true if the machine is in a finished state" [state-array] (identical? (aget-object state-array STATE-IDX) ::finished)) (defn- fn-handler [f] (reify Lock (lock [_]) (unlock [_]) impl/Handler (active? [_] true) (blockable? [_] true) (lock-id [_] 0) (commit [_] f))) (defn run-state-machine [state] ((aget-object state FN-IDX) state)) (defn run-state-machine-wrapped [state] (try (run-state-machine state) (catch Throwable ex (impl/close! (aget-object state USER-START-IDX)) (throw ex)))) (defn take! [state blk c] (if-let [cb (impl/take! c (fn-handler (fn [x] (aset-all! state VALUE-IDX x STATE-IDX blk) (run-state-machine-wrapped state))))] (do (aset-all! state VALUE-IDX @cb STATE-IDX blk) :recur) nil)) (defn put! [state blk c val] (if-let [cb (impl/put! c val (fn-handler (fn [ret-val] (aset-all! state VALUE-IDX ret-val STATE-IDX blk) (run-state-machine-wrapped state))))] (do (aset-all! state VALUE-IDX @cb STATE-IDX blk) :recur) nil)) (defn return-chan [state value] (let [c (aget-object state USER-START-IDX)] (when-not (nil? value) (impl/put! c value (fn-handler (fn [] nil)))) (impl/close! c) c)) (def async-custom-terminators {'clojure.core.async/<! `take! 'clojure.core.async/>! `put! 'clojure.core.async/alts! 'clojure.core.async/ioc-alts! :Return `return-chan}) (defn mark-transitions {:pass-info {:walk :post :depends #{} :after an-jvm/default-passes}} [{:keys [op fn] :as ast}] (let [transitions (-> (env/deref-env) :passes-opts :mark-transitions/transitions)] (if (and (= op :invoke) (= (:op fn) :var) (contains? transitions (var-name (:var fn)))) (merge ast {:op :transition :name (get transitions (var-name (:var fn)))}) ast))) (defn propagate-transitions {:pass-info {:walk :post :depends #{#'mark-transitions}}} [{:keys [op] :as ast}] (if (or (= op :transition) (some #(or (= (:op %) :transition) (::transform? %)) (ast/children ast))) (assoc ast ::transform? true) ast)) (defn propagate-recur {:pass-info {:walk :post :depends #{#'annotate-loops #'propagate-transitions}}} [ast] (if (and (= (:op ast) :loop) (::transform? ast)) ;; If we are a loop and we need to transform, and ;; one of our children is a recur, then we must transform everything ;; that has a recur (let [loop-id (:loop-id ast)] (ast/postwalk ast #(if (contains? (:loops %) loop-id) (assoc % ::transform? true) %))) ast)) (defn nested-go? [env] (-> env vals first map?)) (defn make-env [input-env crossing-env] (assoc (an-jvm/empty-env) :locals (into {} (if (nested-go? input-env) (for [[l expr] input-env :let [local (get crossing-env l)]] [local (-> expr (assoc :form local) (assoc :name local))]) (for [l (keys input-env) :let [local (get crossing-env l)]] [local {:op :local :form local :name local}]))))) (defn pdebug [x] (clojure.pprint/pprint x) (println "----") x) (def passes (into (disj an-jvm/default-passes #'warn-on-reflection) #{#'propagate-recur #'propagate-transitions #'mark-transitions})) (def run-passes (schedule passes)) (defn emit-hinted [local tag env] (let [tag (or tag (-> local meta :tag)) init (list (get env local))] (if-let [prim-fn (case (cond-> tag (string? tag) symbol) int `int long `long char `char float `float double `double byte `byte short `short boolean `boolean nil)] [(vary-meta local dissoc :tag) (list prim-fn init)] [(vary-meta local merge (when tag {:tag tag})) init]))) (defn state-machine [body num-user-params [crossing-env env] user-transitions] (binding [an-jvm/run-passes run-passes] (-> (an-jvm/analyze `(let [~@(if (nested-go? env) (mapcat (fn [[l {:keys [tag]}]] (emit-hinted l tag crossing-env)) env) (mapcat (fn [[l ^clojure.lang.Compiler$LocalBinding lb]] (emit-hinted l (when (.hasJavaClass lb) (some-> lb .getJavaClass .getName)) crossing-env)) env))] ~body) (make-env env crossing-env) {:passes-opts (merge an-jvm/default-passes-opts {:uniquify/uniquify-env true :mark-transitions/transitions user-transitions})}) (parse-to-state-machine user-transitions) second (emit-state-machine num-user-params user-transitions))))
[ { "context": " [:h1 {:style \"margin: auto;\"} \"Trwa uruchamianie Smyrny, proszę czekać...\"]]]\n (include-js \"js/app.js", "end": 1411, "score": 0.9916498064994812, "start": 1405, "tag": "NAME", "value": "Smyrny" } ]
src/clj/smyrna/handler.clj
nathell/smyrna
4
(ns smyrna.handler (:require [hiccup.page :refer [include-js include-css html5]] [hiccup.core :refer [html]] [smyrna.middleware :refer [wrap-middleware]] [smyrna.build :as build] [smyrna.corpus :as corpus] [smyrna.search :as search] [smyrna.task :as task] [clojure.edn :as edn] [smyrna.meta :as meta] [compojure.core :refer [GET POST defroutes]] [clojure.java.io :as io] [clojure.data.csv :as csv] [taoensso.timbre :refer [infof]] [environ.core :refer [env]])) (def corpora (atom {})) (defn getc [x] (when x ;; FIXME: corpus/open creates an empty corpus file (let [x (if (string? x) (Long/parseLong x) x) name (@corpus/corpus-keys x)] (or (@corpora name) (let [path (format "%s/%s.smyrna" corpus/corpora-path name) corpus (corpus/open path)] (swap! corpora assoc name corpus) corpus))))) (def loading-page (html5 [:head [:meta {:charset "utf-8"}] [:meta {:name "viewport" :content "width=device-width, initial-scale=1"}] [:title "Smyrna"] (include-css (if (env :dev) "css/root.css" "css/root.min.css"))] [:body [:div#app [:div {:style "display: flex; height: 100%;"} [:h1 {:style "margin: auto;"} "Trwa uruchamianie Smyrny, proszę czekać..."]]] (include-js "js/app.js") (include-js "js/d3.layout.cloud.js") ])) (defn edn-response-raw ([body] (edn-response-raw {} body)) ([extra-header body] {:status 200, :headers (into {"Content-Type" "application/edn; charset=UTF-8"} extra-header), :body body})) (defn edn-response ([x] (edn-response {} x)) ([extra-header x] (edn-response-raw extra-header (pr-str x)))) (defn files [dir] (->> (for [f (.listFiles (io/file dir)) :let [name (.getName f) dir? (.isDirectory f)] :when (or dir? (.endsWith name ".csv"))] {:file name, :dir (.isDirectory f)}) (sort-by :file))) (defmacro api [f params & body] (let [url (str "/api/" (name f)) content `(edn-response (do ~@body)) req-body `body#] `(POST ~url ~(if (not= params []) `{~req-body :body} []) ~(if (not= params []) `(let [~params (edn/read-string (slurp ~req-body))] ~content) content)))) (def default-header "<style>.match { background-color: yellow; } .selected { font-size: 150%; }</style>") (defn display-document [corpus phrase doc-id] (let [corpus (getc corpus) i (.indexOf (:paths corpus) doc-id) html-header (when-let [custom (:custom corpus)] (:html-header custom))] (when (>= i 0) (str default-header html-header (html (corpus/deserialize (if phrase (search/highlight-doc corpus (corpus/read-document corpus i :lookup false) phrase) (corpus/read-document corpus i)))))))) (defroutes routes (GET "/" [] loading-page) (GET "/frequency-list/:corpus/:area" [corpus area] {:status 200, :headers {"Content-Type" "text/csv; charset=utf-8", "Content-Disposition" (format "attachment; filename=\"lista-frekwencyjna-%s.csv\"" area)}, :body (with-out-str (csv/write-csv *out* (search/frequency-list (getc corpus) area)))}) (GET "/highlight/:corpus/:phrase/*" [corpus phrase *] (display-document corpus phrase *)) (GET "/corpus/:corpus/*" [corpus *] (display-document corpus nil *)) (api get-corpora [] (corpus/list-corpora)) (api get-documents params (:results (search/get-documents (getc (:corpus params)) params))) (api get-corpus-info {:keys [corpus]} {:metadata (meta/get-header (:meta (getc corpus))), :custom (:custom (getc corpus)), :contexts (vec (sort-by first (map (fn [[k v]] [k (:description v)]) @search/contexts)))}) (api get-task-info [] (task/get-info)) (api frequency-list {:keys [context corpus]} (search/frequency-list (getc corpus) context)) (api create-context {:keys [name description corpus]} (search/create-context (getc corpus) name description) "OK") (api compare-contexts [c1 c2 corpus] (search/compare-contexts (getc corpus) c1 c2)) (api tree path (files path)) (api create-corpus {:keys [name file]} (task/launch (build/build name file)) "OK")) (def app (wrap-middleware #'routes))
4051
(ns smyrna.handler (:require [hiccup.page :refer [include-js include-css html5]] [hiccup.core :refer [html]] [smyrna.middleware :refer [wrap-middleware]] [smyrna.build :as build] [smyrna.corpus :as corpus] [smyrna.search :as search] [smyrna.task :as task] [clojure.edn :as edn] [smyrna.meta :as meta] [compojure.core :refer [GET POST defroutes]] [clojure.java.io :as io] [clojure.data.csv :as csv] [taoensso.timbre :refer [infof]] [environ.core :refer [env]])) (def corpora (atom {})) (defn getc [x] (when x ;; FIXME: corpus/open creates an empty corpus file (let [x (if (string? x) (Long/parseLong x) x) name (@corpus/corpus-keys x)] (or (@corpora name) (let [path (format "%s/%s.smyrna" corpus/corpora-path name) corpus (corpus/open path)] (swap! corpora assoc name corpus) corpus))))) (def loading-page (html5 [:head [:meta {:charset "utf-8"}] [:meta {:name "viewport" :content "width=device-width, initial-scale=1"}] [:title "Smyrna"] (include-css (if (env :dev) "css/root.css" "css/root.min.css"))] [:body [:div#app [:div {:style "display: flex; height: 100%;"} [:h1 {:style "margin: auto;"} "Trwa uruchamianie <NAME>, proszę czekać..."]]] (include-js "js/app.js") (include-js "js/d3.layout.cloud.js") ])) (defn edn-response-raw ([body] (edn-response-raw {} body)) ([extra-header body] {:status 200, :headers (into {"Content-Type" "application/edn; charset=UTF-8"} extra-header), :body body})) (defn edn-response ([x] (edn-response {} x)) ([extra-header x] (edn-response-raw extra-header (pr-str x)))) (defn files [dir] (->> (for [f (.listFiles (io/file dir)) :let [name (.getName f) dir? (.isDirectory f)] :when (or dir? (.endsWith name ".csv"))] {:file name, :dir (.isDirectory f)}) (sort-by :file))) (defmacro api [f params & body] (let [url (str "/api/" (name f)) content `(edn-response (do ~@body)) req-body `body#] `(POST ~url ~(if (not= params []) `{~req-body :body} []) ~(if (not= params []) `(let [~params (edn/read-string (slurp ~req-body))] ~content) content)))) (def default-header "<style>.match { background-color: yellow; } .selected { font-size: 150%; }</style>") (defn display-document [corpus phrase doc-id] (let [corpus (getc corpus) i (.indexOf (:paths corpus) doc-id) html-header (when-let [custom (:custom corpus)] (:html-header custom))] (when (>= i 0) (str default-header html-header (html (corpus/deserialize (if phrase (search/highlight-doc corpus (corpus/read-document corpus i :lookup false) phrase) (corpus/read-document corpus i)))))))) (defroutes routes (GET "/" [] loading-page) (GET "/frequency-list/:corpus/:area" [corpus area] {:status 200, :headers {"Content-Type" "text/csv; charset=utf-8", "Content-Disposition" (format "attachment; filename=\"lista-frekwencyjna-%s.csv\"" area)}, :body (with-out-str (csv/write-csv *out* (search/frequency-list (getc corpus) area)))}) (GET "/highlight/:corpus/:phrase/*" [corpus phrase *] (display-document corpus phrase *)) (GET "/corpus/:corpus/*" [corpus *] (display-document corpus nil *)) (api get-corpora [] (corpus/list-corpora)) (api get-documents params (:results (search/get-documents (getc (:corpus params)) params))) (api get-corpus-info {:keys [corpus]} {:metadata (meta/get-header (:meta (getc corpus))), :custom (:custom (getc corpus)), :contexts (vec (sort-by first (map (fn [[k v]] [k (:description v)]) @search/contexts)))}) (api get-task-info [] (task/get-info)) (api frequency-list {:keys [context corpus]} (search/frequency-list (getc corpus) context)) (api create-context {:keys [name description corpus]} (search/create-context (getc corpus) name description) "OK") (api compare-contexts [c1 c2 corpus] (search/compare-contexts (getc corpus) c1 c2)) (api tree path (files path)) (api create-corpus {:keys [name file]} (task/launch (build/build name file)) "OK")) (def app (wrap-middleware #'routes))
true
(ns smyrna.handler (:require [hiccup.page :refer [include-js include-css html5]] [hiccup.core :refer [html]] [smyrna.middleware :refer [wrap-middleware]] [smyrna.build :as build] [smyrna.corpus :as corpus] [smyrna.search :as search] [smyrna.task :as task] [clojure.edn :as edn] [smyrna.meta :as meta] [compojure.core :refer [GET POST defroutes]] [clojure.java.io :as io] [clojure.data.csv :as csv] [taoensso.timbre :refer [infof]] [environ.core :refer [env]])) (def corpora (atom {})) (defn getc [x] (when x ;; FIXME: corpus/open creates an empty corpus file (let [x (if (string? x) (Long/parseLong x) x) name (@corpus/corpus-keys x)] (or (@corpora name) (let [path (format "%s/%s.smyrna" corpus/corpora-path name) corpus (corpus/open path)] (swap! corpora assoc name corpus) corpus))))) (def loading-page (html5 [:head [:meta {:charset "utf-8"}] [:meta {:name "viewport" :content "width=device-width, initial-scale=1"}] [:title "Smyrna"] (include-css (if (env :dev) "css/root.css" "css/root.min.css"))] [:body [:div#app [:div {:style "display: flex; height: 100%;"} [:h1 {:style "margin: auto;"} "Trwa uruchamianie PI:NAME:<NAME>END_PI, proszę czekać..."]]] (include-js "js/app.js") (include-js "js/d3.layout.cloud.js") ])) (defn edn-response-raw ([body] (edn-response-raw {} body)) ([extra-header body] {:status 200, :headers (into {"Content-Type" "application/edn; charset=UTF-8"} extra-header), :body body})) (defn edn-response ([x] (edn-response {} x)) ([extra-header x] (edn-response-raw extra-header (pr-str x)))) (defn files [dir] (->> (for [f (.listFiles (io/file dir)) :let [name (.getName f) dir? (.isDirectory f)] :when (or dir? (.endsWith name ".csv"))] {:file name, :dir (.isDirectory f)}) (sort-by :file))) (defmacro api [f params & body] (let [url (str "/api/" (name f)) content `(edn-response (do ~@body)) req-body `body#] `(POST ~url ~(if (not= params []) `{~req-body :body} []) ~(if (not= params []) `(let [~params (edn/read-string (slurp ~req-body))] ~content) content)))) (def default-header "<style>.match { background-color: yellow; } .selected { font-size: 150%; }</style>") (defn display-document [corpus phrase doc-id] (let [corpus (getc corpus) i (.indexOf (:paths corpus) doc-id) html-header (when-let [custom (:custom corpus)] (:html-header custom))] (when (>= i 0) (str default-header html-header (html (corpus/deserialize (if phrase (search/highlight-doc corpus (corpus/read-document corpus i :lookup false) phrase) (corpus/read-document corpus i)))))))) (defroutes routes (GET "/" [] loading-page) (GET "/frequency-list/:corpus/:area" [corpus area] {:status 200, :headers {"Content-Type" "text/csv; charset=utf-8", "Content-Disposition" (format "attachment; filename=\"lista-frekwencyjna-%s.csv\"" area)}, :body (with-out-str (csv/write-csv *out* (search/frequency-list (getc corpus) area)))}) (GET "/highlight/:corpus/:phrase/*" [corpus phrase *] (display-document corpus phrase *)) (GET "/corpus/:corpus/*" [corpus *] (display-document corpus nil *)) (api get-corpora [] (corpus/list-corpora)) (api get-documents params (:results (search/get-documents (getc (:corpus params)) params))) (api get-corpus-info {:keys [corpus]} {:metadata (meta/get-header (:meta (getc corpus))), :custom (:custom (getc corpus)), :contexts (vec (sort-by first (map (fn [[k v]] [k (:description v)]) @search/contexts)))}) (api get-task-info [] (task/get-info)) (api frequency-list {:keys [context corpus]} (search/frequency-list (getc corpus) context)) (api create-context {:keys [name description corpus]} (search/create-context (getc corpus) name description) "OK") (api compare-contexts [c1 c2 corpus] (search/compare-contexts (getc corpus) c1 c2)) (api tree path (files path)) (api create-corpus {:keys [name file]} (task/launch (build/build name file)) "OK")) (def app (wrap-middleware #'routes))
[ { "context": "e monitor (Object.))\n(def ^:private location-key \"webdriver.chrome.driver\")\n(def ^:private temp-dir (System/getProperty \"ja", "end": 325, "score": 0.9982517957687378, "start": 302, "tag": "KEY", "value": "webdriver.chrome.driver" } ]
src/chrome_driver_clj/core.clj
olecve/chrome-driver-clj
0
(ns chrome-driver-clj.core (:require [clojure.java.io :as io] [clojure.string :refer [includes? lower-case]] [taoensso.timbre :refer [info]]) (:import (java.io File) (java.util.zip ZipInputStream))) (def ^:private monitor (Object.)) (def ^:private location-key "webdriver.chrome.driver") (def ^:private temp-dir (System/getProperty "java.io.tmpdir")) (def ^:private root-uri "http://chromedriver.storage.googleapis.com/") (def ^:private latest-release-version-uri (str root-uri "LATEST_RELEASE")) (defn- get-latest-release-version [] (slurp latest-release-version-uri)) (defn- create-driver-uri [os driver-version] (str root-uri driver-version "/chromedriver_" os ".zip")) (defn- download [uri file] (with-open [in (io/input-stream uri) out (io/output-stream file)] (io/copy in out))) (defn- unzip [absolute-path-to-zip absolute-path] (let [zip-stream (ZipInputStream. (io/input-stream absolute-path-to-zip))] (.getNextEntry zip-stream) (io/copy (io/input-stream zip-stream) (io/file absolute-path)) (.closeEntry zip-stream) (.close zip-stream))) (defn- file-exists? [absolute-path] (.exists (io/as-file absolute-path))) (defn- os-name->file-and-os-names [os-name driver-version] (cond (includes? os-name "win") {:file-name (str "chromedriver-" driver-version ".exe") :os "win32"} (includes? os-name "nux") {:file-name (str "chromedriver-" driver-version) :os "linux64"} (includes? os-name "mac") {:file-name (str "chromedriver-" driver-version) :os "mac64"} :else (throw (RuntimeException. "Can't identify operating system")))) (defn- download-driver [os driver-version zip bin] (info "Downloading chrome driver for" os "with version" driver-version) (download (create-driver-uri os driver-version) zip) (info "Driver is downloaded, unzipping...") (unzip zip bin) (.setExecutable (io/file bin) true) (info "Driver is ready")) (defn- locate-or-download-driver [version] (let [os-name (-> "os.name" System/getProperty lower-case) {:keys [file-name os]} (os-name->file-and-os-names os-name version) bin (str temp-dir File/separator file-name) zip (str temp-dir File/separator "chromedriver_" os ".zip") file-exists (file-exists? bin)] (when-not file-exists (download-driver os version zip bin)) {:bin bin :zip zip :file-exists file-exists})) (defn init! ([] (init! {:version (get-latest-release-version)})) ([options] (let [version (:version options) paths (locking monitor (locate-or-download-driver version))] (System/setProperty location-key (:bin paths)) (merge paths {:version version})))) (defn clean [] (let [files (->> temp-dir io/file file-seq (filter #(re-find #"chromedriver" (.getName %))))] (doseq [file files] (io/delete-file file))))
109659
(ns chrome-driver-clj.core (:require [clojure.java.io :as io] [clojure.string :refer [includes? lower-case]] [taoensso.timbre :refer [info]]) (:import (java.io File) (java.util.zip ZipInputStream))) (def ^:private monitor (Object.)) (def ^:private location-key "<KEY>") (def ^:private temp-dir (System/getProperty "java.io.tmpdir")) (def ^:private root-uri "http://chromedriver.storage.googleapis.com/") (def ^:private latest-release-version-uri (str root-uri "LATEST_RELEASE")) (defn- get-latest-release-version [] (slurp latest-release-version-uri)) (defn- create-driver-uri [os driver-version] (str root-uri driver-version "/chromedriver_" os ".zip")) (defn- download [uri file] (with-open [in (io/input-stream uri) out (io/output-stream file)] (io/copy in out))) (defn- unzip [absolute-path-to-zip absolute-path] (let [zip-stream (ZipInputStream. (io/input-stream absolute-path-to-zip))] (.getNextEntry zip-stream) (io/copy (io/input-stream zip-stream) (io/file absolute-path)) (.closeEntry zip-stream) (.close zip-stream))) (defn- file-exists? [absolute-path] (.exists (io/as-file absolute-path))) (defn- os-name->file-and-os-names [os-name driver-version] (cond (includes? os-name "win") {:file-name (str "chromedriver-" driver-version ".exe") :os "win32"} (includes? os-name "nux") {:file-name (str "chromedriver-" driver-version) :os "linux64"} (includes? os-name "mac") {:file-name (str "chromedriver-" driver-version) :os "mac64"} :else (throw (RuntimeException. "Can't identify operating system")))) (defn- download-driver [os driver-version zip bin] (info "Downloading chrome driver for" os "with version" driver-version) (download (create-driver-uri os driver-version) zip) (info "Driver is downloaded, unzipping...") (unzip zip bin) (.setExecutable (io/file bin) true) (info "Driver is ready")) (defn- locate-or-download-driver [version] (let [os-name (-> "os.name" System/getProperty lower-case) {:keys [file-name os]} (os-name->file-and-os-names os-name version) bin (str temp-dir File/separator file-name) zip (str temp-dir File/separator "chromedriver_" os ".zip") file-exists (file-exists? bin)] (when-not file-exists (download-driver os version zip bin)) {:bin bin :zip zip :file-exists file-exists})) (defn init! ([] (init! {:version (get-latest-release-version)})) ([options] (let [version (:version options) paths (locking monitor (locate-or-download-driver version))] (System/setProperty location-key (:bin paths)) (merge paths {:version version})))) (defn clean [] (let [files (->> temp-dir io/file file-seq (filter #(re-find #"chromedriver" (.getName %))))] (doseq [file files] (io/delete-file file))))
true
(ns chrome-driver-clj.core (:require [clojure.java.io :as io] [clojure.string :refer [includes? lower-case]] [taoensso.timbre :refer [info]]) (:import (java.io File) (java.util.zip ZipInputStream))) (def ^:private monitor (Object.)) (def ^:private location-key "PI:KEY:<KEY>END_PI") (def ^:private temp-dir (System/getProperty "java.io.tmpdir")) (def ^:private root-uri "http://chromedriver.storage.googleapis.com/") (def ^:private latest-release-version-uri (str root-uri "LATEST_RELEASE")) (defn- get-latest-release-version [] (slurp latest-release-version-uri)) (defn- create-driver-uri [os driver-version] (str root-uri driver-version "/chromedriver_" os ".zip")) (defn- download [uri file] (with-open [in (io/input-stream uri) out (io/output-stream file)] (io/copy in out))) (defn- unzip [absolute-path-to-zip absolute-path] (let [zip-stream (ZipInputStream. (io/input-stream absolute-path-to-zip))] (.getNextEntry zip-stream) (io/copy (io/input-stream zip-stream) (io/file absolute-path)) (.closeEntry zip-stream) (.close zip-stream))) (defn- file-exists? [absolute-path] (.exists (io/as-file absolute-path))) (defn- os-name->file-and-os-names [os-name driver-version] (cond (includes? os-name "win") {:file-name (str "chromedriver-" driver-version ".exe") :os "win32"} (includes? os-name "nux") {:file-name (str "chromedriver-" driver-version) :os "linux64"} (includes? os-name "mac") {:file-name (str "chromedriver-" driver-version) :os "mac64"} :else (throw (RuntimeException. "Can't identify operating system")))) (defn- download-driver [os driver-version zip bin] (info "Downloading chrome driver for" os "with version" driver-version) (download (create-driver-uri os driver-version) zip) (info "Driver is downloaded, unzipping...") (unzip zip bin) (.setExecutable (io/file bin) true) (info "Driver is ready")) (defn- locate-or-download-driver [version] (let [os-name (-> "os.name" System/getProperty lower-case) {:keys [file-name os]} (os-name->file-and-os-names os-name version) bin (str temp-dir File/separator file-name) zip (str temp-dir File/separator "chromedriver_" os ".zip") file-exists (file-exists? bin)] (when-not file-exists (download-driver os version zip bin)) {:bin bin :zip zip :file-exists file-exists})) (defn init! ([] (init! {:version (get-latest-release-version)})) ([options] (let [version (:version options) paths (locking monitor (locate-or-download-driver version))] (System/setProperty location-key (:bin paths)) (merge paths {:version version})))) (defn clean [] (let [files (->> temp-dir io/file file-seq (filter #(re-find #"chromedriver" (.getName %))))] (doseq [file files] (io/delete-file file))))
[ { "context": "(defproject mqtt-kat \"0.0.1\"\n :author \"Thomas van der Veen\"\n :description \"High-performance event-driven MQ", "end": 59, "score": 0.9998693466186523, "start": 40, "tag": "NAME", "value": "Thomas van der Veen" } ]
project.clj
thomas-shares/mqtt-kat
3
(defproject mqtt-kat "0.0.1" :author "Thomas van der Veen" :description "High-performance event-driven MQTT broker for Clojure" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html" :distribution :repo} :min-lein-version "2.8.1" :global-vars {*warn-on-reflection* true} :dependencies [[org.clojure/clojure "1.10.1"] [org.clojure/core.async "1.3.610"] [org.clojure/spec.alpha "0.2.187"] [org.clojure/core.specs.alpha "0.2.44"] [org.clojure/test.check "1.1.0"] [org.craigandera/causatum "0.3.0"] [clojurewerkz/triennium "1.0.0-beta2"] [overtone/at-at "1.2.0"] ;;[djblue/portal "0.6.1"] [com.clojure-goes-fast/clj-async-profiler "0.4.1"]] :jvm-opts ["-Dclojure.compiler.disable-locals-clearing=true" "-Xms512m" "-Xmx4G" "-Djdk.attach.allowAttachSelf" "-XX:+UnlockDiagnosticVMOptions" "-XX:+DebugNonSafepoints"] :javac-options ["-Xlint:unchecked" "-source" "1.8" "-target" "1.8" "-g"] :java-source-paths ["src/java"] :test-paths ["test"] :plugins [[lein-ancient "0.6.15"]] ;[lein-virgil "0.1.9"]] :jar-exclusions [#"^java.*"] ; exclude the java directory in source path :main mqttkat.server :aot [mqttkat.server])
17358
(defproject mqtt-kat "0.0.1" :author "<NAME>" :description "High-performance event-driven MQTT broker for Clojure" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html" :distribution :repo} :min-lein-version "2.8.1" :global-vars {*warn-on-reflection* true} :dependencies [[org.clojure/clojure "1.10.1"] [org.clojure/core.async "1.3.610"] [org.clojure/spec.alpha "0.2.187"] [org.clojure/core.specs.alpha "0.2.44"] [org.clojure/test.check "1.1.0"] [org.craigandera/causatum "0.3.0"] [clojurewerkz/triennium "1.0.0-beta2"] [overtone/at-at "1.2.0"] ;;[djblue/portal "0.6.1"] [com.clojure-goes-fast/clj-async-profiler "0.4.1"]] :jvm-opts ["-Dclojure.compiler.disable-locals-clearing=true" "-Xms512m" "-Xmx4G" "-Djdk.attach.allowAttachSelf" "-XX:+UnlockDiagnosticVMOptions" "-XX:+DebugNonSafepoints"] :javac-options ["-Xlint:unchecked" "-source" "1.8" "-target" "1.8" "-g"] :java-source-paths ["src/java"] :test-paths ["test"] :plugins [[lein-ancient "0.6.15"]] ;[lein-virgil "0.1.9"]] :jar-exclusions [#"^java.*"] ; exclude the java directory in source path :main mqttkat.server :aot [mqttkat.server])
true
(defproject mqtt-kat "0.0.1" :author "PI:NAME:<NAME>END_PI" :description "High-performance event-driven MQTT broker for Clojure" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html" :distribution :repo} :min-lein-version "2.8.1" :global-vars {*warn-on-reflection* true} :dependencies [[org.clojure/clojure "1.10.1"] [org.clojure/core.async "1.3.610"] [org.clojure/spec.alpha "0.2.187"] [org.clojure/core.specs.alpha "0.2.44"] [org.clojure/test.check "1.1.0"] [org.craigandera/causatum "0.3.0"] [clojurewerkz/triennium "1.0.0-beta2"] [overtone/at-at "1.2.0"] ;;[djblue/portal "0.6.1"] [com.clojure-goes-fast/clj-async-profiler "0.4.1"]] :jvm-opts ["-Dclojure.compiler.disable-locals-clearing=true" "-Xms512m" "-Xmx4G" "-Djdk.attach.allowAttachSelf" "-XX:+UnlockDiagnosticVMOptions" "-XX:+DebugNonSafepoints"] :javac-options ["-Xlint:unchecked" "-source" "1.8" "-target" "1.8" "-g"] :java-source-paths ["src/java"] :test-paths ["test"] :plugins [[lein-ancient "0.6.15"]] ;[lein-virgil "0.1.9"]] :jar-exclusions [#"^java.*"] ; exclude the java directory in source path :main mqttkat.server :aot [mqttkat.server])
[ { "context": ";; Copyright (c) Vital Labs, Inc. All rights reserved. The use and\n;; distri", "end": 27, "score": 0.9912054538726807, "start": 17, "tag": "NAME", "value": "Vital Labs" } ]
src/clojurecast/lang/interfaces.clj
VitalLabs/clojurecast
0
;; Copyright (c) Vital Labs, Inc. All rights reserved. The use and ;; distribution terms for this software are covered by the MIT ;; License (https://opensource.org/licenses/MIT) which can be found ;; in the file LICENSE at the root of this distribution. ;; By using this software in any fashion, you are agreeing to be ;; bound by the terms of this license. You must not remove this notice, ;; or any other, from this software. (ns clojurecast.lang.interfaces) (definterface IValidate (^void validate [val]) (^void validate [^clojure.lang.IFn f val])) (definterface IWatchable (^void notifyWatches [oldval newval])) (definterface IAgent (dispatch [^clojure.lang.IFn f ^clojure.lang.ISeq args]) (dispatch [^clojure.lang.IFn f ^clojure.lang.ISeq args ^java.util.concurrent.Executor exec]) (doRun [^clojure.lang.IFn f ^clojure.lang.ISeq args]) (setErrorMode [^clojure.lang.Keyword k]) (^clojure.lang.Keyword getErrorMode []) (setErrorHandler [^clojure.lang.IFn f]) (^clojure.lang.IFn getErrorHandler []) (restart [new-state clear-action?]) (releasePendingSends []) (setState [newval]) (execute [^Runnable action]) (enqueue [^Runnable action]))
63026
;; Copyright (c) <NAME>, Inc. All rights reserved. The use and ;; distribution terms for this software are covered by the MIT ;; License (https://opensource.org/licenses/MIT) which can be found ;; in the file LICENSE at the root of this distribution. ;; By using this software in any fashion, you are agreeing to be ;; bound by the terms of this license. You must not remove this notice, ;; or any other, from this software. (ns clojurecast.lang.interfaces) (definterface IValidate (^void validate [val]) (^void validate [^clojure.lang.IFn f val])) (definterface IWatchable (^void notifyWatches [oldval newval])) (definterface IAgent (dispatch [^clojure.lang.IFn f ^clojure.lang.ISeq args]) (dispatch [^clojure.lang.IFn f ^clojure.lang.ISeq args ^java.util.concurrent.Executor exec]) (doRun [^clojure.lang.IFn f ^clojure.lang.ISeq args]) (setErrorMode [^clojure.lang.Keyword k]) (^clojure.lang.Keyword getErrorMode []) (setErrorHandler [^clojure.lang.IFn f]) (^clojure.lang.IFn getErrorHandler []) (restart [new-state clear-action?]) (releasePendingSends []) (setState [newval]) (execute [^Runnable action]) (enqueue [^Runnable action]))
true
;; Copyright (c) PI:NAME:<NAME>END_PI, Inc. All rights reserved. The use and ;; distribution terms for this software are covered by the MIT ;; License (https://opensource.org/licenses/MIT) which can be found ;; in the file LICENSE at the root of this distribution. ;; By using this software in any fashion, you are agreeing to be ;; bound by the terms of this license. You must not remove this notice, ;; or any other, from this software. (ns clojurecast.lang.interfaces) (definterface IValidate (^void validate [val]) (^void validate [^clojure.lang.IFn f val])) (definterface IWatchable (^void notifyWatches [oldval newval])) (definterface IAgent (dispatch [^clojure.lang.IFn f ^clojure.lang.ISeq args]) (dispatch [^clojure.lang.IFn f ^clojure.lang.ISeq args ^java.util.concurrent.Executor exec]) (doRun [^clojure.lang.IFn f ^clojure.lang.ISeq args]) (setErrorMode [^clojure.lang.Keyword k]) (^clojure.lang.Keyword getErrorMode []) (setErrorHandler [^clojure.lang.IFn f]) (^clojure.lang.IFn getErrorHandler []) (restart [new-state clear-action?]) (releasePendingSends []) (setState [newval]) (execute [^Runnable action]) (enqueue [^Runnable action]))
[ { "context": ";;;; Copyright 2016 Peter Stephens. All Rights Reserved.\r\n;;;;\r\n;;;; Licensed unde", "end": 36, "score": 0.9996881484985352, "start": 22, "tag": "NAME", "value": "Peter Stephens" } ]
src/bible/core.cljs
pstephens/kingjames.bible
23
;;;; Copyright 2016 Peter Stephens. All Rights Reserved. ;;;; ;;;; Licensed under the Apache License, Version 2.0 (the "License"); ;;;; you may not use this file except in compliance with the License. ;;;; You may obtain a copy of the License at ;;;; ;;;; http://www.apache.org/licenses/LICENSE-2.0 ;;;; ;;;; Unless required by applicable law or agreed to in writing, software ;;;; distributed under the License is distributed on an "AS IS" BASIS, ;;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;;;; See the License for the specific language governing permissions and ;;;; limitations under the License. (ns bible.core (:require-macros [bible.macros :refer [<?]] [cljs.core.async.macros :refer [go]]) (:require [bible.helpers] [bible.io :as io] [bible.meta])) (defn ^:private binary-search [value comp v] (let [cnt (count v)] (if (<= cnt 0) nil (let [i (quot cnt 2) value2 (get v i) cmp (comp value value2)] (cond (< cmp 0) (recur value comp (subvec v 0 i)) (> cmp 0) (recur value comp (subvec v (inc i))) :else value2))))) (defn ^:private compare-verse-idx-to-chapter [verse-idx {first-verse-idx :verse-idx verse-cnt :verse-cnt}] (cond (< verse-idx first-verse-idx) -1 (>= verse-idx (+ first-verse-idx verse-cnt)) 1 :else 0)) (defn ^:private format-verse-resid [partition-idx] (str "V" (if (< partition-idx 10) "0" "") partition-idx)) (defn ^:private accumulate [f idxs] (loop [acc [] idxs (seq idxs)] (if idxs (let [idx (first idxs) next-idxs (next idxs) data (f idx)] (if data (recur (conj acc data) next-idxs) (throw (js/Error. (str "Invalid index " idx "."))))) acc))) (defn ^:private fetch-resources-and-accumulate [f-acc f-fetch idxs] (go (try (let [res (<? (f-fetch idxs))] (f-acc res idxs)) (catch js/Error e e)))) (defn book ([book-idxs] (fetch-resources-and-accumulate book #(io/resources ["B"]) book-idxs)) ([{res "B"} book-idxs] (accumulate #(get-in res [:books %]) book-idxs))) (defn chapter ([chapter-idxs] (fetch-resources-and-accumulate chapter #(io/resources ["B"]) chapter-idxs)) ([{res "B"} chapter-idxs] (accumulate #(get-in res [:chapters %]) chapter-idxs))) (defn verse ([verse-idxs] (go (try (let [{{partition-size :partition-size} "B"} (<? (io/resources ["B"])) partition-idxs (->> verse-idxs (map #(quot % partition-size)) (set)) res-ids (->> partition-idxs (map format-verse-resid) (concat ["B"]) (vec)) res (<? (io/resources res-ids))] (verse res verse-idxs)) (catch js/Error e e)))) ([{{partition-size :partition-size chapters :chapters} "B" :as all} verse-idxs] (accumulate #(let [partition-idx (quot % partition-size) verse-offset (rem % partition-size) content (get-in all [(format-verse-resid partition-idx) verse-offset])] (if content {:content content :chapter (binary-search % compare-verse-idx-to-chapter chapters) :idx %} nil)) verse-idxs)))
67651
;;;; Copyright 2016 <NAME>. All Rights Reserved. ;;;; ;;;; Licensed under the Apache License, Version 2.0 (the "License"); ;;;; you may not use this file except in compliance with the License. ;;;; You may obtain a copy of the License at ;;;; ;;;; http://www.apache.org/licenses/LICENSE-2.0 ;;;; ;;;; Unless required by applicable law or agreed to in writing, software ;;;; distributed under the License is distributed on an "AS IS" BASIS, ;;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;;;; See the License for the specific language governing permissions and ;;;; limitations under the License. (ns bible.core (:require-macros [bible.macros :refer [<?]] [cljs.core.async.macros :refer [go]]) (:require [bible.helpers] [bible.io :as io] [bible.meta])) (defn ^:private binary-search [value comp v] (let [cnt (count v)] (if (<= cnt 0) nil (let [i (quot cnt 2) value2 (get v i) cmp (comp value value2)] (cond (< cmp 0) (recur value comp (subvec v 0 i)) (> cmp 0) (recur value comp (subvec v (inc i))) :else value2))))) (defn ^:private compare-verse-idx-to-chapter [verse-idx {first-verse-idx :verse-idx verse-cnt :verse-cnt}] (cond (< verse-idx first-verse-idx) -1 (>= verse-idx (+ first-verse-idx verse-cnt)) 1 :else 0)) (defn ^:private format-verse-resid [partition-idx] (str "V" (if (< partition-idx 10) "0" "") partition-idx)) (defn ^:private accumulate [f idxs] (loop [acc [] idxs (seq idxs)] (if idxs (let [idx (first idxs) next-idxs (next idxs) data (f idx)] (if data (recur (conj acc data) next-idxs) (throw (js/Error. (str "Invalid index " idx "."))))) acc))) (defn ^:private fetch-resources-and-accumulate [f-acc f-fetch idxs] (go (try (let [res (<? (f-fetch idxs))] (f-acc res idxs)) (catch js/Error e e)))) (defn book ([book-idxs] (fetch-resources-and-accumulate book #(io/resources ["B"]) book-idxs)) ([{res "B"} book-idxs] (accumulate #(get-in res [:books %]) book-idxs))) (defn chapter ([chapter-idxs] (fetch-resources-and-accumulate chapter #(io/resources ["B"]) chapter-idxs)) ([{res "B"} chapter-idxs] (accumulate #(get-in res [:chapters %]) chapter-idxs))) (defn verse ([verse-idxs] (go (try (let [{{partition-size :partition-size} "B"} (<? (io/resources ["B"])) partition-idxs (->> verse-idxs (map #(quot % partition-size)) (set)) res-ids (->> partition-idxs (map format-verse-resid) (concat ["B"]) (vec)) res (<? (io/resources res-ids))] (verse res verse-idxs)) (catch js/Error e e)))) ([{{partition-size :partition-size chapters :chapters} "B" :as all} verse-idxs] (accumulate #(let [partition-idx (quot % partition-size) verse-offset (rem % partition-size) content (get-in all [(format-verse-resid partition-idx) verse-offset])] (if content {:content content :chapter (binary-search % compare-verse-idx-to-chapter chapters) :idx %} nil)) verse-idxs)))
true
;;;; Copyright 2016 PI:NAME:<NAME>END_PI. All Rights Reserved. ;;;; ;;;; Licensed under the Apache License, Version 2.0 (the "License"); ;;;; you may not use this file except in compliance with the License. ;;;; You may obtain a copy of the License at ;;;; ;;;; http://www.apache.org/licenses/LICENSE-2.0 ;;;; ;;;; Unless required by applicable law or agreed to in writing, software ;;;; distributed under the License is distributed on an "AS IS" BASIS, ;;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;;;; See the License for the specific language governing permissions and ;;;; limitations under the License. (ns bible.core (:require-macros [bible.macros :refer [<?]] [cljs.core.async.macros :refer [go]]) (:require [bible.helpers] [bible.io :as io] [bible.meta])) (defn ^:private binary-search [value comp v] (let [cnt (count v)] (if (<= cnt 0) nil (let [i (quot cnt 2) value2 (get v i) cmp (comp value value2)] (cond (< cmp 0) (recur value comp (subvec v 0 i)) (> cmp 0) (recur value comp (subvec v (inc i))) :else value2))))) (defn ^:private compare-verse-idx-to-chapter [verse-idx {first-verse-idx :verse-idx verse-cnt :verse-cnt}] (cond (< verse-idx first-verse-idx) -1 (>= verse-idx (+ first-verse-idx verse-cnt)) 1 :else 0)) (defn ^:private format-verse-resid [partition-idx] (str "V" (if (< partition-idx 10) "0" "") partition-idx)) (defn ^:private accumulate [f idxs] (loop [acc [] idxs (seq idxs)] (if idxs (let [idx (first idxs) next-idxs (next idxs) data (f idx)] (if data (recur (conj acc data) next-idxs) (throw (js/Error. (str "Invalid index " idx "."))))) acc))) (defn ^:private fetch-resources-and-accumulate [f-acc f-fetch idxs] (go (try (let [res (<? (f-fetch idxs))] (f-acc res idxs)) (catch js/Error e e)))) (defn book ([book-idxs] (fetch-resources-and-accumulate book #(io/resources ["B"]) book-idxs)) ([{res "B"} book-idxs] (accumulate #(get-in res [:books %]) book-idxs))) (defn chapter ([chapter-idxs] (fetch-resources-and-accumulate chapter #(io/resources ["B"]) chapter-idxs)) ([{res "B"} chapter-idxs] (accumulate #(get-in res [:chapters %]) chapter-idxs))) (defn verse ([verse-idxs] (go (try (let [{{partition-size :partition-size} "B"} (<? (io/resources ["B"])) partition-idxs (->> verse-idxs (map #(quot % partition-size)) (set)) res-ids (->> partition-idxs (map format-verse-resid) (concat ["B"]) (vec)) res (<? (io/resources res-ids))] (verse res verse-idxs)) (catch js/Error e e)))) ([{{partition-size :partition-size chapters :chapters} "B" :as all} verse-idxs] (accumulate #(let [partition-idx (quot % partition-size) verse-offset (rem % partition-size) content (get-in all [(format-verse-resid partition-idx) verse-offset])] (if content {:content content :chapter (binary-search % compare-verse-idx-to-chapter chapters) :idx %} nil)) verse-idxs)))
[ { "context": "; Copyright (c) 2011-2013, Tom Van Cutsem, Vrije Universiteit Brussel\n; All rights reserved", "end": 41, "score": 0.9998571872711182, "start": 27, "tag": "NAME", "value": "Tom Van Cutsem" }, { "context": "Clojure\n;; Multicore Programming\n;; (c) 2011-2013, Tom Van Cutsem\n\n;; Test the effect of barging on some pathologic", "end": 1680, "score": 0.9998248815536499, "start": 1666, "tag": "NAME", "value": "Tom Van Cutsem" } ]
test/barging.clj
tvcutsem/stm-in-clojure
33
; Copyright (c) 2011-2013, Tom Van Cutsem, Vrije Universiteit Brussel ; All rights reserved. ; ; Redistribution and use in source and binary forms, with or without ; modification, are permitted provided that the following conditions are met: ; * Redistributions of source code must retain the above copyright ; notice, this list of conditions and the following disclaimer. ; * Redistributions in binary form must reproduce the above copyright ; notice, this list of conditions and the following disclaimer in the ; documentation and/or other materials provided with the distribution. ; * Neither the name of the Vrije Universiteit Brussel nor the ; names of its contributors may be used to endorse or promote products ; derived from this software without specific prior written permission. ; ;THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ;ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED ;WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE ;DISCLAIMED. IN NO EVENT SHALL VRIJE UNIVERSITEIT BRUSSEL BE LIABLE FOR ANY ;DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ;(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; ;LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ;ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ;(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS ;SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ;; MC-STM: meta-circular STM in Clojure ;; Multicore Programming ;; (c) 2011-2013, Tom Van Cutsem ;; Test the effect of barging on some pathological transactions that ;; take long to complete, yet contend for a shared ref ;; These tests are adapted versions of those originally written by ;; Reinout Stevens, see: ;; http://reinoutstevens.wordpress.com/2011/06/23/extending-stm-with-barging/ (ns test.barging (:use clojure.test) (:import (java.util.concurrent Executors))) ; (use 'stm.v0-native) ; (use 'stm.v1-simple) ; (use 'stm.v2-mvcc) ; (use 'stm.v3-mvcc-commute) ; (use 'stm.v4-mvcc-fine-grained) (use 'stm.v5-mvcc-fine-grained-barging) ;; any long-running computation will do (defn fib [x] (if (< x 2) 1 (+ (fib (- x 1)) (fib (- x 2))))) (defn test-barging [nthreads niters] (let [ref (mc-ref 0) pool (Executors/newFixedThreadPool nthreads) nrRetries (atom 0) tasks (map (fn [t] (fn [] (dotimes [n niters] (mc-dosync (swap! nrRetries inc) (fib 22) (mc-alter ref inc) (fib 15))))) (range nthreads))] (doseq [future (.invokeAll pool tasks)] (.get future)) (.shutdown pool) (println "retries: " (- @nrRetries (* nthreads niters))) (mc-deref ref))) (deftest barge-test (time (is (= (* 10 500) (test-barging 10 500))))) (defn mutate-ref-then-set-finished [ref finished retry] (swap! retry inc) (dotimes [n 100000] (mc-alter ref inc)) (mc-ref-set finished true)) (defn mutate-ref-until-finished [finished ref] (when-not (mc-deref finished) (mc-dosync (mc-alter ref inc)) (recur finished ref))) (defn test-liveness [nthreads] (let [ref (mc-ref 0) finished (mc-ref false) nrRetries (atom 0) pool (Executors/newFixedThreadPool (inc nthreads)) ; +1 task, see below nrRetries (atom 0) tasks (map (fn [t] (fn [] (mutate-ref-until-finished finished ref))) (range nthreads))] (doseq [future (.invokeAll pool ; we could also reverse this list and list mutate-ref-then-set-finished ; as the last task. This lowers its priority. In that case, the ; thread pool must have size nthreads+1, otherwise all nthreads threads ; will only execute mututae-ref-until-finished forever, and the last task ; never gets run (cons (fn [] (mc-dosync (mutate-ref-then-set-finished ref finished nrRetries))) tasks))] (.get future)) (.shutdown pool) (println "retries: " @nrRetries) (mc-deref ref))) (deftest liveness-test (time (test-liveness 10))) (run-tests)
112946
; Copyright (c) 2011-2013, <NAME>, Vrije Universiteit Brussel ; All rights reserved. ; ; Redistribution and use in source and binary forms, with or without ; modification, are permitted provided that the following conditions are met: ; * Redistributions of source code must retain the above copyright ; notice, this list of conditions and the following disclaimer. ; * Redistributions in binary form must reproduce the above copyright ; notice, this list of conditions and the following disclaimer in the ; documentation and/or other materials provided with the distribution. ; * Neither the name of the Vrije Universiteit Brussel nor the ; names of its contributors may be used to endorse or promote products ; derived from this software without specific prior written permission. ; ;THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ;ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED ;WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE ;DISCLAIMED. IN NO EVENT SHALL VRIJE UNIVERSITEIT BRUSSEL BE LIABLE FOR ANY ;DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ;(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; ;LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ;ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ;(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS ;SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ;; MC-STM: meta-circular STM in Clojure ;; Multicore Programming ;; (c) 2011-2013, <NAME> ;; Test the effect of barging on some pathological transactions that ;; take long to complete, yet contend for a shared ref ;; These tests are adapted versions of those originally written by ;; Reinout Stevens, see: ;; http://reinoutstevens.wordpress.com/2011/06/23/extending-stm-with-barging/ (ns test.barging (:use clojure.test) (:import (java.util.concurrent Executors))) ; (use 'stm.v0-native) ; (use 'stm.v1-simple) ; (use 'stm.v2-mvcc) ; (use 'stm.v3-mvcc-commute) ; (use 'stm.v4-mvcc-fine-grained) (use 'stm.v5-mvcc-fine-grained-barging) ;; any long-running computation will do (defn fib [x] (if (< x 2) 1 (+ (fib (- x 1)) (fib (- x 2))))) (defn test-barging [nthreads niters] (let [ref (mc-ref 0) pool (Executors/newFixedThreadPool nthreads) nrRetries (atom 0) tasks (map (fn [t] (fn [] (dotimes [n niters] (mc-dosync (swap! nrRetries inc) (fib 22) (mc-alter ref inc) (fib 15))))) (range nthreads))] (doseq [future (.invokeAll pool tasks)] (.get future)) (.shutdown pool) (println "retries: " (- @nrRetries (* nthreads niters))) (mc-deref ref))) (deftest barge-test (time (is (= (* 10 500) (test-barging 10 500))))) (defn mutate-ref-then-set-finished [ref finished retry] (swap! retry inc) (dotimes [n 100000] (mc-alter ref inc)) (mc-ref-set finished true)) (defn mutate-ref-until-finished [finished ref] (when-not (mc-deref finished) (mc-dosync (mc-alter ref inc)) (recur finished ref))) (defn test-liveness [nthreads] (let [ref (mc-ref 0) finished (mc-ref false) nrRetries (atom 0) pool (Executors/newFixedThreadPool (inc nthreads)) ; +1 task, see below nrRetries (atom 0) tasks (map (fn [t] (fn [] (mutate-ref-until-finished finished ref))) (range nthreads))] (doseq [future (.invokeAll pool ; we could also reverse this list and list mutate-ref-then-set-finished ; as the last task. This lowers its priority. In that case, the ; thread pool must have size nthreads+1, otherwise all nthreads threads ; will only execute mututae-ref-until-finished forever, and the last task ; never gets run (cons (fn [] (mc-dosync (mutate-ref-then-set-finished ref finished nrRetries))) tasks))] (.get future)) (.shutdown pool) (println "retries: " @nrRetries) (mc-deref ref))) (deftest liveness-test (time (test-liveness 10))) (run-tests)
true
; Copyright (c) 2011-2013, PI:NAME:<NAME>END_PI, Vrije Universiteit Brussel ; All rights reserved. ; ; Redistribution and use in source and binary forms, with or without ; modification, are permitted provided that the following conditions are met: ; * Redistributions of source code must retain the above copyright ; notice, this list of conditions and the following disclaimer. ; * Redistributions in binary form must reproduce the above copyright ; notice, this list of conditions and the following disclaimer in the ; documentation and/or other materials provided with the distribution. ; * Neither the name of the Vrije Universiteit Brussel nor the ; names of its contributors may be used to endorse or promote products ; derived from this software without specific prior written permission. ; ;THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ;ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED ;WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE ;DISCLAIMED. IN NO EVENT SHALL VRIJE UNIVERSITEIT BRUSSEL BE LIABLE FOR ANY ;DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ;(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; ;LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ;ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ;(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS ;SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ;; MC-STM: meta-circular STM in Clojure ;; Multicore Programming ;; (c) 2011-2013, PI:NAME:<NAME>END_PI ;; Test the effect of barging on some pathological transactions that ;; take long to complete, yet contend for a shared ref ;; These tests are adapted versions of those originally written by ;; Reinout Stevens, see: ;; http://reinoutstevens.wordpress.com/2011/06/23/extending-stm-with-barging/ (ns test.barging (:use clojure.test) (:import (java.util.concurrent Executors))) ; (use 'stm.v0-native) ; (use 'stm.v1-simple) ; (use 'stm.v2-mvcc) ; (use 'stm.v3-mvcc-commute) ; (use 'stm.v4-mvcc-fine-grained) (use 'stm.v5-mvcc-fine-grained-barging) ;; any long-running computation will do (defn fib [x] (if (< x 2) 1 (+ (fib (- x 1)) (fib (- x 2))))) (defn test-barging [nthreads niters] (let [ref (mc-ref 0) pool (Executors/newFixedThreadPool nthreads) nrRetries (atom 0) tasks (map (fn [t] (fn [] (dotimes [n niters] (mc-dosync (swap! nrRetries inc) (fib 22) (mc-alter ref inc) (fib 15))))) (range nthreads))] (doseq [future (.invokeAll pool tasks)] (.get future)) (.shutdown pool) (println "retries: " (- @nrRetries (* nthreads niters))) (mc-deref ref))) (deftest barge-test (time (is (= (* 10 500) (test-barging 10 500))))) (defn mutate-ref-then-set-finished [ref finished retry] (swap! retry inc) (dotimes [n 100000] (mc-alter ref inc)) (mc-ref-set finished true)) (defn mutate-ref-until-finished [finished ref] (when-not (mc-deref finished) (mc-dosync (mc-alter ref inc)) (recur finished ref))) (defn test-liveness [nthreads] (let [ref (mc-ref 0) finished (mc-ref false) nrRetries (atom 0) pool (Executors/newFixedThreadPool (inc nthreads)) ; +1 task, see below nrRetries (atom 0) tasks (map (fn [t] (fn [] (mutate-ref-until-finished finished ref))) (range nthreads))] (doseq [future (.invokeAll pool ; we could also reverse this list and list mutate-ref-then-set-finished ; as the last task. This lowers its priority. In that case, the ; thread pool must have size nthreads+1, otherwise all nthreads threads ; will only execute mututae-ref-until-finished forever, and the last task ; never gets run (cons (fn [] (mc-dosync (mutate-ref-then-set-finished ref finished nrRetries))) tasks))] (.get future)) (.shutdown pool) (println "retries: " @nrRetries) (mc-deref ref))) (deftest liveness-test (time (test-liveness 10))) (run-tests)
[ { "context": "! *unchecked-math* :warn-on-boxed)\n(ns ^{:author \"wahpenayo at gmail dot com\"\n :since \"2017-11-09\"\n ", "end": 96, "score": 0.6401655673980713, "start": 87, "tag": "EMAIL", "value": "wahpenayo" }, { "context": "ath* :warn-on-boxed)\n(ns ^{:author \"wahpenayo at gmail dot com\"\n :since \"2017-11-09\"\n :date \"2", "end": 105, "score": 0.6290906667709351, "start": 101, "tag": "EMAIL", "value": "mail" }, { "context": "rn-on-boxed)\n(ns ^{:author \"wahpenayo at gmail dot com\"\n :since \"2017-11-09\"\n :date \"2017-11-0", "end": 113, "score": 0.678417980670929, "start": 110, "tag": "EMAIL", "value": "com" } ]
src/test/clojure/taiga/test/measure/data/quartiles.clj
wahpenayo/taiga
4
(set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) (ns ^{:author "wahpenayo at gmail dot com" :since "2017-11-09" :date "2017-11-09" :doc "Quantile record classes, to hold predicted values for testing." } taiga.test.measure.data.quartiles (:require [zana.api :as z]) (:import [clojure.lang IFn$ODD] [org.apache.commons.math3.distribution RealDistribution])) ;;---------------------------------------------------------------- ;; TODO: implement RealDistribution? (z/define-datum Quartiles [^double q25 ^double q50 ^double q75]) ;;---------------------------------------------------------------- (defn quartiles ^Quartiles [^IFn$ODD quantile datum] (Quartiles. (quantile datum 0.25) (quantile datum 0.50) (quantile datum 0.75))) ;;---------------------------------------------------------------- (defn- qcost ^double [^double y ^double q ^double p] (let [y-q (- y q)] (if (<= 0.0 y-q) (* 0.5 (/ y-q (- 1 p))) (* 0.5 (/ y-q (- p)))))) ;;---------------------------------------------------------------- ;; TODO: defmulti? (defn cost ^double [^double y d] (cond (instance? Quartiles d) (let [^Quartiles d d] (+ (qcost y (q25 d) 0.25) (qcost y (q50 d) 0.50) (qcost y (q75 d) 0.75))) (instance? RealDistribution d) (let [^RealDistribution d d] (+ (qcost y (z/quantile d 0.25) 0.25) (qcost y (z/quantile d 0.50) 0.50) (qcost y (z/quantile d 0.75) 0.75))) :else (throw (IllegalArgumentException. (print-str "can't compute decile cost for " (class d)))))) ;;----------------------------------------------------------------
8270
(set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) (ns ^{:author "<EMAIL> at g<EMAIL> dot <EMAIL>" :since "2017-11-09" :date "2017-11-09" :doc "Quantile record classes, to hold predicted values for testing." } taiga.test.measure.data.quartiles (:require [zana.api :as z]) (:import [clojure.lang IFn$ODD] [org.apache.commons.math3.distribution RealDistribution])) ;;---------------------------------------------------------------- ;; TODO: implement RealDistribution? (z/define-datum Quartiles [^double q25 ^double q50 ^double q75]) ;;---------------------------------------------------------------- (defn quartiles ^Quartiles [^IFn$ODD quantile datum] (Quartiles. (quantile datum 0.25) (quantile datum 0.50) (quantile datum 0.75))) ;;---------------------------------------------------------------- (defn- qcost ^double [^double y ^double q ^double p] (let [y-q (- y q)] (if (<= 0.0 y-q) (* 0.5 (/ y-q (- 1 p))) (* 0.5 (/ y-q (- p)))))) ;;---------------------------------------------------------------- ;; TODO: defmulti? (defn cost ^double [^double y d] (cond (instance? Quartiles d) (let [^Quartiles d d] (+ (qcost y (q25 d) 0.25) (qcost y (q50 d) 0.50) (qcost y (q75 d) 0.75))) (instance? RealDistribution d) (let [^RealDistribution d d] (+ (qcost y (z/quantile d 0.25) 0.25) (qcost y (z/quantile d 0.50) 0.50) (qcost y (z/quantile d 0.75) 0.75))) :else (throw (IllegalArgumentException. (print-str "can't compute decile cost for " (class d)))))) ;;----------------------------------------------------------------
true
(set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) (ns ^{:author "PI:EMAIL:<EMAIL>END_PI at gPI:EMAIL:<EMAIL>END_PI dot PI:EMAIL:<EMAIL>END_PI" :since "2017-11-09" :date "2017-11-09" :doc "Quantile record classes, to hold predicted values for testing." } taiga.test.measure.data.quartiles (:require [zana.api :as z]) (:import [clojure.lang IFn$ODD] [org.apache.commons.math3.distribution RealDistribution])) ;;---------------------------------------------------------------- ;; TODO: implement RealDistribution? (z/define-datum Quartiles [^double q25 ^double q50 ^double q75]) ;;---------------------------------------------------------------- (defn quartiles ^Quartiles [^IFn$ODD quantile datum] (Quartiles. (quantile datum 0.25) (quantile datum 0.50) (quantile datum 0.75))) ;;---------------------------------------------------------------- (defn- qcost ^double [^double y ^double q ^double p] (let [y-q (- y q)] (if (<= 0.0 y-q) (* 0.5 (/ y-q (- 1 p))) (* 0.5 (/ y-q (- p)))))) ;;---------------------------------------------------------------- ;; TODO: defmulti? (defn cost ^double [^double y d] (cond (instance? Quartiles d) (let [^Quartiles d d] (+ (qcost y (q25 d) 0.25) (qcost y (q50 d) 0.50) (qcost y (q75 d) 0.75))) (instance? RealDistribution d) (let [^RealDistribution d d] (+ (qcost y (z/quantile d 0.25) 0.25) (qcost y (z/quantile d 0.50) 0.50) (qcost y (z/quantile d 0.75) 0.75))) :else (throw (IllegalArgumentException. (print-str "can't compute decile cost for " (class d)))))) ;;----------------------------------------------------------------
[ { "context": "))))))\n\n(def restaurant-to-update {:id 323 :name \"Burger King\" :tags [\"fast food\"]})\n(def restaurant-in-db {:id", "end": 4006, "score": 0.9974219799041748, "start": 3995, "tag": "NAME", "value": "Burger King" }, { "context": "st food\"]})\n(def restaurant-in-db {:id 323 :name \"Burger King\" })\n\n(deftest update-restaurant\n (testing \"must ", "end": 4079, "score": 0.9910614490509033, "start": 4068, "tag": "NAME", "value": "Burger King" } ]
test/foodship_restaurant/domain/controller_test.clj
eronalves/foodship-restaurant
5
(ns foodship-restaurant.domain.controller-test (:require [clojure.test :refer :all] [bond.james :as bond :refer [with-stub!]] [foodship-restaurant.component-fixture :refer [setup-custom-with-lifecycle component]] [foodship-restaurant.adapters.db-adapter :as db-adapter] [foodship-restaurant.domain.domain-functions.filter-restaurants :as filter-restaurants] [foodship-restaurant.domain.controller :as controller] [foodship-restaurant.domain.domain-functions.helper-id :as helper-id] [foodship-restaurant.adapters.db-adapter :as db])) (use-fixtures :once (setup-custom-with-lifecycle {:db {}})) (def restaurant {:restaurant/name "Mexicaníssimo" :restaurant/tags ["mexican"]}) (def restaurants [{:restaurant/name "Mexicaníssimo" :restaurant/tags ["mexican"]} {:restaurant/name "Aoyama" :restaurant/tags ["japanese"]} {:restaurant/name "Sancho Pancho" :restaurant/tags ["spanish"]} {:restaurant/name "Aokitama" :restaurant/tags ["japanese"]}]) (def filtered-restaurants [{:restaurant/name "Mexicaníssimo" :restaurant/tags ["mexican"]}]) (deftest get-restaurant (testing "must be return the info of restaurant" (with-stub! [[db-adapter/retrieve-restaurant (fn [component id] restaurant)]] (let [resultset (controller/get-restaurant component 1)] (is (= 1 (-> db-adapter/retrieve-restaurant bond/calls count))) (is (= restaurant resultset))))) (testing "must be return nil when not found restaurant" (with-stub! [[db-adapter/retrieve-restaurant (fn [component id] nil)]] (let [resultset (controller/get-restaurant component 2)] (is (= 1 (-> db-adapter/retrieve-restaurant bond/calls count))) (is (= nil resultset)))))) (deftest restaurants (testing "must be return filtered list of restaurants" (with-stub! [[db-adapter/all-restaurants (fn [component] restaurants)] [filter-restaurants/by-name-and-tags (fn [restaurants name tags] filtered-restaurants)]] (let [resultset (controller/restaurants component "mex" ["mexican"]) calls-filter-restaurants (bond/calls filter-restaurants/by-name-and-tags) args-filter-restaurants (:args (get calls-filter-restaurants 0))] (is (= 1 (-> db-adapter/all-restaurants bond/calls count))) (is (= 1 (count calls-filter-restaurants))) (is (= restaurants (nth args-filter-restaurants 0))) (is (= "mex" (nth args-filter-restaurants 1))) (is (= ["mexican"] (nth args-filter-restaurants 2))) (is (= filtered-restaurants resultset)))))) (def restaurant-to-create {:name "Burger King"}) (def created-restaurant {:id 323 :name "Burger King"}) (deftest create-restaurant (testing "must be create a restaurant" (with-stub! [[helper-id/generate-id (fn [model] 323)] [db/create-restaurant! (fn [component restaurant] )] [db/retrieve-restaurant (fn [component id] created-restaurant)]] (let [resultset (controller/create-restaurant! component restaurant-to-create) calls-generate-id (bond/calls helper-id/generate-id) args-generate-id (:args (get calls-generate-id 0)) calls-create-restaurant! (bond/calls db/create-restaurant!) args-create-restaurant (:args (get calls-create-restaurant! 0)) calls-retrieve-restaurant (bond/calls db/retrieve-restaurant) args-retrieve-restaurant (:args (get calls-retrieve-restaurant 0))] (is (= 1 (count calls-generate-id))) (is (= "restaurant" (nth args-generate-id 0))) (is (= 1 (count calls-create-restaurant!))) (is (= {} (nth args-create-restaurant 0))) (is (= created-restaurant (nth args-create-restaurant 1))) (is (= 1 (count calls-retrieve-restaurant))) (is (= {} (nth args-retrieve-restaurant 0))) (is (= 323 (nth args-retrieve-restaurant 1))) (is (= created-restaurant resultset)))))) (def restaurant-to-update {:id 323 :name "Burger King" :tags ["fast food"]}) (def restaurant-in-db {:id 323 :name "Burger King" }) (deftest update-restaurant (testing "must be update a restaurant" (with-stub! [[db/retrieve-restaurant (fn [component id] restaurant-in-db)] [db/update-restaurant! (fn [component restaurant])]] (let [resultset (controller/update-restaurant! component 323 restaurant-to-update) calls-db-retrieve (bond/calls db/retrieve-restaurant) calls-db-update (bond/calls db/update-restaurant!) args-db-update (:args (get calls-db-update 0))] (is (= 1 (count calls-db-retrieve))) (is (= 1 (count calls-db-update))) (is (= {} (nth args-db-update 0))) (is (= restaurant-to-update (nth args-db-update 1))) (is (= restaurant-to-update resultset))))))
78290
(ns foodship-restaurant.domain.controller-test (:require [clojure.test :refer :all] [bond.james :as bond :refer [with-stub!]] [foodship-restaurant.component-fixture :refer [setup-custom-with-lifecycle component]] [foodship-restaurant.adapters.db-adapter :as db-adapter] [foodship-restaurant.domain.domain-functions.filter-restaurants :as filter-restaurants] [foodship-restaurant.domain.controller :as controller] [foodship-restaurant.domain.domain-functions.helper-id :as helper-id] [foodship-restaurant.adapters.db-adapter :as db])) (use-fixtures :once (setup-custom-with-lifecycle {:db {}})) (def restaurant {:restaurant/name "Mexicaníssimo" :restaurant/tags ["mexican"]}) (def restaurants [{:restaurant/name "Mexicaníssimo" :restaurant/tags ["mexican"]} {:restaurant/name "Aoyama" :restaurant/tags ["japanese"]} {:restaurant/name "Sancho Pancho" :restaurant/tags ["spanish"]} {:restaurant/name "Aokitama" :restaurant/tags ["japanese"]}]) (def filtered-restaurants [{:restaurant/name "Mexicaníssimo" :restaurant/tags ["mexican"]}]) (deftest get-restaurant (testing "must be return the info of restaurant" (with-stub! [[db-adapter/retrieve-restaurant (fn [component id] restaurant)]] (let [resultset (controller/get-restaurant component 1)] (is (= 1 (-> db-adapter/retrieve-restaurant bond/calls count))) (is (= restaurant resultset))))) (testing "must be return nil when not found restaurant" (with-stub! [[db-adapter/retrieve-restaurant (fn [component id] nil)]] (let [resultset (controller/get-restaurant component 2)] (is (= 1 (-> db-adapter/retrieve-restaurant bond/calls count))) (is (= nil resultset)))))) (deftest restaurants (testing "must be return filtered list of restaurants" (with-stub! [[db-adapter/all-restaurants (fn [component] restaurants)] [filter-restaurants/by-name-and-tags (fn [restaurants name tags] filtered-restaurants)]] (let [resultset (controller/restaurants component "mex" ["mexican"]) calls-filter-restaurants (bond/calls filter-restaurants/by-name-and-tags) args-filter-restaurants (:args (get calls-filter-restaurants 0))] (is (= 1 (-> db-adapter/all-restaurants bond/calls count))) (is (= 1 (count calls-filter-restaurants))) (is (= restaurants (nth args-filter-restaurants 0))) (is (= "mex" (nth args-filter-restaurants 1))) (is (= ["mexican"] (nth args-filter-restaurants 2))) (is (= filtered-restaurants resultset)))))) (def restaurant-to-create {:name "Burger King"}) (def created-restaurant {:id 323 :name "Burger King"}) (deftest create-restaurant (testing "must be create a restaurant" (with-stub! [[helper-id/generate-id (fn [model] 323)] [db/create-restaurant! (fn [component restaurant] )] [db/retrieve-restaurant (fn [component id] created-restaurant)]] (let [resultset (controller/create-restaurant! component restaurant-to-create) calls-generate-id (bond/calls helper-id/generate-id) args-generate-id (:args (get calls-generate-id 0)) calls-create-restaurant! (bond/calls db/create-restaurant!) args-create-restaurant (:args (get calls-create-restaurant! 0)) calls-retrieve-restaurant (bond/calls db/retrieve-restaurant) args-retrieve-restaurant (:args (get calls-retrieve-restaurant 0))] (is (= 1 (count calls-generate-id))) (is (= "restaurant" (nth args-generate-id 0))) (is (= 1 (count calls-create-restaurant!))) (is (= {} (nth args-create-restaurant 0))) (is (= created-restaurant (nth args-create-restaurant 1))) (is (= 1 (count calls-retrieve-restaurant))) (is (= {} (nth args-retrieve-restaurant 0))) (is (= 323 (nth args-retrieve-restaurant 1))) (is (= created-restaurant resultset)))))) (def restaurant-to-update {:id 323 :name "<NAME>" :tags ["fast food"]}) (def restaurant-in-db {:id 323 :name "<NAME>" }) (deftest update-restaurant (testing "must be update a restaurant" (with-stub! [[db/retrieve-restaurant (fn [component id] restaurant-in-db)] [db/update-restaurant! (fn [component restaurant])]] (let [resultset (controller/update-restaurant! component 323 restaurant-to-update) calls-db-retrieve (bond/calls db/retrieve-restaurant) calls-db-update (bond/calls db/update-restaurant!) args-db-update (:args (get calls-db-update 0))] (is (= 1 (count calls-db-retrieve))) (is (= 1 (count calls-db-update))) (is (= {} (nth args-db-update 0))) (is (= restaurant-to-update (nth args-db-update 1))) (is (= restaurant-to-update resultset))))))
true
(ns foodship-restaurant.domain.controller-test (:require [clojure.test :refer :all] [bond.james :as bond :refer [with-stub!]] [foodship-restaurant.component-fixture :refer [setup-custom-with-lifecycle component]] [foodship-restaurant.adapters.db-adapter :as db-adapter] [foodship-restaurant.domain.domain-functions.filter-restaurants :as filter-restaurants] [foodship-restaurant.domain.controller :as controller] [foodship-restaurant.domain.domain-functions.helper-id :as helper-id] [foodship-restaurant.adapters.db-adapter :as db])) (use-fixtures :once (setup-custom-with-lifecycle {:db {}})) (def restaurant {:restaurant/name "Mexicaníssimo" :restaurant/tags ["mexican"]}) (def restaurants [{:restaurant/name "Mexicaníssimo" :restaurant/tags ["mexican"]} {:restaurant/name "Aoyama" :restaurant/tags ["japanese"]} {:restaurant/name "Sancho Pancho" :restaurant/tags ["spanish"]} {:restaurant/name "Aokitama" :restaurant/tags ["japanese"]}]) (def filtered-restaurants [{:restaurant/name "Mexicaníssimo" :restaurant/tags ["mexican"]}]) (deftest get-restaurant (testing "must be return the info of restaurant" (with-stub! [[db-adapter/retrieve-restaurant (fn [component id] restaurant)]] (let [resultset (controller/get-restaurant component 1)] (is (= 1 (-> db-adapter/retrieve-restaurant bond/calls count))) (is (= restaurant resultset))))) (testing "must be return nil when not found restaurant" (with-stub! [[db-adapter/retrieve-restaurant (fn [component id] nil)]] (let [resultset (controller/get-restaurant component 2)] (is (= 1 (-> db-adapter/retrieve-restaurant bond/calls count))) (is (= nil resultset)))))) (deftest restaurants (testing "must be return filtered list of restaurants" (with-stub! [[db-adapter/all-restaurants (fn [component] restaurants)] [filter-restaurants/by-name-and-tags (fn [restaurants name tags] filtered-restaurants)]] (let [resultset (controller/restaurants component "mex" ["mexican"]) calls-filter-restaurants (bond/calls filter-restaurants/by-name-and-tags) args-filter-restaurants (:args (get calls-filter-restaurants 0))] (is (= 1 (-> db-adapter/all-restaurants bond/calls count))) (is (= 1 (count calls-filter-restaurants))) (is (= restaurants (nth args-filter-restaurants 0))) (is (= "mex" (nth args-filter-restaurants 1))) (is (= ["mexican"] (nth args-filter-restaurants 2))) (is (= filtered-restaurants resultset)))))) (def restaurant-to-create {:name "Burger King"}) (def created-restaurant {:id 323 :name "Burger King"}) (deftest create-restaurant (testing "must be create a restaurant" (with-stub! [[helper-id/generate-id (fn [model] 323)] [db/create-restaurant! (fn [component restaurant] )] [db/retrieve-restaurant (fn [component id] created-restaurant)]] (let [resultset (controller/create-restaurant! component restaurant-to-create) calls-generate-id (bond/calls helper-id/generate-id) args-generate-id (:args (get calls-generate-id 0)) calls-create-restaurant! (bond/calls db/create-restaurant!) args-create-restaurant (:args (get calls-create-restaurant! 0)) calls-retrieve-restaurant (bond/calls db/retrieve-restaurant) args-retrieve-restaurant (:args (get calls-retrieve-restaurant 0))] (is (= 1 (count calls-generate-id))) (is (= "restaurant" (nth args-generate-id 0))) (is (= 1 (count calls-create-restaurant!))) (is (= {} (nth args-create-restaurant 0))) (is (= created-restaurant (nth args-create-restaurant 1))) (is (= 1 (count calls-retrieve-restaurant))) (is (= {} (nth args-retrieve-restaurant 0))) (is (= 323 (nth args-retrieve-restaurant 1))) (is (= created-restaurant resultset)))))) (def restaurant-to-update {:id 323 :name "PI:NAME:<NAME>END_PI" :tags ["fast food"]}) (def restaurant-in-db {:id 323 :name "PI:NAME:<NAME>END_PI" }) (deftest update-restaurant (testing "must be update a restaurant" (with-stub! [[db/retrieve-restaurant (fn [component id] restaurant-in-db)] [db/update-restaurant! (fn [component restaurant])]] (let [resultset (controller/update-restaurant! component 323 restaurant-to-update) calls-db-retrieve (bond/calls db/retrieve-restaurant) calls-db-update (bond/calls db/update-restaurant!) args-db-update (:args (get calls-db-update 0))] (is (= 1 (count calls-db-retrieve))) (is (= 1 (count calls-db-update))) (is (= {} (nth args-db-update 0))) (is (= restaurant-to-update (nth args-db-update 1))) (is (= restaurant-to-update resultset))))))
[ { "context": "; Copyright (c) Anna Shchiptsova, IIASA. All rights reserved.\r\n; The use and dis", "end": 34, "score": 0.9998924136161804, "start": 18, "tag": "NAME", "value": "Anna Shchiptsova" }, { "context": " \"Wraps writing of file content.\"\r\n :author \"Anna Shchiptsova\"}\r\n utilities-clj.writer\r\n (:require [clojure.ja", "end": 528, "score": 0.9998993873596191, "start": 512, "tag": "NAME", "value": "Anna Shchiptsova" } ]
src/utilities_clj/writer.clj
shchipts/utilities-clj
0
; Copyright (c) Anna Shchiptsova, IIASA. All rights reserved. ; The use and distribution terms for this software are covered by the ; MIT License (http://opensource.org/licenses/MIT) ; which can be found in the file LICENSE at the root of this distribution. ; By using this software in any fashion, you are agreeing to be bound by ; the terms of this license. ; You must not remove this notice, or any other, from this software. (ns ^{:doc "Wraps writing of file content." :author "Anna Shchiptsova"} utilities-clj.writer (:require [clojure.java.io :as io] [clojure-csv.core :as csv])) (defn csv-file "Writes data to a csv file. If target-dir does not exists, it is created before saving. File content in data should be represented as a sequence of sequences of strings. The data is stored by rows. File is saved to [target-dir]-[file-name]. Returns an absolute path to the target-dir. ## Usage (require '[utilities.writer :refer :all]) (csv-file \"folder\" \"file.csv\" [[\"header 1\" \"header 2\"] [\"row_1_col_1\" \"row_1_col_2\"] [\"row_2_col_1\" \"row_2_col_2\"]]) " [target-dir file-name data] (let [parent-dir (io/file target-dir) file (io/file parent-dir file-name)] (if-not (.exists parent-dir) (.mkdir parent-dir)) (with-open [writer (io/writer file)] (spit writer (csv/write-csv data))) (identity (.getAbsolutePath parent-dir)))) (defn txt-file "Writes data to a text file. If target-dir does not exists, it is created before saving. File content in lines should be represented as a sequence of strings. File is saved to [target-dir]-[file-name]. Returns an absolute path to the target-dir. ## Usage (require '[utilities.writer :refer :all]) (txt-file \"folder\" \"file.asc\" [\"line 1\" \"line 2\" \"line 3\"])" [target-dir file-name lines] (let [parent-dir (io/file target-dir) file (io/file parent-dir file-name)] (if-not (.exists parent-dir) (.mkdir parent-dir)) (with-open [file-writer (io/writer file)] (doseq [line lines] (.write file-writer ^java.lang.String line) (.newLine ^java.io.BufferedWriter file-writer))) (identity (.getAbsolutePath parent-dir))))
30664
; Copyright (c) <NAME>, IIASA. All rights reserved. ; The use and distribution terms for this software are covered by the ; MIT License (http://opensource.org/licenses/MIT) ; which can be found in the file LICENSE at the root of this distribution. ; By using this software in any fashion, you are agreeing to be bound by ; the terms of this license. ; You must not remove this notice, or any other, from this software. (ns ^{:doc "Wraps writing of file content." :author "<NAME>"} utilities-clj.writer (:require [clojure.java.io :as io] [clojure-csv.core :as csv])) (defn csv-file "Writes data to a csv file. If target-dir does not exists, it is created before saving. File content in data should be represented as a sequence of sequences of strings. The data is stored by rows. File is saved to [target-dir]-[file-name]. Returns an absolute path to the target-dir. ## Usage (require '[utilities.writer :refer :all]) (csv-file \"folder\" \"file.csv\" [[\"header 1\" \"header 2\"] [\"row_1_col_1\" \"row_1_col_2\"] [\"row_2_col_1\" \"row_2_col_2\"]]) " [target-dir file-name data] (let [parent-dir (io/file target-dir) file (io/file parent-dir file-name)] (if-not (.exists parent-dir) (.mkdir parent-dir)) (with-open [writer (io/writer file)] (spit writer (csv/write-csv data))) (identity (.getAbsolutePath parent-dir)))) (defn txt-file "Writes data to a text file. If target-dir does not exists, it is created before saving. File content in lines should be represented as a sequence of strings. File is saved to [target-dir]-[file-name]. Returns an absolute path to the target-dir. ## Usage (require '[utilities.writer :refer :all]) (txt-file \"folder\" \"file.asc\" [\"line 1\" \"line 2\" \"line 3\"])" [target-dir file-name lines] (let [parent-dir (io/file target-dir) file (io/file parent-dir file-name)] (if-not (.exists parent-dir) (.mkdir parent-dir)) (with-open [file-writer (io/writer file)] (doseq [line lines] (.write file-writer ^java.lang.String line) (.newLine ^java.io.BufferedWriter file-writer))) (identity (.getAbsolutePath parent-dir))))
true
; Copyright (c) PI:NAME:<NAME>END_PI, IIASA. All rights reserved. ; The use and distribution terms for this software are covered by the ; MIT License (http://opensource.org/licenses/MIT) ; which can be found in the file LICENSE at the root of this distribution. ; By using this software in any fashion, you are agreeing to be bound by ; the terms of this license. ; You must not remove this notice, or any other, from this software. (ns ^{:doc "Wraps writing of file content." :author "PI:NAME:<NAME>END_PI"} utilities-clj.writer (:require [clojure.java.io :as io] [clojure-csv.core :as csv])) (defn csv-file "Writes data to a csv file. If target-dir does not exists, it is created before saving. File content in data should be represented as a sequence of sequences of strings. The data is stored by rows. File is saved to [target-dir]-[file-name]. Returns an absolute path to the target-dir. ## Usage (require '[utilities.writer :refer :all]) (csv-file \"folder\" \"file.csv\" [[\"header 1\" \"header 2\"] [\"row_1_col_1\" \"row_1_col_2\"] [\"row_2_col_1\" \"row_2_col_2\"]]) " [target-dir file-name data] (let [parent-dir (io/file target-dir) file (io/file parent-dir file-name)] (if-not (.exists parent-dir) (.mkdir parent-dir)) (with-open [writer (io/writer file)] (spit writer (csv/write-csv data))) (identity (.getAbsolutePath parent-dir)))) (defn txt-file "Writes data to a text file. If target-dir does not exists, it is created before saving. File content in lines should be represented as a sequence of strings. File is saved to [target-dir]-[file-name]. Returns an absolute path to the target-dir. ## Usage (require '[utilities.writer :refer :all]) (txt-file \"folder\" \"file.asc\" [\"line 1\" \"line 2\" \"line 3\"])" [target-dir file-name lines] (let [parent-dir (io/file target-dir) file (io/file parent-dir file-name)] (if-not (.exists parent-dir) (.mkdir parent-dir)) (with-open [file-writer (io/writer file)] (doseq [line lines] (.write file-writer ^java.lang.String line) (.newLine ^java.io.BufferedWriter file-writer))) (identity (.getAbsolutePath parent-dir))))
[ { "context": "ord string?]]]])\n\n\n(def FakeUser\n {:firstname \"john\"\n :lastname \"doe\"\n :email \"john@doe.", "end": 841, "score": 0.998289167881012, "start": 837, "tag": "NAME", "value": "john" }, { "context": " FakeUser\n {:firstname \"john\"\n :lastname \"doe\"\n :email \"john@doe.me\"\n :passport \"1", "end": 863, "score": 0.998209536075592, "start": 860, "tag": "NAME", "value": "doe" }, { "context": "e \"john\"\n :lastname \"doe\"\n :email \"john@doe.me\"\n :passport \"123456789\"\n :address {:st", "end": 893, "score": 0.9999071359634399, "start": 882, "tag": "EMAIL", "value": "john@doe.me" }, { "context": " :country \"USA\"}\n :credentials {:login \"john\"\n :password \"p4$$w0rd\"}})\n\n\n;; (m", "end": 1112, "score": 0.9177225232124329, "start": 1108, "tag": "NAME", "value": "john" }, { "context": "als {:login \"john\"\n :password \"p4$$w0rd\"}})\n\n\n;; (m/encode User FakeUser Transformer)\n;; ", "end": 1150, "score": 0.9994025826454163, "start": 1142, "tag": "PASSWORD", "value": "p4$$w0rd" }, { "context": "ser FakeUser Transformer)\n;; =>\n;; {:firstname \"john\"\n;; :lastname \"doe\"\n;; :email \"john@do", "end": 1225, "score": 0.9979800581932068, "start": 1221, "tag": "NAME", "value": "john" }, { "context": ")\n;; =>\n;; {:firstname \"john\"\n;; :lastname \"doe\"\n;; :email \"john@doe.me\"\n;; :passport ", "end": 1248, "score": 0.9981352090835571, "start": 1245, "tag": "NAME", "value": "doe" }, { "context": " \"john\"\n;; :lastname \"doe\"\n;; :email \"john@doe.me\"\n;; :passport #secret{:data \"*** CENSORED", "end": 1279, "score": 0.9999054074287415, "start": 1268, "tag": "EMAIL", "value": "john@doe.me" }, { "context": ":category :personal}\n;; :credentials {:login \"john\"\n;; :password #secret{:data \"*", "end": 1518, "score": 0.9282710552215576, "start": 1514, "tag": "NAME", "value": "john" }, { "context": "ut/transformer)\n data {:password \"p4$$w0rd\"}]\n (is (= data (as-> data $\n ", "end": 1865, "score": 0.9994485378265381, "start": 1857, "tag": "PASSWORD", "value": "p4$$w0rd" } ]
src/test/clojure/secret/keeper/malli_test.cljc
sultanov-team/secret-keeper
24
(ns secret.keeper.malli-test (:require #?(:clj [clojure.test :refer [deftest testing is]] :cljs [cljs.test :refer [deftest testing is]]) [malli.core :as m] [secret.keeper :as keeper] [secret.keeper.malli :as sut])) (def Transformer (sut/transformer {:key :category ; by default ::keeper/secret :secrets {:passport :confidential :password :internal-only}})) (def User [:map [:firstname string?] [:lastname string?] [:email string?] [:passport string?] [:address [:map {:category :personal} [:street string?] [:zip int?] [:city string?] [:country [:enum "Russia" "USA"]]]] [:credentials [:map [:login string?] [:password string?]]]]) (def FakeUser {:firstname "john" :lastname "doe" :email "john@doe.me" :passport "123456789" :address {:street "1488 Sumner Street" :zip 90025 :city "West Los Angeles" :country "USA"} :credentials {:login "john" :password "p4$$w0rd"}}) ;; (m/encode User FakeUser Transformer) ;; => ;; {:firstname "john" ;; :lastname "doe" ;; :email "john@doe.me" ;; :passport #secret{:data "*** CENSORED ***" ;; :category :confidential} ;; :address #secret{:data "*** CENSORED ***" ;; :category :personal} ;; :credentials {:login "john" ;; :password #secret{:data "*** CENSORED ***" ;; :category :internal-only}}} (deftest transformer-test (testing "transformer should work without any options" (let [schema [:map [:password string?]] transformer (sut/transformer) data {:password "p4$$w0rd"}] (is (= data (as-> data $ (m/encode schema $ transformer) (m/decode schema $ transformer)))))) (testing "transformer should work with the specified options" (let [{:keys [passport address credentials]} (m/encode User FakeUser Transformer) password (:password credentials)] (is (every? keeper/secret? [passport address password])) (is (= :confidential (keeper/category passport))) (is (= (:passport FakeUser) (keeper/data passport))) (is (= (:address FakeUser) (keeper/data address))) (is (= :personal (keeper/category address))) (is (= (get-in FakeUser [:credentials :password]) (keeper/data password))) (is (= :internal-only (keeper/category password))) (is (= FakeUser (as-> FakeUser $ (m/encode User $ Transformer) (m/decode User $ Transformer)))))))
107669
(ns secret.keeper.malli-test (:require #?(:clj [clojure.test :refer [deftest testing is]] :cljs [cljs.test :refer [deftest testing is]]) [malli.core :as m] [secret.keeper :as keeper] [secret.keeper.malli :as sut])) (def Transformer (sut/transformer {:key :category ; by default ::keeper/secret :secrets {:passport :confidential :password :internal-only}})) (def User [:map [:firstname string?] [:lastname string?] [:email string?] [:passport string?] [:address [:map {:category :personal} [:street string?] [:zip int?] [:city string?] [:country [:enum "Russia" "USA"]]]] [:credentials [:map [:login string?] [:password string?]]]]) (def FakeUser {:firstname "<NAME>" :lastname "<NAME>" :email "<EMAIL>" :passport "123456789" :address {:street "1488 Sumner Street" :zip 90025 :city "West Los Angeles" :country "USA"} :credentials {:login "<NAME>" :password "<PASSWORD>"}}) ;; (m/encode User FakeUser Transformer) ;; => ;; {:firstname "<NAME>" ;; :lastname "<NAME>" ;; :email "<EMAIL>" ;; :passport #secret{:data "*** CENSORED ***" ;; :category :confidential} ;; :address #secret{:data "*** CENSORED ***" ;; :category :personal} ;; :credentials {:login "<NAME>" ;; :password #secret{:data "*** CENSORED ***" ;; :category :internal-only}}} (deftest transformer-test (testing "transformer should work without any options" (let [schema [:map [:password string?]] transformer (sut/transformer) data {:password "<PASSWORD>"}] (is (= data (as-> data $ (m/encode schema $ transformer) (m/decode schema $ transformer)))))) (testing "transformer should work with the specified options" (let [{:keys [passport address credentials]} (m/encode User FakeUser Transformer) password (:password credentials)] (is (every? keeper/secret? [passport address password])) (is (= :confidential (keeper/category passport))) (is (= (:passport FakeUser) (keeper/data passport))) (is (= (:address FakeUser) (keeper/data address))) (is (= :personal (keeper/category address))) (is (= (get-in FakeUser [:credentials :password]) (keeper/data password))) (is (= :internal-only (keeper/category password))) (is (= FakeUser (as-> FakeUser $ (m/encode User $ Transformer) (m/decode User $ Transformer)))))))
true
(ns secret.keeper.malli-test (:require #?(:clj [clojure.test :refer [deftest testing is]] :cljs [cljs.test :refer [deftest testing is]]) [malli.core :as m] [secret.keeper :as keeper] [secret.keeper.malli :as sut])) (def Transformer (sut/transformer {:key :category ; by default ::keeper/secret :secrets {:passport :confidential :password :internal-only}})) (def User [:map [:firstname string?] [:lastname string?] [:email string?] [:passport string?] [:address [:map {:category :personal} [:street string?] [:zip int?] [:city string?] [:country [:enum "Russia" "USA"]]]] [:credentials [:map [:login string?] [:password string?]]]]) (def FakeUser {:firstname "PI:NAME:<NAME>END_PI" :lastname "PI:NAME:<NAME>END_PI" :email "PI:EMAIL:<EMAIL>END_PI" :passport "123456789" :address {:street "1488 Sumner Street" :zip 90025 :city "West Los Angeles" :country "USA"} :credentials {:login "PI:NAME:<NAME>END_PI" :password "PI:PASSWORD:<PASSWORD>END_PI"}}) ;; (m/encode User FakeUser Transformer) ;; => ;; {:firstname "PI:NAME:<NAME>END_PI" ;; :lastname "PI:NAME:<NAME>END_PI" ;; :email "PI:EMAIL:<EMAIL>END_PI" ;; :passport #secret{:data "*** CENSORED ***" ;; :category :confidential} ;; :address #secret{:data "*** CENSORED ***" ;; :category :personal} ;; :credentials {:login "PI:NAME:<NAME>END_PI" ;; :password #secret{:data "*** CENSORED ***" ;; :category :internal-only}}} (deftest transformer-test (testing "transformer should work without any options" (let [schema [:map [:password string?]] transformer (sut/transformer) data {:password "PI:PASSWORD:<PASSWORD>END_PI"}] (is (= data (as-> data $ (m/encode schema $ transformer) (m/decode schema $ transformer)))))) (testing "transformer should work with the specified options" (let [{:keys [passport address credentials]} (m/encode User FakeUser Transformer) password (:password credentials)] (is (every? keeper/secret? [passport address password])) (is (= :confidential (keeper/category passport))) (is (= (:passport FakeUser) (keeper/data passport))) (is (= (:address FakeUser) (keeper/data address))) (is (= :personal (keeper/category address))) (is (= (get-in FakeUser [:credentials :password]) (keeper/data password))) (is (= :internal-only (keeper/category password))) (is (= FakeUser (as-> FakeUser $ (m/encode User $ Transformer) (m/decode User $ Transformer)))))))
[ { "context": "g developed for the CLASS Project\n;;\n;; Copyright: Roi Sucasas Font, Atos Research and Innovation, 2018.\n;;\n;; This c", "end": 167, "score": 0.999793291091919, "start": 151, "tag": "NAME", "value": "Roi Sucasas Font" }, { "context": "6.1\"] ; https://github.com/weavejester/compojure\n [ring/ring-json \"0.4", "end": 1517, "score": 0.9920036792755127, "start": 1506, "tag": "USERNAME", "value": "weavejester" }, { "context": " ; MIT License https://github.com/ring-clojure/ring-json\n [ring/ring-defaults ", "end": 1635, "score": 0.9940196871757507, "start": 1623, "tag": "USERNAME", "value": "ring-clojure" }, { "context": "\"] ; MIT License https://github.com/ring-clojure/ring-defaults\n [ring-cors/ring-", "end": 1753, "score": 0.7979382872581482, "start": 1741, "tag": "USERNAME", "value": "ring-clojure" }, { "context": "e Public License - Version 1.0 https://github.com/clojure/tools.logging\n [log4j/log4j \"1.", "end": 1982, "score": 0.560270369052887, "start": 1975, "tag": "USERNAME", "value": "clojure" }, { "context": "- Version 1.0; \"0.5.0-beta4\", https://github.com/replikativ/konserve\n [clj-http \"3.9.1\"] ", "end": 2477, "score": 0.9838292598724365, "start": 2467, "tag": "USERNAME", "value": "replikativ" }, { "context": " ; MIT License https://github.com/dakrone/clj-http/\n [org.clojure/data.js", "end": 2597, "score": 0.9987732768058777, "start": 2590, "tag": "USERNAME", "value": "dakrone" }, { "context": " ; EPL - Version 1.0 https://github.com/clojure/data.json\n :plugins [[lein-ring \"0.12.0\"] ", "end": 2718, "score": 0.583368182182312, "start": 2711, "tag": "USERNAME", "value": "clojure" }, { "context": "] ; https://github.com/weavejester/lein-ring\n [lein-uberwar \"0.2.0\"]]\n ", "end": 2823, "score": 0.9990223050117493, "start": 2812, "tag": "USERNAME", "value": "weavejester" } ]
clojure old project/project.clj
class-rotterdam/Rotterdam
0
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; This code is being developed for the CLASS Project ;; ;; Copyright: Roi Sucasas Font, Atos Research and Innovation, 2018. ;; ;; This code is licensed under an Apache 2.0 license. Please, refer to the ;; LICENSE.TXT file for more information ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; KUBERNETES - REST API ;; - v0.0.1 ....... 30.08.2018 CLASS project - kubernetes ;; - v0.0.2 ....... 18.09.2018 basic operations added to api ;; - v0.0.3 ....... 20.09.2018 basic operations working in K8s ;; - v0.0.4 ....... 01.10.2018 gui updated; code reworked ;; - v0.0.5 ....... 09.10.2018 responses updated ;; - v0.0.6 ....... 19.11.2018 openshift implementation - ini ;; - v0.0.8 ....... 27.11.2018 openshift implementation - errors fixed ;; - v0.0.9 ....... 13.12.2018 integration with SLALite; basic rules engine ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defproject class/kubernetes-api "0.0.9.4" :description "CLASS - Rotterdam-CaaS" :url "-" :min-lein-version "2.0.0" :dependencies [[org.clojure/clojure "1.9.0"] [org.clojure/core.async "0.4.474"] ; Eclipse Public License; https://github.com/clojure/core.async [compojure "1.6.1"] ; https://github.com/weavejester/compojure [ring/ring-json "0.4.0"] ; MIT License https://github.com/ring-clojure/ring-json [ring/ring-defaults "0.3.2"] ; MIT License https://github.com/ring-clojure/ring-defaults [ring-cors/ring-cors "0.1.12"] ; Eclipse Public License [org.clojure/tools.logging "0.3.1"] ; Eclipse Public License - Version 1.0 https://github.com/clojure/tools.logging [log4j/log4j "1.2.17" ; Apache License, Version 2.0 http://logging.apache.org/log4j/1.2/ :exclusions [javax.mail/mail javax.jms/jms com.sun.jdmk/jmxtools com.sun.jmx/jmxri]] [io.replikativ/konserve "0.5.0-beta4"] ; Eclipse Public License - Version 1.0; "0.5.0-beta4", https://github.com/replikativ/konserve [clj-http "3.9.1"] ; MIT License https://github.com/dakrone/clj-http/ [org.clojure/data.json "0.2.6"]] ; EPL - Version 1.0 https://github.com/clojure/data.json :plugins [[lein-ring "0.12.0"] ; https://github.com/weavejester/lein-ring [lein-uberwar "0.2.0"]] :uberwar {:handler atos.class.restapi.handler/app} :ring {:handler atos.class.restapi.handler/app :port 18083 :open-browser? false :resources-war-path "WEB-INF/classes/"} :test-paths ["test"] :profiles {:dev {:dependencies [[javax.servlet/servlet-api "2.5"] [ring/ring-mock "0.3.0"]]}} ;; jvm configuration :jvm-opts ["-Xmx256M" "-Djava.net.preferIPv4Stack=true"])
13927
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; This code is being developed for the CLASS Project ;; ;; Copyright: <NAME>, Atos Research and Innovation, 2018. ;; ;; This code is licensed under an Apache 2.0 license. Please, refer to the ;; LICENSE.TXT file for more information ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; KUBERNETES - REST API ;; - v0.0.1 ....... 30.08.2018 CLASS project - kubernetes ;; - v0.0.2 ....... 18.09.2018 basic operations added to api ;; - v0.0.3 ....... 20.09.2018 basic operations working in K8s ;; - v0.0.4 ....... 01.10.2018 gui updated; code reworked ;; - v0.0.5 ....... 09.10.2018 responses updated ;; - v0.0.6 ....... 19.11.2018 openshift implementation - ini ;; - v0.0.8 ....... 27.11.2018 openshift implementation - errors fixed ;; - v0.0.9 ....... 13.12.2018 integration with SLALite; basic rules engine ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defproject class/kubernetes-api "0.0.9.4" :description "CLASS - Rotterdam-CaaS" :url "-" :min-lein-version "2.0.0" :dependencies [[org.clojure/clojure "1.9.0"] [org.clojure/core.async "0.4.474"] ; Eclipse Public License; https://github.com/clojure/core.async [compojure "1.6.1"] ; https://github.com/weavejester/compojure [ring/ring-json "0.4.0"] ; MIT License https://github.com/ring-clojure/ring-json [ring/ring-defaults "0.3.2"] ; MIT License https://github.com/ring-clojure/ring-defaults [ring-cors/ring-cors "0.1.12"] ; Eclipse Public License [org.clojure/tools.logging "0.3.1"] ; Eclipse Public License - Version 1.0 https://github.com/clojure/tools.logging [log4j/log4j "1.2.17" ; Apache License, Version 2.0 http://logging.apache.org/log4j/1.2/ :exclusions [javax.mail/mail javax.jms/jms com.sun.jdmk/jmxtools com.sun.jmx/jmxri]] [io.replikativ/konserve "0.5.0-beta4"] ; Eclipse Public License - Version 1.0; "0.5.0-beta4", https://github.com/replikativ/konserve [clj-http "3.9.1"] ; MIT License https://github.com/dakrone/clj-http/ [org.clojure/data.json "0.2.6"]] ; EPL - Version 1.0 https://github.com/clojure/data.json :plugins [[lein-ring "0.12.0"] ; https://github.com/weavejester/lein-ring [lein-uberwar "0.2.0"]] :uberwar {:handler atos.class.restapi.handler/app} :ring {:handler atos.class.restapi.handler/app :port 18083 :open-browser? false :resources-war-path "WEB-INF/classes/"} :test-paths ["test"] :profiles {:dev {:dependencies [[javax.servlet/servlet-api "2.5"] [ring/ring-mock "0.3.0"]]}} ;; jvm configuration :jvm-opts ["-Xmx256M" "-Djava.net.preferIPv4Stack=true"])
true
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; This code is being developed for the CLASS Project ;; ;; Copyright: PI:NAME:<NAME>END_PI, Atos Research and Innovation, 2018. ;; ;; This code is licensed under an Apache 2.0 license. Please, refer to the ;; LICENSE.TXT file for more information ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; KUBERNETES - REST API ;; - v0.0.1 ....... 30.08.2018 CLASS project - kubernetes ;; - v0.0.2 ....... 18.09.2018 basic operations added to api ;; - v0.0.3 ....... 20.09.2018 basic operations working in K8s ;; - v0.0.4 ....... 01.10.2018 gui updated; code reworked ;; - v0.0.5 ....... 09.10.2018 responses updated ;; - v0.0.6 ....... 19.11.2018 openshift implementation - ini ;; - v0.0.8 ....... 27.11.2018 openshift implementation - errors fixed ;; - v0.0.9 ....... 13.12.2018 integration with SLALite; basic rules engine ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defproject class/kubernetes-api "0.0.9.4" :description "CLASS - Rotterdam-CaaS" :url "-" :min-lein-version "2.0.0" :dependencies [[org.clojure/clojure "1.9.0"] [org.clojure/core.async "0.4.474"] ; Eclipse Public License; https://github.com/clojure/core.async [compojure "1.6.1"] ; https://github.com/weavejester/compojure [ring/ring-json "0.4.0"] ; MIT License https://github.com/ring-clojure/ring-json [ring/ring-defaults "0.3.2"] ; MIT License https://github.com/ring-clojure/ring-defaults [ring-cors/ring-cors "0.1.12"] ; Eclipse Public License [org.clojure/tools.logging "0.3.1"] ; Eclipse Public License - Version 1.0 https://github.com/clojure/tools.logging [log4j/log4j "1.2.17" ; Apache License, Version 2.0 http://logging.apache.org/log4j/1.2/ :exclusions [javax.mail/mail javax.jms/jms com.sun.jdmk/jmxtools com.sun.jmx/jmxri]] [io.replikativ/konserve "0.5.0-beta4"] ; Eclipse Public License - Version 1.0; "0.5.0-beta4", https://github.com/replikativ/konserve [clj-http "3.9.1"] ; MIT License https://github.com/dakrone/clj-http/ [org.clojure/data.json "0.2.6"]] ; EPL - Version 1.0 https://github.com/clojure/data.json :plugins [[lein-ring "0.12.0"] ; https://github.com/weavejester/lein-ring [lein-uberwar "0.2.0"]] :uberwar {:handler atos.class.restapi.handler/app} :ring {:handler atos.class.restapi.handler/app :port 18083 :open-browser? false :resources-war-path "WEB-INF/classes/"} :test-paths ["test"] :profiles {:dev {:dependencies [[javax.servlet/servlet-api "2.5"] [ring/ring-mock "0.3.0"]]}} ;; jvm configuration :jvm-opts ["-Xmx256M" "-Djava.net.preferIPv4Stack=true"])
[ { "context": " target nil))}]})\n\n;; Card definitions\n\n(defcard \"Account Siphon\"\n {:makes-run true\n :on-play {:req (req", "end": 986, "score": 0.9668552279472351, "start": 979, "tag": "NAME", "value": "Account" }, { "context": " nil))}]})\n\n;; Card definitions\n\n(defcard \"Account Siphon\"\n {:makes-run true\n :on-play {:req (req hq-run", "end": 993, "score": 0.9702968597412109, "start": 987, "tag": "NAME", "value": "Siphon" }, { "context": " 0 (min 4 (available-mu state)))))}]})\n\n(defcard \"Déjà Vu\"\n {:on-play\n {:req (req (not (zone-locked? ", "end": 34383, "score": 0.559672474861145, "start": 34379, "tag": "NAME", "value": "Déjà" }, { "context": "n 4 (available-mu state)))))}]})\n\n(defcard \"Déjà Vu\"\n {:on-play\n {:req (req (not (zone-locked? sta", "end": 34386, "score": 0.5786559581756592, "start": 34385, "tag": "NAME", "value": "u" }, { "context": "runner :extra-turns] (fnil inc 0)))}})\n\n(defcard \"Escher\"\n (letfn [(es [] {:async true\n ", "end": 49531, "score": 0.9870595932006836, "start": 49525, "tag": "NAME", "value": "Escher" }, { "context": "ontinue-ability (es) card nil))}})]}))\n\n(defcard \"Eureka!\"\n {:on-play\n {:async true\n :effect (r", "end": 50661, "score": 0.53809654712677, "start": 50660, "tag": "NAME", "value": "E" }, { "context": " :ability access-effect})]}))\n\n(defcard \"Knifed\"\n (cutlery \"Barrier\"))\n\n(defcard \"Kraken\"\n {:on", "end": 87459, "score": 0.9984073042869568, "start": 87453, "tag": "NAME", "value": "Knifed" }, { "context": "efcard \"Knifed\"\n (cutlery \"Barrier\"))\n\n(defcard \"Kraken\"\n {:on-play\n {:req (req (:stole-agenda runner-", "end": 87501, "score": 0.998782753944397, "start": 87495, "tag": "NAME", "value": "Kraken" }, { "context": "take 6 (:deck runner))) card nil))}}))\n\n(defcard \"Marathon\"\n {:makes-run true\n :on-play {:prompt \"Ch", "end": 96944, "score": 0.865825355052948, "start": 96941, "tag": "NAME", "value": "Mar" }, { "context": "register-events state side card)))}]})\n\n(defcard \"Mars for Martians\"\n (letfn [(count-clan [state] (c", "end": 97676, "score": 0.7970580458641052, "start": 97675, "tag": "NAME", "value": "M" }, { "context": "effect-completed state side eid))))}})\n\n(defcard \"Möbius\"\n {:on-play\n {:req (req rd-runnable)\n :asyn", "end": 100450, "score": 0.9985591769218445, "start": 100444, "tag": "NAME", "value": "Möbius" }, { "context": " (update-all-agenda-points))}})]})\n\n(defcard \"Populist Rally\"\n {:on-play {:req (req (seq (filter #(has-subtyp", "end": 111692, "score": 0.9089689254760742, "start": 111678, "tag": "NAME", "value": "Populist Rally" }, { "context": " targets (map :title targets)))}})]}))\n\n(defcard \"Recon\"\n {:makes-run true\n :on-play {:prompt \"Choose ", "end": 121919, "score": 0.7927500009536743, "start": 121914, "tag": "NAME", "value": "Recon" }, { "context": " :effect (effect (jack-out eid))}}}]})\n\n(defcard \"Rejig\"\n (let [valid-target? (fn [card] (and (runner? c", "end": 122435, "score": 0.8326649069786072, "start": 122430, "tag": "NAME", "value": "Rejig" }, { "context": " card nil)))}})]})\n\n(defcard \"Rumor Mill\"\n (letfn [(eligible? [card] (and (:uniqueness ca", "end": 129985, "score": 0.9533916711807251, "start": 129975, "tag": "NAME", "value": "Rumor Mill" } ]
src/clj/game/cards/events.clj
jove-m/netrunner
0
(ns game.cards.events (:require [game.core :refer :all] [game.utils :refer :all] [jinteki.utils :refer :all] [clojure.string :as string])) (defn- cutlery [subtype] {:makes-run true :on-play {:async true :prompt "Choose a server:" :choices (req runnable-servers) :effect (effect (make-run eid target card))} :events [{:event :subroutines-broken :async true :req (req (and (has-subtype? target subtype) (every? :broken (:subroutines target)) (let [pred #(and (has-subtype? (first %) subtype) (every? :broken (:subroutines (first %))))] (first-event? state side :subroutines-broken pred)))) :msg (msg "trash " (card-str state target)) :effect (effect (trash eid target nil))}]}) ;; Card definitions (defcard "Account Siphon" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :ability {:async true :msg (msg "force the Corp to lose " (min 5 (:credit corp)) " [Credits], gain " (* 2 (min 5 (:credit corp))) " [Credits] and take 2 tags") :effect (req (wait-for (gain-tags state :runner 2) (wait-for (gain-credits state :runner (* 2 (min 5 (:credit corp)))) (lose-credits state :corp eid (min 5 (:credit corp))))))}})]}) (defcard "Always Have a Backup Plan" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :msg (msg "make a run on " target) :effect (req (wait-for (make-run state side target card) (let [card (get-card state card)] (if (get-in card [:special :run-again]) (make-run state side eid target card {:ignore-costs true}) (effect-completed state side eid)))))} :events [{:event :run-ends :optional {:req (req (and (not (get-in card [:special :run-again])) (:unsuccessful target))) :player :runner :prompt "Make another run on the same server?" :yes-ability {:effect (req (let [last-run (get-in @state [:runner :register :last-run]) run-ice (get-in @state (concat [:corp :servers] (:server last-run) [:ices])) pos (:position last-run) ice (when (and pos (pos? pos) (<= pos (count run-ice))) (get-card state (nth run-ice (dec pos))))] (update! state side (update card :special assoc :run-again true :run-again-ice ice))))}}} {:event :encounter-ice :once :per-run :req (req (and (get-in card [:special :run-again]) (same-card? (:ice context) (get-in card [:special :run-again-ice])))) :msg (msg "bypass " (:title (:ice context))) :effect (req (bypass-ice state))}]}) (defcard "Amped Up" {:on-play {:msg "gain [Click][Click][Click] and suffer 1 brain damage" :async true :effect (effect (gain :click 3) (damage eid :brain 1 {:unpreventable true :card card}))}}) (defcard "Another Day, Another Paycheck" {:events [{:event :agenda-stolen :trace {:base 0 :unsuccessful {:async true :effect (effect (gain-credits :runner eid (+ (:agenda-point runner) (:agenda-point corp)))) :msg (msg (str "gain " (+ (:agenda-point runner) (:agenda-point corp)) " [Credits]"))}}}]}) (defcard "Apocalypse" (let [corp-trash {:async true :effect (req (let [ai (all-installed state :corp) onhost (filter #(= '(:onhost) (:zone %)) ai) unhosted (->> ai (remove #(= '(:onhost) (:zone %))) (sort-by #(vec (:zone %))) (reverse)) allcorp (concat onhost unhosted)] (trash-cards state :runner eid allcorp)))} runner-facedown {:effect (req (let [installedcards (all-active-installed state :runner) ishosted (fn [c] (or (= ["onhost"] (get c :zone)) (= '(:onhost) (get c :zone)))) hostedcards (filter ishosted installedcards) nonhostedcards (remove ishosted installedcards)] (doseq [oc hostedcards :let [c (get-card state oc)] :when (not (:condition c))] (flip-facedown state side c)) (doseq [oc nonhostedcards :let [c (get-card state oc)]] (flip-facedown state side c))))}] {:on-play {:req (req (and (some #{:hq} (:successful-run runner-reg)) (some #{:rd} (:successful-run runner-reg)) (some #{:archives} (:successful-run runner-reg)))) :async true ;; trash cards from right to left ;; otherwise, auto-killing servers would move the cards to the next server ;; so they could no longer be trashed in the same loop :msg "trash all installed Corp cards and turn all installed Runner cards facedown" :effect (req (wait-for (resolve-ability state side corp-trash card nil) (continue-ability state side runner-facedown card nil)))}})) (defcard "Because I Can" {:makes-run true :on-play {:async true :prompt "Choose a server" :choices (req (filter #(can-run-server? state %) remotes)) :effect (effect (make-run eid target card))} :events [(successful-run-replace-access {:target-server :remote :this-card-run true :ability {:msg "shuffle all cards in the server into R&D" :effect (req (doseq [c (:content run-server)] (move state :corp c :deck)) (shuffle! state :corp :deck))}})]}) (defcard "Black Hat" {:on-play {:trace {:base 4 :unsuccessful {:effect (effect (register-events card [{:event :pre-access :duration :end-of-turn :req (req (#{:hq :rd} target)) :effect (effect (access-bonus target 2))}]))}}}}) (defcard "Blackmail" {:makes-run true :on-play {:req (req (has-bad-pub? state)) :prompt "Choose a server" :choices (req runnable-servers) :msg "prevent ICE from being rezzed during this run" :async true :effect (effect (register-run-flag! card :can-rez (fn [state side card] (if (ice? card) ((constantly false) (toast state :corp "Cannot rez ICE on this run due to Blackmail")) true))) (make-run eid target card))}}) (defcard "Blueberry!™ Diesel" {:on-play {:async true :prompt "Move a card to the bottom of the stack?" :not-distinct true :choices (req (conj (vec (take 2 (:deck runner))) "No")) :effect (req (when-not (string? target) (move state side target :deck)) (system-msg state side (str "looks at the top 2 cards of the stack" (when-not (string? target) " and adds one to the bottom of the stack"))) (system-msg state side "uses Blueberry!™ Diesel to draw 2 cards") (draw state :runner eid 2 nil))}}) (defcard "Bravado" ; Bravado only counts distinct pieces of ice that were passed. ; That means if a piece of ice was reinstalled and then repassed, it needs to be counted twice. ; This is handled by tracking :card-moved and counting them in :special :bravado-moved. (letfn [(iced-servers [state side eid card] (filter #(-> (get-in @state (cons :corp (server->zone state %))) :ices count pos?) (zones->sorted-names (get-runnable-zones state side eid card nil))))] {:makes-run true :on-play {:async true :req (req (pos? (count (iced-servers state side eid card)))) :prompt "Choose an iced server" :choices (req (iced-servers state side eid card)) :effect (effect (register-events card [{:event :pass-ice :duration :end-of-run :effect (effect (update! (update-in (get-card state card) [:special :bravado-passed] conj (:cid (:ice context)))))}]) (make-run eid target (get-card state card)))} :events [{:event :run-ends :silent (req true) :msg (msg "gain " (+ 6 (count (distinct (get-in card [:special :bravado-passed]))) (get-in card [:special :bravado-moved] 0)) " [Credits]") :async true :effect (effect (gain-credits :runner eid (+ 6 (count (distinct (get-in card [:special :bravado-passed]))) (get-in card [:special :bravado-moved] 0))))} {:event :card-moved :silent (req true) :req (req (in-coll? (get-in card [:special :bravado-passed] []) (:cid target))) :effect (effect (update! (update-in card [:special :bravado-moved] (fnil inc 0))) (update! (update-in (get-card state card) [:special :bravado-passed] (fn [cids] (remove #(= % (:cid target)) cids)))))}]})) (defcard "Bribery" {:makes-run true :on-play {:async true :prompt "How many credits?" :choices :credit :msg (msg "increase the rez cost of the first unrezzed ICE approached by " target " [Credits]") :effect (effect (continue-ability (let [bribery-x target] {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (register-events card [{:event :approach-ice :duration :end-of-run :unregister-once-resolved true :req (req (and (not (rezzed? (:ice context))) (first-run-event? state side :approach-ice (fn [targets] (let [context (first targets)] (not (rezzed? (:ice context)))))))) :effect (effect (register-floating-effect card (let [approached-ice (:ice context)] {:type :rez-additional-cost :duration :end-of-run :unregister-once-resolved true :req (req (same-card? approached-ice target)) :value [:credit bribery-x]})))}]) (make-run eid target card))}) card nil))}}) (defcard "Brute-Force-Hack" {:on-play {:req (req (some #(and (ice? %) (rezzed? %) (can-pay? state side eid card nil [:credit (rez-cost state side %)])) (all-installed state :corp))) :async true :effect (req (let [affordable-ice (seq (filter identity (for [ice (all-installed state :corp) :when (and (ice? ice) (rezzed? ice)) :let [cost (rez-cost state side ice)]] (when (can-pay? state side eid card nil [:credit cost]) [(:cid ice) cost]))))] (continue-ability state side {:prompt "How many [Credits]?" :choices :credit :msg (msg "spends " target " [Credit] on Brute-Force-Hack") :effect (effect (continue-ability {:choices {:card #(and (rezzed? %) (some (fn [c] (and (= (first c) (:cid %)) (<= (second c) target))) affordable-ice))} :msg (msg "derez " (card-str state target)) :effect (effect (derez target))} card nil))} card nil)))}}) (defcard "Build Script" {:on-play {:msg "gain 1 [Credits] and draw 2 cards" :async true :effect (req (wait-for (gain-credits state side 1) (draw state side eid 2 nil)))}}) (defcard "By Any Means" {:on-play {:effect (effect (register-events card [{:event :access :duration :end-of-turn :req (req (not (in-discard? target))) :interactive (req true) :async true :msg (msg "trash " (:title target) " at no cost and suffer 1 meat damage") :effect (req (wait-for (trash state side (assoc target :seen true) nil) (swap! state assoc-in [:runner :register :trashed-card] true) (damage state :runner eid :meat 1 {:unboostable true})))}]))}}) (defcard "Calling in Favors" {:on-play {:msg (msg "gain " (count (filter #(and (has-subtype? % "Connection") (resource? %)) (all-active-installed state :runner))) " [Credits]") :async true :effect (effect (gain-credits eid (count (filter #(and (has-subtype? % "Connection") (resource? %)) (all-active-installed state :runner)))))}}) (defcard "Career Fair" {:on-play {:prompt "Select a resource to install from your Grip" :req (req (some #(and (resource? %) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side % {:cost-bonus -3})])) (:hand runner))) :choices {:req (req (and (resource? target) (in-hand? target) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target {:cost-bonus -3})])))} :async true :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) target {:cost-bonus -3}))}}) (defcard "Careful Planning" {:on-play {:prompt "Choose a card in or protecting a remote server" :choices {:card #(is-remote? (second (get-zone %)))} :effect (effect (add-icon card target "CP" "red") (system-msg (str "prevents the rezzing of " (card-str state target) " for the rest of this turn via Careful Planning")) (register-events card [{:event :runner-turn-ends :duration :end-of-turn :effect (effect (remove-icon card target))}]) (register-turn-flag! card :can-rez (fn [state side card] (if (same-card? card target) ((constantly false) (toast state :corp "Cannot rez the rest of this turn due to Careful Planning")) true))))}}) (defcard "CBI Raid" (letfn [(cbi-final [chosen original] {:player :corp :prompt (str "The top cards of R&D will be " (string/join ", " (map :title chosen)) ".") :choices ["Done" "Start over"] :async true :effect (req (if (= target "Done") (do (doseq [c (reverse chosen)] (move state :corp c :deck {:front true})) (effect-completed state side eid)) (continue-ability state side (cbi-choice original '() (count original) original) card nil)))}) (cbi-choice [remaining chosen n original] {:player :corp :prompt "Choose a card to move next onto R&D" :choices remaining :async true :effect (effect (continue-ability (let [chosen (cons target chosen)] (if (< (count chosen) n) (cbi-choice (remove-once #(= target %) remaining) chosen n original) (cbi-final chosen original))) card nil))})] {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :mandatory true :this-card-run true :ability {:msg "force the Corp to add all cards in HQ to the top of R&D" :player :corp :waiting-prompt "Corp to add all cards in HQ to the top of R&D" :async true :effect (effect (continue-ability (let [from (:hand corp)] (when (pos? (count from)) (cbi-choice from '() (count from) from))) card nil))}})]})) (defcard "Code Siphon" (letfn [(rd-ice [state] (* -3 (count (get-in @state [:corp :servers :rd :ices]))))] {:makes-run true :on-play {:req (req rd-runnable) :async true :effect (effect (make-run eid :rd card))} :events [(successful-run-replace-access {:target-server :rd :this-card-run true :ability {:async true :prompt "Choose a program to install" :msg (msg "install " (:title target) " and take 1 tag") :choices (req (filter #(and (program? %) (runner-can-install? state side % false) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side % {:cost-bonus (rd-ice state)})])) (:deck runner))) :effect (req (trigger-event state side :searched-stack nil) (shuffle! state side :deck) (wait-for (runner-install state side target {:cost-bonus (rd-ice state)}) (gain-tags state side eid 1)))}})]})) (defcard "Cold Read" {:implementation "Used programs restriction not enforced" :makes-run true :data {:counter {:credit 4}} :on-play {:async true :prompt "Choose a server" :choices (req runnable-servers) :effect (effect (make-run eid target card))} :interactions {:pay-credits {:type :credit}} :events [{:event :run-ends :player :runner :prompt "Choose a program that was used during the run" :choices {:card #(and (program? %) (installed? %))} :msg (msg "trash " (:title target)) :async true :effect (effect (trash eid target {:unpreventable true}))}]}) (defcard "Compile" (letfn [(compile-fn [where] {:prompt "Choose a program to install" :choices (req (cancellable (filter program? (get runner where)))) :async true :effect (req (when (= :deck where) (trigger-event state side :searched-stack nil) (shuffle! state side :deck)) (runner-install state side (assoc eid :source card :source-type :runner-install) (assoc-in target [:special :compile-installed] true) {:ignore-all-cost true}))})] {:makes-run true :on-play {:prompt "Choose a server" :msg "make a run and install a program on encounter with the first piece of ICE" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :encounter-ice :optional {:prompt "Install a program?" :once :per-run :yes-ability {:async true :prompt "Install from where?" :choices (req (if (not (zone-locked? state :runner :discard)) ["Stack" "Heap"] ["Stack"] )) :msg (msg "install a program from their " target) :effect (effect (continue-ability (compile-fn (if (= "Stack" target) :deck :discard)) card nil))}}} {:event :run-ends :effect (req (let [compile-installed (first (filterv #(get-in % [:special :compile-installed]) (all-active-installed state :runner)))] (when (some? compile-installed) (system-msg state :runner (str "moved " (:title compile-installed) " to the bottom of the Stack")) (move state :runner compile-installed :deck))))}]})) (defcard "Contaminate" {:on-play {:msg (msg "place 3 virus tokens on " (:title target)) :choices {:req (req (and (installed? target) (runner? target) (zero? (get-virus-counters state target))))} :async true :effect (effect (add-counter :runner eid target :virus 3 nil))}}) (defcard "Corporate \"Grant\"" {:events [{:event :runner-install :req (req (first-event? state side :runner-install)) :msg "force the Corp to lose 1 [Credit]" :async true :effect (effect (lose-credits :corp eid 1))}]}) (defcard "Corporate Scandal" {:on-play {:msg "give the Corp 1 additional bad publicity" :implementation "No enforcement that this Bad Pub cannot be removed" :effect (req (swap! state update-in [:corp :bad-publicity :additional] inc))} :leave-play (req (swap! state update-in [:corp :bad-publicity :additional] dec))}) (defcard "Creative Commission" {:on-play {:msg (msg "gain 5 [Credits]" (when (pos? (:click runner)) " and lose [Click]")) :async true :effect (req (when (pos? (:click runner)) (lose state :runner :click 1)) (gain-credits state :runner eid 5))}}) (defcard "Credit Crash" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :pre-access-card :once :per-run :async true :req (req (not (agenda? target))) :effect (req (let [c target cost (or (and (or (asset? c) (upgrade? c) (ice? c)) (rez-cost state side c)) (and (operation? c) (play-cost state side c))) title (:title c)] (if (can-pay? state :corp eid card nil [:credit cost]) (continue-ability state :corp {:optional {:waiting-prompt "Corp to decide whether or not to prevent the trash" :prompt (msg "Spend " cost " [Credits] to prevent the trash of " title "?") :player :corp :yes-ability {:async true :effect (req (system-msg state :corp (str "spends " cost " [Credits] to prevent " title " from being trashed at no cost")) (lose-credits state :corp eid cost))} :no-ability {:msg (msg "trash " title " at no cost") :async true :effect (effect (trash eid (assoc c :seen true) nil))}}} card nil) (do (system-msg state side (str "uses Credit Crash to trash " title " at no cost")) (trash state side eid (assoc c :seen true) nil)))))}]}) (defcard "Credit Kiting" {:on-play {:req (req (some #{:hq :rd :archives} (:successful-run runner-reg))) :prompt "Select a card to install from your Grip" :choices {:req (req (and (not (event? target)) (in-hand? target) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target {:cost-bonus -8})])))} :async true :effect (req (let [new-eid (make-eid state {:source card :source-type :runner-install})] (wait-for (runner-install state :runner new-eid target {:cost-bonus -8}) (gain-tags state :runner eid 1))))}}) (defcard "Cyber Threat" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (req (let [serv target] (continue-ability state :corp (if (seq (filter #(and (installed? %) (not (rezzed? %)) (ice? %) (can-pay? state side eid card nil [:credit (rez-cost state side %)])) (all-installed state :corp))) {:optional {:prompt (msg "Rez a piece of ICE protecting " serv "?") :yes-ability {:async true :prompt (msg "Select a piece of ICE protecting " serv " to rez") :player :corp :choices {:card #(and (installed? %) (not (rezzed? %)) (ice? %) (can-pay? state side eid card nil [:credit (rez-cost state side %)]))} :effect (effect (rez :corp eid target)) :cancel-effect (effect (register-run-flag! card :can-rez (fn [state side card] (if (ice? card) ((constantly false) (toast state :corp "Cannot rez ICE on this run due to Cyber Threat")) true))) (make-run eid serv card))} :no-ability {:async true :effect (effect (register-run-flag! card :can-rez (fn [state side card] (if (ice? card) ((constantly false) (toast state :corp "Cannot rez ICE on this run due to Cyber Threat")) true))) (make-run eid serv card)) :msg (msg "make a run on " serv " during which no ICE can be rezzed")}}} {:async true :effect (effect (register-run-flag! card :can-rez (fn [state side card] (if (ice? card) ((constantly false) (toast state :corp "Cannot rez ICE on this run due to Cyber Threat")) true))) (make-run eid serv card)) :msg (msg "make a run on " serv " during which no ICE can be rezzed")}) card nil)))}}) (defcard "Data Breach" {:makes-run true :on-play {:async true :req (req rd-runnable) :effect (req (wait-for (make-run state side :rd card) (let [card (get-card state card)] (if (:run-again card) (make-run state side eid :rd card) (effect-completed state side eid)))))} :events [{:event :run-ends :optional {:req (req (and (:successful target) (not (:run-again card)) (= [:rd] (:server target)))) :prompt "Make another run on R&D?" :yes-ability {:effect (effect (clear-wait-prompt :corp) (update! (assoc card :run-again true)))}}}]}) (defcard "Day Job" {:on-play {:additional-cost [:click 3] :msg "gain 10 [Credits]" :async true :effect (effect (gain-credits eid 10))}}) (defcard "Deep Data Mining" {:makes-run true :on-play {:async true :req (req rd-runnable) :effect (effect (make-run eid :rd card))} :events [{:event :successful-run :req (req (and (= :rd (target-server context)) this-card-run)) :silent (req true) :effect (effect (access-bonus :rd (max 0 (min 4 (available-mu state)))))}]}) (defcard "Déjà Vu" {:on-play {:req (req (not (zone-locked? state :runner :discard))) :prompt "Choose a card to add to Grip" :choices (req (cancellable (:discard runner) :sorted)) :msg (msg "add " (:title target) " to their Grip") :async true :effect (effect (move target :hand) (continue-ability (when (has-subtype? target "Virus") {:prompt "Choose a virus to add to Grip" :msg (msg "add " (:title target) " to their Grip") :choices (req (cancellable (filter #(has-subtype? % "Virus") (:discard runner)) :sorted)) :effect (effect (move target :hand))}) card nil))}}) (defcard "Demolition Run" {:makes-run true :on-play {:req (req (or rd-runnable hq-runnable)) :prompt "Choose a server" :choices ["HQ" "R&D"] :async true :effect (effect (make-run eid target card))} :interactions {:access-ability {:label "Trash card" :msg (msg "trash " (:title target) " at no cost") :async true :effect (effect (trash eid (assoc target :seen true) nil))}}}) (defcard "Deuces Wild" (let [all [{:effect (effect (gain-credits eid 3)) :async true :msg "gain 3 [Credits]"} {:async true :effect (effect (draw eid 2 nil)) :msg "draw 2 cards"} {:async true :effect (effect (lose-tags eid 1)) :msg "remove 1 tag"} {:prompt "Select 1 piece of ice to expose" :msg "expose 1 ice and make a run" :choices {:card #(and (installed? %) (ice? %))} :async true :effect (req (wait-for (expose state side target) (continue-ability state side {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target))} card nil))) :cancel-effect (effect (continue-ability {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target))} card nil))}] choice (fn choice [abis] {:prompt "Choose an ability to resolve" :choices (map #(capitalize (:msg %)) abis) :async true :effect (req (let [chosen (some #(when (= target (capitalize (:msg %))) %) abis)] (wait-for (resolve-ability state side chosen card nil) (if (= (count abis) 4) (continue-ability state side (choice (remove-once #(= % chosen) abis)) card nil) (effect-completed state side eid)))))})] {:on-play {:async true :effect (effect (continue-ability (choice all) card nil))}})) (defcard "Diana's Hunt" {:makes-run true :on-play {:prompt "Choose a server" :msg "make a run" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :encounter-ice :optional {:req (req (seq (filter program? (:hand runner)))) :prompt "Install a program from your grip?" :yes-ability {:prompt "Choose a program in your grip to install" :async true :choices {:card #(and (in-hand? %) (program? %))} :msg (msg "install " (:title target) ", ignoring all costs") :effect (effect (runner-install eid (assoc-in target [:special :diana-installed] true) {:ignore-all-cost true}))}}} {:event :run-ends :async true :effect (req (let [installed-cards (filter #(get-in % [:special :diana-installed]) (all-active-installed state :runner))] (if (seq installed-cards) (do (system-msg state :runner (str "trashes " (count installed-cards) " cards (" (string/join ", " (map :title installed-cards)) ") at the end of the run from Diana's Hunt")) (trash-cards state :runner eid installed-cards {:unpreventable true})) (effect-completed state side eid))))}]}) (defcard "Diesel" {:on-play {:msg "draw 3 cards" :async true :effect (effect (draw eid 3 nil))}}) (defcard "Direct Access" {:makes-run true :on-play {:async true :effect (req (doseq [s [:corp :runner]] (disable-identity state s)) (continue-ability state side {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} card nil))} :events [{:event :run-ends :unregister-once-resolved true :async true :effect (req (doseq [s [:corp :runner]] (enable-identity state s)) (continue-ability state :runner {:optional {:prompt "Shuffle Direct Access into the Stack?" :yes-ability {:msg (msg "shuffles Direct Access into the Stack") :effect (effect (move (get-card state card) :deck) (shuffle! :deck))}}} card nil))}]}) (defcard "Dirty Laundry" {:makes-run true :on-play {:async true :prompt "Choose a server" :choices (req runnable-servers) :effect (effect (make-run eid target card))} :events [{:event :run-ends :req (req (and (:successful target) this-card-run)) :msg "gain 5 [Credits]" :async true :effect (effect (gain-credits :runner eid 5))}]}) (defcard "Diversion of Funds" (letfn [(five-or-all [corp] (min 5 (:credit corp)))] {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :ability {:msg (msg "force the Corp to lose " (five-or-all corp) " [Credits], and gain " (five-or-all corp) " [Credits]") :async true :effect (req (wait-for (gain-credits state :runner (five-or-all corp)) (lose-credits state :corp eid (five-or-all corp))))}})]})) (defcard "Divide and Conquer" {:makes-run true :on-play {:req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :events [{:event :end-access-phase :async true :req (req (and (= :archives (:from-server target)) (:successful run))) :effect (req (wait-for (do-access state side [:hq] {:no-root true}) (do-access state side eid [:rd] {:no-root true})))}]}) (defcard "Drive By" {:on-play {:choices {:card #(let [topmost (get-nested-host %)] (and (is-remote? (second (get-zone topmost))) (= (last (get-zone topmost)) :content) (not (:rezzed %))))} :async true :effect (req (wait-for (expose state side target) (if-let [target async-result] (if (or (asset? target) (upgrade? target)) (do (system-msg state :runner (str "uses Drive By to trash " (:title target))) (trash state :runner eid (assoc target :seen true) nil)) (effect-completed state side eid)) (effect-completed state side eid))))}}) (defcard "Early Bird" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :msg (msg "make a run on " target " and gain [Click]") :async true :effect (effect (gain :click 1) (make-run eid target card))}}) (defcard "Easy Mark" {:on-play {:msg "gain 3 [Credits]" :async true :effect (effect (gain-credits eid 3))}}) (defcard "Embezzle" {:makes-run true :on-play {:async true :req (req hq-runnable) :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :mandatory true :ability {:prompt "Choose a card type" :choices ["Asset" "Upgrade" "Operation" "ICE"] :msg (msg "reveal 2 cards from HQ and trash all " target (when (not (= "ICE" target)) "s")) :async true :effect (req (let [cards-to-reveal (take 2 (shuffle (:hand corp))) cards-to-trash (filter #(is-type? % target) cards-to-reveal) credits (* 4 (count cards-to-trash))] (system-msg state side (str "uses Embezzle to reveal " (string/join " and " (map :title cards-to-reveal)) " from HQ")) (wait-for (reveal state side cards-to-reveal) (if (pos? credits) (do (system-msg state side (str " uses Embezzle to trash " (string/join " and " (map :title cards-to-trash)) " from HQ and gain " credits " [Credits]")) (wait-for (trash-cards state :runner (map #(assoc % :seen true) cards-to-trash)) (gain-credits state :runner eid credits))) (effect-completed state side eid)))))}})]}) (defcard "Emergency Shutdown" {:on-play {:req (req (some #{:hq} (:successful-run runner-reg))) :msg (msg "derez " (:title target)) :choices {:card #(and (ice? %) (rezzed? %))} :effect (effect (derez target))}}) (defcard "Emergent Creativity" (letfn [(ec [trash-cost to-trash] {:async true :prompt "Choose a hardware or program to install" :msg (msg "trash " (if (empty? to-trash) "no cards" (string/join ", " (map :title to-trash))) " and install " (:title target) " lowering the cost by " trash-cost) :choices (req (cancellable (filter #(and (or (program? %) (hardware? %)) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side % {:cost-bonus (- trash-cost)})])) (:deck runner)) :sorted)) :effect (req (trigger-event state side :searched-stack nil) (shuffle! state side :deck) (runner-install state side (assoc eid :source card :source-type :runner-install) target {:cost-bonus (- trash-cost)}))})] {:on-play {:prompt "Choose Hardware and Programs to trash from your Grip" :choices {:card #(and (or (hardware? %) (program? %)) (in-hand? %)) :max (req (count (:hand runner)))} :cancel-effect (effect (continue-ability (ec 0 []) card nil)) :async true :effect (req (let [trash-cost (reduce + (keep :cost targets)) to-trash targets] (wait-for (trash-cards state side to-trash {:unpreventable true}) (continue-ability state side (ec trash-cost to-trash) card nil))))}})) (defcard "Employee Strike" {:on-play {:msg "disable the Corp's identity" :effect (effect (disable-identity :corp))} :disable-id true :leave-play (effect (enable-identity :corp))}) (defcard "En Passant" {:on-play {:req (req (and (:successful-run runner-reg) (->> (:events (:last-run runner-reg)) (filter #(= :pass-ice (first %))) (map second) (keep #(get-card state (:ice (first %)))) (filter (complement rezzed?)) seq))) :prompt "Choose an unrezzed piece of ICE that you passed on your last run" :choices {:req (req (some #(same-card? target %) (->> (:events (:last-run runner-reg)) (filter #(= :pass-ice (first %))) (map second) (keep #(get-card state (:ice (first %)))) (filter (complement rezzed?)))))} :msg (msg "trash " (card-str state target)) :async true :effect (effect (trash eid target nil))}}) (defcard "Encore" {:on-play {:req (req (and (some #{:hq} (:successful-run runner-reg)) (some #{:rd} (:successful-run runner-reg)) (some #{:archives} (:successful-run runner-reg)))) :rfg-instead-of-trashing true :msg "take an additional turn after this one" :effect (req (swap! state update-in [:runner :extra-turns] (fnil inc 0)))}}) (defcard "Escher" (letfn [(es [] {:async true :prompt "Select two pieces of ICE to swap positions" :choices {:card #(and (installed? %) (ice? %)) :max 2} :effect (req (if (= (count targets) 2) (do (swap-ice state side (first targets) (second targets)) (continue-ability state side (es) card nil)) (do (system-msg state side "has finished rearranging ICE") (effect-completed state side eid))))})] {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :mandatory true :ability {:async true :msg "rearrange installed ICE" :effect (effect (continue-ability (es) card nil))}})]})) (defcard "Eureka!" {:on-play {:async true :effect (req (let [topcard (first (:deck runner)) caninst (and (or (hardware? topcard) (program? topcard) (resource? topcard)) (can-pay? state side (assoc eid :source card :source-type :runner-install) topcard nil [:credit (install-cost state side topcard {:cost-bonus -10})]))] (if caninst (continue-ability state side {:optional {:prompt (msg "Install " (:title topcard) "?") :yes-ability {:async true :effect (effect (runner-install eid topcard {:cost-bonus -10}))} :no-ability {:async true :effect (req (wait-for (reveal state side topcard) (system-msg (str "reveals and trashes " (:title topcard))) (trash eid topcard {:unpreventable true})))}}} card nil) (wait-for (reveal state side topcard) (system-msg state side (str "reveals and trashes " (:title topcard))) (trash state side eid topcard {:unpreventable true})))))}}) (defcard "Exclusive Party" {:on-play {:msg (msg "draw 1 card and gain " (count (filter #(= (:title %) "Exclusive Party") (:discard runner))) " [Credits]") :async true :effect (req (wait-for (draw state side 1 nil) (gain-credits state side eid (count (filter #(= (:title %) "Exclusive Party") (:discard runner))))))}}) (defcard "Executive Wiretaps" {:on-play {:msg (msg "reveal cards in HQ: " (string/join ", " (sort (map :title (:hand corp))))) :async true :effect (effect (reveal eid (:hand corp)))}}) (defcard "Exploit" {:on-play {:req (req (and (some #{:hq} (:successful-run runner-reg)) (some #{:rd} (:successful-run runner-reg)) (some #{:archives} (:successful-run runner-reg)))) :prompt "Choose up to 3 pieces of ICE to derez" :choices {:max 3 :card #(and (rezzed? %) (ice? %))} :msg (msg "derez " (string/join ", " (map :title targets))) :effect (req (doseq [c targets] (derez state side c)))}}) (defcard "Exploratory Romp" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [(successful-run-replace-access {:mandatory true :this-card-run true :ability {:req (req (some #(and (pos? (get-counters % :advancement)) (= (first (:server run)) (second (get-zone %)))) (all-installed state :corp))) :prompt "Advancements to remove from a card in or protecting this server?" :choices ["0" "1" "2" "3"] :async true :waiting-prompt "Runner to use Exploratory Romp" :effect (req (let [c (str->int target)] (continue-ability state side {:choices {:card #(and (pos? (get-counters % :advancement)) (= (first (:server run)) (second (get-zone %))))} :msg (msg "remove " (quantify c "advancement token") " from " (card-str state target)) :effect (req (let [to-remove (min c (get-counters target :advancement))] (add-prop state :corp target :advance-counter (- to-remove))))} card nil)))}})]}) (defcard "Express Delivery" {:on-play {:prompt "Choose a card to add to your Grip" :choices (req (take 4 (:deck runner))) :msg "look at the top 4 cards of their Stack and add 1 of them to their Grip" :effect (effect (move target :hand) (shuffle! :deck))}}) (defcard "Falsified Credentials" {:on-play {:prompt "Choose a type" :choices ["Agenda" "Asset" "Upgrade"] :msg (msg "guess " target) :async true :effect (effect (continue-ability (let [chosen-type target] {:choices {:card #(let [topmost (get-nested-host %)] (and (is-remote? (second (get-zone topmost))) (= (last (get-zone topmost)) :content) (not (rezzed? %))))} :async true :effect (req (wait-for (expose state side target) (continue-ability state :runner (if (and async-result ;; expose was successful (= chosen-type (:type target))) {:async true :effect (effect (gain-credits eid 5)) :msg "gain 5 [Credits]"}) card nil)))}) card nil))}}) (defcard "Fear the Masses" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :mandatory true :ability {:async true :msg "force the Corp to trash the top card of R&D" :effect (req (wait-for (mill state :corp :corp 1) (continue-ability state side (let [n (count (filter #(same-card? :title card %) (:hand runner)))] {:async true :prompt "Reveal how many copies of Fear the Masses?" :choices {:card #(and (in-hand? %) (same-card? :title card %)) :max n} :msg (msg "reveal " (count targets) " copies of Fear the Masses," " forcing the Corp to trash " (count targets) " additional cards from the top of R&D") :effect (req (wait-for (reveal state :runner targets) (mill state :corp eid :corp (count targets))))}) card nil)))}})]}) (defcard "Feint" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [{:event :encounter-ice :req (req (< (get-in card [:special :bypass-count] 0) 2)) :msg (msg "bypass " (:title (:ice context))) :effect (req (bypass-ice state) (update! state side (update-in card [:special :bypass-count] (fnil inc 0))))} {:event :successful-run :effect (effect (prevent-access))}]}) (defcard "Fisk Investment Seminar" {:on-play {:msg "make each player draw 3 cards" :async true :effect (req (wait-for (draw state :runner 3 nil) (draw state :corp eid 3 nil)))}}) (defcard "Forged Activation Orders" {:on-play {:choices {:card #(and (ice? %) (not (rezzed? %)))} :async true :effect (req (let [ice target serv (zone->name (second (get-zone ice))) icepos (card-index state ice)] (continue-ability state :corp {:prompt (str "Rez " (:title ice) " at position " icepos " of " serv " or trash it?") :choices ["Rez" "Trash"] :async true :waiting-prompt "Corp to decide to rez or trash ice" :effect (effect (continue-ability (if (and (= target "Rez") (<= (rez-cost state :corp ice) (:credit corp))) {:msg (msg "force the rez of " (:title ice)) :async true :effect (effect (rez :corp eid ice))} {:msg (msg "trash the ICE at position " icepos " of " serv) :async true :effect (effect (trash :corp eid ice))}) card nil))} card nil)))}}) (defcard "Forked" (cutlery "Sentry")) (defcard "Frame Job" {:on-play {:prompt "Choose an agenda to forfeit" :choices (req (:scored runner)) :msg (msg "forfeit " (:title target) " and give the Corp 1 bad publicity") :effect (effect (forfeit target) (gain-bad-publicity :corp 1))}}) (defcard "Frantic Coding" {:on-play {:async true :effect (effect (continue-ability (let [top-ten (take 10 (:deck runner))] {:prompt (str "The top 10 cards of the stack are " (string/join ", " (map :title top-ten)) ".") :choices ["OK"] :async true :effect (effect (continue-ability {:prompt "Install a program?" :choices (concat (->> top-ten (filter #(and (program? %) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side % {:cost-bonus -5})]))) (sort-by :title) (into [])) ["No install"]) :async true :effect (req (if (not= target "No install") (let [number-of-shuffles (count (turn-events state :runner :runner-shuffle-deck)) to-trash (remove #(same-card? % target) top-ten)] (wait-for (runner-install state side (make-eid state {:source card :source-type :runner-install}) target {:cost-bonus -5}) (if (= number-of-shuffles (count (turn-events state :runner :runner-shuffle-deck))) (do (system-msg state side (str "trashes " (string/join ", " (map :title to-trash)))) (trash-cards state side eid to-trash {:unpreventable true})) (do (system-msg state side "does not have to trash cards because the stack was shuffled") (effect-completed state side eid))))) (do (system-msg state side (str "trashes " (string/join ", " (map :title top-ten)))) (trash-cards state side eid top-ten {:unpreventable true}))))} card nil))}) card nil))}}) (defcard "\"Freedom Through Equality\"" {:events [{:event :agenda-stolen :msg "add it to their score area as an agenda worth 1 agenda point" :async true :effect (req (as-agenda state :runner eid card 1))}]}) (defcard "Freelance Coding Contract" {:on-play {:choices {:max 5 :card #(and (program? %) (in-hand? %))} :msg (msg "trash " (string/join ", " (map :title targets)) " and gain " (* 2 (count targets)) " [Credits]") :async true :effect (req (wait-for (trash-cards state side targets {:unpreventable true}) (gain-credits state side eid (* 2 (count targets)))))}}) (defcard "Game Day" {:on-play {:msg (msg "draw " (- (hand-size state :runner) (count (:hand runner))) " cards") :async true :effect (effect (draw eid (- (hand-size state :runner) (count (:hand runner))) nil))}}) (defcard "Glut Cipher" {:makes-run true :on-play {:req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :events [(successful-run-replace-access {:target-server :archives :this-card-run true :mandatory true :ability {:req (req (<= 5 (count (:discard corp)))) :show-discard true :async true :player :corp :waiting-prompt "Corp to choose which cards to pick up from Archives" :prompt "Select 5 cards from Archives to add to HQ" :choices {:max 5 :all true :card #(and (corp? %) (in-discard? %))} :msg (msg "move " (let [seen (filter :seen targets) m (count (remove :seen targets))] (str (string/join ", " (map :title seen)) (when (pos? m) (str (when-not (empty? seen) " and ") (quantify m "unseen card"))) " into HQ, then trash 5 cards"))) :effect (req (doseq [c targets] (move state side c :hand)) (trash-cards state :corp eid (take 5 (shuffle (:hand (:corp @state))))))}})]}) (defcard "Government Investigations" {:flags {:prevent-secretly-spend (req 2)}}) (defcard "Guinea Pig" {:on-play {:msg "trash all cards in the grip and gain 10 [Credits]" :async true :effect (req (wait-for (trash-cards state side (:hand runner) {:unpreventable true}) (gain-credits state :runner eid 10)))}}) (defcard "Hacktivist Meeting" {:constant-effects [{:type :rez-additional-cost :req (req (not (ice? target))) :value [:randomly-trash-from-hand 1]}]}) (defcard "Harmony AR Therapy" (letfn [(choose-end [to-shuffle] (let [to-shuffle (sort to-shuffle)] {:msg (msg "shuffle " (count to-shuffle)" cards back into the stack: " (string/join ", " to-shuffle)) :effect (req (doseq [c-title to-shuffle] (let [c (some #(when (= (:title %) c-title) %) (:discard runner))] (move state side c :deck))) (shuffle! state side :deck))})) (choose-next [to-shuffle target remaining] (let [remaining (if (= "Done" target) remaining (remove #(= % target) remaining)) to-shuffle (if (= "Done" target) to-shuffle (if target (concat to-shuffle [target]) [])) remaining-choices (- 5 (count to-shuffle)) finished? (or (= "Done" target) (= 0 remaining-choices) (empty? remaining))] {:prompt (msg (if finished? (str "Shuffling: " (string/join ", " to-shuffle)) (str "Choose up to " remaining-choices (when (not-empty to-shuffle) " more") " cards." (when (not-empty to-shuffle) (str "[br]Shuffling: " (string/join ", " to-shuffle)))))) :async true :choices (req (if finished? ["OK" "Start over"] (concat remaining (when (not-empty to-shuffle) ["Done"])))) :effect (req (if finished? (if (= "OK" target) (continue-ability state side (choose-end to-shuffle) card nil) (continue-ability state side (choose-next '() nil (distinct (map :title (:discard runner)))) card nil)) (continue-ability state side (choose-next to-shuffle target remaining) card nil)))}))] {:on-play {:rfg-instead-of-trashing true :waiting-prompt "Runner to use Harmony AR Therapy" :async true :effect (req (if (and (not (zone-locked? state :runner :discard)) (pos? (count (:discard runner)))) (continue-ability state side (choose-next '() nil (sort (distinct (map :title (:discard runner))))) card nil) (do (system-msg state :runner (str "uses " (:title card) " to shuffle their Stack")) (shuffle! state :runner :deck) (effect-completed state side eid))))}})) (defcard "High-Stakes Job" {:makes-run true :on-play {:prompt "Choose a server" :choices (req (let [unrezzed-ice #(seq (filter (complement rezzed?) (:ices (second %)))) bad-zones (keys (filter (complement unrezzed-ice) (get-in @state [:corp :servers])))] (zones->sorted-names (remove (set bad-zones) (get-runnable-zones state side eid card nil))))) :async true :effect (effect (make-run eid target card))} :events [{:event :run-ends :req (req (and (:successful target) this-card-run)) :msg "gain 12 [Credits]" :async true :effect (effect (gain-credits :runner eid 12))}]}) (defcard "Hostage" {:on-play {:prompt "Choose a Connection" :choices (req (cancellable (filter #(has-subtype? % "Connection") (:deck runner)) :sorted)) :msg (msg "add " (:title target) " to their Grip and shuffle their Stack") :async true :effect (effect (trigger-event :searched-stack nil) (continue-ability (let [connection target] (if (can-pay? state side (assoc eid :source card :source-type :runner-install) connection nil [:credit (install-cost state side connection)]) {:optional {:prompt (str "Install " (:title connection) "?") :yes-ability {:async true :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) connection nil) (shuffle! :deck))} :no-ability {:effect (effect (move connection :hand) (shuffle! :deck))}}} {:effect (effect (move connection :hand) (shuffle! :deck))})) card nil))}}) (defcard "Hot Pursuit" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [{:event :successful-run :async true :msg "gain 9 [Credits] and take 1 tag" :req (req (and (= :hq (target-server context)) this-card-run)) :effect (req (wait-for (gain-tags state :runner 1) (gain-credits state :runner eid 9)))}]}) (defcard "I've Had Worse" {:on-play {:async true :effect (effect (draw eid 3 nil))} :on-trash {:when-inactive true :interactive (req true) :async true :req (req (#{:meat :net} (:cause target))) :msg "draw 3 cards" :effect (effect (draw :runner eid 3 nil))}}) (defcard "Immolation Script" {:makes-run true :on-play {:req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :events [{:event :pre-access :async true :req (req (and (= target :archives) ;; don't prompt unless there's at least 1 rezzed ICE matching one in Archives (not-empty (clojure.set/intersection (into #{} (map :title (filter ice? (:discard corp)))) (into #{} (map :title (filter rezzed? (all-installed state :corp)))))))) :prompt "Choose a piece of ICE in Archives" :choices (req (filter ice? (:discard corp))) :effect (effect (continue-ability (let [ice target] {:async true :prompt (msg "Select a rezzed copy of " (:title ice) " to trash") :choices {:card #(and (ice? %) (rezzed? %) (same-card? :title % ice))} :msg (msg "trash " (card-str state target)) :effect (effect (trash eid target nil))}) card nil))}]}) (defcard "In the Groove" {:events [{:event :runner-install :duration :end-of-turn :req (req (<= 1 (:cost (:card context)))) :interactive (req (or (has-subtype? (:card context) "Cybernetic") (first-event? state side :runner-install))) :async true :prompt "What to get from In the Groove?" :choices ["Draw 1 card" "Gain 1 [Credits]"] :msg (msg (string/lower-case target)) :effect (req (if (= target "Draw 1 card") (draw state side eid 1 nil) (gain-credits state side eid 1)))}]}) (defcard "Independent Thinking" (letfn [(cards-to-draw [targets] (* (count targets) (if (some #(and (not (facedown? %)) (has-subtype? % "Directive")) targets) 2 1)))] {:on-play {:prompt "Choose up to 5 installed cards to trash" :choices {:max 5 :card #(and (installed? %) (runner? %))} :msg (msg "trash " (string/join ", " (map :title targets)) " and draw " (quantify (cards-to-draw targets) "card")) :async true :effect (req (wait-for (trash-cards state side targets nil) (draw state :runner eid (cards-to-draw targets) nil)))}})) (defcard "Indexing" {:makes-run true :on-play {:req (req rd-runnable) :async true :effect (effect (make-run eid :rd card))} :events [(successful-run-replace-access {:target-server :rd :this-card-run true :ability {:msg "rearrange the top 5 cards of R&D" :waiting-prompt "Runner to rearrange the top cards of R&D" :async true :effect (effect (continue-ability (let [from (take 5 (:deck corp))] (when (pos? (count from)) (reorder-choice :corp :corp from '() (count from) from))) card nil))}})]}) (defcard "Infiltration" {:on-play {:prompt "Gain 2 [Credits] or expose a card?" :choices ["Gain 2 [Credits]" "Expose a card"] :async true :effect (effect (continue-ability (if (= target "Expose a card") {:choices {:card #(and (installed? %) (not (rezzed? %)))} :async true :effect (effect (expose eid target))} {:msg "gain 2 [Credits]" :async true :effect (effect (gain-credits eid 2))}) card nil))}}) (defcard "Information Sifting" (letfn [(access-pile [cards pile pile-size] {:prompt "Choose a card to access. You must access all cards." :choices [(str "Card from pile " pile)] :async true :req (req (if (:max-access run) (< (total-cards-accessed run) (:max-access run)) true)) :effect (req (wait-for (access-card state side (first cards)) (if (< 1 (count cards)) (continue-ability state side (access-pile (rest cards) pile pile-size) card nil) (effect-completed state side eid))))}) (which-pile [p1 p2] {:player :runner :waiting-prompt "Runner to select a pile" :prompt "Choose a pile to access" :choices [(str "Pile 1 (" (quantify (count p1) "card") ")") (str "Pile 2 (" (quantify (count p2) "card") ")")] :async true :effect (req (let [choice (if (string/starts-with? target "Pile 1") 1 2)] (system-msg state side (str "chooses to access " target)) (continue-ability state side (access-pile (if (= 1 choice) p1 p2) choice (count (if (= 1 choice) p1 p2))) card nil)))})] (let [access-effect {:player :corp :req (req (<= 1 (count (:hand corp)))) :async true :waiting-prompt "Corp to create two piles" :prompt (msg "Select up to " (dec (count (:hand corp))) " cards for the first pile") :choices {:card #(and (in-hand? %) (corp? %)) :max (req (dec (count (:hand corp))))} :effect (effect (continue-ability (which-pile (shuffle targets) (shuffle (vec (clojure.set/difference (set (:hand corp)) (set targets))))) card nil))}] {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :mandatory true :ability access-effect})]}))) (defcard "Inject" {:on-play {:async true :effect (req (let [cards (take 4 (:deck runner)) programs (filter program? cards) others (remove program? cards)] (wait-for (reveal state side cards) (if (seq programs) (wait-for (trash-cards state side programs {:unpreventable true}) (system-msg state side (str "trashes " (string/join ", " (map :title programs)) " and gains " (count programs) " [Credits]")) (wait-for (gain-credits state side (count programs)) (doseq [c others] (move state side c :hand) (system-msg state side (str "adds " (:title c) " to the grip"))) (effect-completed state side eid))) (do (doseq [c others] (move state side c :hand) (system-msg state side (str "adds " (:title c) " to the grip"))) (effect-completed state side eid))))))}}) (defcard "Injection Attack" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (continue-ability (let [server target] {:prompt "Select an icebreaker" :choices {:card #(and (installed? %) (has-subtype? % "Icebreaker"))} :async true :effect (effect (pump target 2 :end-of-run) (make-run eid server card))}) card nil))}}) (defcard "Inside Job" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :encounter-ice :req (req (first-run-event? state side :encounter-ice)) :once :per-run :msg (msg "bypass " (:title (:ice context))) :effect (req (bypass-ice state))}]}) (defcard "Insight" {:on-play {:async true :player :corp :waiting-prompt "Corp to rearrange the top 4 cards of R&D" :effect (req (wait-for (resolve-ability state :corp (reorder-choice :corp (take 4 (:deck corp))) card targets) (let [top-4 (take 4 (get-in @state [:corp :deck]))] (system-msg state :runner (str " reveals (top:) " (string/join ", " (map :title top-4)) " from the top of R&D")) (reveal state :runner eid top-4))))}}) (defcard "Interdiction" (let [ab (effect (register-turn-flag! card :can-rez (fn [state side card] (if (and (= (:active-player @state) :runner) (not (ice? card))) ((constantly false) (toast state :corp "Cannot rez non-ICE on the Runner's turn due to Interdiction")) true))))] {:on-play {:msg "prevent the Corp from rezzing non-ICE cards on the Runner's turn" :effect ab} :events [{:event :runner-turn-begins :effect ab}] :leave-play (req (clear-all-flags-for-card! state side card))})) (defcard "Isolation" {:on-play {:additional-cost [:resource 1] :msg "gain 7 [Credits]" :async true :effect (effect (gain-credits eid 7))}}) (defcard "Itinerant Protesters" {:on-play {:msg "reduce the Corp's maximum hand size by 1 for each bad publicity"} :constant-effects [(corp-hand-size+ (req (- (count-bad-pub state))))]}) (defcard "Jailbreak" {:makes-run true :on-play {:req (req (or rd-runnable hq-runnable)) :prompt "Choose a server" :choices ["HQ" "R&D"] :async true :effect (effect (make-run eid target card))} :events [{:event :successful-run :silent (req true) :async true :req (req (and (or (= :hq (target-server context)) (= :rd (target-server context))) this-card-run)) :effect (req (if (= :hq (target-server context)) (access-bonus state :runner :hq 1) (access-bonus state :runner :rd 1)) (draw state side eid 1 nil))}]}) (defcard "Khusyuk" (let [access-revealed (fn [revealed] {:async true :prompt "Which of the revealed cards would you like to access (first card is on top)?" :not-distinct true :choices revealed :req (req (not= (:max-access run) 0)) :effect (effect (access-card eid target))}) select-install-cost (fn [state] (let [current-values (->> (all-active-installed state :runner) (keep :cost) (remove zero?) frequencies (merge {1 0}) (into (sorted-map)))] {:async true :prompt "Select an install cost from among your installed cards." ;; We don't want to generate 99 prompt buttons, so only add 99 at the end :choices (mapv str (for [x (->> current-values keys last inc (range 1) (#(concat % [99])))] (str x " [Credit]: " (quantify (get current-values x 0) "card")))) :effect (effect (complete-with-result eid [(str->int (first (string/split target #" "))) (min 6 (str->int (nth (string/split target #" ") 2)))]))})) access-effect {:async true :effect (req (wait-for (resolve-ability state side (select-install-cost state) card nil) (let [revealed (seq (take (second async-result) (:deck corp)))] (system-msg state :runner (str "uses Khusyuk to choose an install cost of " (first async-result) " [Credit] and reveals " (if revealed (str "(top:) " (string/join ", " (map :title revealed)) " from the top of R&D") "no cards"))) (wait-for (resolve-ability state side (when revealed {:async true :effect (effect (reveal eid revealed))}) card nil) (wait-for (resolve-ability state side (when (and revealed (not (get-only-card-to-access state))) (access-revealed revealed)) card nil) (shuffle! state :corp :deck) (system-msg state :runner "shuffles R&D") (effect-completed state side eid))))))}] {:makes-run true :on-play {:req (req rd-runnable) :async true :effect (effect (make-run eid :rd card))} :events [(successful-run-replace-access {:target-server :rd :this-card-run true :mandatory true :ability access-effect})]})) (defcard "Knifed" (cutlery "Barrier")) (defcard "Kraken" {:on-play {:req (req (:stole-agenda runner-reg)) :prompt "Choose a server" :choices (req servers) :msg (msg "force the Corp to trash an ICE protecting " target) :async true :effect (effect (continue-ability (let [serv (second (server->zone state target)) servname target] {:player :corp :async true :prompt (msg "Select a piece of ICE in " target " to trash") :choices {:card #(and (ice? %) (= serv (second (get-zone %))))} :effect (effect (system-msg (str "trashes " (card-str state target))) (trash :corp eid target nil))}) card nil))}}) (defcard "Labor Rights" {:on-play {:req (req (pos? (+ (count (:deck runner)) (count (:discard runner))))) :rfg-instead-of-trashing true :async true :effect (req (let [mill-count (min 3 (count (:deck runner)))] (wait-for (mill state :runner :runner mill-count) (system-msg state :runner (str "trashes the top " (quantify mill-count "card") " of their stack")) (let [heap-count (min 3 (count (get-in @state [:runner :discard])))] (continue-ability state side (if (not (zone-locked? state :runner :discard)) {:prompt (str "Choose " (quantify heap-count "card") " to shuffle into the stack") :show-discard true :async true :choices {:max heap-count :all true :not-self true :card #(and (runner? %) (in-discard? %))} :effect (req (doseq [c targets] (move state side c :deck)) (system-msg state :runner (str "shuffles " (string/join ", " (map :title targets)) " from their Heap into their Stack, and draws 1 card")) (shuffle! state :runner :deck) (draw state :runner eid 1 nil))} {:effect (effect (do (system-msg state :runner "shuffles their Stack and draws 1 card") (shuffle! state :runner :deck) (draw state :runner eid 1 nil)))}) card nil)))))}}) (defcard "Lawyer Up" {:on-play {:msg "remove 2 tags and draw 3 cards" :async true :effect (req (wait-for (lose-tags state side 2) (draw state side eid 3 nil)))}}) (defcard "Lean and Mean" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :msg (msg "make a run on " target (when (<= (count (filter program? (all-active-installed state :runner))) 3) ", adding +2 strength to all icebreakers")) :async true :effect (req (when (<= (count (filter program? (all-active-installed state :runner))) 3) (pump-all-icebreakers state side 2 :end-of-run)) (make-run state side eid target card))}}) (defcard "Leave No Trace" (letfn [(get-rezzed-cids [ice] (map :cid (filter #(and (rezzed? %) (ice? %)) ice)))] {:makes-run true :on-play {:prompt "Choose a server" :msg "make a run and derez any ICE that are rezzed during this run" :choices (req runnable-servers) :async true :effect (req (let [old-ice-cids (get-rezzed-cids (all-installed state :corp))] (update! state side (assoc-in card [:special :leave-no-trace] old-ice-cids)) (make-run state side eid target (get-card state card))))} :events [{:event :run-ends :effect (req (let [new (set (get-rezzed-cids (all-installed state :corp))) old (set (get-in (get-card state card) [:special :leave-no-trace])) diff-cid (seq (clojure.set/difference new old)) diff (map #(find-cid % (all-installed state :corp)) diff-cid)] (doseq [ice diff] (derez state :runner ice)) (when-not (empty? diff) (system-msg state :runner (str "uses Leave No Trace to derez " (string/join ", " (map :title diff)))))))}]})) (defcard "Legwork" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [{:event :successful-run :silent (req true) :req (req (and (= :hq (target-server context)) this-card-run)) :effect (effect (access-bonus :hq 2))}]}) (defcard "Leverage" {:on-play {:optional {:req (req (some #{:hq} (:successful-run runner-reg))) :player :corp :prompt "Take 2 bad publicity?" :yes-ability {:player :corp :msg "takes 2 bad publicity" :effect (effect (gain-bad-publicity :corp 2))} :no-ability {:player :runner :msg "is immune to damage until the beginning of the Runner's next turn" :effect (effect (register-events card [{:event :pre-damage :duration :until-runner-turn-begins :effect (effect (damage-prevent :net Integer/MAX_VALUE) (damage-prevent :meat Integer/MAX_VALUE) (damage-prevent :brain Integer/MAX_VALUE))} {:event :runner-turn-begins :duration :until-runner-turn-begins :effect (effect (unregister-floating-events :until-runner-turn-begins))}]))}}}}) (defcard "Levy AR Lab Access" {:on-play {:msg (msg (if (not (zone-locked? state :runner :discard)) "shuffle their Grip and Heap into their Stack and draw 5 cards" "shuffle their Grip into their Stack and draw 5 cards")) :rfg-instead-of-trashing true :async true :effect (effect (shuffle-into-deck :hand :discard) (draw eid 5 nil))}}) (defcard "Lucky Find" {:on-play {:msg "gain 9 [Credits]" :async true :effect (effect (gain-credits eid 9))}}) (defcard "Mad Dash" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :run-ends :async true :req (req this-card-run) :effect (req (if (:did-steal target) (do (system-msg state :runner (str "adds Mad Dash to their score area as an agenda worth 1 agenda point")) (as-agenda state :runner eid (get-card state card) 1)) (do (system-msg state :runner (str "suffers 1 meat damage from Mad Dash")) (damage state side eid :meat 1 {:card card}))))}]}) (defcard "Making an Entrance" (letfn [(entrance-trash [cards] {:prompt "Choose a card to trash" :choices (concat cards ["Done"]) :async true :effect (req (if (= target "Done") (continue-ability state side (when (seq cards) (reorder-choice :runner :corp cards '() (count cards) cards)) card nil) (wait-for (trash state side target {:unpreventable true}) (system-msg state side (str "trash " (:title target))) (continue-ability state side (when-let [cards (seq (remove-once #(= % target) cards))] (entrance-trash cards)) card nil))))})] {:on-play {:msg "look at and trash or rearrange the top 6 cards of their Stack" :async true :waiting-prompt "Runner to rearrange the top cards of their stack" :effect (effect (continue-ability (entrance-trash (take 6 (:deck runner))) card nil))}})) (defcard "Marathon" {:makes-run true :on-play {:prompt "Choose a server" :choices (req (filter #(can-run-server? state %) remotes)) :async true :effect (effect (make-run eid target card))} :events [{:event :run-ends :req (req this-card-run) :effect (req (prevent-run-on-server state card (first (:server target))) (when (:successful target) (system-msg state :runner "gains 1 [Click] and adds Marathon to their grip") (gain state :runner :click 1) (move state :runner card :hand) (unregister-events state side card)))}]}) (defcard "Mars for Martians" (letfn [(count-clan [state] (count (filter #(and (has-subtype? % "Clan") (resource? %)) (all-active-installed state :runner))))] {:on-play {:msg (msg "draw " (count-clan state) " cards and gain " (count-tags state) " [Credits]") :async true :effect (req (wait-for (draw state side (count-clan state) nil) (gain-credits state side eid (count-tags state))))}})) (defcard "Mass Install" (letfn [(mhelper [n] (when (< n 3) {:async true :req (req (some #(and (program? %) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side %)])) (:hand runner))) :prompt "Select a program to install" :choices {:req (req (and (program? target) (in-hand? target) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target)])))} :effect (req (wait-for (runner-install state side target nil) (continue-ability state side (mhelper (inc n)) card nil)))}))] {:on-play {:async true :req (req (some #(and (program? %) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side %)])) (:hand runner))) :effect (effect (continue-ability (mhelper 0) card nil))}})) (defcard "Mining Accident" {:on-play {:req (req (some #{:hq :rd :archives} (:successful-run runner-reg))) :rfg-instead-of-trashing true :msg "make the Corp pay 5 [Credits] or take 1 bad publicity" :waiting-prompt "Corp to choose to pay or take bad publicity" :player :corp :prompt "Pay 5 [Credits] or take 1 Bad Publicity?" :choices (req [(when (can-pay? state :corp eid card "Mining Accident" :credit 5) "Pay 5 [Credits]") "Take 1 Bad Publicity"]) :async true :effect (req (if (= target "Pay 5 [Credits]") (do (system-msg state side "pays 5 [Credits] from Mining Accident") (lose-credits state :corp eid 5)) (do (system-msg state side "takes 1 bad publicity from Mining Accident") (gain-bad-publicity state :corp 1) (effect-completed state side eid))))}}) (defcard "Möbius" {:on-play {:req (req rd-runnable) :async true :effect (req (wait-for (make-run state side :rd card) (let [card (get-card state card)] (if (get-in card [:special :run-again]) (make-run state side eid :rd card) (effect-completed state side eid)))))} :events [{:event :successful-run :req (req (and (get-in card [:special :run-again]) (= :rd (target-server context)))) :msg "gain 4 [Credits]" :async true :effect (effect (gain-credits eid 4))} {:event :run-ends :interactive (req true) :optional {:req (req (and (:successful target) (not (get-in card [:special :run-again])) (= [:rd] (:server target)))) :prompt "Make another run on R&D?" :yes-ability {:effect (effect (clear-wait-prompt :corp) (update! (assoc-in card [:special :run-again] true)))}}}]}) (defcard "Modded" {:on-play {:prompt "Select a program or piece of hardware to install from your Grip" :choices {:req (req (and (or (hardware? target) (program? target)) (in-hand? target) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target {:cost-bonus -3})])))} :async true :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) target {:cost-bonus -3}))}}) (defcard "Moshing" {:on-play {:additional-cost [:trash-from-hand 3] :msg "draw 3 cards and gain 3 [Credits]" :async true :effect (req (wait-for (draw state side 3 nil) (gain-credits state side eid 3)))}}) (defcard "Mutual Favor" {:on-play {:prompt "Choose an Icebreaker" :choices (req (cancellable (filter #(has-subtype? % "Icebreaker") (:deck runner)) :sorted)) :msg (msg "add " (:title target) " to their grip and shuffle their stack") :async true :effect (effect (trigger-event :searched-stack nil) (continue-ability (let [icebreaker target] (if (and (:successful-run runner-reg) (can-pay? state side (assoc eid :source card :source-type :runner-install) icebreaker nil [:credit (install-cost state side icebreaker)])) {:optional {:prompt "Do you want to install it?" :yes-ability {:async true :msg (msg " install " (:title icebreaker)) :effect (req (runner-install state side (assoc eid :source card :source-type :runner-install) icebreaker nil) (shuffle! state side :deck))} :no-ability {:effect (req (move state side icebreaker :hand) (shuffle! state side :deck))}}} {:effect (req (move state side icebreaker :hand) (shuffle! state side :deck))})) card nil))}}) (defcard "Net Celebrity" {:recurring 1 :interactions {:pay-credits {:req (req run) :type :recurring}}}) (defcard "Networking" {:on-play {:async true :req (req (pos? (count-real-tags state))) :msg "remove 1 tag" :effect (req (wait-for (lose-tags state side 1) (continue-ability state side {:optional {:prompt "Pay 1 [Credits] to add Networking to Grip?" :yes-ability {:cost [:credit 1] :msg "add it to their Grip" :effect (effect (move card :hand))}}} card nil)))}}) (defcard "Notoriety" {:on-play {:req (req (and (some #{:hq} (:successful-run runner-reg)) (some #{:rd} (:successful-run runner-reg)) (some #{:archives} (:successful-run runner-reg)))) :msg "add it to their score area as an agenda worth 1 agenda point" :async true :effect (req (as-agenda state :runner eid (first (:play-area runner)) 1))}}) (defcard "Office Supplies" {:on-play {:play-cost-bonus (req (- (get-link state))) :prompt "Gain 4 [Credits] or draw 4 cards?" :choices ["Gain 4 [Credits]" "Draw 4 cards"] :msg (msg (if (= target "Gain 4 [Credits]") "gain 4 [Credits]" "draw 4 cards")) :async true :effect (req (if (= target "Gain 4 [Credits]") (gain-credits state :runner eid 4) (draw state :runner eid 4 nil)))}}) (defcard "On the Lam" {:on-play {:req (req (some resource? (all-active-installed state :runner))) :prompt "Choose a resource to host On the Lam" :choices {:card #(and (resource? %) (installed? %))} :effect (effect (host target (assoc card :installed true :condition true)) (card-init (find-latest state card) {:resolve-effect false}) (system-msg (str "hosts On the Lam on " (:title target))))} :interactions {:prevent [{:type #{:net :brain :meat :tag} :req (req true)}]} :abilities [{:label "Avoid 3 tags" :msg "avoid up to 3 tags" :async true :cost [:trash] :effect (effect (tag-prevent :runner eid 3))} {:label "Prevent up to 3 damage" :msg "prevent up to 3 damage" :cost [:trash] :effect (effect (damage-prevent :net 3) (damage-prevent :meat 3) (damage-prevent :brain 3))}]}) (defcard "Out of the Ashes" (let [ashes-run {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} ashes-recur (fn ashes-recur [n] {:optional {:req (req (not (zone-locked? state :runner :discard))) :prompt "Remove Out of the Ashes from the game to make a run?" :yes-ability {:msg "removes Out of the Ashes from the game to make a run" :effect (req (let [card (some #(when (= "Out of the Ashes" (:title %)) %) (:discard runner))] (move state side card :rfg) (unregister-events state side card {:events [{:event :runner-phase-12}]}) (wait-for (resolve-ability state side ashes-run card nil) (if (< 1 n) (continue-ability state side (ashes-recur (dec n)) card nil) (effect-completed state side eid)))))}}}) ashes-flag [{:event :runner-phase-12 :location :discard :condition :in-discard :once :per-turn :once-key :out-of-ashes :effect (effect (continue-ability (ashes-recur (count (filter #(= "Out of the Ashes" (:title %)) (:discard runner)))) card nil))}]] {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :move-zone (req (if (in-discard? card) (register-events state side card ashes-flag) (unregister-events state side card {:events [{:event :runner-phase-12}]})))})) (defcard "Overclock" {:makes-run true :data {:counter {:credit 5}} :interactions {:pay-credits {:type :credit}} :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))}}) (defcard "Paper Tripping" {:on-play {:req (req (pos? (count-real-tags state))) :msg "remove all tags" :async true :effect (effect (lose-tags eid :all))}}) (defcard "Peace in Our Time" {:on-play {:req (req (not (:scored-agenda corp-reg-last))) :msg "gain 10 [Credits]. The Corp gains 5 [Credits]" :async true :effect (req (wait-for (gain-credits state :runner 10) (register-turn-flag! state side card :can-run nil) (gain-credits state :corp eid 5)))}}) (defcard "Planned Assault" {:on-play {:prompt "Choose a Run event" :choices (req (sort-by :title (filter #(and (has-subtype? % "Run") (can-pay? state side (assoc eid :source card :source-type :play) % nil [:credit (play-cost state side %)])) (:deck runner)))) :msg (msg "play " (:title target)) :async true :effect (effect (trigger-event :searched-stack nil) (shuffle! :deck) (play-instant eid target {:no-additional-cost true}))}}) (defcard "Political Graffiti" {:makes-run true :on-play {:req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :constant-effects [{:type :agenda-value :req (req (same-card? (:host card) target)) :value -1}] :events [{:event :purge :async true :effect (req (wait-for (trash state side card {:cause :purge}) (update-all-agenda-points state side) (effect-completed state side eid)))} (successful-run-replace-access {:target-server :archives :this-card-run true :mandatory true :ability {:prompt "Select an agenda to host Political Graffiti" :choices {:req (req (in-corp-scored? state side target))} :msg (msg "host Political Graffiti on " (:title target) " as a hosted condition counter") :effect (effect (host :runner (get-card state target) (assoc card :installed true :seen true :condition true)) (update-all-agenda-points))}})]}) (defcard "Populist Rally" {:on-play {:req (req (seq (filter #(has-subtype? % "Seedy") (all-active-installed state :runner)))) :msg "give the Corp 1 fewer [Click] to spend on their next turn" :effect (effect (lose :corp :click-per-turn 1))} :events [{:event :corp-turn-ends :duration :until-corp-turn-ends :effect (effect (gain :corp :click-per-turn 1))}]}) (defcard "Power Nap" {:on-play {:async true :msg (msg "gain " (+ 2 (count (filter #(has-subtype? % "Double") (:discard runner)))) " [Credits]") :effect (effect (gain-credits eid (+ 2 (count (filter #(has-subtype? % "Double") (:discard runner))))))}}) (defcard "Power to the People" {:events [{:event :pre-steal-cost :duration :end-of-turn :once :per-turn :msg "gain 7 [Credits]" :async true :effect (effect (gain-credits eid 7))}]}) (defcard "Prey" {:makes-run true :on-play {:prompt "Choose a server:" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :pass-ice :req (req (and (rezzed? (:ice context)) (not-used-once? state {:once :per-run} card) (<= (get-strength (:ice context)) (count (all-installed state :runner))))) :async true :effect (effect (continue-ability (let [ice (:ice context)] (if (pos? (get-strength ice)) {:optional {:prompt (str "Use Prey to trash " (quantify (get-strength ice) "card") " to trash " (:title ice) "?") :once :per-run :yes-ability {:async true :cost [:installed (get-strength ice)] :msg (msg "trash " (card-str state ice)) :effect (effect (trash eid ice nil))}}} {:optional {:prompt (str "Use Prey to trash " (:title ice) "?") :once :per-run :yes-ability {:async true :msg (msg "trash " (card-str state ice)) :effect (effect (trash eid ice nil))}}})) card nil))}]}) (defcard "Process Automation" {:on-play {:msg "gain 2 [Credits] and draw 1 card" :async true :effect (req (wait-for (gain-credits state side 2) (draw state side eid 1 nil)))}}) (defcard "Push Your Luck" (letfn [(corp-choice [spent] {:player :corp :waiting-prompt "Corp to guess even or odd" :prompt "Guess how many credits were spent" :choices ["Even" "Odd"] :async true :effect (req (let [correct-guess ((if (= target "Even") even? odd?) spent)] (wait-for (lose-credits state :runner spent) (system-msg state :runner (str "spends " spent " [Credit]")) (system-msg state :corp (str (if correct-guess " " " in") "correctly guesses " (string/lower-case target))) (wait-for (trigger-event-simult state side :reveal-spent-credits nil nil spent) (if correct-guess (effect-completed state side eid) (do (system-msg state :runner (str "gains " (* 2 spent) " [Credits]")) (gain-credits state :runner eid (* 2 spent))))))))}) (runner-choice [choices] {:player :runner :prompt "Spend how many credits?" :waiting-prompt "Runner to spend credits" :choices choices :async true :effect (effect (continue-ability :corp (corp-choice (str->int target)) card nil))})] {:on-play {:async true :effect (req (let [all-amounts (range (inc (get-in @state [:runner :credit]))) valid-amounts (remove #(or (any-flag-fn? state :corp :prevent-secretly-spend %) (any-flag-fn? state :runner :prevent-secretly-spend %)) all-amounts) choices (map str valid-amounts)] (continue-ability state side (runner-choice choices) card nil)))}})) (defcard "Pushing the Envelope" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :msg (msg (if (<= (count (:hand runner)) 2) "make a run, and adds +2 strength to installed icebreakers" "make a run")) :async true :effect (req (when (<= (count (:hand runner)) 2) (pump-all-icebreakers state side 2 :end-of-run)) (make-run state side eid target))}}) (defcard "Quality Time" {:on-play {:msg "draw 5 cards" :async true :effect (effect (draw eid 5 nil))}}) (defcard "Queen's Gambit" {:on-play {:choices ["0" "1" "2" "3"] :prompt "How many advancement tokens?" :async true :effect (effect (continue-ability (let [c (str->int target)] {:choices {:card #(and (is-remote? (second (get-zone %))) (= (last (get-zone %)) :content) (not (:rezzed %)))} :msg (msg "add " c " advancement tokens on a card and gain " (* 2 c) " [Credits]") :async true :effect (req (wait-for (gain-credits state side (* 2 c)) (add-prop state :corp target :advance-counter c {:placed true}) (register-turn-flag! state side card :can-access ;; prevent access of advanced card (fn [_ _ card] (not (same-card? target card)))) (effect-completed state side eid)))}) card nil))}}) (defcard "Quest Completed" {:on-play {:req (req (and (some #{:hq} (:successful-run runner-reg)) (some #{:rd} (:successful-run runner-reg)) (some #{:archives} (:successful-run runner-reg)))) :choices {:card installed?} :msg (msg "access " (:title target)) :async true :effect (effect (access-card eid target))}}) (defcard "Rebirth" {:on-play {:prompt "Choose an identity to become" :rfg-instead-of-trashing true :choices (req (let [is-draft-id? #(.startsWith (:code %) "00") runner-identity (:identity runner) is-swappable #(and (= "Identity" (:type %)) (= (:faction runner-identity) (:faction %)) (not (is-draft-id? %)) (not= (:title runner-identity) (:title %))) swappable-ids (filter is-swappable (server-cards))] (cancellable swappable-ids :sorted))) :msg "change identities" :effect (req (let [old-runner-identity (:identity runner)] ;; Handle hosted cards (Ayla) - Part 1 (doseq [c (:hosted old-runner-identity)] (move state side c :temp-hosted)) (disable-identity state side) ;; Move the selected ID to [:runner :identity] and set the zone (let [new-id (-> target :title server-card make-card (assoc :zone [:identity])) num-old-blanks (:num-disabled old-runner-identity)] (swap! state assoc-in [side :identity] new-id) (card-init state side new-id) (when num-old-blanks (dotimes [_ num-old-blanks] (disable-identity state side))))) ;; Handle hosted cards (Ayla) - Part 2 (doseq [c (get-in @state [:runner :temp-hosted])] ;; Currently assumes all hosted cards are hosted facedown (Ayla) (host state side (get-in @state [:runner :identity]) c {:facedown true})))}}) (defcard "Reboot" (letfn [(install-cards [state side eid card to-install titles] (if-let [f (first to-install)] (wait-for (runner-install state :runner f {:facedown true :no-msg true}) (install-cards state side eid card (rest to-install) titles)) (do (move state side (find-latest state card) :rfg) (system-msg state :runner (str "uses Reboot to install " (string/join ", " titles) " facedown")) (effect-completed state side eid))))] {:makes-run true :on-play {:rfg-instead-of-trashing true :req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :events [(successful-run-replace-access {:target-server :archives :this-card-run true :mandatory true :ability {:req (req (not (zone-locked? state :runner :discard))) :async true :prompt "Choose up to five cards to install" :show-discard true :choices {:max 5 :card #(and (in-discard? %) (runner? %))} :effect (effect (install-cards eid card targets (map :title targets)))}})]})) (defcard "Recon" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :encounter-ice :optional {:prompt "Jack out?" :req (req (first-run-event? state side :encounter-ice)) :yes-ability {:async true :msg "jack out" :effect (effect (jack-out eid))}}}]}) (defcard "Rejig" (let [valid-target? (fn [card] (and (runner? card) (or (program? card) (hardware? card)))) pick-up {:async true :prompt "Select a program or piece of hardware to add to your Grip" :choices {:card #(and (valid-target? %) (installed? %))} :effect (req (move state side target :hand) (effect-completed state side (make-result eid (:cost target))))} put-down (fn [bonus] {:async true :prompt "Select a program or piece of hardware to install" :choices {:req (req (and (valid-target? target) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target {:cost-bonus (- bonus)})])))} :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) target {:cost-bonus (- bonus)}))})] {:on-play {:req (req (some valid-target? (all-installed state :runner))) :effect (req (wait-for (resolve-ability state side pick-up card nil) (continue-ability state side (put-down async-result) card nil)))}})) (defcard "Reshape" {:on-play {:prompt "Select two non-rezzed ICE to swap positions" :choices {:card #(and (installed? %) (not (rezzed? %)) (ice? %)) :max 2 :all true} :msg (msg "swap the positions of " (card-str state (first targets)) " and " (card-str state (second targets))) :effect (effect (swap-ice (first targets) (second targets)))}}) (defcard "Retrieval Run" {:makes-run true :on-play {:req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :events [(successful-run-replace-access {:target-server :archives :this-card-run true :ability {:async true :req (req (not (zone-locked? state :runner :discard))) :prompt "Choose a program to install" :msg (msg "install " (:title target)) :choices (req (filter program? (:discard runner))) :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) target {:ignore-all-cost true}))}})]}) (defcard "Rigged Results" (letfn [(choose-ice [] {:player :runner :waiting-prompt "Runner to choose ice" :prompt "Select a piece of ICE to bypass" :choices {:card ice?} :msg (msg "make a run and bypass " (card-str state target)) :async true :effect (effect (register-events card (let [target-ice target] [{:event :encounter-ice :req (req (same-card? target-ice (:ice context))) :msg (msg "bypass " (:title (:ice context))) :effect (req (bypass-ice state))}])) (make-run eid (second (get-zone target)) card))}) (corp-choice [choices spent] {:player :corp :waiting-prompt "Corp to guess credits spent" :prompt "Guess how many credits were spent" :choices choices :async true :effect (req (wait-for (lose-credits state :runner spent) (system-msg state :runner (str "spends " spent " [Credit]")) (system-msg state :corp (str " guesses " target " [Credit]")) (wait-for (trigger-event-simult state side :reveal-spent-credits nil nil spent) (if (not= spent (str->int target)) (continue-ability state :runner (choose-ice) card nil) (effect-completed state side eid)))))}) (runner-choice [choices] {:player :runner :waiting-prompt "Runner to spend credits" :prompt "Spend how many credits?" :choices choices :async true :effect (effect (continue-ability (corp-choice choices (str->int target)) card nil))})] {:on-play {:async true :effect (req (let [all-amounts (range (min 3 (inc (get-in @state [:runner :credit])))) valid-amounts (remove #(or (any-flag-fn? state :corp :prevent-secretly-spend %) (any-flag-fn? state :runner :prevent-secretly-spend %)) all-amounts) choices (map str valid-amounts)] (continue-ability state side (runner-choice choices) card nil)))}})) (defcard "Rip Deal" {:makes-run true :on-play {:rfg-instead-of-trashing true :req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :mandatory true :ability {:async true :req (req (not (zone-locked? state :runner :discard))) :effect (req (wait-for ;; todo: remove this when replacement effects are fixed (trigger-event-sync state side :pre-access :hq) (continue-ability state side (let [n (min (-> corp :hand count) (:base (num-cards-to-access state side :hq nil))) heap (count (:discard runner))] (if (pos? heap) {:show-discard true :prompt (str "Choose " (quantify (min n heap) "card") " to move from the Heap to your Grip") :async true :msg (msg "take " (string/join ", " (map :title targets)) " from their Heap to their Grip") :choices {:max (min n heap) :all true :card #(and (runner? %) (in-discard? %))} :effect (req (doseq [c targets] (move state side c :hand)) (effect-completed state side eid))} {:async true :msg (msg "take no cards from their Heap to their Grip") :effect (req (effect-completed state side eid))})) card nil)))}})]}) (defcard "Rumor Mill" (letfn [(eligible? [card] (and (:uniqueness card) (or (asset? card) (upgrade? card)) (not (has-subtype? card "Region")))) (rumor [state] (filter eligible? (concat (all-installed state :corp) (get-in @state [:corp :hand]) (get-in @state [:corp :deck]) (get-in @state [:corp :discard]))))] {:leave-play (req (doseq [c (rumor state)] (enable-card state :corp c))) :on-play {:effect (req (doseq [c (rumor state)] (disable-card state :corp c)))} :events [{:event :corp-install :req (req (eligible? (:card context))) :effect (effect (disable-card :corp (:card context)))}]})) (defcard "Run Amok" (letfn [(get-rezzed-cids [ice] (map :cid (filter #(and (rezzed? %) (ice? %)) ice)))] {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (update! (assoc-in card [:special :run-amok] (get-rezzed-cids (all-installed state :corp)))) (make-run eid target (get-card state card)))} :events [{:event :run-ends :req (req this-card-run) :async true :effect (req (let [new (set (get-rezzed-cids (all-installed state :corp))) old (set (get-in (get-card state card) [:special :run-amok])) diff-cid (seq (clojure.set/difference new old)) diff (map #(find-cid % (all-installed state :corp)) diff-cid)] (continue-ability state :runner (when (seq diff) {:async true :prompt "Select an ice to trash" :choices {:card #(some (partial same-card? %) diff) :all true} :effect (effect (trash eid target nil))}) card nil)))}]})) (defcard "Running Interference" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (register-floating-effect card {:type :rez-additional-cost :duration :end-of-run :req (req (ice? target)) :value (req [:credit (:cost target)])}) (make-run eid target card))}}) (defcard "Satellite Uplink" {:on-play {:req (req (some #(not (rezzed? %)) (all-installed state :corp))) :choices {:max 2 :card #(and (corp? %) (installed? %) (not (rezzed? %)))} :async true :effect (req (if (pos? (count targets)) (wait-for (expose state side target) (if (= 2 (count targets)) (expose state side eid (second targets)) (effect-completed state side eid))) (effect-completed state side eid)))}}) (defcard "Scavenge" {:on-play {:req (req (some #(and (program? %) (installed? %)) (all-active-installed state :runner))) :prompt "Select an installed program to trash" :choices {:card #(and (program? %) (installed? %))} :async true :effect (req (let [trashed target tcost (:cost trashed)] (wait-for (trash state side target {:unpreventable true}) (continue-ability state side {:async true :prompt (if (not (zone-locked? state :runner :discard)) "Select a program to install from your Grip or Heap" "Select a program to install from your Grip") :show-discard (not (zone-locked? state :runner :discard)) :choices {:req (req (and (program? target) (or (in-hand? target) (and (in-discard? target) (not (zone-locked? state :runner :discard)))) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target {:cost-bonus (- tcost)})])))} :msg (msg "trash " (:title trashed) " and install " (:title target) ", lowering the cost by " tcost " [Credits]") :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) target {:cost-bonus (- tcost)}))} card nil))))}}) (defcard "Scrubbed" {:events [{:event :encounter-ice :once :per-turn :effect (effect (register-floating-effect card (let [target-ice (:ice context)] {:type :ice-strength :duration :end-of-run :req (req (same-card? target target-ice)) :value -2})) (update-all-ice))}]}) (defcard "Showing Off" {:makes-run true :on-play {:req (req rd-runnable) :async true :effect (effect (make-run eid :rd card))} :events [(successful-run-replace-access {:target-server :rd :this-card-run true :can-access true :mandatory true :ability {:msg "access cards from the bottom of R&D" :async true :effect (effect (do-access eid (:server run)))}}) {:event :pre-access :silent (req true) :effect (req (swap! state assoc-in [:runner :rd-access-fn] reverse))} {:event :run-ends :effect (req (swap! state assoc-in [:runner :rd-access-fn] seq))}]}) (defcard "Singularity" {:makes-run true :on-play {:prompt "Choose a server" :choices (req (filter #(can-run-server? state %) remotes)) :async true :effect (effect (make-run eid target card))} :events [(successful-run-replace-access {:target-server :remote :this-card-run true :mandatory true :ability {:async true :msg "trash all cards in the server at no cost" :effect (effect (trash-cards eid (:content run-server)))}})]}) (defcard "Social Engineering" {:on-play {:prompt "Select an unrezzed piece of ICE" :choices {:card #(and (not (rezzed? %)) (installed? %) (ice? %))} :msg (msg "select " (card-str state target)) :effect (effect (register-events card (let [ice target] [{:event :rez :duration :end-of-turn :req (req (same-card? (:card context) ice)) :msg (msg "gain " (rez-cost state side (get-card state (:card context))) " [Credits]") :async true :effect (effect (gain-credits :runner eid (rez-cost state side (get-card state (:card context)))))}])))}}) (defcard "Spear Phishing" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :encounter-ice :req (req (= 1 run-position)) :msg (msg "bypass " (:title (:ice context))) :effect (req (bypass-ice state))}]}) (defcard "Spec Work" {:on-play {:additional-cost [:program 1] :msg "gain 4 [Credits] and draw 2 cards" :async true :effect (req (wait-for (gain-credits state side 4) (draw state side eid 2 nil)))}}) (defcard "Special Order" {:on-play {:prompt "Choose an Icebreaker" :choices (req (cancellable (filter #(has-subtype? % "Icebreaker") (:deck runner)) :sorted)) :msg (msg "add " (:title target) " to their grip and shuffle their stack") :effect (effect (trigger-event :searched-stack nil) (shuffle! :deck) (move target :hand))}}) (defcard "Spooned" (cutlery "Code Gate")) (defcard "Spot the Prey" {:makes-run true :on-play {:prompt "Select 1 non-ICE card to expose" :msg "expose 1 card and make a run" :choices {:card #(and (installed? %) (not (ice? %)) (corp? %))} :async true :effect (req (wait-for (expose state side target) (continue-ability state side {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target))} card nil)))}}) (defcard "Stimhack" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (gain-next-run-credits 9) (make-run eid target card))} :events [{:event :run-ends :req (req this-card-run) :msg "take 1 brain damage" :effect (effect (damage eid :brain 1 {:unpreventable true :card card}))}]}) (defcard "Sure Gamble" {:on-play {:msg "gain 9 [Credits]" :async true :effect (effect (gain-credits eid 9))}}) (defcard "Surge" (letfn [(placed-virus-cards [state] (->> (turn-events state :runner :counter-added) (filter #(= :virus (:counter-type (second %)))) (map first) (keep #(get-card state %)) (seq)))] {:on-play {:req (req (placed-virus-cards state)) :choices {:req (req (some #(same-card? % target) (placed-virus-cards state)))} :msg (msg "place 2 virus tokens on " (:title target)) :effect (effect (add-counter :runner target :virus 2))}})) (defcard "SYN Attack" {:on-play {:player :corp :waiting-prompt "Corp to choose an option for SYN Attack" :prompt "Discard 2 cards or draw 4 cards?" :choices (req [(when (<= 2 (count (:hand corp))) "Discard 2") "Draw 4"]) :async true :effect (req (if (= target "Draw 4") (wait-for (draw state :corp 4 nil) (system-msg state :corp (str "uses SYN Attack to draw " (quantify (count async-result) "card"))) (effect-completed state side eid)) (continue-ability state :corp {:prompt "Choose 2 cards to discard" :choices {:max 2 :all true :card #(and (in-hand? %) (corp? %))} :async true :effect (effect (system-msg :runner (str "uses SYN Attack to force the " "Corp to trash 2 cards from HQ")) (trash-cards :corp eid targets {:unpreventable true}))} card nil)))}}) (defcard "System Outage" {:events [{:event :corp-draw :req (req (not (first-event? state side :corp-draw))) :msg "force the Corp to lose 1 [Credits]" :async true :effect (effect (lose-credits :corp eid 1))}]}) (defcard "System Seizure" (let [ability {:req (req (get-in card [:special :ss-target])) :effect (effect (update! (dissoc-in card [:special :ss-target])))}] {:events [{:event :pump-breaker :req (req (or (not (get-in card [:special :ss-target])) (same-card? target (get-in card [:special :ss-target])))) :effect (req (when-not (get-in card [:special :ss-target]) (update! state side (assoc-in card [:special :ss-target] target))) (let [new-pump (assoc (second targets) :duration :end-of-run)] (swap! state assoc :effects (->> (:effects @state) (remove #(= (:uuid %) (:uuid new-pump))) (#(conj % new-pump)) (into [])))) (update-breaker-strength state side target))} (assoc ability :event :corp-turn-ends) (assoc ability :event :runner-turn-ends)]})) (defcard "Test Run" {:on-play {:prompt (req (if (not (zone-locked? state :runner :discard)) "Install a program from your Stack or Heap?" "Install a program from your Stack?" )) :choices (req (if (not (zone-locked? state :runner :discard)) ["Stack" "Heap"] ["Stack"])) :msg (msg "install a program from their " target) :async true :effect (effect (continue-ability (let [where target] {:prompt "Choose a program to install" :choices (req (cancellable (filter program? ((if (= where "Heap") :discard :deck) runner)))) :async true :effect (req (trigger-event state side :searched-stack nil) (shuffle! state side :deck) (wait-for (runner-install state side (make-eid state {:source card :source-type :runner-install}) target {:ignore-all-cost true}) (if async-result (let [installed-card (update! state side (assoc-in async-result [:special :test-run] true))] (register-events state side installed-card [{:event :runner-turn-ends :duration :end-of-turn :req (req (get-in (find-latest state installed-card) [:special :test-run])) :msg (msg "move " (:title installed-card) " to the top of the stack") :effect (effect (move (find-latest state installed-card) :deck {:front true}))}]) (effect-completed state side eid)) (effect-completed state side eid))))}) card nil))}}) (defcard "The Maker's Eye" {:makes-run true :on-play {:req (req rd-runnable) :async true :effect (effect (make-run eid :rd card))} :events [{:event :successful-run :silent (req true) :req (req (and (= :rd (target-server context)) this-card-run)) :effect (effect (access-bonus :rd 2))}]}) (defcard "The Noble Path" {:makes-run true :on-play {:async true :effect (req (wait-for (trash-cards state side (:hand runner)) (continue-ability state side {:async true :prompt "Choose a server" :choices (req runnable-servers) :msg (msg "trash their grip and make a run on " target ", preventing all damage") :effect (effect (make-run eid target card))} card nil)))} :events [{:event :pre-damage :duration :end-of-run :effect (effect (damage-prevent :net Integer/MAX_VALUE) (damage-prevent :meat Integer/MAX_VALUE) (damage-prevent :brain Integer/MAX_VALUE))}]}) (defcard "The Price of Freedom" {:on-play {:additional-cost [:connection 1] :rfg-instead-of-trashing true :msg "prevent the Corp from advancing cards during their next turn"} :events [{:event :corp-turn-begins :duration :until-runner-turn-begins :effect (effect (register-turn-flag! card :can-advance (fn [state side card] ((constantly false) (toast state :corp "Cannot advance cards this turn due to The Price of Freedom." "warning")))))}]}) (defcard "Three Steps Ahead" {:on-play {:effect (effect (register-events card [{:event :runner-turn-ends :duration :end-of-turn :unregister-once-resolved true :msg (msg "gain " (* 2 (count (:successful-run runner-reg))) " [Credits]") :async true :effect (effect (gain-credits eid (* 2 (count (:successful-run runner-reg)))))}]))}}) (defcard "Tinkering" {:on-play {:req (req (some #(and (ice? %) (installed? %)) (all-installed state :corp))) :prompt "Select a piece of ICE" :choices {:card #(and (installed? %) (ice? %))} :msg (msg "make " (card-str state target) " gain Sentry, Code Gate, and Barrier until the end of the turn") :effect (effect (register-floating-effect card (let [ice target] {:type :gain-subtype :duration :end-of-turn :req (req (same-card? ice target)) :value ["Sentry" "Code Gate" "Barrier"]})) (add-icon card (get-card state target) "T" "green"))}}) (defcard "Trade-In" ;; TODO: look at me plz (letfn [(trashed-hw [state] (last (get-in @state [:runner :discard])))] {:on-play {:additional-cost [:hardware 1] :msg (msg (let [{:keys [title cost]} (trashed-hw state)] (str "trash " title " and gain " (quot cost 2) " [Credits]"))) :async true :effect (req (let [{:keys [cost]} (trashed-hw state)] (wait-for (gain-credits state :runner (quot cost 2)) (continue-ability state :runner {:prompt "Choose a Hardware to add to your Grip from your Stack" :choices (req (filter hardware? (:deck runner))) :msg (msg "add " (:title target) " to their Grip (and shuffle their Stack)") :effect (effect (trigger-event :searched-stack nil) (shuffle! :deck) (move target :hand))} card nil))))}})) (defcard "Traffic Jam" {:constant-effects [{:type :advancement-requirement :value (req (->> (:scored corp) (filter #(= (:title %) (:title target))) (count)))}]}) (defcard "Tread Lightly" {:on-play {:prompt "Choose a server" :choices (req runnable-servers) :makes-run true :async true :effect (effect (register-floating-effect card {:type :rez-additional-cost :duration :end-of-run :req (req (ice? target)) :value (req [:credit 3])}) (make-run eid target card))}}) (defcard "Uninstall" {:on-play {:req (req (some #(or (hardware? %) (program? %)) (all-active-installed state :runner))) :choices {:card #(and (installed? %) (not (facedown? %)) (or (hardware? %) (program? %)))} :msg (msg "move " (:title target) " to their Grip") :effect (effect (move target :hand))}}) (defcard "Unscheduled Maintenance" {:events [{:event :corp-install :req (req (ice? (:card context))) :effect (effect (register-turn-flag! card :can-install-ice (fn [state side card] (if (ice? card) ((constantly false) (toast state :corp "Cannot install ICE the rest of this turn due to Unscheduled Maintenance")) true))))}] :leave-play (effect (clear-turn-flag! card :can-install-ice))}) (defcard "Vamp" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :ability {:async true :prompt "How many [Credits]?" :choices :credit :msg (msg "take 1 tag and make the Corp lose " target " [Credits]") :effect (req (wait-for (lose-credits state :corp target) (gain-tags state side eid 1)))}} )]}) (defcard "VRcation" {:on-play {:msg (msg "draw 4 cards" (when (pos? (:click runner)) " and lose [Click]")) :async true :effect (req (when (pos? (:click runner)) (lose state :runner :click 1)) (draw state :runner eid 4 nil))}}) (defcard "Wanton Destruction" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :ability {:msg (msg "force the Corp to discard " target " cards from HQ at random") :prompt "How many [Click] do you want to spend?" :choices (req (map str (range 0 (inc (:click runner))))) :async true :effect (req (let [n (str->int target)] (wait-for (pay state :runner card :click n) (system-msg state :runner (:msg async-result)) (trash-cards state :corp eid (take n (shuffle (:hand corp)))))))}})]}) (defcard "Watch the World Burn" (letfn [(rfg-card-event [burned-card] [{:event :pre-access-card :duration :end-of-game :req (req (same-card? :title burned-card target)) :msg (msg (str "remove " (:title burned-card) " from the game")) :effect (effect (move :corp target :rfg))}])] {:makes-run true :on-play {:prompt "Choose a server" :choices (req (filter #(can-run-server? state %) remotes)) :async true :effect (effect (make-run eid target card))} :events [{:event :pre-access-card :req (req (and (not (agenda? target)) (:successful run))) :once :per-run :msg (msg "remove " (:title target) " from the game, and watch for other copies of " (:title target) " to burn") :effect (effect (move :corp target :rfg) (register-events card (rfg-card-event target)))}]})) (defcard "White Hat" (letfn [(finish-choice [choices] (let [choices (filter #(not= "None" %) choices)] (when (not-empty choices) {:effect (req (doseq [c choices] (move state :corp c :deck)) (shuffle! state :corp :deck)) :msg (str "shuffle " (string/join ", " (map :title choices)) " into R&D")}))) (choose-cards [hand chosen] {:prompt "Choose a card in HQ to shuffle into R&D" :player :runner :choices (conj (vec (clojure.set/difference hand chosen)) "None") :async true :effect (req (if (and (empty? chosen) (not= "None" target)) (continue-ability state side (choose-cards hand (conj chosen target)) card nil) (continue-ability state side (finish-choice (conj chosen target)) card nil)))})] {:on-play {:trace {:base 3 :req (req (some #{:hq :rd :archives} (:successful-run runner-reg))) :unsuccessful {:async true :msg (msg "reveal all cards in HQ" (when-let [hand (seq (:hand corp))] (str ": " (string/join ", " (map :title hand))))) :effect (req (wait-for (reveal state side (:hand corp)) (continue-ability state :runner (choose-cards (set (:hand corp)) #{}) card nil)))}}}})) (defcard "Wildcat Strike" {:on-play {:player :corp :waiting-prompt "Corp to choose Wildcat Strike effect" :prompt "Choose one" :choices ["Runner gains 6 [Credits]" "Runner draws 4 cards"] :async true :effect (req (if (= target "Runner gains 6 [Credits]") (do (system-msg state :corp "chooses 6 [Credits] for the Runner") (gain-credits state :runner eid 6)) (do (system-msg state :corp "chooses 4 cards for the Runner") (draw state :runner eid 4 nil))))}}) (defcard "Windfall" {:on-play {:async true :effect (req (shuffle! state side :deck) (let [topcard (first (:deck (:runner @state))) cost (:cost topcard)] (wait-for (trash state side topcard nil) (wait-for (gain-credits state side (if (event? topcard) 0 cost)) (system-msg state side (str "shuffles their Stack and trashes " (:title topcard) (when-not (event? topcard) (str " to gain " cost " [Credits]")))) (effect-completed state side eid)))))}})
85482
(ns game.cards.events (:require [game.core :refer :all] [game.utils :refer :all] [jinteki.utils :refer :all] [clojure.string :as string])) (defn- cutlery [subtype] {:makes-run true :on-play {:async true :prompt "Choose a server:" :choices (req runnable-servers) :effect (effect (make-run eid target card))} :events [{:event :subroutines-broken :async true :req (req (and (has-subtype? target subtype) (every? :broken (:subroutines target)) (let [pred #(and (has-subtype? (first %) subtype) (every? :broken (:subroutines (first %))))] (first-event? state side :subroutines-broken pred)))) :msg (msg "trash " (card-str state target)) :effect (effect (trash eid target nil))}]}) ;; Card definitions (defcard "<NAME> <NAME>" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :ability {:async true :msg (msg "force the Corp to lose " (min 5 (:credit corp)) " [Credits], gain " (* 2 (min 5 (:credit corp))) " [Credits] and take 2 tags") :effect (req (wait-for (gain-tags state :runner 2) (wait-for (gain-credits state :runner (* 2 (min 5 (:credit corp)))) (lose-credits state :corp eid (min 5 (:credit corp))))))}})]}) (defcard "Always Have a Backup Plan" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :msg (msg "make a run on " target) :effect (req (wait-for (make-run state side target card) (let [card (get-card state card)] (if (get-in card [:special :run-again]) (make-run state side eid target card {:ignore-costs true}) (effect-completed state side eid)))))} :events [{:event :run-ends :optional {:req (req (and (not (get-in card [:special :run-again])) (:unsuccessful target))) :player :runner :prompt "Make another run on the same server?" :yes-ability {:effect (req (let [last-run (get-in @state [:runner :register :last-run]) run-ice (get-in @state (concat [:corp :servers] (:server last-run) [:ices])) pos (:position last-run) ice (when (and pos (pos? pos) (<= pos (count run-ice))) (get-card state (nth run-ice (dec pos))))] (update! state side (update card :special assoc :run-again true :run-again-ice ice))))}}} {:event :encounter-ice :once :per-run :req (req (and (get-in card [:special :run-again]) (same-card? (:ice context) (get-in card [:special :run-again-ice])))) :msg (msg "bypass " (:title (:ice context))) :effect (req (bypass-ice state))}]}) (defcard "Amped Up" {:on-play {:msg "gain [Click][Click][Click] and suffer 1 brain damage" :async true :effect (effect (gain :click 3) (damage eid :brain 1 {:unpreventable true :card card}))}}) (defcard "Another Day, Another Paycheck" {:events [{:event :agenda-stolen :trace {:base 0 :unsuccessful {:async true :effect (effect (gain-credits :runner eid (+ (:agenda-point runner) (:agenda-point corp)))) :msg (msg (str "gain " (+ (:agenda-point runner) (:agenda-point corp)) " [Credits]"))}}}]}) (defcard "Apocalypse" (let [corp-trash {:async true :effect (req (let [ai (all-installed state :corp) onhost (filter #(= '(:onhost) (:zone %)) ai) unhosted (->> ai (remove #(= '(:onhost) (:zone %))) (sort-by #(vec (:zone %))) (reverse)) allcorp (concat onhost unhosted)] (trash-cards state :runner eid allcorp)))} runner-facedown {:effect (req (let [installedcards (all-active-installed state :runner) ishosted (fn [c] (or (= ["onhost"] (get c :zone)) (= '(:onhost) (get c :zone)))) hostedcards (filter ishosted installedcards) nonhostedcards (remove ishosted installedcards)] (doseq [oc hostedcards :let [c (get-card state oc)] :when (not (:condition c))] (flip-facedown state side c)) (doseq [oc nonhostedcards :let [c (get-card state oc)]] (flip-facedown state side c))))}] {:on-play {:req (req (and (some #{:hq} (:successful-run runner-reg)) (some #{:rd} (:successful-run runner-reg)) (some #{:archives} (:successful-run runner-reg)))) :async true ;; trash cards from right to left ;; otherwise, auto-killing servers would move the cards to the next server ;; so they could no longer be trashed in the same loop :msg "trash all installed Corp cards and turn all installed Runner cards facedown" :effect (req (wait-for (resolve-ability state side corp-trash card nil) (continue-ability state side runner-facedown card nil)))}})) (defcard "Because I Can" {:makes-run true :on-play {:async true :prompt "Choose a server" :choices (req (filter #(can-run-server? state %) remotes)) :effect (effect (make-run eid target card))} :events [(successful-run-replace-access {:target-server :remote :this-card-run true :ability {:msg "shuffle all cards in the server into R&D" :effect (req (doseq [c (:content run-server)] (move state :corp c :deck)) (shuffle! state :corp :deck))}})]}) (defcard "Black Hat" {:on-play {:trace {:base 4 :unsuccessful {:effect (effect (register-events card [{:event :pre-access :duration :end-of-turn :req (req (#{:hq :rd} target)) :effect (effect (access-bonus target 2))}]))}}}}) (defcard "Blackmail" {:makes-run true :on-play {:req (req (has-bad-pub? state)) :prompt "Choose a server" :choices (req runnable-servers) :msg "prevent ICE from being rezzed during this run" :async true :effect (effect (register-run-flag! card :can-rez (fn [state side card] (if (ice? card) ((constantly false) (toast state :corp "Cannot rez ICE on this run due to Blackmail")) true))) (make-run eid target card))}}) (defcard "Blueberry!™ Diesel" {:on-play {:async true :prompt "Move a card to the bottom of the stack?" :not-distinct true :choices (req (conj (vec (take 2 (:deck runner))) "No")) :effect (req (when-not (string? target) (move state side target :deck)) (system-msg state side (str "looks at the top 2 cards of the stack" (when-not (string? target) " and adds one to the bottom of the stack"))) (system-msg state side "uses Blueberry!™ Diesel to draw 2 cards") (draw state :runner eid 2 nil))}}) (defcard "Bravado" ; Bravado only counts distinct pieces of ice that were passed. ; That means if a piece of ice was reinstalled and then repassed, it needs to be counted twice. ; This is handled by tracking :card-moved and counting them in :special :bravado-moved. (letfn [(iced-servers [state side eid card] (filter #(-> (get-in @state (cons :corp (server->zone state %))) :ices count pos?) (zones->sorted-names (get-runnable-zones state side eid card nil))))] {:makes-run true :on-play {:async true :req (req (pos? (count (iced-servers state side eid card)))) :prompt "Choose an iced server" :choices (req (iced-servers state side eid card)) :effect (effect (register-events card [{:event :pass-ice :duration :end-of-run :effect (effect (update! (update-in (get-card state card) [:special :bravado-passed] conj (:cid (:ice context)))))}]) (make-run eid target (get-card state card)))} :events [{:event :run-ends :silent (req true) :msg (msg "gain " (+ 6 (count (distinct (get-in card [:special :bravado-passed]))) (get-in card [:special :bravado-moved] 0)) " [Credits]") :async true :effect (effect (gain-credits :runner eid (+ 6 (count (distinct (get-in card [:special :bravado-passed]))) (get-in card [:special :bravado-moved] 0))))} {:event :card-moved :silent (req true) :req (req (in-coll? (get-in card [:special :bravado-passed] []) (:cid target))) :effect (effect (update! (update-in card [:special :bravado-moved] (fnil inc 0))) (update! (update-in (get-card state card) [:special :bravado-passed] (fn [cids] (remove #(= % (:cid target)) cids)))))}]})) (defcard "Bribery" {:makes-run true :on-play {:async true :prompt "How many credits?" :choices :credit :msg (msg "increase the rez cost of the first unrezzed ICE approached by " target " [Credits]") :effect (effect (continue-ability (let [bribery-x target] {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (register-events card [{:event :approach-ice :duration :end-of-run :unregister-once-resolved true :req (req (and (not (rezzed? (:ice context))) (first-run-event? state side :approach-ice (fn [targets] (let [context (first targets)] (not (rezzed? (:ice context)))))))) :effect (effect (register-floating-effect card (let [approached-ice (:ice context)] {:type :rez-additional-cost :duration :end-of-run :unregister-once-resolved true :req (req (same-card? approached-ice target)) :value [:credit bribery-x]})))}]) (make-run eid target card))}) card nil))}}) (defcard "Brute-Force-Hack" {:on-play {:req (req (some #(and (ice? %) (rezzed? %) (can-pay? state side eid card nil [:credit (rez-cost state side %)])) (all-installed state :corp))) :async true :effect (req (let [affordable-ice (seq (filter identity (for [ice (all-installed state :corp) :when (and (ice? ice) (rezzed? ice)) :let [cost (rez-cost state side ice)]] (when (can-pay? state side eid card nil [:credit cost]) [(:cid ice) cost]))))] (continue-ability state side {:prompt "How many [Credits]?" :choices :credit :msg (msg "spends " target " [Credit] on Brute-Force-Hack") :effect (effect (continue-ability {:choices {:card #(and (rezzed? %) (some (fn [c] (and (= (first c) (:cid %)) (<= (second c) target))) affordable-ice))} :msg (msg "derez " (card-str state target)) :effect (effect (derez target))} card nil))} card nil)))}}) (defcard "Build Script" {:on-play {:msg "gain 1 [Credits] and draw 2 cards" :async true :effect (req (wait-for (gain-credits state side 1) (draw state side eid 2 nil)))}}) (defcard "By Any Means" {:on-play {:effect (effect (register-events card [{:event :access :duration :end-of-turn :req (req (not (in-discard? target))) :interactive (req true) :async true :msg (msg "trash " (:title target) " at no cost and suffer 1 meat damage") :effect (req (wait-for (trash state side (assoc target :seen true) nil) (swap! state assoc-in [:runner :register :trashed-card] true) (damage state :runner eid :meat 1 {:unboostable true})))}]))}}) (defcard "Calling in Favors" {:on-play {:msg (msg "gain " (count (filter #(and (has-subtype? % "Connection") (resource? %)) (all-active-installed state :runner))) " [Credits]") :async true :effect (effect (gain-credits eid (count (filter #(and (has-subtype? % "Connection") (resource? %)) (all-active-installed state :runner)))))}}) (defcard "Career Fair" {:on-play {:prompt "Select a resource to install from your Grip" :req (req (some #(and (resource? %) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side % {:cost-bonus -3})])) (:hand runner))) :choices {:req (req (and (resource? target) (in-hand? target) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target {:cost-bonus -3})])))} :async true :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) target {:cost-bonus -3}))}}) (defcard "Careful Planning" {:on-play {:prompt "Choose a card in or protecting a remote server" :choices {:card #(is-remote? (second (get-zone %)))} :effect (effect (add-icon card target "CP" "red") (system-msg (str "prevents the rezzing of " (card-str state target) " for the rest of this turn via Careful Planning")) (register-events card [{:event :runner-turn-ends :duration :end-of-turn :effect (effect (remove-icon card target))}]) (register-turn-flag! card :can-rez (fn [state side card] (if (same-card? card target) ((constantly false) (toast state :corp "Cannot rez the rest of this turn due to Careful Planning")) true))))}}) (defcard "CBI Raid" (letfn [(cbi-final [chosen original] {:player :corp :prompt (str "The top cards of R&D will be " (string/join ", " (map :title chosen)) ".") :choices ["Done" "Start over"] :async true :effect (req (if (= target "Done") (do (doseq [c (reverse chosen)] (move state :corp c :deck {:front true})) (effect-completed state side eid)) (continue-ability state side (cbi-choice original '() (count original) original) card nil)))}) (cbi-choice [remaining chosen n original] {:player :corp :prompt "Choose a card to move next onto R&D" :choices remaining :async true :effect (effect (continue-ability (let [chosen (cons target chosen)] (if (< (count chosen) n) (cbi-choice (remove-once #(= target %) remaining) chosen n original) (cbi-final chosen original))) card nil))})] {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :mandatory true :this-card-run true :ability {:msg "force the Corp to add all cards in HQ to the top of R&D" :player :corp :waiting-prompt "Corp to add all cards in HQ to the top of R&D" :async true :effect (effect (continue-ability (let [from (:hand corp)] (when (pos? (count from)) (cbi-choice from '() (count from) from))) card nil))}})]})) (defcard "Code Siphon" (letfn [(rd-ice [state] (* -3 (count (get-in @state [:corp :servers :rd :ices]))))] {:makes-run true :on-play {:req (req rd-runnable) :async true :effect (effect (make-run eid :rd card))} :events [(successful-run-replace-access {:target-server :rd :this-card-run true :ability {:async true :prompt "Choose a program to install" :msg (msg "install " (:title target) " and take 1 tag") :choices (req (filter #(and (program? %) (runner-can-install? state side % false) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side % {:cost-bonus (rd-ice state)})])) (:deck runner))) :effect (req (trigger-event state side :searched-stack nil) (shuffle! state side :deck) (wait-for (runner-install state side target {:cost-bonus (rd-ice state)}) (gain-tags state side eid 1)))}})]})) (defcard "Cold Read" {:implementation "Used programs restriction not enforced" :makes-run true :data {:counter {:credit 4}} :on-play {:async true :prompt "Choose a server" :choices (req runnable-servers) :effect (effect (make-run eid target card))} :interactions {:pay-credits {:type :credit}} :events [{:event :run-ends :player :runner :prompt "Choose a program that was used during the run" :choices {:card #(and (program? %) (installed? %))} :msg (msg "trash " (:title target)) :async true :effect (effect (trash eid target {:unpreventable true}))}]}) (defcard "Compile" (letfn [(compile-fn [where] {:prompt "Choose a program to install" :choices (req (cancellable (filter program? (get runner where)))) :async true :effect (req (when (= :deck where) (trigger-event state side :searched-stack nil) (shuffle! state side :deck)) (runner-install state side (assoc eid :source card :source-type :runner-install) (assoc-in target [:special :compile-installed] true) {:ignore-all-cost true}))})] {:makes-run true :on-play {:prompt "Choose a server" :msg "make a run and install a program on encounter with the first piece of ICE" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :encounter-ice :optional {:prompt "Install a program?" :once :per-run :yes-ability {:async true :prompt "Install from where?" :choices (req (if (not (zone-locked? state :runner :discard)) ["Stack" "Heap"] ["Stack"] )) :msg (msg "install a program from their " target) :effect (effect (continue-ability (compile-fn (if (= "Stack" target) :deck :discard)) card nil))}}} {:event :run-ends :effect (req (let [compile-installed (first (filterv #(get-in % [:special :compile-installed]) (all-active-installed state :runner)))] (when (some? compile-installed) (system-msg state :runner (str "moved " (:title compile-installed) " to the bottom of the Stack")) (move state :runner compile-installed :deck))))}]})) (defcard "Contaminate" {:on-play {:msg (msg "place 3 virus tokens on " (:title target)) :choices {:req (req (and (installed? target) (runner? target) (zero? (get-virus-counters state target))))} :async true :effect (effect (add-counter :runner eid target :virus 3 nil))}}) (defcard "Corporate \"Grant\"" {:events [{:event :runner-install :req (req (first-event? state side :runner-install)) :msg "force the Corp to lose 1 [Credit]" :async true :effect (effect (lose-credits :corp eid 1))}]}) (defcard "Corporate Scandal" {:on-play {:msg "give the Corp 1 additional bad publicity" :implementation "No enforcement that this Bad Pub cannot be removed" :effect (req (swap! state update-in [:corp :bad-publicity :additional] inc))} :leave-play (req (swap! state update-in [:corp :bad-publicity :additional] dec))}) (defcard "Creative Commission" {:on-play {:msg (msg "gain 5 [Credits]" (when (pos? (:click runner)) " and lose [Click]")) :async true :effect (req (when (pos? (:click runner)) (lose state :runner :click 1)) (gain-credits state :runner eid 5))}}) (defcard "Credit Crash" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :pre-access-card :once :per-run :async true :req (req (not (agenda? target))) :effect (req (let [c target cost (or (and (or (asset? c) (upgrade? c) (ice? c)) (rez-cost state side c)) (and (operation? c) (play-cost state side c))) title (:title c)] (if (can-pay? state :corp eid card nil [:credit cost]) (continue-ability state :corp {:optional {:waiting-prompt "Corp to decide whether or not to prevent the trash" :prompt (msg "Spend " cost " [Credits] to prevent the trash of " title "?") :player :corp :yes-ability {:async true :effect (req (system-msg state :corp (str "spends " cost " [Credits] to prevent " title " from being trashed at no cost")) (lose-credits state :corp eid cost))} :no-ability {:msg (msg "trash " title " at no cost") :async true :effect (effect (trash eid (assoc c :seen true) nil))}}} card nil) (do (system-msg state side (str "uses Credit Crash to trash " title " at no cost")) (trash state side eid (assoc c :seen true) nil)))))}]}) (defcard "Credit Kiting" {:on-play {:req (req (some #{:hq :rd :archives} (:successful-run runner-reg))) :prompt "Select a card to install from your Grip" :choices {:req (req (and (not (event? target)) (in-hand? target) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target {:cost-bonus -8})])))} :async true :effect (req (let [new-eid (make-eid state {:source card :source-type :runner-install})] (wait-for (runner-install state :runner new-eid target {:cost-bonus -8}) (gain-tags state :runner eid 1))))}}) (defcard "Cyber Threat" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (req (let [serv target] (continue-ability state :corp (if (seq (filter #(and (installed? %) (not (rezzed? %)) (ice? %) (can-pay? state side eid card nil [:credit (rez-cost state side %)])) (all-installed state :corp))) {:optional {:prompt (msg "Rez a piece of ICE protecting " serv "?") :yes-ability {:async true :prompt (msg "Select a piece of ICE protecting " serv " to rez") :player :corp :choices {:card #(and (installed? %) (not (rezzed? %)) (ice? %) (can-pay? state side eid card nil [:credit (rez-cost state side %)]))} :effect (effect (rez :corp eid target)) :cancel-effect (effect (register-run-flag! card :can-rez (fn [state side card] (if (ice? card) ((constantly false) (toast state :corp "Cannot rez ICE on this run due to Cyber Threat")) true))) (make-run eid serv card))} :no-ability {:async true :effect (effect (register-run-flag! card :can-rez (fn [state side card] (if (ice? card) ((constantly false) (toast state :corp "Cannot rez ICE on this run due to Cyber Threat")) true))) (make-run eid serv card)) :msg (msg "make a run on " serv " during which no ICE can be rezzed")}}} {:async true :effect (effect (register-run-flag! card :can-rez (fn [state side card] (if (ice? card) ((constantly false) (toast state :corp "Cannot rez ICE on this run due to Cyber Threat")) true))) (make-run eid serv card)) :msg (msg "make a run on " serv " during which no ICE can be rezzed")}) card nil)))}}) (defcard "Data Breach" {:makes-run true :on-play {:async true :req (req rd-runnable) :effect (req (wait-for (make-run state side :rd card) (let [card (get-card state card)] (if (:run-again card) (make-run state side eid :rd card) (effect-completed state side eid)))))} :events [{:event :run-ends :optional {:req (req (and (:successful target) (not (:run-again card)) (= [:rd] (:server target)))) :prompt "Make another run on R&D?" :yes-ability {:effect (effect (clear-wait-prompt :corp) (update! (assoc card :run-again true)))}}}]}) (defcard "Day Job" {:on-play {:additional-cost [:click 3] :msg "gain 10 [Credits]" :async true :effect (effect (gain-credits eid 10))}}) (defcard "Deep Data Mining" {:makes-run true :on-play {:async true :req (req rd-runnable) :effect (effect (make-run eid :rd card))} :events [{:event :successful-run :req (req (and (= :rd (target-server context)) this-card-run)) :silent (req true) :effect (effect (access-bonus :rd (max 0 (min 4 (available-mu state)))))}]}) (defcard "<NAME> V<NAME>" {:on-play {:req (req (not (zone-locked? state :runner :discard))) :prompt "Choose a card to add to Grip" :choices (req (cancellable (:discard runner) :sorted)) :msg (msg "add " (:title target) " to their Grip") :async true :effect (effect (move target :hand) (continue-ability (when (has-subtype? target "Virus") {:prompt "Choose a virus to add to Grip" :msg (msg "add " (:title target) " to their Grip") :choices (req (cancellable (filter #(has-subtype? % "Virus") (:discard runner)) :sorted)) :effect (effect (move target :hand))}) card nil))}}) (defcard "Demolition Run" {:makes-run true :on-play {:req (req (or rd-runnable hq-runnable)) :prompt "Choose a server" :choices ["HQ" "R&D"] :async true :effect (effect (make-run eid target card))} :interactions {:access-ability {:label "Trash card" :msg (msg "trash " (:title target) " at no cost") :async true :effect (effect (trash eid (assoc target :seen true) nil))}}}) (defcard "Deuces Wild" (let [all [{:effect (effect (gain-credits eid 3)) :async true :msg "gain 3 [Credits]"} {:async true :effect (effect (draw eid 2 nil)) :msg "draw 2 cards"} {:async true :effect (effect (lose-tags eid 1)) :msg "remove 1 tag"} {:prompt "Select 1 piece of ice to expose" :msg "expose 1 ice and make a run" :choices {:card #(and (installed? %) (ice? %))} :async true :effect (req (wait-for (expose state side target) (continue-ability state side {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target))} card nil))) :cancel-effect (effect (continue-ability {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target))} card nil))}] choice (fn choice [abis] {:prompt "Choose an ability to resolve" :choices (map #(capitalize (:msg %)) abis) :async true :effect (req (let [chosen (some #(when (= target (capitalize (:msg %))) %) abis)] (wait-for (resolve-ability state side chosen card nil) (if (= (count abis) 4) (continue-ability state side (choice (remove-once #(= % chosen) abis)) card nil) (effect-completed state side eid)))))})] {:on-play {:async true :effect (effect (continue-ability (choice all) card nil))}})) (defcard "Diana's Hunt" {:makes-run true :on-play {:prompt "Choose a server" :msg "make a run" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :encounter-ice :optional {:req (req (seq (filter program? (:hand runner)))) :prompt "Install a program from your grip?" :yes-ability {:prompt "Choose a program in your grip to install" :async true :choices {:card #(and (in-hand? %) (program? %))} :msg (msg "install " (:title target) ", ignoring all costs") :effect (effect (runner-install eid (assoc-in target [:special :diana-installed] true) {:ignore-all-cost true}))}}} {:event :run-ends :async true :effect (req (let [installed-cards (filter #(get-in % [:special :diana-installed]) (all-active-installed state :runner))] (if (seq installed-cards) (do (system-msg state :runner (str "trashes " (count installed-cards) " cards (" (string/join ", " (map :title installed-cards)) ") at the end of the run from Diana's Hunt")) (trash-cards state :runner eid installed-cards {:unpreventable true})) (effect-completed state side eid))))}]}) (defcard "Diesel" {:on-play {:msg "draw 3 cards" :async true :effect (effect (draw eid 3 nil))}}) (defcard "Direct Access" {:makes-run true :on-play {:async true :effect (req (doseq [s [:corp :runner]] (disable-identity state s)) (continue-ability state side {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} card nil))} :events [{:event :run-ends :unregister-once-resolved true :async true :effect (req (doseq [s [:corp :runner]] (enable-identity state s)) (continue-ability state :runner {:optional {:prompt "Shuffle Direct Access into the Stack?" :yes-ability {:msg (msg "shuffles Direct Access into the Stack") :effect (effect (move (get-card state card) :deck) (shuffle! :deck))}}} card nil))}]}) (defcard "Dirty Laundry" {:makes-run true :on-play {:async true :prompt "Choose a server" :choices (req runnable-servers) :effect (effect (make-run eid target card))} :events [{:event :run-ends :req (req (and (:successful target) this-card-run)) :msg "gain 5 [Credits]" :async true :effect (effect (gain-credits :runner eid 5))}]}) (defcard "Diversion of Funds" (letfn [(five-or-all [corp] (min 5 (:credit corp)))] {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :ability {:msg (msg "force the Corp to lose " (five-or-all corp) " [Credits], and gain " (five-or-all corp) " [Credits]") :async true :effect (req (wait-for (gain-credits state :runner (five-or-all corp)) (lose-credits state :corp eid (five-or-all corp))))}})]})) (defcard "Divide and Conquer" {:makes-run true :on-play {:req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :events [{:event :end-access-phase :async true :req (req (and (= :archives (:from-server target)) (:successful run))) :effect (req (wait-for (do-access state side [:hq] {:no-root true}) (do-access state side eid [:rd] {:no-root true})))}]}) (defcard "Drive By" {:on-play {:choices {:card #(let [topmost (get-nested-host %)] (and (is-remote? (second (get-zone topmost))) (= (last (get-zone topmost)) :content) (not (:rezzed %))))} :async true :effect (req (wait-for (expose state side target) (if-let [target async-result] (if (or (asset? target) (upgrade? target)) (do (system-msg state :runner (str "uses Drive By to trash " (:title target))) (trash state :runner eid (assoc target :seen true) nil)) (effect-completed state side eid)) (effect-completed state side eid))))}}) (defcard "Early Bird" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :msg (msg "make a run on " target " and gain [Click]") :async true :effect (effect (gain :click 1) (make-run eid target card))}}) (defcard "Easy Mark" {:on-play {:msg "gain 3 [Credits]" :async true :effect (effect (gain-credits eid 3))}}) (defcard "Embezzle" {:makes-run true :on-play {:async true :req (req hq-runnable) :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :mandatory true :ability {:prompt "Choose a card type" :choices ["Asset" "Upgrade" "Operation" "ICE"] :msg (msg "reveal 2 cards from HQ and trash all " target (when (not (= "ICE" target)) "s")) :async true :effect (req (let [cards-to-reveal (take 2 (shuffle (:hand corp))) cards-to-trash (filter #(is-type? % target) cards-to-reveal) credits (* 4 (count cards-to-trash))] (system-msg state side (str "uses Embezzle to reveal " (string/join " and " (map :title cards-to-reveal)) " from HQ")) (wait-for (reveal state side cards-to-reveal) (if (pos? credits) (do (system-msg state side (str " uses Embezzle to trash " (string/join " and " (map :title cards-to-trash)) " from HQ and gain " credits " [Credits]")) (wait-for (trash-cards state :runner (map #(assoc % :seen true) cards-to-trash)) (gain-credits state :runner eid credits))) (effect-completed state side eid)))))}})]}) (defcard "Emergency Shutdown" {:on-play {:req (req (some #{:hq} (:successful-run runner-reg))) :msg (msg "derez " (:title target)) :choices {:card #(and (ice? %) (rezzed? %))} :effect (effect (derez target))}}) (defcard "Emergent Creativity" (letfn [(ec [trash-cost to-trash] {:async true :prompt "Choose a hardware or program to install" :msg (msg "trash " (if (empty? to-trash) "no cards" (string/join ", " (map :title to-trash))) " and install " (:title target) " lowering the cost by " trash-cost) :choices (req (cancellable (filter #(and (or (program? %) (hardware? %)) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side % {:cost-bonus (- trash-cost)})])) (:deck runner)) :sorted)) :effect (req (trigger-event state side :searched-stack nil) (shuffle! state side :deck) (runner-install state side (assoc eid :source card :source-type :runner-install) target {:cost-bonus (- trash-cost)}))})] {:on-play {:prompt "Choose Hardware and Programs to trash from your Grip" :choices {:card #(and (or (hardware? %) (program? %)) (in-hand? %)) :max (req (count (:hand runner)))} :cancel-effect (effect (continue-ability (ec 0 []) card nil)) :async true :effect (req (let [trash-cost (reduce + (keep :cost targets)) to-trash targets] (wait-for (trash-cards state side to-trash {:unpreventable true}) (continue-ability state side (ec trash-cost to-trash) card nil))))}})) (defcard "Employee Strike" {:on-play {:msg "disable the Corp's identity" :effect (effect (disable-identity :corp))} :disable-id true :leave-play (effect (enable-identity :corp))}) (defcard "En Passant" {:on-play {:req (req (and (:successful-run runner-reg) (->> (:events (:last-run runner-reg)) (filter #(= :pass-ice (first %))) (map second) (keep #(get-card state (:ice (first %)))) (filter (complement rezzed?)) seq))) :prompt "Choose an unrezzed piece of ICE that you passed on your last run" :choices {:req (req (some #(same-card? target %) (->> (:events (:last-run runner-reg)) (filter #(= :pass-ice (first %))) (map second) (keep #(get-card state (:ice (first %)))) (filter (complement rezzed?)))))} :msg (msg "trash " (card-str state target)) :async true :effect (effect (trash eid target nil))}}) (defcard "Encore" {:on-play {:req (req (and (some #{:hq} (:successful-run runner-reg)) (some #{:rd} (:successful-run runner-reg)) (some #{:archives} (:successful-run runner-reg)))) :rfg-instead-of-trashing true :msg "take an additional turn after this one" :effect (req (swap! state update-in [:runner :extra-turns] (fnil inc 0)))}}) (defcard "<NAME>" (letfn [(es [] {:async true :prompt "Select two pieces of ICE to swap positions" :choices {:card #(and (installed? %) (ice? %)) :max 2} :effect (req (if (= (count targets) 2) (do (swap-ice state side (first targets) (second targets)) (continue-ability state side (es) card nil)) (do (system-msg state side "has finished rearranging ICE") (effect-completed state side eid))))})] {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :mandatory true :ability {:async true :msg "rearrange installed ICE" :effect (effect (continue-ability (es) card nil))}})]})) (defcard "<NAME>ureka!" {:on-play {:async true :effect (req (let [topcard (first (:deck runner)) caninst (and (or (hardware? topcard) (program? topcard) (resource? topcard)) (can-pay? state side (assoc eid :source card :source-type :runner-install) topcard nil [:credit (install-cost state side topcard {:cost-bonus -10})]))] (if caninst (continue-ability state side {:optional {:prompt (msg "Install " (:title topcard) "?") :yes-ability {:async true :effect (effect (runner-install eid topcard {:cost-bonus -10}))} :no-ability {:async true :effect (req (wait-for (reveal state side topcard) (system-msg (str "reveals and trashes " (:title topcard))) (trash eid topcard {:unpreventable true})))}}} card nil) (wait-for (reveal state side topcard) (system-msg state side (str "reveals and trashes " (:title topcard))) (trash state side eid topcard {:unpreventable true})))))}}) (defcard "Exclusive Party" {:on-play {:msg (msg "draw 1 card and gain " (count (filter #(= (:title %) "Exclusive Party") (:discard runner))) " [Credits]") :async true :effect (req (wait-for (draw state side 1 nil) (gain-credits state side eid (count (filter #(= (:title %) "Exclusive Party") (:discard runner))))))}}) (defcard "Executive Wiretaps" {:on-play {:msg (msg "reveal cards in HQ: " (string/join ", " (sort (map :title (:hand corp))))) :async true :effect (effect (reveal eid (:hand corp)))}}) (defcard "Exploit" {:on-play {:req (req (and (some #{:hq} (:successful-run runner-reg)) (some #{:rd} (:successful-run runner-reg)) (some #{:archives} (:successful-run runner-reg)))) :prompt "Choose up to 3 pieces of ICE to derez" :choices {:max 3 :card #(and (rezzed? %) (ice? %))} :msg (msg "derez " (string/join ", " (map :title targets))) :effect (req (doseq [c targets] (derez state side c)))}}) (defcard "Exploratory Romp" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [(successful-run-replace-access {:mandatory true :this-card-run true :ability {:req (req (some #(and (pos? (get-counters % :advancement)) (= (first (:server run)) (second (get-zone %)))) (all-installed state :corp))) :prompt "Advancements to remove from a card in or protecting this server?" :choices ["0" "1" "2" "3"] :async true :waiting-prompt "Runner to use Exploratory Romp" :effect (req (let [c (str->int target)] (continue-ability state side {:choices {:card #(and (pos? (get-counters % :advancement)) (= (first (:server run)) (second (get-zone %))))} :msg (msg "remove " (quantify c "advancement token") " from " (card-str state target)) :effect (req (let [to-remove (min c (get-counters target :advancement))] (add-prop state :corp target :advance-counter (- to-remove))))} card nil)))}})]}) (defcard "Express Delivery" {:on-play {:prompt "Choose a card to add to your Grip" :choices (req (take 4 (:deck runner))) :msg "look at the top 4 cards of their Stack and add 1 of them to their Grip" :effect (effect (move target :hand) (shuffle! :deck))}}) (defcard "Falsified Credentials" {:on-play {:prompt "Choose a type" :choices ["Agenda" "Asset" "Upgrade"] :msg (msg "guess " target) :async true :effect (effect (continue-ability (let [chosen-type target] {:choices {:card #(let [topmost (get-nested-host %)] (and (is-remote? (second (get-zone topmost))) (= (last (get-zone topmost)) :content) (not (rezzed? %))))} :async true :effect (req (wait-for (expose state side target) (continue-ability state :runner (if (and async-result ;; expose was successful (= chosen-type (:type target))) {:async true :effect (effect (gain-credits eid 5)) :msg "gain 5 [Credits]"}) card nil)))}) card nil))}}) (defcard "Fear the Masses" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :mandatory true :ability {:async true :msg "force the Corp to trash the top card of R&D" :effect (req (wait-for (mill state :corp :corp 1) (continue-ability state side (let [n (count (filter #(same-card? :title card %) (:hand runner)))] {:async true :prompt "Reveal how many copies of Fear the Masses?" :choices {:card #(and (in-hand? %) (same-card? :title card %)) :max n} :msg (msg "reveal " (count targets) " copies of Fear the Masses," " forcing the Corp to trash " (count targets) " additional cards from the top of R&D") :effect (req (wait-for (reveal state :runner targets) (mill state :corp eid :corp (count targets))))}) card nil)))}})]}) (defcard "Feint" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [{:event :encounter-ice :req (req (< (get-in card [:special :bypass-count] 0) 2)) :msg (msg "bypass " (:title (:ice context))) :effect (req (bypass-ice state) (update! state side (update-in card [:special :bypass-count] (fnil inc 0))))} {:event :successful-run :effect (effect (prevent-access))}]}) (defcard "Fisk Investment Seminar" {:on-play {:msg "make each player draw 3 cards" :async true :effect (req (wait-for (draw state :runner 3 nil) (draw state :corp eid 3 nil)))}}) (defcard "Forged Activation Orders" {:on-play {:choices {:card #(and (ice? %) (not (rezzed? %)))} :async true :effect (req (let [ice target serv (zone->name (second (get-zone ice))) icepos (card-index state ice)] (continue-ability state :corp {:prompt (str "Rez " (:title ice) " at position " icepos " of " serv " or trash it?") :choices ["Rez" "Trash"] :async true :waiting-prompt "Corp to decide to rez or trash ice" :effect (effect (continue-ability (if (and (= target "Rez") (<= (rez-cost state :corp ice) (:credit corp))) {:msg (msg "force the rez of " (:title ice)) :async true :effect (effect (rez :corp eid ice))} {:msg (msg "trash the ICE at position " icepos " of " serv) :async true :effect (effect (trash :corp eid ice))}) card nil))} card nil)))}}) (defcard "Forked" (cutlery "Sentry")) (defcard "Frame Job" {:on-play {:prompt "Choose an agenda to forfeit" :choices (req (:scored runner)) :msg (msg "forfeit " (:title target) " and give the Corp 1 bad publicity") :effect (effect (forfeit target) (gain-bad-publicity :corp 1))}}) (defcard "Frantic Coding" {:on-play {:async true :effect (effect (continue-ability (let [top-ten (take 10 (:deck runner))] {:prompt (str "The top 10 cards of the stack are " (string/join ", " (map :title top-ten)) ".") :choices ["OK"] :async true :effect (effect (continue-ability {:prompt "Install a program?" :choices (concat (->> top-ten (filter #(and (program? %) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side % {:cost-bonus -5})]))) (sort-by :title) (into [])) ["No install"]) :async true :effect (req (if (not= target "No install") (let [number-of-shuffles (count (turn-events state :runner :runner-shuffle-deck)) to-trash (remove #(same-card? % target) top-ten)] (wait-for (runner-install state side (make-eid state {:source card :source-type :runner-install}) target {:cost-bonus -5}) (if (= number-of-shuffles (count (turn-events state :runner :runner-shuffle-deck))) (do (system-msg state side (str "trashes " (string/join ", " (map :title to-trash)))) (trash-cards state side eid to-trash {:unpreventable true})) (do (system-msg state side "does not have to trash cards because the stack was shuffled") (effect-completed state side eid))))) (do (system-msg state side (str "trashes " (string/join ", " (map :title top-ten)))) (trash-cards state side eid top-ten {:unpreventable true}))))} card nil))}) card nil))}}) (defcard "\"Freedom Through Equality\"" {:events [{:event :agenda-stolen :msg "add it to their score area as an agenda worth 1 agenda point" :async true :effect (req (as-agenda state :runner eid card 1))}]}) (defcard "Freelance Coding Contract" {:on-play {:choices {:max 5 :card #(and (program? %) (in-hand? %))} :msg (msg "trash " (string/join ", " (map :title targets)) " and gain " (* 2 (count targets)) " [Credits]") :async true :effect (req (wait-for (trash-cards state side targets {:unpreventable true}) (gain-credits state side eid (* 2 (count targets)))))}}) (defcard "Game Day" {:on-play {:msg (msg "draw " (- (hand-size state :runner) (count (:hand runner))) " cards") :async true :effect (effect (draw eid (- (hand-size state :runner) (count (:hand runner))) nil))}}) (defcard "Glut Cipher" {:makes-run true :on-play {:req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :events [(successful-run-replace-access {:target-server :archives :this-card-run true :mandatory true :ability {:req (req (<= 5 (count (:discard corp)))) :show-discard true :async true :player :corp :waiting-prompt "Corp to choose which cards to pick up from Archives" :prompt "Select 5 cards from Archives to add to HQ" :choices {:max 5 :all true :card #(and (corp? %) (in-discard? %))} :msg (msg "move " (let [seen (filter :seen targets) m (count (remove :seen targets))] (str (string/join ", " (map :title seen)) (when (pos? m) (str (when-not (empty? seen) " and ") (quantify m "unseen card"))) " into HQ, then trash 5 cards"))) :effect (req (doseq [c targets] (move state side c :hand)) (trash-cards state :corp eid (take 5 (shuffle (:hand (:corp @state))))))}})]}) (defcard "Government Investigations" {:flags {:prevent-secretly-spend (req 2)}}) (defcard "Guinea Pig" {:on-play {:msg "trash all cards in the grip and gain 10 [Credits]" :async true :effect (req (wait-for (trash-cards state side (:hand runner) {:unpreventable true}) (gain-credits state :runner eid 10)))}}) (defcard "Hacktivist Meeting" {:constant-effects [{:type :rez-additional-cost :req (req (not (ice? target))) :value [:randomly-trash-from-hand 1]}]}) (defcard "Harmony AR Therapy" (letfn [(choose-end [to-shuffle] (let [to-shuffle (sort to-shuffle)] {:msg (msg "shuffle " (count to-shuffle)" cards back into the stack: " (string/join ", " to-shuffle)) :effect (req (doseq [c-title to-shuffle] (let [c (some #(when (= (:title %) c-title) %) (:discard runner))] (move state side c :deck))) (shuffle! state side :deck))})) (choose-next [to-shuffle target remaining] (let [remaining (if (= "Done" target) remaining (remove #(= % target) remaining)) to-shuffle (if (= "Done" target) to-shuffle (if target (concat to-shuffle [target]) [])) remaining-choices (- 5 (count to-shuffle)) finished? (or (= "Done" target) (= 0 remaining-choices) (empty? remaining))] {:prompt (msg (if finished? (str "Shuffling: " (string/join ", " to-shuffle)) (str "Choose up to " remaining-choices (when (not-empty to-shuffle) " more") " cards." (when (not-empty to-shuffle) (str "[br]Shuffling: " (string/join ", " to-shuffle)))))) :async true :choices (req (if finished? ["OK" "Start over"] (concat remaining (when (not-empty to-shuffle) ["Done"])))) :effect (req (if finished? (if (= "OK" target) (continue-ability state side (choose-end to-shuffle) card nil) (continue-ability state side (choose-next '() nil (distinct (map :title (:discard runner)))) card nil)) (continue-ability state side (choose-next to-shuffle target remaining) card nil)))}))] {:on-play {:rfg-instead-of-trashing true :waiting-prompt "Runner to use Harmony AR Therapy" :async true :effect (req (if (and (not (zone-locked? state :runner :discard)) (pos? (count (:discard runner)))) (continue-ability state side (choose-next '() nil (sort (distinct (map :title (:discard runner))))) card nil) (do (system-msg state :runner (str "uses " (:title card) " to shuffle their Stack")) (shuffle! state :runner :deck) (effect-completed state side eid))))}})) (defcard "High-Stakes Job" {:makes-run true :on-play {:prompt "Choose a server" :choices (req (let [unrezzed-ice #(seq (filter (complement rezzed?) (:ices (second %)))) bad-zones (keys (filter (complement unrezzed-ice) (get-in @state [:corp :servers])))] (zones->sorted-names (remove (set bad-zones) (get-runnable-zones state side eid card nil))))) :async true :effect (effect (make-run eid target card))} :events [{:event :run-ends :req (req (and (:successful target) this-card-run)) :msg "gain 12 [Credits]" :async true :effect (effect (gain-credits :runner eid 12))}]}) (defcard "Hostage" {:on-play {:prompt "Choose a Connection" :choices (req (cancellable (filter #(has-subtype? % "Connection") (:deck runner)) :sorted)) :msg (msg "add " (:title target) " to their Grip and shuffle their Stack") :async true :effect (effect (trigger-event :searched-stack nil) (continue-ability (let [connection target] (if (can-pay? state side (assoc eid :source card :source-type :runner-install) connection nil [:credit (install-cost state side connection)]) {:optional {:prompt (str "Install " (:title connection) "?") :yes-ability {:async true :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) connection nil) (shuffle! :deck))} :no-ability {:effect (effect (move connection :hand) (shuffle! :deck))}}} {:effect (effect (move connection :hand) (shuffle! :deck))})) card nil))}}) (defcard "Hot Pursuit" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [{:event :successful-run :async true :msg "gain 9 [Credits] and take 1 tag" :req (req (and (= :hq (target-server context)) this-card-run)) :effect (req (wait-for (gain-tags state :runner 1) (gain-credits state :runner eid 9)))}]}) (defcard "I've Had Worse" {:on-play {:async true :effect (effect (draw eid 3 nil))} :on-trash {:when-inactive true :interactive (req true) :async true :req (req (#{:meat :net} (:cause target))) :msg "draw 3 cards" :effect (effect (draw :runner eid 3 nil))}}) (defcard "Immolation Script" {:makes-run true :on-play {:req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :events [{:event :pre-access :async true :req (req (and (= target :archives) ;; don't prompt unless there's at least 1 rezzed ICE matching one in Archives (not-empty (clojure.set/intersection (into #{} (map :title (filter ice? (:discard corp)))) (into #{} (map :title (filter rezzed? (all-installed state :corp)))))))) :prompt "Choose a piece of ICE in Archives" :choices (req (filter ice? (:discard corp))) :effect (effect (continue-ability (let [ice target] {:async true :prompt (msg "Select a rezzed copy of " (:title ice) " to trash") :choices {:card #(and (ice? %) (rezzed? %) (same-card? :title % ice))} :msg (msg "trash " (card-str state target)) :effect (effect (trash eid target nil))}) card nil))}]}) (defcard "In the Groove" {:events [{:event :runner-install :duration :end-of-turn :req (req (<= 1 (:cost (:card context)))) :interactive (req (or (has-subtype? (:card context) "Cybernetic") (first-event? state side :runner-install))) :async true :prompt "What to get from In the Groove?" :choices ["Draw 1 card" "Gain 1 [Credits]"] :msg (msg (string/lower-case target)) :effect (req (if (= target "Draw 1 card") (draw state side eid 1 nil) (gain-credits state side eid 1)))}]}) (defcard "Independent Thinking" (letfn [(cards-to-draw [targets] (* (count targets) (if (some #(and (not (facedown? %)) (has-subtype? % "Directive")) targets) 2 1)))] {:on-play {:prompt "Choose up to 5 installed cards to trash" :choices {:max 5 :card #(and (installed? %) (runner? %))} :msg (msg "trash " (string/join ", " (map :title targets)) " and draw " (quantify (cards-to-draw targets) "card")) :async true :effect (req (wait-for (trash-cards state side targets nil) (draw state :runner eid (cards-to-draw targets) nil)))}})) (defcard "Indexing" {:makes-run true :on-play {:req (req rd-runnable) :async true :effect (effect (make-run eid :rd card))} :events [(successful-run-replace-access {:target-server :rd :this-card-run true :ability {:msg "rearrange the top 5 cards of R&D" :waiting-prompt "Runner to rearrange the top cards of R&D" :async true :effect (effect (continue-ability (let [from (take 5 (:deck corp))] (when (pos? (count from)) (reorder-choice :corp :corp from '() (count from) from))) card nil))}})]}) (defcard "Infiltration" {:on-play {:prompt "Gain 2 [Credits] or expose a card?" :choices ["Gain 2 [Credits]" "Expose a card"] :async true :effect (effect (continue-ability (if (= target "Expose a card") {:choices {:card #(and (installed? %) (not (rezzed? %)))} :async true :effect (effect (expose eid target))} {:msg "gain 2 [Credits]" :async true :effect (effect (gain-credits eid 2))}) card nil))}}) (defcard "Information Sifting" (letfn [(access-pile [cards pile pile-size] {:prompt "Choose a card to access. You must access all cards." :choices [(str "Card from pile " pile)] :async true :req (req (if (:max-access run) (< (total-cards-accessed run) (:max-access run)) true)) :effect (req (wait-for (access-card state side (first cards)) (if (< 1 (count cards)) (continue-ability state side (access-pile (rest cards) pile pile-size) card nil) (effect-completed state side eid))))}) (which-pile [p1 p2] {:player :runner :waiting-prompt "Runner to select a pile" :prompt "Choose a pile to access" :choices [(str "Pile 1 (" (quantify (count p1) "card") ")") (str "Pile 2 (" (quantify (count p2) "card") ")")] :async true :effect (req (let [choice (if (string/starts-with? target "Pile 1") 1 2)] (system-msg state side (str "chooses to access " target)) (continue-ability state side (access-pile (if (= 1 choice) p1 p2) choice (count (if (= 1 choice) p1 p2))) card nil)))})] (let [access-effect {:player :corp :req (req (<= 1 (count (:hand corp)))) :async true :waiting-prompt "Corp to create two piles" :prompt (msg "Select up to " (dec (count (:hand corp))) " cards for the first pile") :choices {:card #(and (in-hand? %) (corp? %)) :max (req (dec (count (:hand corp))))} :effect (effect (continue-ability (which-pile (shuffle targets) (shuffle (vec (clojure.set/difference (set (:hand corp)) (set targets))))) card nil))}] {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :mandatory true :ability access-effect})]}))) (defcard "Inject" {:on-play {:async true :effect (req (let [cards (take 4 (:deck runner)) programs (filter program? cards) others (remove program? cards)] (wait-for (reveal state side cards) (if (seq programs) (wait-for (trash-cards state side programs {:unpreventable true}) (system-msg state side (str "trashes " (string/join ", " (map :title programs)) " and gains " (count programs) " [Credits]")) (wait-for (gain-credits state side (count programs)) (doseq [c others] (move state side c :hand) (system-msg state side (str "adds " (:title c) " to the grip"))) (effect-completed state side eid))) (do (doseq [c others] (move state side c :hand) (system-msg state side (str "adds " (:title c) " to the grip"))) (effect-completed state side eid))))))}}) (defcard "Injection Attack" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (continue-ability (let [server target] {:prompt "Select an icebreaker" :choices {:card #(and (installed? %) (has-subtype? % "Icebreaker"))} :async true :effect (effect (pump target 2 :end-of-run) (make-run eid server card))}) card nil))}}) (defcard "Inside Job" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :encounter-ice :req (req (first-run-event? state side :encounter-ice)) :once :per-run :msg (msg "bypass " (:title (:ice context))) :effect (req (bypass-ice state))}]}) (defcard "Insight" {:on-play {:async true :player :corp :waiting-prompt "Corp to rearrange the top 4 cards of R&D" :effect (req (wait-for (resolve-ability state :corp (reorder-choice :corp (take 4 (:deck corp))) card targets) (let [top-4 (take 4 (get-in @state [:corp :deck]))] (system-msg state :runner (str " reveals (top:) " (string/join ", " (map :title top-4)) " from the top of R&D")) (reveal state :runner eid top-4))))}}) (defcard "Interdiction" (let [ab (effect (register-turn-flag! card :can-rez (fn [state side card] (if (and (= (:active-player @state) :runner) (not (ice? card))) ((constantly false) (toast state :corp "Cannot rez non-ICE on the Runner's turn due to Interdiction")) true))))] {:on-play {:msg "prevent the Corp from rezzing non-ICE cards on the Runner's turn" :effect ab} :events [{:event :runner-turn-begins :effect ab}] :leave-play (req (clear-all-flags-for-card! state side card))})) (defcard "Isolation" {:on-play {:additional-cost [:resource 1] :msg "gain 7 [Credits]" :async true :effect (effect (gain-credits eid 7))}}) (defcard "Itinerant Protesters" {:on-play {:msg "reduce the Corp's maximum hand size by 1 for each bad publicity"} :constant-effects [(corp-hand-size+ (req (- (count-bad-pub state))))]}) (defcard "Jailbreak" {:makes-run true :on-play {:req (req (or rd-runnable hq-runnable)) :prompt "Choose a server" :choices ["HQ" "R&D"] :async true :effect (effect (make-run eid target card))} :events [{:event :successful-run :silent (req true) :async true :req (req (and (or (= :hq (target-server context)) (= :rd (target-server context))) this-card-run)) :effect (req (if (= :hq (target-server context)) (access-bonus state :runner :hq 1) (access-bonus state :runner :rd 1)) (draw state side eid 1 nil))}]}) (defcard "Khusyuk" (let [access-revealed (fn [revealed] {:async true :prompt "Which of the revealed cards would you like to access (first card is on top)?" :not-distinct true :choices revealed :req (req (not= (:max-access run) 0)) :effect (effect (access-card eid target))}) select-install-cost (fn [state] (let [current-values (->> (all-active-installed state :runner) (keep :cost) (remove zero?) frequencies (merge {1 0}) (into (sorted-map)))] {:async true :prompt "Select an install cost from among your installed cards." ;; We don't want to generate 99 prompt buttons, so only add 99 at the end :choices (mapv str (for [x (->> current-values keys last inc (range 1) (#(concat % [99])))] (str x " [Credit]: " (quantify (get current-values x 0) "card")))) :effect (effect (complete-with-result eid [(str->int (first (string/split target #" "))) (min 6 (str->int (nth (string/split target #" ") 2)))]))})) access-effect {:async true :effect (req (wait-for (resolve-ability state side (select-install-cost state) card nil) (let [revealed (seq (take (second async-result) (:deck corp)))] (system-msg state :runner (str "uses Khusyuk to choose an install cost of " (first async-result) " [Credit] and reveals " (if revealed (str "(top:) " (string/join ", " (map :title revealed)) " from the top of R&D") "no cards"))) (wait-for (resolve-ability state side (when revealed {:async true :effect (effect (reveal eid revealed))}) card nil) (wait-for (resolve-ability state side (when (and revealed (not (get-only-card-to-access state))) (access-revealed revealed)) card nil) (shuffle! state :corp :deck) (system-msg state :runner "shuffles R&D") (effect-completed state side eid))))))}] {:makes-run true :on-play {:req (req rd-runnable) :async true :effect (effect (make-run eid :rd card))} :events [(successful-run-replace-access {:target-server :rd :this-card-run true :mandatory true :ability access-effect})]})) (defcard "<NAME>" (cutlery "Barrier")) (defcard "<NAME>" {:on-play {:req (req (:stole-agenda runner-reg)) :prompt "Choose a server" :choices (req servers) :msg (msg "force the Corp to trash an ICE protecting " target) :async true :effect (effect (continue-ability (let [serv (second (server->zone state target)) servname target] {:player :corp :async true :prompt (msg "Select a piece of ICE in " target " to trash") :choices {:card #(and (ice? %) (= serv (second (get-zone %))))} :effect (effect (system-msg (str "trashes " (card-str state target))) (trash :corp eid target nil))}) card nil))}}) (defcard "Labor Rights" {:on-play {:req (req (pos? (+ (count (:deck runner)) (count (:discard runner))))) :rfg-instead-of-trashing true :async true :effect (req (let [mill-count (min 3 (count (:deck runner)))] (wait-for (mill state :runner :runner mill-count) (system-msg state :runner (str "trashes the top " (quantify mill-count "card") " of their stack")) (let [heap-count (min 3 (count (get-in @state [:runner :discard])))] (continue-ability state side (if (not (zone-locked? state :runner :discard)) {:prompt (str "Choose " (quantify heap-count "card") " to shuffle into the stack") :show-discard true :async true :choices {:max heap-count :all true :not-self true :card #(and (runner? %) (in-discard? %))} :effect (req (doseq [c targets] (move state side c :deck)) (system-msg state :runner (str "shuffles " (string/join ", " (map :title targets)) " from their Heap into their Stack, and draws 1 card")) (shuffle! state :runner :deck) (draw state :runner eid 1 nil))} {:effect (effect (do (system-msg state :runner "shuffles their Stack and draws 1 card") (shuffle! state :runner :deck) (draw state :runner eid 1 nil)))}) card nil)))))}}) (defcard "Lawyer Up" {:on-play {:msg "remove 2 tags and draw 3 cards" :async true :effect (req (wait-for (lose-tags state side 2) (draw state side eid 3 nil)))}}) (defcard "Lean and Mean" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :msg (msg "make a run on " target (when (<= (count (filter program? (all-active-installed state :runner))) 3) ", adding +2 strength to all icebreakers")) :async true :effect (req (when (<= (count (filter program? (all-active-installed state :runner))) 3) (pump-all-icebreakers state side 2 :end-of-run)) (make-run state side eid target card))}}) (defcard "Leave No Trace" (letfn [(get-rezzed-cids [ice] (map :cid (filter #(and (rezzed? %) (ice? %)) ice)))] {:makes-run true :on-play {:prompt "Choose a server" :msg "make a run and derez any ICE that are rezzed during this run" :choices (req runnable-servers) :async true :effect (req (let [old-ice-cids (get-rezzed-cids (all-installed state :corp))] (update! state side (assoc-in card [:special :leave-no-trace] old-ice-cids)) (make-run state side eid target (get-card state card))))} :events [{:event :run-ends :effect (req (let [new (set (get-rezzed-cids (all-installed state :corp))) old (set (get-in (get-card state card) [:special :leave-no-trace])) diff-cid (seq (clojure.set/difference new old)) diff (map #(find-cid % (all-installed state :corp)) diff-cid)] (doseq [ice diff] (derez state :runner ice)) (when-not (empty? diff) (system-msg state :runner (str "uses Leave No Trace to derez " (string/join ", " (map :title diff)))))))}]})) (defcard "Legwork" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [{:event :successful-run :silent (req true) :req (req (and (= :hq (target-server context)) this-card-run)) :effect (effect (access-bonus :hq 2))}]}) (defcard "Leverage" {:on-play {:optional {:req (req (some #{:hq} (:successful-run runner-reg))) :player :corp :prompt "Take 2 bad publicity?" :yes-ability {:player :corp :msg "takes 2 bad publicity" :effect (effect (gain-bad-publicity :corp 2))} :no-ability {:player :runner :msg "is immune to damage until the beginning of the Runner's next turn" :effect (effect (register-events card [{:event :pre-damage :duration :until-runner-turn-begins :effect (effect (damage-prevent :net Integer/MAX_VALUE) (damage-prevent :meat Integer/MAX_VALUE) (damage-prevent :brain Integer/MAX_VALUE))} {:event :runner-turn-begins :duration :until-runner-turn-begins :effect (effect (unregister-floating-events :until-runner-turn-begins))}]))}}}}) (defcard "Levy AR Lab Access" {:on-play {:msg (msg (if (not (zone-locked? state :runner :discard)) "shuffle their Grip and Heap into their Stack and draw 5 cards" "shuffle their Grip into their Stack and draw 5 cards")) :rfg-instead-of-trashing true :async true :effect (effect (shuffle-into-deck :hand :discard) (draw eid 5 nil))}}) (defcard "Lucky Find" {:on-play {:msg "gain 9 [Credits]" :async true :effect (effect (gain-credits eid 9))}}) (defcard "Mad Dash" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :run-ends :async true :req (req this-card-run) :effect (req (if (:did-steal target) (do (system-msg state :runner (str "adds Mad Dash to their score area as an agenda worth 1 agenda point")) (as-agenda state :runner eid (get-card state card) 1)) (do (system-msg state :runner (str "suffers 1 meat damage from Mad Dash")) (damage state side eid :meat 1 {:card card}))))}]}) (defcard "Making an Entrance" (letfn [(entrance-trash [cards] {:prompt "Choose a card to trash" :choices (concat cards ["Done"]) :async true :effect (req (if (= target "Done") (continue-ability state side (when (seq cards) (reorder-choice :runner :corp cards '() (count cards) cards)) card nil) (wait-for (trash state side target {:unpreventable true}) (system-msg state side (str "trash " (:title target))) (continue-ability state side (when-let [cards (seq (remove-once #(= % target) cards))] (entrance-trash cards)) card nil))))})] {:on-play {:msg "look at and trash or rearrange the top 6 cards of their Stack" :async true :waiting-prompt "Runner to rearrange the top cards of their stack" :effect (effect (continue-ability (entrance-trash (take 6 (:deck runner))) card nil))}})) (defcard "<NAME>athon" {:makes-run true :on-play {:prompt "Choose a server" :choices (req (filter #(can-run-server? state %) remotes)) :async true :effect (effect (make-run eid target card))} :events [{:event :run-ends :req (req this-card-run) :effect (req (prevent-run-on-server state card (first (:server target))) (when (:successful target) (system-msg state :runner "gains 1 [Click] and adds Marathon to their grip") (gain state :runner :click 1) (move state :runner card :hand) (unregister-events state side card)))}]}) (defcard "<NAME>ars for Martians" (letfn [(count-clan [state] (count (filter #(and (has-subtype? % "Clan") (resource? %)) (all-active-installed state :runner))))] {:on-play {:msg (msg "draw " (count-clan state) " cards and gain " (count-tags state) " [Credits]") :async true :effect (req (wait-for (draw state side (count-clan state) nil) (gain-credits state side eid (count-tags state))))}})) (defcard "Mass Install" (letfn [(mhelper [n] (when (< n 3) {:async true :req (req (some #(and (program? %) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side %)])) (:hand runner))) :prompt "Select a program to install" :choices {:req (req (and (program? target) (in-hand? target) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target)])))} :effect (req (wait-for (runner-install state side target nil) (continue-ability state side (mhelper (inc n)) card nil)))}))] {:on-play {:async true :req (req (some #(and (program? %) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side %)])) (:hand runner))) :effect (effect (continue-ability (mhelper 0) card nil))}})) (defcard "Mining Accident" {:on-play {:req (req (some #{:hq :rd :archives} (:successful-run runner-reg))) :rfg-instead-of-trashing true :msg "make the Corp pay 5 [Credits] or take 1 bad publicity" :waiting-prompt "Corp to choose to pay or take bad publicity" :player :corp :prompt "Pay 5 [Credits] or take 1 Bad Publicity?" :choices (req [(when (can-pay? state :corp eid card "Mining Accident" :credit 5) "Pay 5 [Credits]") "Take 1 Bad Publicity"]) :async true :effect (req (if (= target "Pay 5 [Credits]") (do (system-msg state side "pays 5 [Credits] from Mining Accident") (lose-credits state :corp eid 5)) (do (system-msg state side "takes 1 bad publicity from Mining Accident") (gain-bad-publicity state :corp 1) (effect-completed state side eid))))}}) (defcard "<NAME>" {:on-play {:req (req rd-runnable) :async true :effect (req (wait-for (make-run state side :rd card) (let [card (get-card state card)] (if (get-in card [:special :run-again]) (make-run state side eid :rd card) (effect-completed state side eid)))))} :events [{:event :successful-run :req (req (and (get-in card [:special :run-again]) (= :rd (target-server context)))) :msg "gain 4 [Credits]" :async true :effect (effect (gain-credits eid 4))} {:event :run-ends :interactive (req true) :optional {:req (req (and (:successful target) (not (get-in card [:special :run-again])) (= [:rd] (:server target)))) :prompt "Make another run on R&D?" :yes-ability {:effect (effect (clear-wait-prompt :corp) (update! (assoc-in card [:special :run-again] true)))}}}]}) (defcard "Modded" {:on-play {:prompt "Select a program or piece of hardware to install from your Grip" :choices {:req (req (and (or (hardware? target) (program? target)) (in-hand? target) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target {:cost-bonus -3})])))} :async true :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) target {:cost-bonus -3}))}}) (defcard "Moshing" {:on-play {:additional-cost [:trash-from-hand 3] :msg "draw 3 cards and gain 3 [Credits]" :async true :effect (req (wait-for (draw state side 3 nil) (gain-credits state side eid 3)))}}) (defcard "Mutual Favor" {:on-play {:prompt "Choose an Icebreaker" :choices (req (cancellable (filter #(has-subtype? % "Icebreaker") (:deck runner)) :sorted)) :msg (msg "add " (:title target) " to their grip and shuffle their stack") :async true :effect (effect (trigger-event :searched-stack nil) (continue-ability (let [icebreaker target] (if (and (:successful-run runner-reg) (can-pay? state side (assoc eid :source card :source-type :runner-install) icebreaker nil [:credit (install-cost state side icebreaker)])) {:optional {:prompt "Do you want to install it?" :yes-ability {:async true :msg (msg " install " (:title icebreaker)) :effect (req (runner-install state side (assoc eid :source card :source-type :runner-install) icebreaker nil) (shuffle! state side :deck))} :no-ability {:effect (req (move state side icebreaker :hand) (shuffle! state side :deck))}}} {:effect (req (move state side icebreaker :hand) (shuffle! state side :deck))})) card nil))}}) (defcard "Net Celebrity" {:recurring 1 :interactions {:pay-credits {:req (req run) :type :recurring}}}) (defcard "Networking" {:on-play {:async true :req (req (pos? (count-real-tags state))) :msg "remove 1 tag" :effect (req (wait-for (lose-tags state side 1) (continue-ability state side {:optional {:prompt "Pay 1 [Credits] to add Networking to Grip?" :yes-ability {:cost [:credit 1] :msg "add it to their Grip" :effect (effect (move card :hand))}}} card nil)))}}) (defcard "Notoriety" {:on-play {:req (req (and (some #{:hq} (:successful-run runner-reg)) (some #{:rd} (:successful-run runner-reg)) (some #{:archives} (:successful-run runner-reg)))) :msg "add it to their score area as an agenda worth 1 agenda point" :async true :effect (req (as-agenda state :runner eid (first (:play-area runner)) 1))}}) (defcard "Office Supplies" {:on-play {:play-cost-bonus (req (- (get-link state))) :prompt "Gain 4 [Credits] or draw 4 cards?" :choices ["Gain 4 [Credits]" "Draw 4 cards"] :msg (msg (if (= target "Gain 4 [Credits]") "gain 4 [Credits]" "draw 4 cards")) :async true :effect (req (if (= target "Gain 4 [Credits]") (gain-credits state :runner eid 4) (draw state :runner eid 4 nil)))}}) (defcard "On the Lam" {:on-play {:req (req (some resource? (all-active-installed state :runner))) :prompt "Choose a resource to host On the Lam" :choices {:card #(and (resource? %) (installed? %))} :effect (effect (host target (assoc card :installed true :condition true)) (card-init (find-latest state card) {:resolve-effect false}) (system-msg (str "hosts On the Lam on " (:title target))))} :interactions {:prevent [{:type #{:net :brain :meat :tag} :req (req true)}]} :abilities [{:label "Avoid 3 tags" :msg "avoid up to 3 tags" :async true :cost [:trash] :effect (effect (tag-prevent :runner eid 3))} {:label "Prevent up to 3 damage" :msg "prevent up to 3 damage" :cost [:trash] :effect (effect (damage-prevent :net 3) (damage-prevent :meat 3) (damage-prevent :brain 3))}]}) (defcard "Out of the Ashes" (let [ashes-run {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} ashes-recur (fn ashes-recur [n] {:optional {:req (req (not (zone-locked? state :runner :discard))) :prompt "Remove Out of the Ashes from the game to make a run?" :yes-ability {:msg "removes Out of the Ashes from the game to make a run" :effect (req (let [card (some #(when (= "Out of the Ashes" (:title %)) %) (:discard runner))] (move state side card :rfg) (unregister-events state side card {:events [{:event :runner-phase-12}]}) (wait-for (resolve-ability state side ashes-run card nil) (if (< 1 n) (continue-ability state side (ashes-recur (dec n)) card nil) (effect-completed state side eid)))))}}}) ashes-flag [{:event :runner-phase-12 :location :discard :condition :in-discard :once :per-turn :once-key :out-of-ashes :effect (effect (continue-ability (ashes-recur (count (filter #(= "Out of the Ashes" (:title %)) (:discard runner)))) card nil))}]] {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :move-zone (req (if (in-discard? card) (register-events state side card ashes-flag) (unregister-events state side card {:events [{:event :runner-phase-12}]})))})) (defcard "Overclock" {:makes-run true :data {:counter {:credit 5}} :interactions {:pay-credits {:type :credit}} :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))}}) (defcard "Paper Tripping" {:on-play {:req (req (pos? (count-real-tags state))) :msg "remove all tags" :async true :effect (effect (lose-tags eid :all))}}) (defcard "Peace in Our Time" {:on-play {:req (req (not (:scored-agenda corp-reg-last))) :msg "gain 10 [Credits]. The Corp gains 5 [Credits]" :async true :effect (req (wait-for (gain-credits state :runner 10) (register-turn-flag! state side card :can-run nil) (gain-credits state :corp eid 5)))}}) (defcard "Planned Assault" {:on-play {:prompt "Choose a Run event" :choices (req (sort-by :title (filter #(and (has-subtype? % "Run") (can-pay? state side (assoc eid :source card :source-type :play) % nil [:credit (play-cost state side %)])) (:deck runner)))) :msg (msg "play " (:title target)) :async true :effect (effect (trigger-event :searched-stack nil) (shuffle! :deck) (play-instant eid target {:no-additional-cost true}))}}) (defcard "Political Graffiti" {:makes-run true :on-play {:req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :constant-effects [{:type :agenda-value :req (req (same-card? (:host card) target)) :value -1}] :events [{:event :purge :async true :effect (req (wait-for (trash state side card {:cause :purge}) (update-all-agenda-points state side) (effect-completed state side eid)))} (successful-run-replace-access {:target-server :archives :this-card-run true :mandatory true :ability {:prompt "Select an agenda to host Political Graffiti" :choices {:req (req (in-corp-scored? state side target))} :msg (msg "host Political Graffiti on " (:title target) " as a hosted condition counter") :effect (effect (host :runner (get-card state target) (assoc card :installed true :seen true :condition true)) (update-all-agenda-points))}})]}) (defcard "<NAME>" {:on-play {:req (req (seq (filter #(has-subtype? % "Seedy") (all-active-installed state :runner)))) :msg "give the Corp 1 fewer [Click] to spend on their next turn" :effect (effect (lose :corp :click-per-turn 1))} :events [{:event :corp-turn-ends :duration :until-corp-turn-ends :effect (effect (gain :corp :click-per-turn 1))}]}) (defcard "Power Nap" {:on-play {:async true :msg (msg "gain " (+ 2 (count (filter #(has-subtype? % "Double") (:discard runner)))) " [Credits]") :effect (effect (gain-credits eid (+ 2 (count (filter #(has-subtype? % "Double") (:discard runner))))))}}) (defcard "Power to the People" {:events [{:event :pre-steal-cost :duration :end-of-turn :once :per-turn :msg "gain 7 [Credits]" :async true :effect (effect (gain-credits eid 7))}]}) (defcard "Prey" {:makes-run true :on-play {:prompt "Choose a server:" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :pass-ice :req (req (and (rezzed? (:ice context)) (not-used-once? state {:once :per-run} card) (<= (get-strength (:ice context)) (count (all-installed state :runner))))) :async true :effect (effect (continue-ability (let [ice (:ice context)] (if (pos? (get-strength ice)) {:optional {:prompt (str "Use Prey to trash " (quantify (get-strength ice) "card") " to trash " (:title ice) "?") :once :per-run :yes-ability {:async true :cost [:installed (get-strength ice)] :msg (msg "trash " (card-str state ice)) :effect (effect (trash eid ice nil))}}} {:optional {:prompt (str "Use Prey to trash " (:title ice) "?") :once :per-run :yes-ability {:async true :msg (msg "trash " (card-str state ice)) :effect (effect (trash eid ice nil))}}})) card nil))}]}) (defcard "Process Automation" {:on-play {:msg "gain 2 [Credits] and draw 1 card" :async true :effect (req (wait-for (gain-credits state side 2) (draw state side eid 1 nil)))}}) (defcard "Push Your Luck" (letfn [(corp-choice [spent] {:player :corp :waiting-prompt "Corp to guess even or odd" :prompt "Guess how many credits were spent" :choices ["Even" "Odd"] :async true :effect (req (let [correct-guess ((if (= target "Even") even? odd?) spent)] (wait-for (lose-credits state :runner spent) (system-msg state :runner (str "spends " spent " [Credit]")) (system-msg state :corp (str (if correct-guess " " " in") "correctly guesses " (string/lower-case target))) (wait-for (trigger-event-simult state side :reveal-spent-credits nil nil spent) (if correct-guess (effect-completed state side eid) (do (system-msg state :runner (str "gains " (* 2 spent) " [Credits]")) (gain-credits state :runner eid (* 2 spent))))))))}) (runner-choice [choices] {:player :runner :prompt "Spend how many credits?" :waiting-prompt "Runner to spend credits" :choices choices :async true :effect (effect (continue-ability :corp (corp-choice (str->int target)) card nil))})] {:on-play {:async true :effect (req (let [all-amounts (range (inc (get-in @state [:runner :credit]))) valid-amounts (remove #(or (any-flag-fn? state :corp :prevent-secretly-spend %) (any-flag-fn? state :runner :prevent-secretly-spend %)) all-amounts) choices (map str valid-amounts)] (continue-ability state side (runner-choice choices) card nil)))}})) (defcard "Pushing the Envelope" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :msg (msg (if (<= (count (:hand runner)) 2) "make a run, and adds +2 strength to installed icebreakers" "make a run")) :async true :effect (req (when (<= (count (:hand runner)) 2) (pump-all-icebreakers state side 2 :end-of-run)) (make-run state side eid target))}}) (defcard "Quality Time" {:on-play {:msg "draw 5 cards" :async true :effect (effect (draw eid 5 nil))}}) (defcard "Queen's Gambit" {:on-play {:choices ["0" "1" "2" "3"] :prompt "How many advancement tokens?" :async true :effect (effect (continue-ability (let [c (str->int target)] {:choices {:card #(and (is-remote? (second (get-zone %))) (= (last (get-zone %)) :content) (not (:rezzed %)))} :msg (msg "add " c " advancement tokens on a card and gain " (* 2 c) " [Credits]") :async true :effect (req (wait-for (gain-credits state side (* 2 c)) (add-prop state :corp target :advance-counter c {:placed true}) (register-turn-flag! state side card :can-access ;; prevent access of advanced card (fn [_ _ card] (not (same-card? target card)))) (effect-completed state side eid)))}) card nil))}}) (defcard "Quest Completed" {:on-play {:req (req (and (some #{:hq} (:successful-run runner-reg)) (some #{:rd} (:successful-run runner-reg)) (some #{:archives} (:successful-run runner-reg)))) :choices {:card installed?} :msg (msg "access " (:title target)) :async true :effect (effect (access-card eid target))}}) (defcard "Rebirth" {:on-play {:prompt "Choose an identity to become" :rfg-instead-of-trashing true :choices (req (let [is-draft-id? #(.startsWith (:code %) "00") runner-identity (:identity runner) is-swappable #(and (= "Identity" (:type %)) (= (:faction runner-identity) (:faction %)) (not (is-draft-id? %)) (not= (:title runner-identity) (:title %))) swappable-ids (filter is-swappable (server-cards))] (cancellable swappable-ids :sorted))) :msg "change identities" :effect (req (let [old-runner-identity (:identity runner)] ;; Handle hosted cards (Ayla) - Part 1 (doseq [c (:hosted old-runner-identity)] (move state side c :temp-hosted)) (disable-identity state side) ;; Move the selected ID to [:runner :identity] and set the zone (let [new-id (-> target :title server-card make-card (assoc :zone [:identity])) num-old-blanks (:num-disabled old-runner-identity)] (swap! state assoc-in [side :identity] new-id) (card-init state side new-id) (when num-old-blanks (dotimes [_ num-old-blanks] (disable-identity state side))))) ;; Handle hosted cards (Ayla) - Part 2 (doseq [c (get-in @state [:runner :temp-hosted])] ;; Currently assumes all hosted cards are hosted facedown (Ayla) (host state side (get-in @state [:runner :identity]) c {:facedown true})))}}) (defcard "Reboot" (letfn [(install-cards [state side eid card to-install titles] (if-let [f (first to-install)] (wait-for (runner-install state :runner f {:facedown true :no-msg true}) (install-cards state side eid card (rest to-install) titles)) (do (move state side (find-latest state card) :rfg) (system-msg state :runner (str "uses Reboot to install " (string/join ", " titles) " facedown")) (effect-completed state side eid))))] {:makes-run true :on-play {:rfg-instead-of-trashing true :req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :events [(successful-run-replace-access {:target-server :archives :this-card-run true :mandatory true :ability {:req (req (not (zone-locked? state :runner :discard))) :async true :prompt "Choose up to five cards to install" :show-discard true :choices {:max 5 :card #(and (in-discard? %) (runner? %))} :effect (effect (install-cards eid card targets (map :title targets)))}})]})) (defcard "<NAME>" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :encounter-ice :optional {:prompt "Jack out?" :req (req (first-run-event? state side :encounter-ice)) :yes-ability {:async true :msg "jack out" :effect (effect (jack-out eid))}}}]}) (defcard "<NAME>" (let [valid-target? (fn [card] (and (runner? card) (or (program? card) (hardware? card)))) pick-up {:async true :prompt "Select a program or piece of hardware to add to your Grip" :choices {:card #(and (valid-target? %) (installed? %))} :effect (req (move state side target :hand) (effect-completed state side (make-result eid (:cost target))))} put-down (fn [bonus] {:async true :prompt "Select a program or piece of hardware to install" :choices {:req (req (and (valid-target? target) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target {:cost-bonus (- bonus)})])))} :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) target {:cost-bonus (- bonus)}))})] {:on-play {:req (req (some valid-target? (all-installed state :runner))) :effect (req (wait-for (resolve-ability state side pick-up card nil) (continue-ability state side (put-down async-result) card nil)))}})) (defcard "Reshape" {:on-play {:prompt "Select two non-rezzed ICE to swap positions" :choices {:card #(and (installed? %) (not (rezzed? %)) (ice? %)) :max 2 :all true} :msg (msg "swap the positions of " (card-str state (first targets)) " and " (card-str state (second targets))) :effect (effect (swap-ice (first targets) (second targets)))}}) (defcard "Retrieval Run" {:makes-run true :on-play {:req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :events [(successful-run-replace-access {:target-server :archives :this-card-run true :ability {:async true :req (req (not (zone-locked? state :runner :discard))) :prompt "Choose a program to install" :msg (msg "install " (:title target)) :choices (req (filter program? (:discard runner))) :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) target {:ignore-all-cost true}))}})]}) (defcard "Rigged Results" (letfn [(choose-ice [] {:player :runner :waiting-prompt "Runner to choose ice" :prompt "Select a piece of ICE to bypass" :choices {:card ice?} :msg (msg "make a run and bypass " (card-str state target)) :async true :effect (effect (register-events card (let [target-ice target] [{:event :encounter-ice :req (req (same-card? target-ice (:ice context))) :msg (msg "bypass " (:title (:ice context))) :effect (req (bypass-ice state))}])) (make-run eid (second (get-zone target)) card))}) (corp-choice [choices spent] {:player :corp :waiting-prompt "Corp to guess credits spent" :prompt "Guess how many credits were spent" :choices choices :async true :effect (req (wait-for (lose-credits state :runner spent) (system-msg state :runner (str "spends " spent " [Credit]")) (system-msg state :corp (str " guesses " target " [Credit]")) (wait-for (trigger-event-simult state side :reveal-spent-credits nil nil spent) (if (not= spent (str->int target)) (continue-ability state :runner (choose-ice) card nil) (effect-completed state side eid)))))}) (runner-choice [choices] {:player :runner :waiting-prompt "Runner to spend credits" :prompt "Spend how many credits?" :choices choices :async true :effect (effect (continue-ability (corp-choice choices (str->int target)) card nil))})] {:on-play {:async true :effect (req (let [all-amounts (range (min 3 (inc (get-in @state [:runner :credit])))) valid-amounts (remove #(or (any-flag-fn? state :corp :prevent-secretly-spend %) (any-flag-fn? state :runner :prevent-secretly-spend %)) all-amounts) choices (map str valid-amounts)] (continue-ability state side (runner-choice choices) card nil)))}})) (defcard "Rip Deal" {:makes-run true :on-play {:rfg-instead-of-trashing true :req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :mandatory true :ability {:async true :req (req (not (zone-locked? state :runner :discard))) :effect (req (wait-for ;; todo: remove this when replacement effects are fixed (trigger-event-sync state side :pre-access :hq) (continue-ability state side (let [n (min (-> corp :hand count) (:base (num-cards-to-access state side :hq nil))) heap (count (:discard runner))] (if (pos? heap) {:show-discard true :prompt (str "Choose " (quantify (min n heap) "card") " to move from the Heap to your Grip") :async true :msg (msg "take " (string/join ", " (map :title targets)) " from their Heap to their Grip") :choices {:max (min n heap) :all true :card #(and (runner? %) (in-discard? %))} :effect (req (doseq [c targets] (move state side c :hand)) (effect-completed state side eid))} {:async true :msg (msg "take no cards from their Heap to their Grip") :effect (req (effect-completed state side eid))})) card nil)))}})]}) (defcard "<NAME>" (letfn [(eligible? [card] (and (:uniqueness card) (or (asset? card) (upgrade? card)) (not (has-subtype? card "Region")))) (rumor [state] (filter eligible? (concat (all-installed state :corp) (get-in @state [:corp :hand]) (get-in @state [:corp :deck]) (get-in @state [:corp :discard]))))] {:leave-play (req (doseq [c (rumor state)] (enable-card state :corp c))) :on-play {:effect (req (doseq [c (rumor state)] (disable-card state :corp c)))} :events [{:event :corp-install :req (req (eligible? (:card context))) :effect (effect (disable-card :corp (:card context)))}]})) (defcard "Run Amok" (letfn [(get-rezzed-cids [ice] (map :cid (filter #(and (rezzed? %) (ice? %)) ice)))] {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (update! (assoc-in card [:special :run-amok] (get-rezzed-cids (all-installed state :corp)))) (make-run eid target (get-card state card)))} :events [{:event :run-ends :req (req this-card-run) :async true :effect (req (let [new (set (get-rezzed-cids (all-installed state :corp))) old (set (get-in (get-card state card) [:special :run-amok])) diff-cid (seq (clojure.set/difference new old)) diff (map #(find-cid % (all-installed state :corp)) diff-cid)] (continue-ability state :runner (when (seq diff) {:async true :prompt "Select an ice to trash" :choices {:card #(some (partial same-card? %) diff) :all true} :effect (effect (trash eid target nil))}) card nil)))}]})) (defcard "Running Interference" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (register-floating-effect card {:type :rez-additional-cost :duration :end-of-run :req (req (ice? target)) :value (req [:credit (:cost target)])}) (make-run eid target card))}}) (defcard "Satellite Uplink" {:on-play {:req (req (some #(not (rezzed? %)) (all-installed state :corp))) :choices {:max 2 :card #(and (corp? %) (installed? %) (not (rezzed? %)))} :async true :effect (req (if (pos? (count targets)) (wait-for (expose state side target) (if (= 2 (count targets)) (expose state side eid (second targets)) (effect-completed state side eid))) (effect-completed state side eid)))}}) (defcard "Scavenge" {:on-play {:req (req (some #(and (program? %) (installed? %)) (all-active-installed state :runner))) :prompt "Select an installed program to trash" :choices {:card #(and (program? %) (installed? %))} :async true :effect (req (let [trashed target tcost (:cost trashed)] (wait-for (trash state side target {:unpreventable true}) (continue-ability state side {:async true :prompt (if (not (zone-locked? state :runner :discard)) "Select a program to install from your Grip or Heap" "Select a program to install from your Grip") :show-discard (not (zone-locked? state :runner :discard)) :choices {:req (req (and (program? target) (or (in-hand? target) (and (in-discard? target) (not (zone-locked? state :runner :discard)))) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target {:cost-bonus (- tcost)})])))} :msg (msg "trash " (:title trashed) " and install " (:title target) ", lowering the cost by " tcost " [Credits]") :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) target {:cost-bonus (- tcost)}))} card nil))))}}) (defcard "Scrubbed" {:events [{:event :encounter-ice :once :per-turn :effect (effect (register-floating-effect card (let [target-ice (:ice context)] {:type :ice-strength :duration :end-of-run :req (req (same-card? target target-ice)) :value -2})) (update-all-ice))}]}) (defcard "Showing Off" {:makes-run true :on-play {:req (req rd-runnable) :async true :effect (effect (make-run eid :rd card))} :events [(successful-run-replace-access {:target-server :rd :this-card-run true :can-access true :mandatory true :ability {:msg "access cards from the bottom of R&D" :async true :effect (effect (do-access eid (:server run)))}}) {:event :pre-access :silent (req true) :effect (req (swap! state assoc-in [:runner :rd-access-fn] reverse))} {:event :run-ends :effect (req (swap! state assoc-in [:runner :rd-access-fn] seq))}]}) (defcard "Singularity" {:makes-run true :on-play {:prompt "Choose a server" :choices (req (filter #(can-run-server? state %) remotes)) :async true :effect (effect (make-run eid target card))} :events [(successful-run-replace-access {:target-server :remote :this-card-run true :mandatory true :ability {:async true :msg "trash all cards in the server at no cost" :effect (effect (trash-cards eid (:content run-server)))}})]}) (defcard "Social Engineering" {:on-play {:prompt "Select an unrezzed piece of ICE" :choices {:card #(and (not (rezzed? %)) (installed? %) (ice? %))} :msg (msg "select " (card-str state target)) :effect (effect (register-events card (let [ice target] [{:event :rez :duration :end-of-turn :req (req (same-card? (:card context) ice)) :msg (msg "gain " (rez-cost state side (get-card state (:card context))) " [Credits]") :async true :effect (effect (gain-credits :runner eid (rez-cost state side (get-card state (:card context)))))}])))}}) (defcard "Spear Phishing" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :encounter-ice :req (req (= 1 run-position)) :msg (msg "bypass " (:title (:ice context))) :effect (req (bypass-ice state))}]}) (defcard "Spec Work" {:on-play {:additional-cost [:program 1] :msg "gain 4 [Credits] and draw 2 cards" :async true :effect (req (wait-for (gain-credits state side 4) (draw state side eid 2 nil)))}}) (defcard "Special Order" {:on-play {:prompt "Choose an Icebreaker" :choices (req (cancellable (filter #(has-subtype? % "Icebreaker") (:deck runner)) :sorted)) :msg (msg "add " (:title target) " to their grip and shuffle their stack") :effect (effect (trigger-event :searched-stack nil) (shuffle! :deck) (move target :hand))}}) (defcard "Spooned" (cutlery "Code Gate")) (defcard "Spot the Prey" {:makes-run true :on-play {:prompt "Select 1 non-ICE card to expose" :msg "expose 1 card and make a run" :choices {:card #(and (installed? %) (not (ice? %)) (corp? %))} :async true :effect (req (wait-for (expose state side target) (continue-ability state side {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target))} card nil)))}}) (defcard "Stimhack" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (gain-next-run-credits 9) (make-run eid target card))} :events [{:event :run-ends :req (req this-card-run) :msg "take 1 brain damage" :effect (effect (damage eid :brain 1 {:unpreventable true :card card}))}]}) (defcard "Sure Gamble" {:on-play {:msg "gain 9 [Credits]" :async true :effect (effect (gain-credits eid 9))}}) (defcard "Surge" (letfn [(placed-virus-cards [state] (->> (turn-events state :runner :counter-added) (filter #(= :virus (:counter-type (second %)))) (map first) (keep #(get-card state %)) (seq)))] {:on-play {:req (req (placed-virus-cards state)) :choices {:req (req (some #(same-card? % target) (placed-virus-cards state)))} :msg (msg "place 2 virus tokens on " (:title target)) :effect (effect (add-counter :runner target :virus 2))}})) (defcard "SYN Attack" {:on-play {:player :corp :waiting-prompt "Corp to choose an option for SYN Attack" :prompt "Discard 2 cards or draw 4 cards?" :choices (req [(when (<= 2 (count (:hand corp))) "Discard 2") "Draw 4"]) :async true :effect (req (if (= target "Draw 4") (wait-for (draw state :corp 4 nil) (system-msg state :corp (str "uses SYN Attack to draw " (quantify (count async-result) "card"))) (effect-completed state side eid)) (continue-ability state :corp {:prompt "Choose 2 cards to discard" :choices {:max 2 :all true :card #(and (in-hand? %) (corp? %))} :async true :effect (effect (system-msg :runner (str "uses SYN Attack to force the " "Corp to trash 2 cards from HQ")) (trash-cards :corp eid targets {:unpreventable true}))} card nil)))}}) (defcard "System Outage" {:events [{:event :corp-draw :req (req (not (first-event? state side :corp-draw))) :msg "force the Corp to lose 1 [Credits]" :async true :effect (effect (lose-credits :corp eid 1))}]}) (defcard "System Seizure" (let [ability {:req (req (get-in card [:special :ss-target])) :effect (effect (update! (dissoc-in card [:special :ss-target])))}] {:events [{:event :pump-breaker :req (req (or (not (get-in card [:special :ss-target])) (same-card? target (get-in card [:special :ss-target])))) :effect (req (when-not (get-in card [:special :ss-target]) (update! state side (assoc-in card [:special :ss-target] target))) (let [new-pump (assoc (second targets) :duration :end-of-run)] (swap! state assoc :effects (->> (:effects @state) (remove #(= (:uuid %) (:uuid new-pump))) (#(conj % new-pump)) (into [])))) (update-breaker-strength state side target))} (assoc ability :event :corp-turn-ends) (assoc ability :event :runner-turn-ends)]})) (defcard "Test Run" {:on-play {:prompt (req (if (not (zone-locked? state :runner :discard)) "Install a program from your Stack or Heap?" "Install a program from your Stack?" )) :choices (req (if (not (zone-locked? state :runner :discard)) ["Stack" "Heap"] ["Stack"])) :msg (msg "install a program from their " target) :async true :effect (effect (continue-ability (let [where target] {:prompt "Choose a program to install" :choices (req (cancellable (filter program? ((if (= where "Heap") :discard :deck) runner)))) :async true :effect (req (trigger-event state side :searched-stack nil) (shuffle! state side :deck) (wait-for (runner-install state side (make-eid state {:source card :source-type :runner-install}) target {:ignore-all-cost true}) (if async-result (let [installed-card (update! state side (assoc-in async-result [:special :test-run] true))] (register-events state side installed-card [{:event :runner-turn-ends :duration :end-of-turn :req (req (get-in (find-latest state installed-card) [:special :test-run])) :msg (msg "move " (:title installed-card) " to the top of the stack") :effect (effect (move (find-latest state installed-card) :deck {:front true}))}]) (effect-completed state side eid)) (effect-completed state side eid))))}) card nil))}}) (defcard "The Maker's Eye" {:makes-run true :on-play {:req (req rd-runnable) :async true :effect (effect (make-run eid :rd card))} :events [{:event :successful-run :silent (req true) :req (req (and (= :rd (target-server context)) this-card-run)) :effect (effect (access-bonus :rd 2))}]}) (defcard "The Noble Path" {:makes-run true :on-play {:async true :effect (req (wait-for (trash-cards state side (:hand runner)) (continue-ability state side {:async true :prompt "Choose a server" :choices (req runnable-servers) :msg (msg "trash their grip and make a run on " target ", preventing all damage") :effect (effect (make-run eid target card))} card nil)))} :events [{:event :pre-damage :duration :end-of-run :effect (effect (damage-prevent :net Integer/MAX_VALUE) (damage-prevent :meat Integer/MAX_VALUE) (damage-prevent :brain Integer/MAX_VALUE))}]}) (defcard "The Price of Freedom" {:on-play {:additional-cost [:connection 1] :rfg-instead-of-trashing true :msg "prevent the Corp from advancing cards during their next turn"} :events [{:event :corp-turn-begins :duration :until-runner-turn-begins :effect (effect (register-turn-flag! card :can-advance (fn [state side card] ((constantly false) (toast state :corp "Cannot advance cards this turn due to The Price of Freedom." "warning")))))}]}) (defcard "Three Steps Ahead" {:on-play {:effect (effect (register-events card [{:event :runner-turn-ends :duration :end-of-turn :unregister-once-resolved true :msg (msg "gain " (* 2 (count (:successful-run runner-reg))) " [Credits]") :async true :effect (effect (gain-credits eid (* 2 (count (:successful-run runner-reg)))))}]))}}) (defcard "Tinkering" {:on-play {:req (req (some #(and (ice? %) (installed? %)) (all-installed state :corp))) :prompt "Select a piece of ICE" :choices {:card #(and (installed? %) (ice? %))} :msg (msg "make " (card-str state target) " gain Sentry, Code Gate, and Barrier until the end of the turn") :effect (effect (register-floating-effect card (let [ice target] {:type :gain-subtype :duration :end-of-turn :req (req (same-card? ice target)) :value ["Sentry" "Code Gate" "Barrier"]})) (add-icon card (get-card state target) "T" "green"))}}) (defcard "Trade-In" ;; TODO: look at me plz (letfn [(trashed-hw [state] (last (get-in @state [:runner :discard])))] {:on-play {:additional-cost [:hardware 1] :msg (msg (let [{:keys [title cost]} (trashed-hw state)] (str "trash " title " and gain " (quot cost 2) " [Credits]"))) :async true :effect (req (let [{:keys [cost]} (trashed-hw state)] (wait-for (gain-credits state :runner (quot cost 2)) (continue-ability state :runner {:prompt "Choose a Hardware to add to your Grip from your Stack" :choices (req (filter hardware? (:deck runner))) :msg (msg "add " (:title target) " to their Grip (and shuffle their Stack)") :effect (effect (trigger-event :searched-stack nil) (shuffle! :deck) (move target :hand))} card nil))))}})) (defcard "Traffic Jam" {:constant-effects [{:type :advancement-requirement :value (req (->> (:scored corp) (filter #(= (:title %) (:title target))) (count)))}]}) (defcard "Tread Lightly" {:on-play {:prompt "Choose a server" :choices (req runnable-servers) :makes-run true :async true :effect (effect (register-floating-effect card {:type :rez-additional-cost :duration :end-of-run :req (req (ice? target)) :value (req [:credit 3])}) (make-run eid target card))}}) (defcard "Uninstall" {:on-play {:req (req (some #(or (hardware? %) (program? %)) (all-active-installed state :runner))) :choices {:card #(and (installed? %) (not (facedown? %)) (or (hardware? %) (program? %)))} :msg (msg "move " (:title target) " to their Grip") :effect (effect (move target :hand))}}) (defcard "Unscheduled Maintenance" {:events [{:event :corp-install :req (req (ice? (:card context))) :effect (effect (register-turn-flag! card :can-install-ice (fn [state side card] (if (ice? card) ((constantly false) (toast state :corp "Cannot install ICE the rest of this turn due to Unscheduled Maintenance")) true))))}] :leave-play (effect (clear-turn-flag! card :can-install-ice))}) (defcard "Vamp" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :ability {:async true :prompt "How many [Credits]?" :choices :credit :msg (msg "take 1 tag and make the Corp lose " target " [Credits]") :effect (req (wait-for (lose-credits state :corp target) (gain-tags state side eid 1)))}} )]}) (defcard "VRcation" {:on-play {:msg (msg "draw 4 cards" (when (pos? (:click runner)) " and lose [Click]")) :async true :effect (req (when (pos? (:click runner)) (lose state :runner :click 1)) (draw state :runner eid 4 nil))}}) (defcard "Wanton Destruction" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :ability {:msg (msg "force the Corp to discard " target " cards from HQ at random") :prompt "How many [Click] do you want to spend?" :choices (req (map str (range 0 (inc (:click runner))))) :async true :effect (req (let [n (str->int target)] (wait-for (pay state :runner card :click n) (system-msg state :runner (:msg async-result)) (trash-cards state :corp eid (take n (shuffle (:hand corp)))))))}})]}) (defcard "Watch the World Burn" (letfn [(rfg-card-event [burned-card] [{:event :pre-access-card :duration :end-of-game :req (req (same-card? :title burned-card target)) :msg (msg (str "remove " (:title burned-card) " from the game")) :effect (effect (move :corp target :rfg))}])] {:makes-run true :on-play {:prompt "Choose a server" :choices (req (filter #(can-run-server? state %) remotes)) :async true :effect (effect (make-run eid target card))} :events [{:event :pre-access-card :req (req (and (not (agenda? target)) (:successful run))) :once :per-run :msg (msg "remove " (:title target) " from the game, and watch for other copies of " (:title target) " to burn") :effect (effect (move :corp target :rfg) (register-events card (rfg-card-event target)))}]})) (defcard "White Hat" (letfn [(finish-choice [choices] (let [choices (filter #(not= "None" %) choices)] (when (not-empty choices) {:effect (req (doseq [c choices] (move state :corp c :deck)) (shuffle! state :corp :deck)) :msg (str "shuffle " (string/join ", " (map :title choices)) " into R&D")}))) (choose-cards [hand chosen] {:prompt "Choose a card in HQ to shuffle into R&D" :player :runner :choices (conj (vec (clojure.set/difference hand chosen)) "None") :async true :effect (req (if (and (empty? chosen) (not= "None" target)) (continue-ability state side (choose-cards hand (conj chosen target)) card nil) (continue-ability state side (finish-choice (conj chosen target)) card nil)))})] {:on-play {:trace {:base 3 :req (req (some #{:hq :rd :archives} (:successful-run runner-reg))) :unsuccessful {:async true :msg (msg "reveal all cards in HQ" (when-let [hand (seq (:hand corp))] (str ": " (string/join ", " (map :title hand))))) :effect (req (wait-for (reveal state side (:hand corp)) (continue-ability state :runner (choose-cards (set (:hand corp)) #{}) card nil)))}}}})) (defcard "Wildcat Strike" {:on-play {:player :corp :waiting-prompt "Corp to choose Wildcat Strike effect" :prompt "Choose one" :choices ["Runner gains 6 [Credits]" "Runner draws 4 cards"] :async true :effect (req (if (= target "Runner gains 6 [Credits]") (do (system-msg state :corp "chooses 6 [Credits] for the Runner") (gain-credits state :runner eid 6)) (do (system-msg state :corp "chooses 4 cards for the Runner") (draw state :runner eid 4 nil))))}}) (defcard "Windfall" {:on-play {:async true :effect (req (shuffle! state side :deck) (let [topcard (first (:deck (:runner @state))) cost (:cost topcard)] (wait-for (trash state side topcard nil) (wait-for (gain-credits state side (if (event? topcard) 0 cost)) (system-msg state side (str "shuffles their Stack and trashes " (:title topcard) (when-not (event? topcard) (str " to gain " cost " [Credits]")))) (effect-completed state side eid)))))}})
true
(ns game.cards.events (:require [game.core :refer :all] [game.utils :refer :all] [jinteki.utils :refer :all] [clojure.string :as string])) (defn- cutlery [subtype] {:makes-run true :on-play {:async true :prompt "Choose a server:" :choices (req runnable-servers) :effect (effect (make-run eid target card))} :events [{:event :subroutines-broken :async true :req (req (and (has-subtype? target subtype) (every? :broken (:subroutines target)) (let [pred #(and (has-subtype? (first %) subtype) (every? :broken (:subroutines (first %))))] (first-event? state side :subroutines-broken pred)))) :msg (msg "trash " (card-str state target)) :effect (effect (trash eid target nil))}]}) ;; Card definitions (defcard "PI:NAME:<NAME>END_PI PI:NAME:<NAME>END_PI" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :ability {:async true :msg (msg "force the Corp to lose " (min 5 (:credit corp)) " [Credits], gain " (* 2 (min 5 (:credit corp))) " [Credits] and take 2 tags") :effect (req (wait-for (gain-tags state :runner 2) (wait-for (gain-credits state :runner (* 2 (min 5 (:credit corp)))) (lose-credits state :corp eid (min 5 (:credit corp))))))}})]}) (defcard "Always Have a Backup Plan" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :msg (msg "make a run on " target) :effect (req (wait-for (make-run state side target card) (let [card (get-card state card)] (if (get-in card [:special :run-again]) (make-run state side eid target card {:ignore-costs true}) (effect-completed state side eid)))))} :events [{:event :run-ends :optional {:req (req (and (not (get-in card [:special :run-again])) (:unsuccessful target))) :player :runner :prompt "Make another run on the same server?" :yes-ability {:effect (req (let [last-run (get-in @state [:runner :register :last-run]) run-ice (get-in @state (concat [:corp :servers] (:server last-run) [:ices])) pos (:position last-run) ice (when (and pos (pos? pos) (<= pos (count run-ice))) (get-card state (nth run-ice (dec pos))))] (update! state side (update card :special assoc :run-again true :run-again-ice ice))))}}} {:event :encounter-ice :once :per-run :req (req (and (get-in card [:special :run-again]) (same-card? (:ice context) (get-in card [:special :run-again-ice])))) :msg (msg "bypass " (:title (:ice context))) :effect (req (bypass-ice state))}]}) (defcard "Amped Up" {:on-play {:msg "gain [Click][Click][Click] and suffer 1 brain damage" :async true :effect (effect (gain :click 3) (damage eid :brain 1 {:unpreventable true :card card}))}}) (defcard "Another Day, Another Paycheck" {:events [{:event :agenda-stolen :trace {:base 0 :unsuccessful {:async true :effect (effect (gain-credits :runner eid (+ (:agenda-point runner) (:agenda-point corp)))) :msg (msg (str "gain " (+ (:agenda-point runner) (:agenda-point corp)) " [Credits]"))}}}]}) (defcard "Apocalypse" (let [corp-trash {:async true :effect (req (let [ai (all-installed state :corp) onhost (filter #(= '(:onhost) (:zone %)) ai) unhosted (->> ai (remove #(= '(:onhost) (:zone %))) (sort-by #(vec (:zone %))) (reverse)) allcorp (concat onhost unhosted)] (trash-cards state :runner eid allcorp)))} runner-facedown {:effect (req (let [installedcards (all-active-installed state :runner) ishosted (fn [c] (or (= ["onhost"] (get c :zone)) (= '(:onhost) (get c :zone)))) hostedcards (filter ishosted installedcards) nonhostedcards (remove ishosted installedcards)] (doseq [oc hostedcards :let [c (get-card state oc)] :when (not (:condition c))] (flip-facedown state side c)) (doseq [oc nonhostedcards :let [c (get-card state oc)]] (flip-facedown state side c))))}] {:on-play {:req (req (and (some #{:hq} (:successful-run runner-reg)) (some #{:rd} (:successful-run runner-reg)) (some #{:archives} (:successful-run runner-reg)))) :async true ;; trash cards from right to left ;; otherwise, auto-killing servers would move the cards to the next server ;; so they could no longer be trashed in the same loop :msg "trash all installed Corp cards and turn all installed Runner cards facedown" :effect (req (wait-for (resolve-ability state side corp-trash card nil) (continue-ability state side runner-facedown card nil)))}})) (defcard "Because I Can" {:makes-run true :on-play {:async true :prompt "Choose a server" :choices (req (filter #(can-run-server? state %) remotes)) :effect (effect (make-run eid target card))} :events [(successful-run-replace-access {:target-server :remote :this-card-run true :ability {:msg "shuffle all cards in the server into R&D" :effect (req (doseq [c (:content run-server)] (move state :corp c :deck)) (shuffle! state :corp :deck))}})]}) (defcard "Black Hat" {:on-play {:trace {:base 4 :unsuccessful {:effect (effect (register-events card [{:event :pre-access :duration :end-of-turn :req (req (#{:hq :rd} target)) :effect (effect (access-bonus target 2))}]))}}}}) (defcard "Blackmail" {:makes-run true :on-play {:req (req (has-bad-pub? state)) :prompt "Choose a server" :choices (req runnable-servers) :msg "prevent ICE from being rezzed during this run" :async true :effect (effect (register-run-flag! card :can-rez (fn [state side card] (if (ice? card) ((constantly false) (toast state :corp "Cannot rez ICE on this run due to Blackmail")) true))) (make-run eid target card))}}) (defcard "Blueberry!™ Diesel" {:on-play {:async true :prompt "Move a card to the bottom of the stack?" :not-distinct true :choices (req (conj (vec (take 2 (:deck runner))) "No")) :effect (req (when-not (string? target) (move state side target :deck)) (system-msg state side (str "looks at the top 2 cards of the stack" (when-not (string? target) " and adds one to the bottom of the stack"))) (system-msg state side "uses Blueberry!™ Diesel to draw 2 cards") (draw state :runner eid 2 nil))}}) (defcard "Bravado" ; Bravado only counts distinct pieces of ice that were passed. ; That means if a piece of ice was reinstalled and then repassed, it needs to be counted twice. ; This is handled by tracking :card-moved and counting them in :special :bravado-moved. (letfn [(iced-servers [state side eid card] (filter #(-> (get-in @state (cons :corp (server->zone state %))) :ices count pos?) (zones->sorted-names (get-runnable-zones state side eid card nil))))] {:makes-run true :on-play {:async true :req (req (pos? (count (iced-servers state side eid card)))) :prompt "Choose an iced server" :choices (req (iced-servers state side eid card)) :effect (effect (register-events card [{:event :pass-ice :duration :end-of-run :effect (effect (update! (update-in (get-card state card) [:special :bravado-passed] conj (:cid (:ice context)))))}]) (make-run eid target (get-card state card)))} :events [{:event :run-ends :silent (req true) :msg (msg "gain " (+ 6 (count (distinct (get-in card [:special :bravado-passed]))) (get-in card [:special :bravado-moved] 0)) " [Credits]") :async true :effect (effect (gain-credits :runner eid (+ 6 (count (distinct (get-in card [:special :bravado-passed]))) (get-in card [:special :bravado-moved] 0))))} {:event :card-moved :silent (req true) :req (req (in-coll? (get-in card [:special :bravado-passed] []) (:cid target))) :effect (effect (update! (update-in card [:special :bravado-moved] (fnil inc 0))) (update! (update-in (get-card state card) [:special :bravado-passed] (fn [cids] (remove #(= % (:cid target)) cids)))))}]})) (defcard "Bribery" {:makes-run true :on-play {:async true :prompt "How many credits?" :choices :credit :msg (msg "increase the rez cost of the first unrezzed ICE approached by " target " [Credits]") :effect (effect (continue-ability (let [bribery-x target] {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (register-events card [{:event :approach-ice :duration :end-of-run :unregister-once-resolved true :req (req (and (not (rezzed? (:ice context))) (first-run-event? state side :approach-ice (fn [targets] (let [context (first targets)] (not (rezzed? (:ice context)))))))) :effect (effect (register-floating-effect card (let [approached-ice (:ice context)] {:type :rez-additional-cost :duration :end-of-run :unregister-once-resolved true :req (req (same-card? approached-ice target)) :value [:credit bribery-x]})))}]) (make-run eid target card))}) card nil))}}) (defcard "Brute-Force-Hack" {:on-play {:req (req (some #(and (ice? %) (rezzed? %) (can-pay? state side eid card nil [:credit (rez-cost state side %)])) (all-installed state :corp))) :async true :effect (req (let [affordable-ice (seq (filter identity (for [ice (all-installed state :corp) :when (and (ice? ice) (rezzed? ice)) :let [cost (rez-cost state side ice)]] (when (can-pay? state side eid card nil [:credit cost]) [(:cid ice) cost]))))] (continue-ability state side {:prompt "How many [Credits]?" :choices :credit :msg (msg "spends " target " [Credit] on Brute-Force-Hack") :effect (effect (continue-ability {:choices {:card #(and (rezzed? %) (some (fn [c] (and (= (first c) (:cid %)) (<= (second c) target))) affordable-ice))} :msg (msg "derez " (card-str state target)) :effect (effect (derez target))} card nil))} card nil)))}}) (defcard "Build Script" {:on-play {:msg "gain 1 [Credits] and draw 2 cards" :async true :effect (req (wait-for (gain-credits state side 1) (draw state side eid 2 nil)))}}) (defcard "By Any Means" {:on-play {:effect (effect (register-events card [{:event :access :duration :end-of-turn :req (req (not (in-discard? target))) :interactive (req true) :async true :msg (msg "trash " (:title target) " at no cost and suffer 1 meat damage") :effect (req (wait-for (trash state side (assoc target :seen true) nil) (swap! state assoc-in [:runner :register :trashed-card] true) (damage state :runner eid :meat 1 {:unboostable true})))}]))}}) (defcard "Calling in Favors" {:on-play {:msg (msg "gain " (count (filter #(and (has-subtype? % "Connection") (resource? %)) (all-active-installed state :runner))) " [Credits]") :async true :effect (effect (gain-credits eid (count (filter #(and (has-subtype? % "Connection") (resource? %)) (all-active-installed state :runner)))))}}) (defcard "Career Fair" {:on-play {:prompt "Select a resource to install from your Grip" :req (req (some #(and (resource? %) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side % {:cost-bonus -3})])) (:hand runner))) :choices {:req (req (and (resource? target) (in-hand? target) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target {:cost-bonus -3})])))} :async true :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) target {:cost-bonus -3}))}}) (defcard "Careful Planning" {:on-play {:prompt "Choose a card in or protecting a remote server" :choices {:card #(is-remote? (second (get-zone %)))} :effect (effect (add-icon card target "CP" "red") (system-msg (str "prevents the rezzing of " (card-str state target) " for the rest of this turn via Careful Planning")) (register-events card [{:event :runner-turn-ends :duration :end-of-turn :effect (effect (remove-icon card target))}]) (register-turn-flag! card :can-rez (fn [state side card] (if (same-card? card target) ((constantly false) (toast state :corp "Cannot rez the rest of this turn due to Careful Planning")) true))))}}) (defcard "CBI Raid" (letfn [(cbi-final [chosen original] {:player :corp :prompt (str "The top cards of R&D will be " (string/join ", " (map :title chosen)) ".") :choices ["Done" "Start over"] :async true :effect (req (if (= target "Done") (do (doseq [c (reverse chosen)] (move state :corp c :deck {:front true})) (effect-completed state side eid)) (continue-ability state side (cbi-choice original '() (count original) original) card nil)))}) (cbi-choice [remaining chosen n original] {:player :corp :prompt "Choose a card to move next onto R&D" :choices remaining :async true :effect (effect (continue-ability (let [chosen (cons target chosen)] (if (< (count chosen) n) (cbi-choice (remove-once #(= target %) remaining) chosen n original) (cbi-final chosen original))) card nil))})] {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :mandatory true :this-card-run true :ability {:msg "force the Corp to add all cards in HQ to the top of R&D" :player :corp :waiting-prompt "Corp to add all cards in HQ to the top of R&D" :async true :effect (effect (continue-ability (let [from (:hand corp)] (when (pos? (count from)) (cbi-choice from '() (count from) from))) card nil))}})]})) (defcard "Code Siphon" (letfn [(rd-ice [state] (* -3 (count (get-in @state [:corp :servers :rd :ices]))))] {:makes-run true :on-play {:req (req rd-runnable) :async true :effect (effect (make-run eid :rd card))} :events [(successful-run-replace-access {:target-server :rd :this-card-run true :ability {:async true :prompt "Choose a program to install" :msg (msg "install " (:title target) " and take 1 tag") :choices (req (filter #(and (program? %) (runner-can-install? state side % false) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side % {:cost-bonus (rd-ice state)})])) (:deck runner))) :effect (req (trigger-event state side :searched-stack nil) (shuffle! state side :deck) (wait-for (runner-install state side target {:cost-bonus (rd-ice state)}) (gain-tags state side eid 1)))}})]})) (defcard "Cold Read" {:implementation "Used programs restriction not enforced" :makes-run true :data {:counter {:credit 4}} :on-play {:async true :prompt "Choose a server" :choices (req runnable-servers) :effect (effect (make-run eid target card))} :interactions {:pay-credits {:type :credit}} :events [{:event :run-ends :player :runner :prompt "Choose a program that was used during the run" :choices {:card #(and (program? %) (installed? %))} :msg (msg "trash " (:title target)) :async true :effect (effect (trash eid target {:unpreventable true}))}]}) (defcard "Compile" (letfn [(compile-fn [where] {:prompt "Choose a program to install" :choices (req (cancellable (filter program? (get runner where)))) :async true :effect (req (when (= :deck where) (trigger-event state side :searched-stack nil) (shuffle! state side :deck)) (runner-install state side (assoc eid :source card :source-type :runner-install) (assoc-in target [:special :compile-installed] true) {:ignore-all-cost true}))})] {:makes-run true :on-play {:prompt "Choose a server" :msg "make a run and install a program on encounter with the first piece of ICE" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :encounter-ice :optional {:prompt "Install a program?" :once :per-run :yes-ability {:async true :prompt "Install from where?" :choices (req (if (not (zone-locked? state :runner :discard)) ["Stack" "Heap"] ["Stack"] )) :msg (msg "install a program from their " target) :effect (effect (continue-ability (compile-fn (if (= "Stack" target) :deck :discard)) card nil))}}} {:event :run-ends :effect (req (let [compile-installed (first (filterv #(get-in % [:special :compile-installed]) (all-active-installed state :runner)))] (when (some? compile-installed) (system-msg state :runner (str "moved " (:title compile-installed) " to the bottom of the Stack")) (move state :runner compile-installed :deck))))}]})) (defcard "Contaminate" {:on-play {:msg (msg "place 3 virus tokens on " (:title target)) :choices {:req (req (and (installed? target) (runner? target) (zero? (get-virus-counters state target))))} :async true :effect (effect (add-counter :runner eid target :virus 3 nil))}}) (defcard "Corporate \"Grant\"" {:events [{:event :runner-install :req (req (first-event? state side :runner-install)) :msg "force the Corp to lose 1 [Credit]" :async true :effect (effect (lose-credits :corp eid 1))}]}) (defcard "Corporate Scandal" {:on-play {:msg "give the Corp 1 additional bad publicity" :implementation "No enforcement that this Bad Pub cannot be removed" :effect (req (swap! state update-in [:corp :bad-publicity :additional] inc))} :leave-play (req (swap! state update-in [:corp :bad-publicity :additional] dec))}) (defcard "Creative Commission" {:on-play {:msg (msg "gain 5 [Credits]" (when (pos? (:click runner)) " and lose [Click]")) :async true :effect (req (when (pos? (:click runner)) (lose state :runner :click 1)) (gain-credits state :runner eid 5))}}) (defcard "Credit Crash" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :pre-access-card :once :per-run :async true :req (req (not (agenda? target))) :effect (req (let [c target cost (or (and (or (asset? c) (upgrade? c) (ice? c)) (rez-cost state side c)) (and (operation? c) (play-cost state side c))) title (:title c)] (if (can-pay? state :corp eid card nil [:credit cost]) (continue-ability state :corp {:optional {:waiting-prompt "Corp to decide whether or not to prevent the trash" :prompt (msg "Spend " cost " [Credits] to prevent the trash of " title "?") :player :corp :yes-ability {:async true :effect (req (system-msg state :corp (str "spends " cost " [Credits] to prevent " title " from being trashed at no cost")) (lose-credits state :corp eid cost))} :no-ability {:msg (msg "trash " title " at no cost") :async true :effect (effect (trash eid (assoc c :seen true) nil))}}} card nil) (do (system-msg state side (str "uses Credit Crash to trash " title " at no cost")) (trash state side eid (assoc c :seen true) nil)))))}]}) (defcard "Credit Kiting" {:on-play {:req (req (some #{:hq :rd :archives} (:successful-run runner-reg))) :prompt "Select a card to install from your Grip" :choices {:req (req (and (not (event? target)) (in-hand? target) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target {:cost-bonus -8})])))} :async true :effect (req (let [new-eid (make-eid state {:source card :source-type :runner-install})] (wait-for (runner-install state :runner new-eid target {:cost-bonus -8}) (gain-tags state :runner eid 1))))}}) (defcard "Cyber Threat" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (req (let [serv target] (continue-ability state :corp (if (seq (filter #(and (installed? %) (not (rezzed? %)) (ice? %) (can-pay? state side eid card nil [:credit (rez-cost state side %)])) (all-installed state :corp))) {:optional {:prompt (msg "Rez a piece of ICE protecting " serv "?") :yes-ability {:async true :prompt (msg "Select a piece of ICE protecting " serv " to rez") :player :corp :choices {:card #(and (installed? %) (not (rezzed? %)) (ice? %) (can-pay? state side eid card nil [:credit (rez-cost state side %)]))} :effect (effect (rez :corp eid target)) :cancel-effect (effect (register-run-flag! card :can-rez (fn [state side card] (if (ice? card) ((constantly false) (toast state :corp "Cannot rez ICE on this run due to Cyber Threat")) true))) (make-run eid serv card))} :no-ability {:async true :effect (effect (register-run-flag! card :can-rez (fn [state side card] (if (ice? card) ((constantly false) (toast state :corp "Cannot rez ICE on this run due to Cyber Threat")) true))) (make-run eid serv card)) :msg (msg "make a run on " serv " during which no ICE can be rezzed")}}} {:async true :effect (effect (register-run-flag! card :can-rez (fn [state side card] (if (ice? card) ((constantly false) (toast state :corp "Cannot rez ICE on this run due to Cyber Threat")) true))) (make-run eid serv card)) :msg (msg "make a run on " serv " during which no ICE can be rezzed")}) card nil)))}}) (defcard "Data Breach" {:makes-run true :on-play {:async true :req (req rd-runnable) :effect (req (wait-for (make-run state side :rd card) (let [card (get-card state card)] (if (:run-again card) (make-run state side eid :rd card) (effect-completed state side eid)))))} :events [{:event :run-ends :optional {:req (req (and (:successful target) (not (:run-again card)) (= [:rd] (:server target)))) :prompt "Make another run on R&D?" :yes-ability {:effect (effect (clear-wait-prompt :corp) (update! (assoc card :run-again true)))}}}]}) (defcard "Day Job" {:on-play {:additional-cost [:click 3] :msg "gain 10 [Credits]" :async true :effect (effect (gain-credits eid 10))}}) (defcard "Deep Data Mining" {:makes-run true :on-play {:async true :req (req rd-runnable) :effect (effect (make-run eid :rd card))} :events [{:event :successful-run :req (req (and (= :rd (target-server context)) this-card-run)) :silent (req true) :effect (effect (access-bonus :rd (max 0 (min 4 (available-mu state)))))}]}) (defcard "PI:NAME:<NAME>END_PI VPI:NAME:<NAME>END_PI" {:on-play {:req (req (not (zone-locked? state :runner :discard))) :prompt "Choose a card to add to Grip" :choices (req (cancellable (:discard runner) :sorted)) :msg (msg "add " (:title target) " to their Grip") :async true :effect (effect (move target :hand) (continue-ability (when (has-subtype? target "Virus") {:prompt "Choose a virus to add to Grip" :msg (msg "add " (:title target) " to their Grip") :choices (req (cancellable (filter #(has-subtype? % "Virus") (:discard runner)) :sorted)) :effect (effect (move target :hand))}) card nil))}}) (defcard "Demolition Run" {:makes-run true :on-play {:req (req (or rd-runnable hq-runnable)) :prompt "Choose a server" :choices ["HQ" "R&D"] :async true :effect (effect (make-run eid target card))} :interactions {:access-ability {:label "Trash card" :msg (msg "trash " (:title target) " at no cost") :async true :effect (effect (trash eid (assoc target :seen true) nil))}}}) (defcard "Deuces Wild" (let [all [{:effect (effect (gain-credits eid 3)) :async true :msg "gain 3 [Credits]"} {:async true :effect (effect (draw eid 2 nil)) :msg "draw 2 cards"} {:async true :effect (effect (lose-tags eid 1)) :msg "remove 1 tag"} {:prompt "Select 1 piece of ice to expose" :msg "expose 1 ice and make a run" :choices {:card #(and (installed? %) (ice? %))} :async true :effect (req (wait-for (expose state side target) (continue-ability state side {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target))} card nil))) :cancel-effect (effect (continue-ability {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target))} card nil))}] choice (fn choice [abis] {:prompt "Choose an ability to resolve" :choices (map #(capitalize (:msg %)) abis) :async true :effect (req (let [chosen (some #(when (= target (capitalize (:msg %))) %) abis)] (wait-for (resolve-ability state side chosen card nil) (if (= (count abis) 4) (continue-ability state side (choice (remove-once #(= % chosen) abis)) card nil) (effect-completed state side eid)))))})] {:on-play {:async true :effect (effect (continue-ability (choice all) card nil))}})) (defcard "Diana's Hunt" {:makes-run true :on-play {:prompt "Choose a server" :msg "make a run" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :encounter-ice :optional {:req (req (seq (filter program? (:hand runner)))) :prompt "Install a program from your grip?" :yes-ability {:prompt "Choose a program in your grip to install" :async true :choices {:card #(and (in-hand? %) (program? %))} :msg (msg "install " (:title target) ", ignoring all costs") :effect (effect (runner-install eid (assoc-in target [:special :diana-installed] true) {:ignore-all-cost true}))}}} {:event :run-ends :async true :effect (req (let [installed-cards (filter #(get-in % [:special :diana-installed]) (all-active-installed state :runner))] (if (seq installed-cards) (do (system-msg state :runner (str "trashes " (count installed-cards) " cards (" (string/join ", " (map :title installed-cards)) ") at the end of the run from Diana's Hunt")) (trash-cards state :runner eid installed-cards {:unpreventable true})) (effect-completed state side eid))))}]}) (defcard "Diesel" {:on-play {:msg "draw 3 cards" :async true :effect (effect (draw eid 3 nil))}}) (defcard "Direct Access" {:makes-run true :on-play {:async true :effect (req (doseq [s [:corp :runner]] (disable-identity state s)) (continue-ability state side {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} card nil))} :events [{:event :run-ends :unregister-once-resolved true :async true :effect (req (doseq [s [:corp :runner]] (enable-identity state s)) (continue-ability state :runner {:optional {:prompt "Shuffle Direct Access into the Stack?" :yes-ability {:msg (msg "shuffles Direct Access into the Stack") :effect (effect (move (get-card state card) :deck) (shuffle! :deck))}}} card nil))}]}) (defcard "Dirty Laundry" {:makes-run true :on-play {:async true :prompt "Choose a server" :choices (req runnable-servers) :effect (effect (make-run eid target card))} :events [{:event :run-ends :req (req (and (:successful target) this-card-run)) :msg "gain 5 [Credits]" :async true :effect (effect (gain-credits :runner eid 5))}]}) (defcard "Diversion of Funds" (letfn [(five-or-all [corp] (min 5 (:credit corp)))] {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :ability {:msg (msg "force the Corp to lose " (five-or-all corp) " [Credits], and gain " (five-or-all corp) " [Credits]") :async true :effect (req (wait-for (gain-credits state :runner (five-or-all corp)) (lose-credits state :corp eid (five-or-all corp))))}})]})) (defcard "Divide and Conquer" {:makes-run true :on-play {:req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :events [{:event :end-access-phase :async true :req (req (and (= :archives (:from-server target)) (:successful run))) :effect (req (wait-for (do-access state side [:hq] {:no-root true}) (do-access state side eid [:rd] {:no-root true})))}]}) (defcard "Drive By" {:on-play {:choices {:card #(let [topmost (get-nested-host %)] (and (is-remote? (second (get-zone topmost))) (= (last (get-zone topmost)) :content) (not (:rezzed %))))} :async true :effect (req (wait-for (expose state side target) (if-let [target async-result] (if (or (asset? target) (upgrade? target)) (do (system-msg state :runner (str "uses Drive By to trash " (:title target))) (trash state :runner eid (assoc target :seen true) nil)) (effect-completed state side eid)) (effect-completed state side eid))))}}) (defcard "Early Bird" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :msg (msg "make a run on " target " and gain [Click]") :async true :effect (effect (gain :click 1) (make-run eid target card))}}) (defcard "Easy Mark" {:on-play {:msg "gain 3 [Credits]" :async true :effect (effect (gain-credits eid 3))}}) (defcard "Embezzle" {:makes-run true :on-play {:async true :req (req hq-runnable) :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :mandatory true :ability {:prompt "Choose a card type" :choices ["Asset" "Upgrade" "Operation" "ICE"] :msg (msg "reveal 2 cards from HQ and trash all " target (when (not (= "ICE" target)) "s")) :async true :effect (req (let [cards-to-reveal (take 2 (shuffle (:hand corp))) cards-to-trash (filter #(is-type? % target) cards-to-reveal) credits (* 4 (count cards-to-trash))] (system-msg state side (str "uses Embezzle to reveal " (string/join " and " (map :title cards-to-reveal)) " from HQ")) (wait-for (reveal state side cards-to-reveal) (if (pos? credits) (do (system-msg state side (str " uses Embezzle to trash " (string/join " and " (map :title cards-to-trash)) " from HQ and gain " credits " [Credits]")) (wait-for (trash-cards state :runner (map #(assoc % :seen true) cards-to-trash)) (gain-credits state :runner eid credits))) (effect-completed state side eid)))))}})]}) (defcard "Emergency Shutdown" {:on-play {:req (req (some #{:hq} (:successful-run runner-reg))) :msg (msg "derez " (:title target)) :choices {:card #(and (ice? %) (rezzed? %))} :effect (effect (derez target))}}) (defcard "Emergent Creativity" (letfn [(ec [trash-cost to-trash] {:async true :prompt "Choose a hardware or program to install" :msg (msg "trash " (if (empty? to-trash) "no cards" (string/join ", " (map :title to-trash))) " and install " (:title target) " lowering the cost by " trash-cost) :choices (req (cancellable (filter #(and (or (program? %) (hardware? %)) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side % {:cost-bonus (- trash-cost)})])) (:deck runner)) :sorted)) :effect (req (trigger-event state side :searched-stack nil) (shuffle! state side :deck) (runner-install state side (assoc eid :source card :source-type :runner-install) target {:cost-bonus (- trash-cost)}))})] {:on-play {:prompt "Choose Hardware and Programs to trash from your Grip" :choices {:card #(and (or (hardware? %) (program? %)) (in-hand? %)) :max (req (count (:hand runner)))} :cancel-effect (effect (continue-ability (ec 0 []) card nil)) :async true :effect (req (let [trash-cost (reduce + (keep :cost targets)) to-trash targets] (wait-for (trash-cards state side to-trash {:unpreventable true}) (continue-ability state side (ec trash-cost to-trash) card nil))))}})) (defcard "Employee Strike" {:on-play {:msg "disable the Corp's identity" :effect (effect (disable-identity :corp))} :disable-id true :leave-play (effect (enable-identity :corp))}) (defcard "En Passant" {:on-play {:req (req (and (:successful-run runner-reg) (->> (:events (:last-run runner-reg)) (filter #(= :pass-ice (first %))) (map second) (keep #(get-card state (:ice (first %)))) (filter (complement rezzed?)) seq))) :prompt "Choose an unrezzed piece of ICE that you passed on your last run" :choices {:req (req (some #(same-card? target %) (->> (:events (:last-run runner-reg)) (filter #(= :pass-ice (first %))) (map second) (keep #(get-card state (:ice (first %)))) (filter (complement rezzed?)))))} :msg (msg "trash " (card-str state target)) :async true :effect (effect (trash eid target nil))}}) (defcard "Encore" {:on-play {:req (req (and (some #{:hq} (:successful-run runner-reg)) (some #{:rd} (:successful-run runner-reg)) (some #{:archives} (:successful-run runner-reg)))) :rfg-instead-of-trashing true :msg "take an additional turn after this one" :effect (req (swap! state update-in [:runner :extra-turns] (fnil inc 0)))}}) (defcard "PI:NAME:<NAME>END_PI" (letfn [(es [] {:async true :prompt "Select two pieces of ICE to swap positions" :choices {:card #(and (installed? %) (ice? %)) :max 2} :effect (req (if (= (count targets) 2) (do (swap-ice state side (first targets) (second targets)) (continue-ability state side (es) card nil)) (do (system-msg state side "has finished rearranging ICE") (effect-completed state side eid))))})] {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :mandatory true :ability {:async true :msg "rearrange installed ICE" :effect (effect (continue-ability (es) card nil))}})]})) (defcard "PI:NAME:<NAME>END_PIureka!" {:on-play {:async true :effect (req (let [topcard (first (:deck runner)) caninst (and (or (hardware? topcard) (program? topcard) (resource? topcard)) (can-pay? state side (assoc eid :source card :source-type :runner-install) topcard nil [:credit (install-cost state side topcard {:cost-bonus -10})]))] (if caninst (continue-ability state side {:optional {:prompt (msg "Install " (:title topcard) "?") :yes-ability {:async true :effect (effect (runner-install eid topcard {:cost-bonus -10}))} :no-ability {:async true :effect (req (wait-for (reveal state side topcard) (system-msg (str "reveals and trashes " (:title topcard))) (trash eid topcard {:unpreventable true})))}}} card nil) (wait-for (reveal state side topcard) (system-msg state side (str "reveals and trashes " (:title topcard))) (trash state side eid topcard {:unpreventable true})))))}}) (defcard "Exclusive Party" {:on-play {:msg (msg "draw 1 card and gain " (count (filter #(= (:title %) "Exclusive Party") (:discard runner))) " [Credits]") :async true :effect (req (wait-for (draw state side 1 nil) (gain-credits state side eid (count (filter #(= (:title %) "Exclusive Party") (:discard runner))))))}}) (defcard "Executive Wiretaps" {:on-play {:msg (msg "reveal cards in HQ: " (string/join ", " (sort (map :title (:hand corp))))) :async true :effect (effect (reveal eid (:hand corp)))}}) (defcard "Exploit" {:on-play {:req (req (and (some #{:hq} (:successful-run runner-reg)) (some #{:rd} (:successful-run runner-reg)) (some #{:archives} (:successful-run runner-reg)))) :prompt "Choose up to 3 pieces of ICE to derez" :choices {:max 3 :card #(and (rezzed? %) (ice? %))} :msg (msg "derez " (string/join ", " (map :title targets))) :effect (req (doseq [c targets] (derez state side c)))}}) (defcard "Exploratory Romp" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [(successful-run-replace-access {:mandatory true :this-card-run true :ability {:req (req (some #(and (pos? (get-counters % :advancement)) (= (first (:server run)) (second (get-zone %)))) (all-installed state :corp))) :prompt "Advancements to remove from a card in or protecting this server?" :choices ["0" "1" "2" "3"] :async true :waiting-prompt "Runner to use Exploratory Romp" :effect (req (let [c (str->int target)] (continue-ability state side {:choices {:card #(and (pos? (get-counters % :advancement)) (= (first (:server run)) (second (get-zone %))))} :msg (msg "remove " (quantify c "advancement token") " from " (card-str state target)) :effect (req (let [to-remove (min c (get-counters target :advancement))] (add-prop state :corp target :advance-counter (- to-remove))))} card nil)))}})]}) (defcard "Express Delivery" {:on-play {:prompt "Choose a card to add to your Grip" :choices (req (take 4 (:deck runner))) :msg "look at the top 4 cards of their Stack and add 1 of them to their Grip" :effect (effect (move target :hand) (shuffle! :deck))}}) (defcard "Falsified Credentials" {:on-play {:prompt "Choose a type" :choices ["Agenda" "Asset" "Upgrade"] :msg (msg "guess " target) :async true :effect (effect (continue-ability (let [chosen-type target] {:choices {:card #(let [topmost (get-nested-host %)] (and (is-remote? (second (get-zone topmost))) (= (last (get-zone topmost)) :content) (not (rezzed? %))))} :async true :effect (req (wait-for (expose state side target) (continue-ability state :runner (if (and async-result ;; expose was successful (= chosen-type (:type target))) {:async true :effect (effect (gain-credits eid 5)) :msg "gain 5 [Credits]"}) card nil)))}) card nil))}}) (defcard "Fear the Masses" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :mandatory true :ability {:async true :msg "force the Corp to trash the top card of R&D" :effect (req (wait-for (mill state :corp :corp 1) (continue-ability state side (let [n (count (filter #(same-card? :title card %) (:hand runner)))] {:async true :prompt "Reveal how many copies of Fear the Masses?" :choices {:card #(and (in-hand? %) (same-card? :title card %)) :max n} :msg (msg "reveal " (count targets) " copies of Fear the Masses," " forcing the Corp to trash " (count targets) " additional cards from the top of R&D") :effect (req (wait-for (reveal state :runner targets) (mill state :corp eid :corp (count targets))))}) card nil)))}})]}) (defcard "Feint" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [{:event :encounter-ice :req (req (< (get-in card [:special :bypass-count] 0) 2)) :msg (msg "bypass " (:title (:ice context))) :effect (req (bypass-ice state) (update! state side (update-in card [:special :bypass-count] (fnil inc 0))))} {:event :successful-run :effect (effect (prevent-access))}]}) (defcard "Fisk Investment Seminar" {:on-play {:msg "make each player draw 3 cards" :async true :effect (req (wait-for (draw state :runner 3 nil) (draw state :corp eid 3 nil)))}}) (defcard "Forged Activation Orders" {:on-play {:choices {:card #(and (ice? %) (not (rezzed? %)))} :async true :effect (req (let [ice target serv (zone->name (second (get-zone ice))) icepos (card-index state ice)] (continue-ability state :corp {:prompt (str "Rez " (:title ice) " at position " icepos " of " serv " or trash it?") :choices ["Rez" "Trash"] :async true :waiting-prompt "Corp to decide to rez or trash ice" :effect (effect (continue-ability (if (and (= target "Rez") (<= (rez-cost state :corp ice) (:credit corp))) {:msg (msg "force the rez of " (:title ice)) :async true :effect (effect (rez :corp eid ice))} {:msg (msg "trash the ICE at position " icepos " of " serv) :async true :effect (effect (trash :corp eid ice))}) card nil))} card nil)))}}) (defcard "Forked" (cutlery "Sentry")) (defcard "Frame Job" {:on-play {:prompt "Choose an agenda to forfeit" :choices (req (:scored runner)) :msg (msg "forfeit " (:title target) " and give the Corp 1 bad publicity") :effect (effect (forfeit target) (gain-bad-publicity :corp 1))}}) (defcard "Frantic Coding" {:on-play {:async true :effect (effect (continue-ability (let [top-ten (take 10 (:deck runner))] {:prompt (str "The top 10 cards of the stack are " (string/join ", " (map :title top-ten)) ".") :choices ["OK"] :async true :effect (effect (continue-ability {:prompt "Install a program?" :choices (concat (->> top-ten (filter #(and (program? %) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side % {:cost-bonus -5})]))) (sort-by :title) (into [])) ["No install"]) :async true :effect (req (if (not= target "No install") (let [number-of-shuffles (count (turn-events state :runner :runner-shuffle-deck)) to-trash (remove #(same-card? % target) top-ten)] (wait-for (runner-install state side (make-eid state {:source card :source-type :runner-install}) target {:cost-bonus -5}) (if (= number-of-shuffles (count (turn-events state :runner :runner-shuffle-deck))) (do (system-msg state side (str "trashes " (string/join ", " (map :title to-trash)))) (trash-cards state side eid to-trash {:unpreventable true})) (do (system-msg state side "does not have to trash cards because the stack was shuffled") (effect-completed state side eid))))) (do (system-msg state side (str "trashes " (string/join ", " (map :title top-ten)))) (trash-cards state side eid top-ten {:unpreventable true}))))} card nil))}) card nil))}}) (defcard "\"Freedom Through Equality\"" {:events [{:event :agenda-stolen :msg "add it to their score area as an agenda worth 1 agenda point" :async true :effect (req (as-agenda state :runner eid card 1))}]}) (defcard "Freelance Coding Contract" {:on-play {:choices {:max 5 :card #(and (program? %) (in-hand? %))} :msg (msg "trash " (string/join ", " (map :title targets)) " and gain " (* 2 (count targets)) " [Credits]") :async true :effect (req (wait-for (trash-cards state side targets {:unpreventable true}) (gain-credits state side eid (* 2 (count targets)))))}}) (defcard "Game Day" {:on-play {:msg (msg "draw " (- (hand-size state :runner) (count (:hand runner))) " cards") :async true :effect (effect (draw eid (- (hand-size state :runner) (count (:hand runner))) nil))}}) (defcard "Glut Cipher" {:makes-run true :on-play {:req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :events [(successful-run-replace-access {:target-server :archives :this-card-run true :mandatory true :ability {:req (req (<= 5 (count (:discard corp)))) :show-discard true :async true :player :corp :waiting-prompt "Corp to choose which cards to pick up from Archives" :prompt "Select 5 cards from Archives to add to HQ" :choices {:max 5 :all true :card #(and (corp? %) (in-discard? %))} :msg (msg "move " (let [seen (filter :seen targets) m (count (remove :seen targets))] (str (string/join ", " (map :title seen)) (when (pos? m) (str (when-not (empty? seen) " and ") (quantify m "unseen card"))) " into HQ, then trash 5 cards"))) :effect (req (doseq [c targets] (move state side c :hand)) (trash-cards state :corp eid (take 5 (shuffle (:hand (:corp @state))))))}})]}) (defcard "Government Investigations" {:flags {:prevent-secretly-spend (req 2)}}) (defcard "Guinea Pig" {:on-play {:msg "trash all cards in the grip and gain 10 [Credits]" :async true :effect (req (wait-for (trash-cards state side (:hand runner) {:unpreventable true}) (gain-credits state :runner eid 10)))}}) (defcard "Hacktivist Meeting" {:constant-effects [{:type :rez-additional-cost :req (req (not (ice? target))) :value [:randomly-trash-from-hand 1]}]}) (defcard "Harmony AR Therapy" (letfn [(choose-end [to-shuffle] (let [to-shuffle (sort to-shuffle)] {:msg (msg "shuffle " (count to-shuffle)" cards back into the stack: " (string/join ", " to-shuffle)) :effect (req (doseq [c-title to-shuffle] (let [c (some #(when (= (:title %) c-title) %) (:discard runner))] (move state side c :deck))) (shuffle! state side :deck))})) (choose-next [to-shuffle target remaining] (let [remaining (if (= "Done" target) remaining (remove #(= % target) remaining)) to-shuffle (if (= "Done" target) to-shuffle (if target (concat to-shuffle [target]) [])) remaining-choices (- 5 (count to-shuffle)) finished? (or (= "Done" target) (= 0 remaining-choices) (empty? remaining))] {:prompt (msg (if finished? (str "Shuffling: " (string/join ", " to-shuffle)) (str "Choose up to " remaining-choices (when (not-empty to-shuffle) " more") " cards." (when (not-empty to-shuffle) (str "[br]Shuffling: " (string/join ", " to-shuffle)))))) :async true :choices (req (if finished? ["OK" "Start over"] (concat remaining (when (not-empty to-shuffle) ["Done"])))) :effect (req (if finished? (if (= "OK" target) (continue-ability state side (choose-end to-shuffle) card nil) (continue-ability state side (choose-next '() nil (distinct (map :title (:discard runner)))) card nil)) (continue-ability state side (choose-next to-shuffle target remaining) card nil)))}))] {:on-play {:rfg-instead-of-trashing true :waiting-prompt "Runner to use Harmony AR Therapy" :async true :effect (req (if (and (not (zone-locked? state :runner :discard)) (pos? (count (:discard runner)))) (continue-ability state side (choose-next '() nil (sort (distinct (map :title (:discard runner))))) card nil) (do (system-msg state :runner (str "uses " (:title card) " to shuffle their Stack")) (shuffle! state :runner :deck) (effect-completed state side eid))))}})) (defcard "High-Stakes Job" {:makes-run true :on-play {:prompt "Choose a server" :choices (req (let [unrezzed-ice #(seq (filter (complement rezzed?) (:ices (second %)))) bad-zones (keys (filter (complement unrezzed-ice) (get-in @state [:corp :servers])))] (zones->sorted-names (remove (set bad-zones) (get-runnable-zones state side eid card nil))))) :async true :effect (effect (make-run eid target card))} :events [{:event :run-ends :req (req (and (:successful target) this-card-run)) :msg "gain 12 [Credits]" :async true :effect (effect (gain-credits :runner eid 12))}]}) (defcard "Hostage" {:on-play {:prompt "Choose a Connection" :choices (req (cancellable (filter #(has-subtype? % "Connection") (:deck runner)) :sorted)) :msg (msg "add " (:title target) " to their Grip and shuffle their Stack") :async true :effect (effect (trigger-event :searched-stack nil) (continue-ability (let [connection target] (if (can-pay? state side (assoc eid :source card :source-type :runner-install) connection nil [:credit (install-cost state side connection)]) {:optional {:prompt (str "Install " (:title connection) "?") :yes-ability {:async true :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) connection nil) (shuffle! :deck))} :no-ability {:effect (effect (move connection :hand) (shuffle! :deck))}}} {:effect (effect (move connection :hand) (shuffle! :deck))})) card nil))}}) (defcard "Hot Pursuit" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [{:event :successful-run :async true :msg "gain 9 [Credits] and take 1 tag" :req (req (and (= :hq (target-server context)) this-card-run)) :effect (req (wait-for (gain-tags state :runner 1) (gain-credits state :runner eid 9)))}]}) (defcard "I've Had Worse" {:on-play {:async true :effect (effect (draw eid 3 nil))} :on-trash {:when-inactive true :interactive (req true) :async true :req (req (#{:meat :net} (:cause target))) :msg "draw 3 cards" :effect (effect (draw :runner eid 3 nil))}}) (defcard "Immolation Script" {:makes-run true :on-play {:req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :events [{:event :pre-access :async true :req (req (and (= target :archives) ;; don't prompt unless there's at least 1 rezzed ICE matching one in Archives (not-empty (clojure.set/intersection (into #{} (map :title (filter ice? (:discard corp)))) (into #{} (map :title (filter rezzed? (all-installed state :corp)))))))) :prompt "Choose a piece of ICE in Archives" :choices (req (filter ice? (:discard corp))) :effect (effect (continue-ability (let [ice target] {:async true :prompt (msg "Select a rezzed copy of " (:title ice) " to trash") :choices {:card #(and (ice? %) (rezzed? %) (same-card? :title % ice))} :msg (msg "trash " (card-str state target)) :effect (effect (trash eid target nil))}) card nil))}]}) (defcard "In the Groove" {:events [{:event :runner-install :duration :end-of-turn :req (req (<= 1 (:cost (:card context)))) :interactive (req (or (has-subtype? (:card context) "Cybernetic") (first-event? state side :runner-install))) :async true :prompt "What to get from In the Groove?" :choices ["Draw 1 card" "Gain 1 [Credits]"] :msg (msg (string/lower-case target)) :effect (req (if (= target "Draw 1 card") (draw state side eid 1 nil) (gain-credits state side eid 1)))}]}) (defcard "Independent Thinking" (letfn [(cards-to-draw [targets] (* (count targets) (if (some #(and (not (facedown? %)) (has-subtype? % "Directive")) targets) 2 1)))] {:on-play {:prompt "Choose up to 5 installed cards to trash" :choices {:max 5 :card #(and (installed? %) (runner? %))} :msg (msg "trash " (string/join ", " (map :title targets)) " and draw " (quantify (cards-to-draw targets) "card")) :async true :effect (req (wait-for (trash-cards state side targets nil) (draw state :runner eid (cards-to-draw targets) nil)))}})) (defcard "Indexing" {:makes-run true :on-play {:req (req rd-runnable) :async true :effect (effect (make-run eid :rd card))} :events [(successful-run-replace-access {:target-server :rd :this-card-run true :ability {:msg "rearrange the top 5 cards of R&D" :waiting-prompt "Runner to rearrange the top cards of R&D" :async true :effect (effect (continue-ability (let [from (take 5 (:deck corp))] (when (pos? (count from)) (reorder-choice :corp :corp from '() (count from) from))) card nil))}})]}) (defcard "Infiltration" {:on-play {:prompt "Gain 2 [Credits] or expose a card?" :choices ["Gain 2 [Credits]" "Expose a card"] :async true :effect (effect (continue-ability (if (= target "Expose a card") {:choices {:card #(and (installed? %) (not (rezzed? %)))} :async true :effect (effect (expose eid target))} {:msg "gain 2 [Credits]" :async true :effect (effect (gain-credits eid 2))}) card nil))}}) (defcard "Information Sifting" (letfn [(access-pile [cards pile pile-size] {:prompt "Choose a card to access. You must access all cards." :choices [(str "Card from pile " pile)] :async true :req (req (if (:max-access run) (< (total-cards-accessed run) (:max-access run)) true)) :effect (req (wait-for (access-card state side (first cards)) (if (< 1 (count cards)) (continue-ability state side (access-pile (rest cards) pile pile-size) card nil) (effect-completed state side eid))))}) (which-pile [p1 p2] {:player :runner :waiting-prompt "Runner to select a pile" :prompt "Choose a pile to access" :choices [(str "Pile 1 (" (quantify (count p1) "card") ")") (str "Pile 2 (" (quantify (count p2) "card") ")")] :async true :effect (req (let [choice (if (string/starts-with? target "Pile 1") 1 2)] (system-msg state side (str "chooses to access " target)) (continue-ability state side (access-pile (if (= 1 choice) p1 p2) choice (count (if (= 1 choice) p1 p2))) card nil)))})] (let [access-effect {:player :corp :req (req (<= 1 (count (:hand corp)))) :async true :waiting-prompt "Corp to create two piles" :prompt (msg "Select up to " (dec (count (:hand corp))) " cards for the first pile") :choices {:card #(and (in-hand? %) (corp? %)) :max (req (dec (count (:hand corp))))} :effect (effect (continue-ability (which-pile (shuffle targets) (shuffle (vec (clojure.set/difference (set (:hand corp)) (set targets))))) card nil))}] {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :mandatory true :ability access-effect})]}))) (defcard "Inject" {:on-play {:async true :effect (req (let [cards (take 4 (:deck runner)) programs (filter program? cards) others (remove program? cards)] (wait-for (reveal state side cards) (if (seq programs) (wait-for (trash-cards state side programs {:unpreventable true}) (system-msg state side (str "trashes " (string/join ", " (map :title programs)) " and gains " (count programs) " [Credits]")) (wait-for (gain-credits state side (count programs)) (doseq [c others] (move state side c :hand) (system-msg state side (str "adds " (:title c) " to the grip"))) (effect-completed state side eid))) (do (doseq [c others] (move state side c :hand) (system-msg state side (str "adds " (:title c) " to the grip"))) (effect-completed state side eid))))))}}) (defcard "Injection Attack" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (continue-ability (let [server target] {:prompt "Select an icebreaker" :choices {:card #(and (installed? %) (has-subtype? % "Icebreaker"))} :async true :effect (effect (pump target 2 :end-of-run) (make-run eid server card))}) card nil))}}) (defcard "Inside Job" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :encounter-ice :req (req (first-run-event? state side :encounter-ice)) :once :per-run :msg (msg "bypass " (:title (:ice context))) :effect (req (bypass-ice state))}]}) (defcard "Insight" {:on-play {:async true :player :corp :waiting-prompt "Corp to rearrange the top 4 cards of R&D" :effect (req (wait-for (resolve-ability state :corp (reorder-choice :corp (take 4 (:deck corp))) card targets) (let [top-4 (take 4 (get-in @state [:corp :deck]))] (system-msg state :runner (str " reveals (top:) " (string/join ", " (map :title top-4)) " from the top of R&D")) (reveal state :runner eid top-4))))}}) (defcard "Interdiction" (let [ab (effect (register-turn-flag! card :can-rez (fn [state side card] (if (and (= (:active-player @state) :runner) (not (ice? card))) ((constantly false) (toast state :corp "Cannot rez non-ICE on the Runner's turn due to Interdiction")) true))))] {:on-play {:msg "prevent the Corp from rezzing non-ICE cards on the Runner's turn" :effect ab} :events [{:event :runner-turn-begins :effect ab}] :leave-play (req (clear-all-flags-for-card! state side card))})) (defcard "Isolation" {:on-play {:additional-cost [:resource 1] :msg "gain 7 [Credits]" :async true :effect (effect (gain-credits eid 7))}}) (defcard "Itinerant Protesters" {:on-play {:msg "reduce the Corp's maximum hand size by 1 for each bad publicity"} :constant-effects [(corp-hand-size+ (req (- (count-bad-pub state))))]}) (defcard "Jailbreak" {:makes-run true :on-play {:req (req (or rd-runnable hq-runnable)) :prompt "Choose a server" :choices ["HQ" "R&D"] :async true :effect (effect (make-run eid target card))} :events [{:event :successful-run :silent (req true) :async true :req (req (and (or (= :hq (target-server context)) (= :rd (target-server context))) this-card-run)) :effect (req (if (= :hq (target-server context)) (access-bonus state :runner :hq 1) (access-bonus state :runner :rd 1)) (draw state side eid 1 nil))}]}) (defcard "Khusyuk" (let [access-revealed (fn [revealed] {:async true :prompt "Which of the revealed cards would you like to access (first card is on top)?" :not-distinct true :choices revealed :req (req (not= (:max-access run) 0)) :effect (effect (access-card eid target))}) select-install-cost (fn [state] (let [current-values (->> (all-active-installed state :runner) (keep :cost) (remove zero?) frequencies (merge {1 0}) (into (sorted-map)))] {:async true :prompt "Select an install cost from among your installed cards." ;; We don't want to generate 99 prompt buttons, so only add 99 at the end :choices (mapv str (for [x (->> current-values keys last inc (range 1) (#(concat % [99])))] (str x " [Credit]: " (quantify (get current-values x 0) "card")))) :effect (effect (complete-with-result eid [(str->int (first (string/split target #" "))) (min 6 (str->int (nth (string/split target #" ") 2)))]))})) access-effect {:async true :effect (req (wait-for (resolve-ability state side (select-install-cost state) card nil) (let [revealed (seq (take (second async-result) (:deck corp)))] (system-msg state :runner (str "uses Khusyuk to choose an install cost of " (first async-result) " [Credit] and reveals " (if revealed (str "(top:) " (string/join ", " (map :title revealed)) " from the top of R&D") "no cards"))) (wait-for (resolve-ability state side (when revealed {:async true :effect (effect (reveal eid revealed))}) card nil) (wait-for (resolve-ability state side (when (and revealed (not (get-only-card-to-access state))) (access-revealed revealed)) card nil) (shuffle! state :corp :deck) (system-msg state :runner "shuffles R&D") (effect-completed state side eid))))))}] {:makes-run true :on-play {:req (req rd-runnable) :async true :effect (effect (make-run eid :rd card))} :events [(successful-run-replace-access {:target-server :rd :this-card-run true :mandatory true :ability access-effect})]})) (defcard "PI:NAME:<NAME>END_PI" (cutlery "Barrier")) (defcard "PI:NAME:<NAME>END_PI" {:on-play {:req (req (:stole-agenda runner-reg)) :prompt "Choose a server" :choices (req servers) :msg (msg "force the Corp to trash an ICE protecting " target) :async true :effect (effect (continue-ability (let [serv (second (server->zone state target)) servname target] {:player :corp :async true :prompt (msg "Select a piece of ICE in " target " to trash") :choices {:card #(and (ice? %) (= serv (second (get-zone %))))} :effect (effect (system-msg (str "trashes " (card-str state target))) (trash :corp eid target nil))}) card nil))}}) (defcard "Labor Rights" {:on-play {:req (req (pos? (+ (count (:deck runner)) (count (:discard runner))))) :rfg-instead-of-trashing true :async true :effect (req (let [mill-count (min 3 (count (:deck runner)))] (wait-for (mill state :runner :runner mill-count) (system-msg state :runner (str "trashes the top " (quantify mill-count "card") " of their stack")) (let [heap-count (min 3 (count (get-in @state [:runner :discard])))] (continue-ability state side (if (not (zone-locked? state :runner :discard)) {:prompt (str "Choose " (quantify heap-count "card") " to shuffle into the stack") :show-discard true :async true :choices {:max heap-count :all true :not-self true :card #(and (runner? %) (in-discard? %))} :effect (req (doseq [c targets] (move state side c :deck)) (system-msg state :runner (str "shuffles " (string/join ", " (map :title targets)) " from their Heap into their Stack, and draws 1 card")) (shuffle! state :runner :deck) (draw state :runner eid 1 nil))} {:effect (effect (do (system-msg state :runner "shuffles their Stack and draws 1 card") (shuffle! state :runner :deck) (draw state :runner eid 1 nil)))}) card nil)))))}}) (defcard "Lawyer Up" {:on-play {:msg "remove 2 tags and draw 3 cards" :async true :effect (req (wait-for (lose-tags state side 2) (draw state side eid 3 nil)))}}) (defcard "Lean and Mean" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :msg (msg "make a run on " target (when (<= (count (filter program? (all-active-installed state :runner))) 3) ", adding +2 strength to all icebreakers")) :async true :effect (req (when (<= (count (filter program? (all-active-installed state :runner))) 3) (pump-all-icebreakers state side 2 :end-of-run)) (make-run state side eid target card))}}) (defcard "Leave No Trace" (letfn [(get-rezzed-cids [ice] (map :cid (filter #(and (rezzed? %) (ice? %)) ice)))] {:makes-run true :on-play {:prompt "Choose a server" :msg "make a run and derez any ICE that are rezzed during this run" :choices (req runnable-servers) :async true :effect (req (let [old-ice-cids (get-rezzed-cids (all-installed state :corp))] (update! state side (assoc-in card [:special :leave-no-trace] old-ice-cids)) (make-run state side eid target (get-card state card))))} :events [{:event :run-ends :effect (req (let [new (set (get-rezzed-cids (all-installed state :corp))) old (set (get-in (get-card state card) [:special :leave-no-trace])) diff-cid (seq (clojure.set/difference new old)) diff (map #(find-cid % (all-installed state :corp)) diff-cid)] (doseq [ice diff] (derez state :runner ice)) (when-not (empty? diff) (system-msg state :runner (str "uses Leave No Trace to derez " (string/join ", " (map :title diff)))))))}]})) (defcard "Legwork" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [{:event :successful-run :silent (req true) :req (req (and (= :hq (target-server context)) this-card-run)) :effect (effect (access-bonus :hq 2))}]}) (defcard "Leverage" {:on-play {:optional {:req (req (some #{:hq} (:successful-run runner-reg))) :player :corp :prompt "Take 2 bad publicity?" :yes-ability {:player :corp :msg "takes 2 bad publicity" :effect (effect (gain-bad-publicity :corp 2))} :no-ability {:player :runner :msg "is immune to damage until the beginning of the Runner's next turn" :effect (effect (register-events card [{:event :pre-damage :duration :until-runner-turn-begins :effect (effect (damage-prevent :net Integer/MAX_VALUE) (damage-prevent :meat Integer/MAX_VALUE) (damage-prevent :brain Integer/MAX_VALUE))} {:event :runner-turn-begins :duration :until-runner-turn-begins :effect (effect (unregister-floating-events :until-runner-turn-begins))}]))}}}}) (defcard "Levy AR Lab Access" {:on-play {:msg (msg (if (not (zone-locked? state :runner :discard)) "shuffle their Grip and Heap into their Stack and draw 5 cards" "shuffle their Grip into their Stack and draw 5 cards")) :rfg-instead-of-trashing true :async true :effect (effect (shuffle-into-deck :hand :discard) (draw eid 5 nil))}}) (defcard "Lucky Find" {:on-play {:msg "gain 9 [Credits]" :async true :effect (effect (gain-credits eid 9))}}) (defcard "Mad Dash" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :run-ends :async true :req (req this-card-run) :effect (req (if (:did-steal target) (do (system-msg state :runner (str "adds Mad Dash to their score area as an agenda worth 1 agenda point")) (as-agenda state :runner eid (get-card state card) 1)) (do (system-msg state :runner (str "suffers 1 meat damage from Mad Dash")) (damage state side eid :meat 1 {:card card}))))}]}) (defcard "Making an Entrance" (letfn [(entrance-trash [cards] {:prompt "Choose a card to trash" :choices (concat cards ["Done"]) :async true :effect (req (if (= target "Done") (continue-ability state side (when (seq cards) (reorder-choice :runner :corp cards '() (count cards) cards)) card nil) (wait-for (trash state side target {:unpreventable true}) (system-msg state side (str "trash " (:title target))) (continue-ability state side (when-let [cards (seq (remove-once #(= % target) cards))] (entrance-trash cards)) card nil))))})] {:on-play {:msg "look at and trash or rearrange the top 6 cards of their Stack" :async true :waiting-prompt "Runner to rearrange the top cards of their stack" :effect (effect (continue-ability (entrance-trash (take 6 (:deck runner))) card nil))}})) (defcard "PI:NAME:<NAME>END_PIathon" {:makes-run true :on-play {:prompt "Choose a server" :choices (req (filter #(can-run-server? state %) remotes)) :async true :effect (effect (make-run eid target card))} :events [{:event :run-ends :req (req this-card-run) :effect (req (prevent-run-on-server state card (first (:server target))) (when (:successful target) (system-msg state :runner "gains 1 [Click] and adds Marathon to their grip") (gain state :runner :click 1) (move state :runner card :hand) (unregister-events state side card)))}]}) (defcard "PI:NAME:<NAME>END_PIars for Martians" (letfn [(count-clan [state] (count (filter #(and (has-subtype? % "Clan") (resource? %)) (all-active-installed state :runner))))] {:on-play {:msg (msg "draw " (count-clan state) " cards and gain " (count-tags state) " [Credits]") :async true :effect (req (wait-for (draw state side (count-clan state) nil) (gain-credits state side eid (count-tags state))))}})) (defcard "Mass Install" (letfn [(mhelper [n] (when (< n 3) {:async true :req (req (some #(and (program? %) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side %)])) (:hand runner))) :prompt "Select a program to install" :choices {:req (req (and (program? target) (in-hand? target) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target)])))} :effect (req (wait-for (runner-install state side target nil) (continue-ability state side (mhelper (inc n)) card nil)))}))] {:on-play {:async true :req (req (some #(and (program? %) (can-pay? state side (assoc eid :source card :source-type :runner-install) % nil [:credit (install-cost state side %)])) (:hand runner))) :effect (effect (continue-ability (mhelper 0) card nil))}})) (defcard "Mining Accident" {:on-play {:req (req (some #{:hq :rd :archives} (:successful-run runner-reg))) :rfg-instead-of-trashing true :msg "make the Corp pay 5 [Credits] or take 1 bad publicity" :waiting-prompt "Corp to choose to pay or take bad publicity" :player :corp :prompt "Pay 5 [Credits] or take 1 Bad Publicity?" :choices (req [(when (can-pay? state :corp eid card "Mining Accident" :credit 5) "Pay 5 [Credits]") "Take 1 Bad Publicity"]) :async true :effect (req (if (= target "Pay 5 [Credits]") (do (system-msg state side "pays 5 [Credits] from Mining Accident") (lose-credits state :corp eid 5)) (do (system-msg state side "takes 1 bad publicity from Mining Accident") (gain-bad-publicity state :corp 1) (effect-completed state side eid))))}}) (defcard "PI:NAME:<NAME>END_PI" {:on-play {:req (req rd-runnable) :async true :effect (req (wait-for (make-run state side :rd card) (let [card (get-card state card)] (if (get-in card [:special :run-again]) (make-run state side eid :rd card) (effect-completed state side eid)))))} :events [{:event :successful-run :req (req (and (get-in card [:special :run-again]) (= :rd (target-server context)))) :msg "gain 4 [Credits]" :async true :effect (effect (gain-credits eid 4))} {:event :run-ends :interactive (req true) :optional {:req (req (and (:successful target) (not (get-in card [:special :run-again])) (= [:rd] (:server target)))) :prompt "Make another run on R&D?" :yes-ability {:effect (effect (clear-wait-prompt :corp) (update! (assoc-in card [:special :run-again] true)))}}}]}) (defcard "Modded" {:on-play {:prompt "Select a program or piece of hardware to install from your Grip" :choices {:req (req (and (or (hardware? target) (program? target)) (in-hand? target) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target {:cost-bonus -3})])))} :async true :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) target {:cost-bonus -3}))}}) (defcard "Moshing" {:on-play {:additional-cost [:trash-from-hand 3] :msg "draw 3 cards and gain 3 [Credits]" :async true :effect (req (wait-for (draw state side 3 nil) (gain-credits state side eid 3)))}}) (defcard "Mutual Favor" {:on-play {:prompt "Choose an Icebreaker" :choices (req (cancellable (filter #(has-subtype? % "Icebreaker") (:deck runner)) :sorted)) :msg (msg "add " (:title target) " to their grip and shuffle their stack") :async true :effect (effect (trigger-event :searched-stack nil) (continue-ability (let [icebreaker target] (if (and (:successful-run runner-reg) (can-pay? state side (assoc eid :source card :source-type :runner-install) icebreaker nil [:credit (install-cost state side icebreaker)])) {:optional {:prompt "Do you want to install it?" :yes-ability {:async true :msg (msg " install " (:title icebreaker)) :effect (req (runner-install state side (assoc eid :source card :source-type :runner-install) icebreaker nil) (shuffle! state side :deck))} :no-ability {:effect (req (move state side icebreaker :hand) (shuffle! state side :deck))}}} {:effect (req (move state side icebreaker :hand) (shuffle! state side :deck))})) card nil))}}) (defcard "Net Celebrity" {:recurring 1 :interactions {:pay-credits {:req (req run) :type :recurring}}}) (defcard "Networking" {:on-play {:async true :req (req (pos? (count-real-tags state))) :msg "remove 1 tag" :effect (req (wait-for (lose-tags state side 1) (continue-ability state side {:optional {:prompt "Pay 1 [Credits] to add Networking to Grip?" :yes-ability {:cost [:credit 1] :msg "add it to their Grip" :effect (effect (move card :hand))}}} card nil)))}}) (defcard "Notoriety" {:on-play {:req (req (and (some #{:hq} (:successful-run runner-reg)) (some #{:rd} (:successful-run runner-reg)) (some #{:archives} (:successful-run runner-reg)))) :msg "add it to their score area as an agenda worth 1 agenda point" :async true :effect (req (as-agenda state :runner eid (first (:play-area runner)) 1))}}) (defcard "Office Supplies" {:on-play {:play-cost-bonus (req (- (get-link state))) :prompt "Gain 4 [Credits] or draw 4 cards?" :choices ["Gain 4 [Credits]" "Draw 4 cards"] :msg (msg (if (= target "Gain 4 [Credits]") "gain 4 [Credits]" "draw 4 cards")) :async true :effect (req (if (= target "Gain 4 [Credits]") (gain-credits state :runner eid 4) (draw state :runner eid 4 nil)))}}) (defcard "On the Lam" {:on-play {:req (req (some resource? (all-active-installed state :runner))) :prompt "Choose a resource to host On the Lam" :choices {:card #(and (resource? %) (installed? %))} :effect (effect (host target (assoc card :installed true :condition true)) (card-init (find-latest state card) {:resolve-effect false}) (system-msg (str "hosts On the Lam on " (:title target))))} :interactions {:prevent [{:type #{:net :brain :meat :tag} :req (req true)}]} :abilities [{:label "Avoid 3 tags" :msg "avoid up to 3 tags" :async true :cost [:trash] :effect (effect (tag-prevent :runner eid 3))} {:label "Prevent up to 3 damage" :msg "prevent up to 3 damage" :cost [:trash] :effect (effect (damage-prevent :net 3) (damage-prevent :meat 3) (damage-prevent :brain 3))}]}) (defcard "Out of the Ashes" (let [ashes-run {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} ashes-recur (fn ashes-recur [n] {:optional {:req (req (not (zone-locked? state :runner :discard))) :prompt "Remove Out of the Ashes from the game to make a run?" :yes-ability {:msg "removes Out of the Ashes from the game to make a run" :effect (req (let [card (some #(when (= "Out of the Ashes" (:title %)) %) (:discard runner))] (move state side card :rfg) (unregister-events state side card {:events [{:event :runner-phase-12}]}) (wait-for (resolve-ability state side ashes-run card nil) (if (< 1 n) (continue-ability state side (ashes-recur (dec n)) card nil) (effect-completed state side eid)))))}}}) ashes-flag [{:event :runner-phase-12 :location :discard :condition :in-discard :once :per-turn :once-key :out-of-ashes :effect (effect (continue-ability (ashes-recur (count (filter #(= "Out of the Ashes" (:title %)) (:discard runner)))) card nil))}]] {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :move-zone (req (if (in-discard? card) (register-events state side card ashes-flag) (unregister-events state side card {:events [{:event :runner-phase-12}]})))})) (defcard "Overclock" {:makes-run true :data {:counter {:credit 5}} :interactions {:pay-credits {:type :credit}} :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))}}) (defcard "Paper Tripping" {:on-play {:req (req (pos? (count-real-tags state))) :msg "remove all tags" :async true :effect (effect (lose-tags eid :all))}}) (defcard "Peace in Our Time" {:on-play {:req (req (not (:scored-agenda corp-reg-last))) :msg "gain 10 [Credits]. The Corp gains 5 [Credits]" :async true :effect (req (wait-for (gain-credits state :runner 10) (register-turn-flag! state side card :can-run nil) (gain-credits state :corp eid 5)))}}) (defcard "Planned Assault" {:on-play {:prompt "Choose a Run event" :choices (req (sort-by :title (filter #(and (has-subtype? % "Run") (can-pay? state side (assoc eid :source card :source-type :play) % nil [:credit (play-cost state side %)])) (:deck runner)))) :msg (msg "play " (:title target)) :async true :effect (effect (trigger-event :searched-stack nil) (shuffle! :deck) (play-instant eid target {:no-additional-cost true}))}}) (defcard "Political Graffiti" {:makes-run true :on-play {:req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :constant-effects [{:type :agenda-value :req (req (same-card? (:host card) target)) :value -1}] :events [{:event :purge :async true :effect (req (wait-for (trash state side card {:cause :purge}) (update-all-agenda-points state side) (effect-completed state side eid)))} (successful-run-replace-access {:target-server :archives :this-card-run true :mandatory true :ability {:prompt "Select an agenda to host Political Graffiti" :choices {:req (req (in-corp-scored? state side target))} :msg (msg "host Political Graffiti on " (:title target) " as a hosted condition counter") :effect (effect (host :runner (get-card state target) (assoc card :installed true :seen true :condition true)) (update-all-agenda-points))}})]}) (defcard "PI:NAME:<NAME>END_PI" {:on-play {:req (req (seq (filter #(has-subtype? % "Seedy") (all-active-installed state :runner)))) :msg "give the Corp 1 fewer [Click] to spend on their next turn" :effect (effect (lose :corp :click-per-turn 1))} :events [{:event :corp-turn-ends :duration :until-corp-turn-ends :effect (effect (gain :corp :click-per-turn 1))}]}) (defcard "Power Nap" {:on-play {:async true :msg (msg "gain " (+ 2 (count (filter #(has-subtype? % "Double") (:discard runner)))) " [Credits]") :effect (effect (gain-credits eid (+ 2 (count (filter #(has-subtype? % "Double") (:discard runner))))))}}) (defcard "Power to the People" {:events [{:event :pre-steal-cost :duration :end-of-turn :once :per-turn :msg "gain 7 [Credits]" :async true :effect (effect (gain-credits eid 7))}]}) (defcard "Prey" {:makes-run true :on-play {:prompt "Choose a server:" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :pass-ice :req (req (and (rezzed? (:ice context)) (not-used-once? state {:once :per-run} card) (<= (get-strength (:ice context)) (count (all-installed state :runner))))) :async true :effect (effect (continue-ability (let [ice (:ice context)] (if (pos? (get-strength ice)) {:optional {:prompt (str "Use Prey to trash " (quantify (get-strength ice) "card") " to trash " (:title ice) "?") :once :per-run :yes-ability {:async true :cost [:installed (get-strength ice)] :msg (msg "trash " (card-str state ice)) :effect (effect (trash eid ice nil))}}} {:optional {:prompt (str "Use Prey to trash " (:title ice) "?") :once :per-run :yes-ability {:async true :msg (msg "trash " (card-str state ice)) :effect (effect (trash eid ice nil))}}})) card nil))}]}) (defcard "Process Automation" {:on-play {:msg "gain 2 [Credits] and draw 1 card" :async true :effect (req (wait-for (gain-credits state side 2) (draw state side eid 1 nil)))}}) (defcard "Push Your Luck" (letfn [(corp-choice [spent] {:player :corp :waiting-prompt "Corp to guess even or odd" :prompt "Guess how many credits were spent" :choices ["Even" "Odd"] :async true :effect (req (let [correct-guess ((if (= target "Even") even? odd?) spent)] (wait-for (lose-credits state :runner spent) (system-msg state :runner (str "spends " spent " [Credit]")) (system-msg state :corp (str (if correct-guess " " " in") "correctly guesses " (string/lower-case target))) (wait-for (trigger-event-simult state side :reveal-spent-credits nil nil spent) (if correct-guess (effect-completed state side eid) (do (system-msg state :runner (str "gains " (* 2 spent) " [Credits]")) (gain-credits state :runner eid (* 2 spent))))))))}) (runner-choice [choices] {:player :runner :prompt "Spend how many credits?" :waiting-prompt "Runner to spend credits" :choices choices :async true :effect (effect (continue-ability :corp (corp-choice (str->int target)) card nil))})] {:on-play {:async true :effect (req (let [all-amounts (range (inc (get-in @state [:runner :credit]))) valid-amounts (remove #(or (any-flag-fn? state :corp :prevent-secretly-spend %) (any-flag-fn? state :runner :prevent-secretly-spend %)) all-amounts) choices (map str valid-amounts)] (continue-ability state side (runner-choice choices) card nil)))}})) (defcard "Pushing the Envelope" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :msg (msg (if (<= (count (:hand runner)) 2) "make a run, and adds +2 strength to installed icebreakers" "make a run")) :async true :effect (req (when (<= (count (:hand runner)) 2) (pump-all-icebreakers state side 2 :end-of-run)) (make-run state side eid target))}}) (defcard "Quality Time" {:on-play {:msg "draw 5 cards" :async true :effect (effect (draw eid 5 nil))}}) (defcard "Queen's Gambit" {:on-play {:choices ["0" "1" "2" "3"] :prompt "How many advancement tokens?" :async true :effect (effect (continue-ability (let [c (str->int target)] {:choices {:card #(and (is-remote? (second (get-zone %))) (= (last (get-zone %)) :content) (not (:rezzed %)))} :msg (msg "add " c " advancement tokens on a card and gain " (* 2 c) " [Credits]") :async true :effect (req (wait-for (gain-credits state side (* 2 c)) (add-prop state :corp target :advance-counter c {:placed true}) (register-turn-flag! state side card :can-access ;; prevent access of advanced card (fn [_ _ card] (not (same-card? target card)))) (effect-completed state side eid)))}) card nil))}}) (defcard "Quest Completed" {:on-play {:req (req (and (some #{:hq} (:successful-run runner-reg)) (some #{:rd} (:successful-run runner-reg)) (some #{:archives} (:successful-run runner-reg)))) :choices {:card installed?} :msg (msg "access " (:title target)) :async true :effect (effect (access-card eid target))}}) (defcard "Rebirth" {:on-play {:prompt "Choose an identity to become" :rfg-instead-of-trashing true :choices (req (let [is-draft-id? #(.startsWith (:code %) "00") runner-identity (:identity runner) is-swappable #(and (= "Identity" (:type %)) (= (:faction runner-identity) (:faction %)) (not (is-draft-id? %)) (not= (:title runner-identity) (:title %))) swappable-ids (filter is-swappable (server-cards))] (cancellable swappable-ids :sorted))) :msg "change identities" :effect (req (let [old-runner-identity (:identity runner)] ;; Handle hosted cards (Ayla) - Part 1 (doseq [c (:hosted old-runner-identity)] (move state side c :temp-hosted)) (disable-identity state side) ;; Move the selected ID to [:runner :identity] and set the zone (let [new-id (-> target :title server-card make-card (assoc :zone [:identity])) num-old-blanks (:num-disabled old-runner-identity)] (swap! state assoc-in [side :identity] new-id) (card-init state side new-id) (when num-old-blanks (dotimes [_ num-old-blanks] (disable-identity state side))))) ;; Handle hosted cards (Ayla) - Part 2 (doseq [c (get-in @state [:runner :temp-hosted])] ;; Currently assumes all hosted cards are hosted facedown (Ayla) (host state side (get-in @state [:runner :identity]) c {:facedown true})))}}) (defcard "Reboot" (letfn [(install-cards [state side eid card to-install titles] (if-let [f (first to-install)] (wait-for (runner-install state :runner f {:facedown true :no-msg true}) (install-cards state side eid card (rest to-install) titles)) (do (move state side (find-latest state card) :rfg) (system-msg state :runner (str "uses Reboot to install " (string/join ", " titles) " facedown")) (effect-completed state side eid))))] {:makes-run true :on-play {:rfg-instead-of-trashing true :req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :events [(successful-run-replace-access {:target-server :archives :this-card-run true :mandatory true :ability {:req (req (not (zone-locked? state :runner :discard))) :async true :prompt "Choose up to five cards to install" :show-discard true :choices {:max 5 :card #(and (in-discard? %) (runner? %))} :effect (effect (install-cards eid card targets (map :title targets)))}})]})) (defcard "PI:NAME:<NAME>END_PI" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :encounter-ice :optional {:prompt "Jack out?" :req (req (first-run-event? state side :encounter-ice)) :yes-ability {:async true :msg "jack out" :effect (effect (jack-out eid))}}}]}) (defcard "PI:NAME:<NAME>END_PI" (let [valid-target? (fn [card] (and (runner? card) (or (program? card) (hardware? card)))) pick-up {:async true :prompt "Select a program or piece of hardware to add to your Grip" :choices {:card #(and (valid-target? %) (installed? %))} :effect (req (move state side target :hand) (effect-completed state side (make-result eid (:cost target))))} put-down (fn [bonus] {:async true :prompt "Select a program or piece of hardware to install" :choices {:req (req (and (valid-target? target) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target {:cost-bonus (- bonus)})])))} :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) target {:cost-bonus (- bonus)}))})] {:on-play {:req (req (some valid-target? (all-installed state :runner))) :effect (req (wait-for (resolve-ability state side pick-up card nil) (continue-ability state side (put-down async-result) card nil)))}})) (defcard "Reshape" {:on-play {:prompt "Select two non-rezzed ICE to swap positions" :choices {:card #(and (installed? %) (not (rezzed? %)) (ice? %)) :max 2 :all true} :msg (msg "swap the positions of " (card-str state (first targets)) " and " (card-str state (second targets))) :effect (effect (swap-ice (first targets) (second targets)))}}) (defcard "Retrieval Run" {:makes-run true :on-play {:req (req archives-runnable) :async true :effect (effect (make-run eid :archives card))} :events [(successful-run-replace-access {:target-server :archives :this-card-run true :ability {:async true :req (req (not (zone-locked? state :runner :discard))) :prompt "Choose a program to install" :msg (msg "install " (:title target)) :choices (req (filter program? (:discard runner))) :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) target {:ignore-all-cost true}))}})]}) (defcard "Rigged Results" (letfn [(choose-ice [] {:player :runner :waiting-prompt "Runner to choose ice" :prompt "Select a piece of ICE to bypass" :choices {:card ice?} :msg (msg "make a run and bypass " (card-str state target)) :async true :effect (effect (register-events card (let [target-ice target] [{:event :encounter-ice :req (req (same-card? target-ice (:ice context))) :msg (msg "bypass " (:title (:ice context))) :effect (req (bypass-ice state))}])) (make-run eid (second (get-zone target)) card))}) (corp-choice [choices spent] {:player :corp :waiting-prompt "Corp to guess credits spent" :prompt "Guess how many credits were spent" :choices choices :async true :effect (req (wait-for (lose-credits state :runner spent) (system-msg state :runner (str "spends " spent " [Credit]")) (system-msg state :corp (str " guesses " target " [Credit]")) (wait-for (trigger-event-simult state side :reveal-spent-credits nil nil spent) (if (not= spent (str->int target)) (continue-ability state :runner (choose-ice) card nil) (effect-completed state side eid)))))}) (runner-choice [choices] {:player :runner :waiting-prompt "Runner to spend credits" :prompt "Spend how many credits?" :choices choices :async true :effect (effect (continue-ability (corp-choice choices (str->int target)) card nil))})] {:on-play {:async true :effect (req (let [all-amounts (range (min 3 (inc (get-in @state [:runner :credit])))) valid-amounts (remove #(or (any-flag-fn? state :corp :prevent-secretly-spend %) (any-flag-fn? state :runner :prevent-secretly-spend %)) all-amounts) choices (map str valid-amounts)] (continue-ability state side (runner-choice choices) card nil)))}})) (defcard "Rip Deal" {:makes-run true :on-play {:rfg-instead-of-trashing true :req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :mandatory true :ability {:async true :req (req (not (zone-locked? state :runner :discard))) :effect (req (wait-for ;; todo: remove this when replacement effects are fixed (trigger-event-sync state side :pre-access :hq) (continue-ability state side (let [n (min (-> corp :hand count) (:base (num-cards-to-access state side :hq nil))) heap (count (:discard runner))] (if (pos? heap) {:show-discard true :prompt (str "Choose " (quantify (min n heap) "card") " to move from the Heap to your Grip") :async true :msg (msg "take " (string/join ", " (map :title targets)) " from their Heap to their Grip") :choices {:max (min n heap) :all true :card #(and (runner? %) (in-discard? %))} :effect (req (doseq [c targets] (move state side c :hand)) (effect-completed state side eid))} {:async true :msg (msg "take no cards from their Heap to their Grip") :effect (req (effect-completed state side eid))})) card nil)))}})]}) (defcard "PI:NAME:<NAME>END_PI" (letfn [(eligible? [card] (and (:uniqueness card) (or (asset? card) (upgrade? card)) (not (has-subtype? card "Region")))) (rumor [state] (filter eligible? (concat (all-installed state :corp) (get-in @state [:corp :hand]) (get-in @state [:corp :deck]) (get-in @state [:corp :discard]))))] {:leave-play (req (doseq [c (rumor state)] (enable-card state :corp c))) :on-play {:effect (req (doseq [c (rumor state)] (disable-card state :corp c)))} :events [{:event :corp-install :req (req (eligible? (:card context))) :effect (effect (disable-card :corp (:card context)))}]})) (defcard "Run Amok" (letfn [(get-rezzed-cids [ice] (map :cid (filter #(and (rezzed? %) (ice? %)) ice)))] {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (update! (assoc-in card [:special :run-amok] (get-rezzed-cids (all-installed state :corp)))) (make-run eid target (get-card state card)))} :events [{:event :run-ends :req (req this-card-run) :async true :effect (req (let [new (set (get-rezzed-cids (all-installed state :corp))) old (set (get-in (get-card state card) [:special :run-amok])) diff-cid (seq (clojure.set/difference new old)) diff (map #(find-cid % (all-installed state :corp)) diff-cid)] (continue-ability state :runner (when (seq diff) {:async true :prompt "Select an ice to trash" :choices {:card #(some (partial same-card? %) diff) :all true} :effect (effect (trash eid target nil))}) card nil)))}]})) (defcard "Running Interference" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (register-floating-effect card {:type :rez-additional-cost :duration :end-of-run :req (req (ice? target)) :value (req [:credit (:cost target)])}) (make-run eid target card))}}) (defcard "Satellite Uplink" {:on-play {:req (req (some #(not (rezzed? %)) (all-installed state :corp))) :choices {:max 2 :card #(and (corp? %) (installed? %) (not (rezzed? %)))} :async true :effect (req (if (pos? (count targets)) (wait-for (expose state side target) (if (= 2 (count targets)) (expose state side eid (second targets)) (effect-completed state side eid))) (effect-completed state side eid)))}}) (defcard "Scavenge" {:on-play {:req (req (some #(and (program? %) (installed? %)) (all-active-installed state :runner))) :prompt "Select an installed program to trash" :choices {:card #(and (program? %) (installed? %))} :async true :effect (req (let [trashed target tcost (:cost trashed)] (wait-for (trash state side target {:unpreventable true}) (continue-ability state side {:async true :prompt (if (not (zone-locked? state :runner :discard)) "Select a program to install from your Grip or Heap" "Select a program to install from your Grip") :show-discard (not (zone-locked? state :runner :discard)) :choices {:req (req (and (program? target) (or (in-hand? target) (and (in-discard? target) (not (zone-locked? state :runner :discard)))) (can-pay? state side (assoc eid :source card :source-type :runner-install) target nil [:credit (install-cost state side target {:cost-bonus (- tcost)})])))} :msg (msg "trash " (:title trashed) " and install " (:title target) ", lowering the cost by " tcost " [Credits]") :effect (effect (runner-install (assoc eid :source card :source-type :runner-install) target {:cost-bonus (- tcost)}))} card nil))))}}) (defcard "Scrubbed" {:events [{:event :encounter-ice :once :per-turn :effect (effect (register-floating-effect card (let [target-ice (:ice context)] {:type :ice-strength :duration :end-of-run :req (req (same-card? target target-ice)) :value -2})) (update-all-ice))}]}) (defcard "Showing Off" {:makes-run true :on-play {:req (req rd-runnable) :async true :effect (effect (make-run eid :rd card))} :events [(successful-run-replace-access {:target-server :rd :this-card-run true :can-access true :mandatory true :ability {:msg "access cards from the bottom of R&D" :async true :effect (effect (do-access eid (:server run)))}}) {:event :pre-access :silent (req true) :effect (req (swap! state assoc-in [:runner :rd-access-fn] reverse))} {:event :run-ends :effect (req (swap! state assoc-in [:runner :rd-access-fn] seq))}]}) (defcard "Singularity" {:makes-run true :on-play {:prompt "Choose a server" :choices (req (filter #(can-run-server? state %) remotes)) :async true :effect (effect (make-run eid target card))} :events [(successful-run-replace-access {:target-server :remote :this-card-run true :mandatory true :ability {:async true :msg "trash all cards in the server at no cost" :effect (effect (trash-cards eid (:content run-server)))}})]}) (defcard "Social Engineering" {:on-play {:prompt "Select an unrezzed piece of ICE" :choices {:card #(and (not (rezzed? %)) (installed? %) (ice? %))} :msg (msg "select " (card-str state target)) :effect (effect (register-events card (let [ice target] [{:event :rez :duration :end-of-turn :req (req (same-card? (:card context) ice)) :msg (msg "gain " (rez-cost state side (get-card state (:card context))) " [Credits]") :async true :effect (effect (gain-credits :runner eid (rez-cost state side (get-card state (:card context)))))}])))}}) (defcard "Spear Phishing" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target card))} :events [{:event :encounter-ice :req (req (= 1 run-position)) :msg (msg "bypass " (:title (:ice context))) :effect (req (bypass-ice state))}]}) (defcard "Spec Work" {:on-play {:additional-cost [:program 1] :msg "gain 4 [Credits] and draw 2 cards" :async true :effect (req (wait-for (gain-credits state side 4) (draw state side eid 2 nil)))}}) (defcard "Special Order" {:on-play {:prompt "Choose an Icebreaker" :choices (req (cancellable (filter #(has-subtype? % "Icebreaker") (:deck runner)) :sorted)) :msg (msg "add " (:title target) " to their grip and shuffle their stack") :effect (effect (trigger-event :searched-stack nil) (shuffle! :deck) (move target :hand))}}) (defcard "Spooned" (cutlery "Code Gate")) (defcard "Spot the Prey" {:makes-run true :on-play {:prompt "Select 1 non-ICE card to expose" :msg "expose 1 card and make a run" :choices {:card #(and (installed? %) (not (ice? %)) (corp? %))} :async true :effect (req (wait-for (expose state side target) (continue-ability state side {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (make-run eid target))} card nil)))}}) (defcard "Stimhack" {:makes-run true :on-play {:prompt "Choose a server" :choices (req runnable-servers) :async true :effect (effect (gain-next-run-credits 9) (make-run eid target card))} :events [{:event :run-ends :req (req this-card-run) :msg "take 1 brain damage" :effect (effect (damage eid :brain 1 {:unpreventable true :card card}))}]}) (defcard "Sure Gamble" {:on-play {:msg "gain 9 [Credits]" :async true :effect (effect (gain-credits eid 9))}}) (defcard "Surge" (letfn [(placed-virus-cards [state] (->> (turn-events state :runner :counter-added) (filter #(= :virus (:counter-type (second %)))) (map first) (keep #(get-card state %)) (seq)))] {:on-play {:req (req (placed-virus-cards state)) :choices {:req (req (some #(same-card? % target) (placed-virus-cards state)))} :msg (msg "place 2 virus tokens on " (:title target)) :effect (effect (add-counter :runner target :virus 2))}})) (defcard "SYN Attack" {:on-play {:player :corp :waiting-prompt "Corp to choose an option for SYN Attack" :prompt "Discard 2 cards or draw 4 cards?" :choices (req [(when (<= 2 (count (:hand corp))) "Discard 2") "Draw 4"]) :async true :effect (req (if (= target "Draw 4") (wait-for (draw state :corp 4 nil) (system-msg state :corp (str "uses SYN Attack to draw " (quantify (count async-result) "card"))) (effect-completed state side eid)) (continue-ability state :corp {:prompt "Choose 2 cards to discard" :choices {:max 2 :all true :card #(and (in-hand? %) (corp? %))} :async true :effect (effect (system-msg :runner (str "uses SYN Attack to force the " "Corp to trash 2 cards from HQ")) (trash-cards :corp eid targets {:unpreventable true}))} card nil)))}}) (defcard "System Outage" {:events [{:event :corp-draw :req (req (not (first-event? state side :corp-draw))) :msg "force the Corp to lose 1 [Credits]" :async true :effect (effect (lose-credits :corp eid 1))}]}) (defcard "System Seizure" (let [ability {:req (req (get-in card [:special :ss-target])) :effect (effect (update! (dissoc-in card [:special :ss-target])))}] {:events [{:event :pump-breaker :req (req (or (not (get-in card [:special :ss-target])) (same-card? target (get-in card [:special :ss-target])))) :effect (req (when-not (get-in card [:special :ss-target]) (update! state side (assoc-in card [:special :ss-target] target))) (let [new-pump (assoc (second targets) :duration :end-of-run)] (swap! state assoc :effects (->> (:effects @state) (remove #(= (:uuid %) (:uuid new-pump))) (#(conj % new-pump)) (into [])))) (update-breaker-strength state side target))} (assoc ability :event :corp-turn-ends) (assoc ability :event :runner-turn-ends)]})) (defcard "Test Run" {:on-play {:prompt (req (if (not (zone-locked? state :runner :discard)) "Install a program from your Stack or Heap?" "Install a program from your Stack?" )) :choices (req (if (not (zone-locked? state :runner :discard)) ["Stack" "Heap"] ["Stack"])) :msg (msg "install a program from their " target) :async true :effect (effect (continue-ability (let [where target] {:prompt "Choose a program to install" :choices (req (cancellable (filter program? ((if (= where "Heap") :discard :deck) runner)))) :async true :effect (req (trigger-event state side :searched-stack nil) (shuffle! state side :deck) (wait-for (runner-install state side (make-eid state {:source card :source-type :runner-install}) target {:ignore-all-cost true}) (if async-result (let [installed-card (update! state side (assoc-in async-result [:special :test-run] true))] (register-events state side installed-card [{:event :runner-turn-ends :duration :end-of-turn :req (req (get-in (find-latest state installed-card) [:special :test-run])) :msg (msg "move " (:title installed-card) " to the top of the stack") :effect (effect (move (find-latest state installed-card) :deck {:front true}))}]) (effect-completed state side eid)) (effect-completed state side eid))))}) card nil))}}) (defcard "The Maker's Eye" {:makes-run true :on-play {:req (req rd-runnable) :async true :effect (effect (make-run eid :rd card))} :events [{:event :successful-run :silent (req true) :req (req (and (= :rd (target-server context)) this-card-run)) :effect (effect (access-bonus :rd 2))}]}) (defcard "The Noble Path" {:makes-run true :on-play {:async true :effect (req (wait-for (trash-cards state side (:hand runner)) (continue-ability state side {:async true :prompt "Choose a server" :choices (req runnable-servers) :msg (msg "trash their grip and make a run on " target ", preventing all damage") :effect (effect (make-run eid target card))} card nil)))} :events [{:event :pre-damage :duration :end-of-run :effect (effect (damage-prevent :net Integer/MAX_VALUE) (damage-prevent :meat Integer/MAX_VALUE) (damage-prevent :brain Integer/MAX_VALUE))}]}) (defcard "The Price of Freedom" {:on-play {:additional-cost [:connection 1] :rfg-instead-of-trashing true :msg "prevent the Corp from advancing cards during their next turn"} :events [{:event :corp-turn-begins :duration :until-runner-turn-begins :effect (effect (register-turn-flag! card :can-advance (fn [state side card] ((constantly false) (toast state :corp "Cannot advance cards this turn due to The Price of Freedom." "warning")))))}]}) (defcard "Three Steps Ahead" {:on-play {:effect (effect (register-events card [{:event :runner-turn-ends :duration :end-of-turn :unregister-once-resolved true :msg (msg "gain " (* 2 (count (:successful-run runner-reg))) " [Credits]") :async true :effect (effect (gain-credits eid (* 2 (count (:successful-run runner-reg)))))}]))}}) (defcard "Tinkering" {:on-play {:req (req (some #(and (ice? %) (installed? %)) (all-installed state :corp))) :prompt "Select a piece of ICE" :choices {:card #(and (installed? %) (ice? %))} :msg (msg "make " (card-str state target) " gain Sentry, Code Gate, and Barrier until the end of the turn") :effect (effect (register-floating-effect card (let [ice target] {:type :gain-subtype :duration :end-of-turn :req (req (same-card? ice target)) :value ["Sentry" "Code Gate" "Barrier"]})) (add-icon card (get-card state target) "T" "green"))}}) (defcard "Trade-In" ;; TODO: look at me plz (letfn [(trashed-hw [state] (last (get-in @state [:runner :discard])))] {:on-play {:additional-cost [:hardware 1] :msg (msg (let [{:keys [title cost]} (trashed-hw state)] (str "trash " title " and gain " (quot cost 2) " [Credits]"))) :async true :effect (req (let [{:keys [cost]} (trashed-hw state)] (wait-for (gain-credits state :runner (quot cost 2)) (continue-ability state :runner {:prompt "Choose a Hardware to add to your Grip from your Stack" :choices (req (filter hardware? (:deck runner))) :msg (msg "add " (:title target) " to their Grip (and shuffle their Stack)") :effect (effect (trigger-event :searched-stack nil) (shuffle! :deck) (move target :hand))} card nil))))}})) (defcard "Traffic Jam" {:constant-effects [{:type :advancement-requirement :value (req (->> (:scored corp) (filter #(= (:title %) (:title target))) (count)))}]}) (defcard "Tread Lightly" {:on-play {:prompt "Choose a server" :choices (req runnable-servers) :makes-run true :async true :effect (effect (register-floating-effect card {:type :rez-additional-cost :duration :end-of-run :req (req (ice? target)) :value (req [:credit 3])}) (make-run eid target card))}}) (defcard "Uninstall" {:on-play {:req (req (some #(or (hardware? %) (program? %)) (all-active-installed state :runner))) :choices {:card #(and (installed? %) (not (facedown? %)) (or (hardware? %) (program? %)))} :msg (msg "move " (:title target) " to their Grip") :effect (effect (move target :hand))}}) (defcard "Unscheduled Maintenance" {:events [{:event :corp-install :req (req (ice? (:card context))) :effect (effect (register-turn-flag! card :can-install-ice (fn [state side card] (if (ice? card) ((constantly false) (toast state :corp "Cannot install ICE the rest of this turn due to Unscheduled Maintenance")) true))))}] :leave-play (effect (clear-turn-flag! card :can-install-ice))}) (defcard "Vamp" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :ability {:async true :prompt "How many [Credits]?" :choices :credit :msg (msg "take 1 tag and make the Corp lose " target " [Credits]") :effect (req (wait-for (lose-credits state :corp target) (gain-tags state side eid 1)))}} )]}) (defcard "VRcation" {:on-play {:msg (msg "draw 4 cards" (when (pos? (:click runner)) " and lose [Click]")) :async true :effect (req (when (pos? (:click runner)) (lose state :runner :click 1)) (draw state :runner eid 4 nil))}}) (defcard "Wanton Destruction" {:makes-run true :on-play {:req (req hq-runnable) :async true :effect (effect (make-run eid :hq card))} :events [(successful-run-replace-access {:target-server :hq :this-card-run true :ability {:msg (msg "force the Corp to discard " target " cards from HQ at random") :prompt "How many [Click] do you want to spend?" :choices (req (map str (range 0 (inc (:click runner))))) :async true :effect (req (let [n (str->int target)] (wait-for (pay state :runner card :click n) (system-msg state :runner (:msg async-result)) (trash-cards state :corp eid (take n (shuffle (:hand corp)))))))}})]}) (defcard "Watch the World Burn" (letfn [(rfg-card-event [burned-card] [{:event :pre-access-card :duration :end-of-game :req (req (same-card? :title burned-card target)) :msg (msg (str "remove " (:title burned-card) " from the game")) :effect (effect (move :corp target :rfg))}])] {:makes-run true :on-play {:prompt "Choose a server" :choices (req (filter #(can-run-server? state %) remotes)) :async true :effect (effect (make-run eid target card))} :events [{:event :pre-access-card :req (req (and (not (agenda? target)) (:successful run))) :once :per-run :msg (msg "remove " (:title target) " from the game, and watch for other copies of " (:title target) " to burn") :effect (effect (move :corp target :rfg) (register-events card (rfg-card-event target)))}]})) (defcard "White Hat" (letfn [(finish-choice [choices] (let [choices (filter #(not= "None" %) choices)] (when (not-empty choices) {:effect (req (doseq [c choices] (move state :corp c :deck)) (shuffle! state :corp :deck)) :msg (str "shuffle " (string/join ", " (map :title choices)) " into R&D")}))) (choose-cards [hand chosen] {:prompt "Choose a card in HQ to shuffle into R&D" :player :runner :choices (conj (vec (clojure.set/difference hand chosen)) "None") :async true :effect (req (if (and (empty? chosen) (not= "None" target)) (continue-ability state side (choose-cards hand (conj chosen target)) card nil) (continue-ability state side (finish-choice (conj chosen target)) card nil)))})] {:on-play {:trace {:base 3 :req (req (some #{:hq :rd :archives} (:successful-run runner-reg))) :unsuccessful {:async true :msg (msg "reveal all cards in HQ" (when-let [hand (seq (:hand corp))] (str ": " (string/join ", " (map :title hand))))) :effect (req (wait-for (reveal state side (:hand corp)) (continue-ability state :runner (choose-cards (set (:hand corp)) #{}) card nil)))}}}})) (defcard "Wildcat Strike" {:on-play {:player :corp :waiting-prompt "Corp to choose Wildcat Strike effect" :prompt "Choose one" :choices ["Runner gains 6 [Credits]" "Runner draws 4 cards"] :async true :effect (req (if (= target "Runner gains 6 [Credits]") (do (system-msg state :corp "chooses 6 [Credits] for the Runner") (gain-credits state :runner eid 6)) (do (system-msg state :corp "chooses 4 cards for the Runner") (draw state :runner eid 4 nil))))}}) (defcard "Windfall" {:on-play {:async true :effect (req (shuffle! state side :deck) (let [topcard (first (:deck (:runner @state))) cost (:cost topcard)] (wait-for (trash state side topcard nil) (wait-for (gain-credits state side (if (event? topcard) 0 cost)) (system-msg state side (str "shuffles their Stack and trashes " (:title topcard) (when-not (event? topcard) (str " to gain " cost " [Credits]")))) (effect-completed state side eid)))))}})
[ { "context": ";; Copyright © 2015-2021 Esko Luontola\n;; This software is released under the Apache Lic", "end": 38, "score": 0.9998803734779358, "start": 25, "tag": "NAME", "value": "Esko Luontola" } ]
test/territory_bro/infra/db_test.clj
3breadt/territory-bro
2
;; Copyright © 2015-2021 Esko Luontola ;; This software is released under the Apache License 2.0. ;; The license text is at http://www.apache.org/licenses/LICENSE-2.0 (ns ^:slow territory-bro.infra.db-test (:require [clojure.java.jdbc :as jdbc] [clojure.test :refer :all] [territory-bro.infra.db :as db] [territory-bro.test.fixtures :refer [db-fixture]] [territory-bro.test.testutil :refer [re-contains]]) (:import (java.time Instant LocalDate) (java.util UUID))) (use-fixtures :once db-fixture) (deftest get-schemas-test (db/with-db [conn {:read-only? true}] (is (= ["test_territorybro"] (->> (db/get-schemas conn) (filter #{"test_territorybro"})))))) (deftest generate-tenant-schema-name-test (db/with-db [conn {:read-only? true}] (is (= "test_territorybro_00000000000000000000000000000001" (db/generate-tenant-schema-name conn (UUID. 0 1)))))) (deftest check-database-version-test (let [current-version db/expected-postgresql-version] (is (nil? (db/check-database-version (dec current-version))) "newer than expected") (is (nil? (db/check-database-version current-version)) "same as expected") (is (thrown-with-msg? AssertionError (re-contains "Expected the database to be PostgreSQL 14 but it was PostgreSQL 13") (db/check-database-version (inc current-version))) "older than expected"))) (deftest sql-type-conversions-test (db/with-db [conn {:read-only? true}] (testing "timestamp (with time zone)" (is (= [{:value (Instant/ofEpochSecond 2)}] (jdbc/query conn ["SELECT (?::timestamptz + interval '1 second')::timestamptz AS value" (Instant/ofEpochSecond 1)])))) (testing "date" (is (= [{:value (LocalDate/of 2001 1 1)}] (jdbc/query conn ["SELECT (?::date + interval '1 day')::date AS value" (LocalDate/of 2000 12 31)])))) (testing "json" (is (= [{:value {:foo "bar"}}] (jdbc/query conn ["SELECT ?::json AS value" {:foo "bar"}])))) (testing "jsonb" (is (= [{:value {:foo "bar"}}] (jdbc/query conn ["SELECT ?::jsonb AS value" {:foo "bar"}])))) (testing "array" (is (= [{:value [1 2 3]}] (jdbc/query conn ["SELECT '{1,2,3}'::integer[] AS value"])) "one way") (is (= [{:value [1 2 3]}] (jdbc/query conn ["SELECT ?::integer[] AS value" [1 2 3]])) "round trip")) (testing "multi-dimensional array" ;; TODO: support for input parameters? (is (= [{:value [[1 2 3] [4 5 6]]}] (jdbc/query conn ["SELECT '{{1,2,3},{4,5,6}}'::integer[][] AS value"])) "one way"))))
15662
;; Copyright © 2015-2021 <NAME> ;; This software is released under the Apache License 2.0. ;; The license text is at http://www.apache.org/licenses/LICENSE-2.0 (ns ^:slow territory-bro.infra.db-test (:require [clojure.java.jdbc :as jdbc] [clojure.test :refer :all] [territory-bro.infra.db :as db] [territory-bro.test.fixtures :refer [db-fixture]] [territory-bro.test.testutil :refer [re-contains]]) (:import (java.time Instant LocalDate) (java.util UUID))) (use-fixtures :once db-fixture) (deftest get-schemas-test (db/with-db [conn {:read-only? true}] (is (= ["test_territorybro"] (->> (db/get-schemas conn) (filter #{"test_territorybro"})))))) (deftest generate-tenant-schema-name-test (db/with-db [conn {:read-only? true}] (is (= "test_territorybro_00000000000000000000000000000001" (db/generate-tenant-schema-name conn (UUID. 0 1)))))) (deftest check-database-version-test (let [current-version db/expected-postgresql-version] (is (nil? (db/check-database-version (dec current-version))) "newer than expected") (is (nil? (db/check-database-version current-version)) "same as expected") (is (thrown-with-msg? AssertionError (re-contains "Expected the database to be PostgreSQL 14 but it was PostgreSQL 13") (db/check-database-version (inc current-version))) "older than expected"))) (deftest sql-type-conversions-test (db/with-db [conn {:read-only? true}] (testing "timestamp (with time zone)" (is (= [{:value (Instant/ofEpochSecond 2)}] (jdbc/query conn ["SELECT (?::timestamptz + interval '1 second')::timestamptz AS value" (Instant/ofEpochSecond 1)])))) (testing "date" (is (= [{:value (LocalDate/of 2001 1 1)}] (jdbc/query conn ["SELECT (?::date + interval '1 day')::date AS value" (LocalDate/of 2000 12 31)])))) (testing "json" (is (= [{:value {:foo "bar"}}] (jdbc/query conn ["SELECT ?::json AS value" {:foo "bar"}])))) (testing "jsonb" (is (= [{:value {:foo "bar"}}] (jdbc/query conn ["SELECT ?::jsonb AS value" {:foo "bar"}])))) (testing "array" (is (= [{:value [1 2 3]}] (jdbc/query conn ["SELECT '{1,2,3}'::integer[] AS value"])) "one way") (is (= [{:value [1 2 3]}] (jdbc/query conn ["SELECT ?::integer[] AS value" [1 2 3]])) "round trip")) (testing "multi-dimensional array" ;; TODO: support for input parameters? (is (= [{:value [[1 2 3] [4 5 6]]}] (jdbc/query conn ["SELECT '{{1,2,3},{4,5,6}}'::integer[][] AS value"])) "one way"))))
true
;; Copyright © 2015-2021 PI:NAME:<NAME>END_PI ;; This software is released under the Apache License 2.0. ;; The license text is at http://www.apache.org/licenses/LICENSE-2.0 (ns ^:slow territory-bro.infra.db-test (:require [clojure.java.jdbc :as jdbc] [clojure.test :refer :all] [territory-bro.infra.db :as db] [territory-bro.test.fixtures :refer [db-fixture]] [territory-bro.test.testutil :refer [re-contains]]) (:import (java.time Instant LocalDate) (java.util UUID))) (use-fixtures :once db-fixture) (deftest get-schemas-test (db/with-db [conn {:read-only? true}] (is (= ["test_territorybro"] (->> (db/get-schemas conn) (filter #{"test_territorybro"})))))) (deftest generate-tenant-schema-name-test (db/with-db [conn {:read-only? true}] (is (= "test_territorybro_00000000000000000000000000000001" (db/generate-tenant-schema-name conn (UUID. 0 1)))))) (deftest check-database-version-test (let [current-version db/expected-postgresql-version] (is (nil? (db/check-database-version (dec current-version))) "newer than expected") (is (nil? (db/check-database-version current-version)) "same as expected") (is (thrown-with-msg? AssertionError (re-contains "Expected the database to be PostgreSQL 14 but it was PostgreSQL 13") (db/check-database-version (inc current-version))) "older than expected"))) (deftest sql-type-conversions-test (db/with-db [conn {:read-only? true}] (testing "timestamp (with time zone)" (is (= [{:value (Instant/ofEpochSecond 2)}] (jdbc/query conn ["SELECT (?::timestamptz + interval '1 second')::timestamptz AS value" (Instant/ofEpochSecond 1)])))) (testing "date" (is (= [{:value (LocalDate/of 2001 1 1)}] (jdbc/query conn ["SELECT (?::date + interval '1 day')::date AS value" (LocalDate/of 2000 12 31)])))) (testing "json" (is (= [{:value {:foo "bar"}}] (jdbc/query conn ["SELECT ?::json AS value" {:foo "bar"}])))) (testing "jsonb" (is (= [{:value {:foo "bar"}}] (jdbc/query conn ["SELECT ?::jsonb AS value" {:foo "bar"}])))) (testing "array" (is (= [{:value [1 2 3]}] (jdbc/query conn ["SELECT '{1,2,3}'::integer[] AS value"])) "one way") (is (= [{:value [1 2 3]}] (jdbc/query conn ["SELECT ?::integer[] AS value" [1 2 3]])) "round trip")) (testing "multi-dimensional array" ;; TODO: support for input parameters? (is (= [{:value [[1 2 3] [4 5 6]]}] (jdbc/query conn ["SELECT '{{1,2,3},{4,5,6}}'::integer[][] AS value"])) "one way"))))
[ { "context": " Instant)))\n\n(def API_KEY \"key\")\n(def API_SECRET \"secret\")\n\n(deftest test-payload\n (with-redefs [exp/now ", "end": 325, "score": 0.975862979888916, "start": 319, "tag": "KEY", "value": "secret" } ]
test/exoscale/compute/api/payload_test.clj
exoscale/clojure-exoscale
2
(ns exoscale.compute.api.payload-test (:require [exoscale.compute.api.payload :refer [build-payload transform-maps]] [exoscale.compute.api.expiry :as exp] [clojure.test :refer :all] [exoscale.cloak :as cloak]) (:import (java.time Instant))) (def API_KEY "key") (def API_SECRET "secret") (deftest test-payload (with-redefs [exp/now (constantly (Instant/ofEpochMilli 1546300800000))] (let [payload (build-payload {:api-key API_KEY :api-secret API_SECRET :expiration 3600} :someApiCall {:arg1 "test" :arg2 42})] (is (= {:arg1 "test" :arg2 42 :command :someApiCall :apiKey "key" :response "json" :signatureVersion "3" :expires "2019-01-01T00:10:00+0000" :signature "O0Dpq8eI8F+UbjqFs0LOhgQXfV0="} payload))) (let [payload (build-payload {:api-key (cloak/mask API_KEY) :api-secret (cloak/mask API_SECRET) :expiration 3600} :someApiCall {:arg1 "test" :arg2 (cloak/mask 42)})] (is (= {:arg1 "test" :arg2 42 :command :someApiCall :apiKey "key" :response "json" :signatureVersion "3" :expires "2019-01-01T00:10:00+0000" :signature "O0Dpq8eI8F+UbjqFs0LOhgQXfV0="} payload) "we can decode cloaked params and config")) (let [payload (build-payload {:expiration 3600} :someApiCall {:arg1 "test" :arg2 (cloak/mask 42)})] (is (= {:arg1 "test" :arg2 42 :command :someApiCall :apiKey nil :response "json" :signatureVersion "3" :expires "2019-01-01T00:10:00+0000"} payload))))) (deftest test-maps-and-colls (with-redefs [exp/now (constantly (Instant/ofEpochMilli 1546300800000))] (let [payload (build-payload {:api-key API_KEY} :someApiCall {:arg1 [{:key "foo" :value "bar"} {:key "bim" :value "boom"}] :arg2 ["foo" "bar" "baz"]})] (is (= {"arg1[0].key" "foo" "arg1[0].value" "bar" "arg1[1].key" "bim" "arg1[1].value" "boom" :arg2 "foo,bar,baz" :command :someApiCall :apiKey "key" :signatureVersion "3" :response "json" :expires "2019-01-01T00:10:00+0000"} payload)))))
25222
(ns exoscale.compute.api.payload-test (:require [exoscale.compute.api.payload :refer [build-payload transform-maps]] [exoscale.compute.api.expiry :as exp] [clojure.test :refer :all] [exoscale.cloak :as cloak]) (:import (java.time Instant))) (def API_KEY "key") (def API_SECRET "<KEY>") (deftest test-payload (with-redefs [exp/now (constantly (Instant/ofEpochMilli 1546300800000))] (let [payload (build-payload {:api-key API_KEY :api-secret API_SECRET :expiration 3600} :someApiCall {:arg1 "test" :arg2 42})] (is (= {:arg1 "test" :arg2 42 :command :someApiCall :apiKey "key" :response "json" :signatureVersion "3" :expires "2019-01-01T00:10:00+0000" :signature "O0Dpq8eI8F+UbjqFs0LOhgQXfV0="} payload))) (let [payload (build-payload {:api-key (cloak/mask API_KEY) :api-secret (cloak/mask API_SECRET) :expiration 3600} :someApiCall {:arg1 "test" :arg2 (cloak/mask 42)})] (is (= {:arg1 "test" :arg2 42 :command :someApiCall :apiKey "key" :response "json" :signatureVersion "3" :expires "2019-01-01T00:10:00+0000" :signature "O0Dpq8eI8F+UbjqFs0LOhgQXfV0="} payload) "we can decode cloaked params and config")) (let [payload (build-payload {:expiration 3600} :someApiCall {:arg1 "test" :arg2 (cloak/mask 42)})] (is (= {:arg1 "test" :arg2 42 :command :someApiCall :apiKey nil :response "json" :signatureVersion "3" :expires "2019-01-01T00:10:00+0000"} payload))))) (deftest test-maps-and-colls (with-redefs [exp/now (constantly (Instant/ofEpochMilli 1546300800000))] (let [payload (build-payload {:api-key API_KEY} :someApiCall {:arg1 [{:key "foo" :value "bar"} {:key "bim" :value "boom"}] :arg2 ["foo" "bar" "baz"]})] (is (= {"arg1[0].key" "foo" "arg1[0].value" "bar" "arg1[1].key" "bim" "arg1[1].value" "boom" :arg2 "foo,bar,baz" :command :someApiCall :apiKey "key" :signatureVersion "3" :response "json" :expires "2019-01-01T00:10:00+0000"} payload)))))
true
(ns exoscale.compute.api.payload-test (:require [exoscale.compute.api.payload :refer [build-payload transform-maps]] [exoscale.compute.api.expiry :as exp] [clojure.test :refer :all] [exoscale.cloak :as cloak]) (:import (java.time Instant))) (def API_KEY "key") (def API_SECRET "PI:KEY:<KEY>END_PI") (deftest test-payload (with-redefs [exp/now (constantly (Instant/ofEpochMilli 1546300800000))] (let [payload (build-payload {:api-key API_KEY :api-secret API_SECRET :expiration 3600} :someApiCall {:arg1 "test" :arg2 42})] (is (= {:arg1 "test" :arg2 42 :command :someApiCall :apiKey "key" :response "json" :signatureVersion "3" :expires "2019-01-01T00:10:00+0000" :signature "O0Dpq8eI8F+UbjqFs0LOhgQXfV0="} payload))) (let [payload (build-payload {:api-key (cloak/mask API_KEY) :api-secret (cloak/mask API_SECRET) :expiration 3600} :someApiCall {:arg1 "test" :arg2 (cloak/mask 42)})] (is (= {:arg1 "test" :arg2 42 :command :someApiCall :apiKey "key" :response "json" :signatureVersion "3" :expires "2019-01-01T00:10:00+0000" :signature "O0Dpq8eI8F+UbjqFs0LOhgQXfV0="} payload) "we can decode cloaked params and config")) (let [payload (build-payload {:expiration 3600} :someApiCall {:arg1 "test" :arg2 (cloak/mask 42)})] (is (= {:arg1 "test" :arg2 42 :command :someApiCall :apiKey nil :response "json" :signatureVersion "3" :expires "2019-01-01T00:10:00+0000"} payload))))) (deftest test-maps-and-colls (with-redefs [exp/now (constantly (Instant/ofEpochMilli 1546300800000))] (let [payload (build-payload {:api-key API_KEY} :someApiCall {:arg1 [{:key "foo" :value "bar"} {:key "bim" :value "boom"}] :arg2 ["foo" "bar" "baz"]})] (is (= {"arg1[0].key" "foo" "arg1[0].value" "bar" "arg1[1].key" "bim" "arg1[1].value" "boom" :arg2 "foo,bar,baz" :command :someApiCall :apiKey "key" :signatureVersion "3" :response "json" :expires "2019-01-01T00:10:00+0000"} payload)))))
[ { "context": "js [middleware.utils.fs.node :as node])))\n\n; NOTE(Richo): https://stackoverflow.com/a/30781278\n(defn test", "end": 473, "score": 0.9406607151031494, "start": 468, "tag": "NAME", "value": "Richo" } ]
middleware/server/test/utils/tests.cljc
GIRA/UziScript
15
(ns utils.tests (:require [clojure.core.async :as a] [clojure.string :as str] #?(:clj [clojure.test :refer [*testing-vars*]] :cljs [cljs.test :refer [get-current-env] :refer-macros [async]]) [middleware.utils.fs.common :as fs] #?(:clj [middleware.utils.fs.jio :as jio]) #?(:cljs [middleware.utils.fs.browser :as browser]) #?(:cljs [middleware.utils.fs.node :as node]))) ; NOTE(Richo): https://stackoverflow.com/a/30781278 (defn test-async "Asynchronous test awaiting ch to produce a value or close." [ch] #?(:clj (a/<!! ch) :cljs (async done (a/take! ch (fn [_] (done)))))) (defn test-name [] #?(:clj (str/join "." (map (comp :name meta) *testing-vars*)) :cljs (str/join "." (map (comp :name meta) (:testing-vars (get-current-env)))))) (defn init-dependencies [] #?(:clj (fs/register-fs! #'jio/file) :cljs (fs/register-fs! (if (node/available?) #'node/file #'browser/file)))) (def setup-fixture #?(:clj (fn [f] (init-dependencies) (f)) :cljs {:before init-dependencies}))
8070
(ns utils.tests (:require [clojure.core.async :as a] [clojure.string :as str] #?(:clj [clojure.test :refer [*testing-vars*]] :cljs [cljs.test :refer [get-current-env] :refer-macros [async]]) [middleware.utils.fs.common :as fs] #?(:clj [middleware.utils.fs.jio :as jio]) #?(:cljs [middleware.utils.fs.browser :as browser]) #?(:cljs [middleware.utils.fs.node :as node]))) ; NOTE(<NAME>): https://stackoverflow.com/a/30781278 (defn test-async "Asynchronous test awaiting ch to produce a value or close." [ch] #?(:clj (a/<!! ch) :cljs (async done (a/take! ch (fn [_] (done)))))) (defn test-name [] #?(:clj (str/join "." (map (comp :name meta) *testing-vars*)) :cljs (str/join "." (map (comp :name meta) (:testing-vars (get-current-env)))))) (defn init-dependencies [] #?(:clj (fs/register-fs! #'jio/file) :cljs (fs/register-fs! (if (node/available?) #'node/file #'browser/file)))) (def setup-fixture #?(:clj (fn [f] (init-dependencies) (f)) :cljs {:before init-dependencies}))
true
(ns utils.tests (:require [clojure.core.async :as a] [clojure.string :as str] #?(:clj [clojure.test :refer [*testing-vars*]] :cljs [cljs.test :refer [get-current-env] :refer-macros [async]]) [middleware.utils.fs.common :as fs] #?(:clj [middleware.utils.fs.jio :as jio]) #?(:cljs [middleware.utils.fs.browser :as browser]) #?(:cljs [middleware.utils.fs.node :as node]))) ; NOTE(PI:NAME:<NAME>END_PI): https://stackoverflow.com/a/30781278 (defn test-async "Asynchronous test awaiting ch to produce a value or close." [ch] #?(:clj (a/<!! ch) :cljs (async done (a/take! ch (fn [_] (done)))))) (defn test-name [] #?(:clj (str/join "." (map (comp :name meta) *testing-vars*)) :cljs (str/join "." (map (comp :name meta) (:testing-vars (get-current-env)))))) (defn init-dependencies [] #?(:clj (fs/register-fs! #'jio/file) :cljs (fs/register-fs! (if (node/available?) #'node/file #'browser/file)))) (def setup-fixture #?(:clj (fn [f] (init-dependencies) (f)) :cljs {:before init-dependencies}))
[ { "context": "outes.clj for the valid routes.\"]\n\t [:h3 \"Author: Stefan Roock, EMail: stefan.roock@it-agile.de, Twitter: Stefan", "end": 478, "score": 0.9998528361320496, "start": 466, "tag": "NAME", "value": "Stefan Roock" }, { "context": "id routes.\"]\n\t [:h3 \"Author: Stefan Roock, EMail: stefan.roock@it-agile.de, Twitter: StefanRoock\"]\n\t [:img {:src \"sr.jpg\"}]", "end": 511, "score": 0.9999353885650635, "start": 487, "tag": "EMAIL", "value": "stefan.roock@it-agile.de" }, { "context": "n Roock, EMail: stefan.roock@it-agile.de, Twitter: StefanRoock\"]\n\t [:img {:src \"sr.jpg\"}]))\n\n(defn full-name [f", "end": 533, "score": 0.9994715452194214, "start": 522, "tag": "USERNAME", "value": "StefanRoock" } ]
src/samplewebapp/actions.clj
stefanroock/Clojure-Webapp-Example
1
(ns samplewebapp.actions (:use hiccup.core) (:use hiccup.form-helpers)) ; Hiccup does the HTML generation part (defn layout [title & body] (html [:head [:title title]] [:body [:h1.header title] body])) (defn welcome-page [] (layout "Welcome to Clojure Sample Webapp" [:p "The webapp shows how to use Clojure with Jetty, Ring, Compojure and Hiccup to build a web application."] [:p "See routes.clj for the valid routes."] [:h3 "Author: Stefan Roock, EMail: stefan.roock@it-agile.de, Twitter: StefanRoock"] [:img {:src "sr.jpg"}])) (defn full-name [first second] (layout "Full Name" (str first " " second))) (defn name-form [] (layout "Name Form" (form-to [:post "/post-name"] (label :first-name "First Name") (text-field :first-name) [:br] (label :second-name "Second Name") (text-field :second-name) [:p (submit-button "Submit")]))) (defn post-name [first second] (full-name first second))
35778
(ns samplewebapp.actions (:use hiccup.core) (:use hiccup.form-helpers)) ; Hiccup does the HTML generation part (defn layout [title & body] (html [:head [:title title]] [:body [:h1.header title] body])) (defn welcome-page [] (layout "Welcome to Clojure Sample Webapp" [:p "The webapp shows how to use Clojure with Jetty, Ring, Compojure and Hiccup to build a web application."] [:p "See routes.clj for the valid routes."] [:h3 "Author: <NAME>, EMail: <EMAIL>, Twitter: StefanRoock"] [:img {:src "sr.jpg"}])) (defn full-name [first second] (layout "Full Name" (str first " " second))) (defn name-form [] (layout "Name Form" (form-to [:post "/post-name"] (label :first-name "First Name") (text-field :first-name) [:br] (label :second-name "Second Name") (text-field :second-name) [:p (submit-button "Submit")]))) (defn post-name [first second] (full-name first second))
true
(ns samplewebapp.actions (:use hiccup.core) (:use hiccup.form-helpers)) ; Hiccup does the HTML generation part (defn layout [title & body] (html [:head [:title title]] [:body [:h1.header title] body])) (defn welcome-page [] (layout "Welcome to Clojure Sample Webapp" [:p "The webapp shows how to use Clojure with Jetty, Ring, Compojure and Hiccup to build a web application."] [:p "See routes.clj for the valid routes."] [:h3 "Author: PI:NAME:<NAME>END_PI, EMail: PI:EMAIL:<EMAIL>END_PI, Twitter: StefanRoock"] [:img {:src "sr.jpg"}])) (defn full-name [first second] (layout "Full Name" (str first " " second))) (defn name-form [] (layout "Name Form" (form-to [:post "/post-name"] (label :first-name "First Name") (text-field :first-name) [:br] (label :second-name "Second Name") (text-field :second-name) [:p (submit-button "Submit")]))) (defn post-name [first second] (full-name first second))
[ { "context": " :mail-from \"rems@rems.rems\")\n postal.core/send-message (f", "end": 670, "score": 0.8067947030067444, "start": 658, "tag": "EMAIL", "value": "rems@rems.re" }, { "context": " rems.db.users/get-user (constantly {:email \"user@example.com\"})\n rems.db.user-settings/get-us", "end": 847, "score": 0.9998378753662109, "start": 831, "tag": "EMAIL", "value": "user@example.com" }, { "context": "ail address\"\n (is (nil? (send-email! {:to \"foo@example.com\" :subject \"ding\" :body \"boing\"})))\n (is (=", "end": 1018, "score": 0.9998073577880859, "start": 1003, "tag": "EMAIL", "value": "foo@example.com" }, { "context": "ect \"ding\" :body \"boing\"})))\n (is (= {:to \"foo@example.com\"\n :subject \"ding\"\n ", "end": 1090, "score": 0.9998011589050293, "start": 1075, "tag": "EMAIL", "value": "foo@example.com" }, { "context": " :body \"boing\"\n :from \"rems@rems.rems\"}\n @message-atom))\n (reset! ", "end": 1191, "score": 0.9944449663162231, "start": 1177, "tag": "EMAIL", "value": "rems@rems.rems" }, { "context": "o user\"\n (is (nil? (send-email! {:to-user \"user\" :subject \"x\" :body \"y\"})))\n (is (= {:to \"", "end": 1337, "score": 0.530503511428833, "start": 1333, "tag": "USERNAME", "value": "user" }, { "context": "\" :subject \"x\" :body \"y\"})))\n (is (= {:to \"user@example.com\"\n :to-user \"user\"\n ", "end": 1403, "score": 0.9997007250785828, "start": 1387, "tag": "EMAIL", "value": "user@example.com" }, { "context": "{:to \"user@example.com\"\n :to-user \"user\"\n :subject \"x\"\n :bo", "end": 1435, "score": 0.9407283067703247, "start": 1431, "tag": "USERNAME", "value": "user" }, { "context": "\n :body \"y\"\n :from \"rems@rems.rems\"}\n @message-atom))\n (reset! ", "end": 1529, "score": 0.9977754354476929, "start": 1515, "tag": "EMAIL", "value": "rems@rems.rems" }, { "context": "t-user-settings (constantly {:notification-email \"alternative@example.com\"})]\n (is (nil? (send-email! {:to-user \"u", "end": 1789, "score": 0.9998062252998352, "start": 1766, "tag": "EMAIL", "value": "alternative@example.com" }, { "context": "m\"})]\n (is (nil? (send-email! {:to-user \"user\" :subject \"x\" :body \"y\"}))))\n (is (= {:to ", "end": 1842, "score": 0.9962505102157593, "start": 1838, "tag": "USERNAME", "value": "user" }, { "context": " :subject \"x\" :body \"y\"}))))\n (is (= {:to \"alternative@example.com\"\n :to-user \"user\"\n ", "end": 1916, "score": 0.9998971223831177, "start": 1893, "tag": "EMAIL", "value": "alternative@example.com" }, { "context": "lternative@example.com\"\n :to-user \"user\"\n :subject \"x\"\n :bo", "end": 1948, "score": 0.9987776279449463, "start": 1944, "tag": "USERNAME", "value": "user" }, { "context": "\n :body \"y\"\n :from \"rems@rems.rems\"}\n @message-atom))\n (reset! ", "end": 2042, "score": 0.9998204708099365, "start": 2028, "tag": "EMAIL", "value": "rems@rems.rems" }, { "context": "il})]\n (is (nil? (send-email! {:to-user \"user\" :subject \"x\" :body \"y\"}))))\n (is (nil? @m", "end": 2276, "score": 0.9953188896179199, "start": 2272, "tag": "USERNAME", "value": "user" }, { "context": "ception\"\n (send-email! {:to-user \"user\" :subject \"x\" :body \"y\"})))))\n\n (testing \"SM", "end": 3052, "score": 0.9929327368736267, "start": 3048, "tag": "USERNAME", "value": "user" }, { "context": "nil)]\n (is (nil? (send-email! {:to-user \"user\" :subject \"x\" :body \"y\"}))\n \"should ", "end": 3247, "score": 0.9937107563018799, "start": 3243, "tag": "USERNAME", "value": "user" } ]
test/clj/rems/email/test_core.clj
juholehtonen/rems
0
(ns rems.email.test-core (:require [clojure.test :refer :all] [mount.core :as mount] [rems.config] [rems.email.core :refer [send-email!]])) (use-fixtures :once (fn [f] (mount/start #'rems.config/env) (f) (mount/stop))) (deftest test-send-email! ;; Just for a bit of coverage in code that doesn't get run in other tests or the dev profile (let [message-atom (atom nil)] (with-redefs [rems.config/env (assoc rems.config/env :smtp-host "localhost" :smtp-port 25 :mail-from "rems@rems.rems") postal.core/send-message (fn [_host message] (reset! message-atom message)) rems.db.users/get-user (constantly {:email "user@example.com"}) rems.db.user-settings/get-user-settings (constantly {})] (testing "mail to email address" (is (nil? (send-email! {:to "foo@example.com" :subject "ding" :body "boing"}))) (is (= {:to "foo@example.com" :subject "ding" :body "boing" :from "rems@rems.rems"} @message-atom)) (reset! message-atom nil)) (testing "mail to user" (is (nil? (send-email! {:to-user "user" :subject "x" :body "y"}))) (is (= {:to "user@example.com" :to-user "user" :subject "x" :body "y" :from "rems@rems.rems"} @message-atom)) (reset! message-atom nil)) (testing "mail to user with notification email in user settings" (with-redefs [rems.db.user-settings/get-user-settings (constantly {:notification-email "alternative@example.com"})] (is (nil? (send-email! {:to-user "user" :subject "x" :body "y"})))) (is (= {:to "alternative@example.com" :to-user "user" :subject "x" :body "y" :from "rems@rems.rems"} @message-atom)) (reset! message-atom nil)) (testing "mail to user without email" (with-redefs [rems.db.users/get-user (constantly {:email nil})] (is (nil? (send-email! {:to-user "user" :subject "x" :body "y"})))) (is (nil? @message-atom)) (reset! message-atom nil)) (testing "invalid email address" (is (= "failed address validation: Invalid address \"fake email\": javax.mail.internet.AddressException: Local address contains control or whitespace in string ``fake email''" (send-email! {:to "fake email" :subject "x" :body "y"}))) (is (nil? @message-atom)) (reset! message-atom nil)) (testing "failed send" (with-redefs [postal.core/send-message (fn [_host _message] (throw (Throwable. "dummy exception")))] (is (= "failed sending email: java.lang.Throwable: dummy exception" (send-email! {:to-user "user" :subject "x" :body "y"}))))) (testing "SMTP not configured" (with-redefs [rems.config/env (assoc rems.config/env :smtp-host nil)] (is (nil? (send-email! {:to-user "user" :subject "x" :body "y"})) "should skip the message quietly")) (is (nil? @message-atom)) (reset! message-atom nil)))))
87837
(ns rems.email.test-core (:require [clojure.test :refer :all] [mount.core :as mount] [rems.config] [rems.email.core :refer [send-email!]])) (use-fixtures :once (fn [f] (mount/start #'rems.config/env) (f) (mount/stop))) (deftest test-send-email! ;; Just for a bit of coverage in code that doesn't get run in other tests or the dev profile (let [message-atom (atom nil)] (with-redefs [rems.config/env (assoc rems.config/env :smtp-host "localhost" :smtp-port 25 :mail-from "<EMAIL>ms") postal.core/send-message (fn [_host message] (reset! message-atom message)) rems.db.users/get-user (constantly {:email "<EMAIL>"}) rems.db.user-settings/get-user-settings (constantly {})] (testing "mail to email address" (is (nil? (send-email! {:to "<EMAIL>" :subject "ding" :body "boing"}))) (is (= {:to "<EMAIL>" :subject "ding" :body "boing" :from "<EMAIL>"} @message-atom)) (reset! message-atom nil)) (testing "mail to user" (is (nil? (send-email! {:to-user "user" :subject "x" :body "y"}))) (is (= {:to "<EMAIL>" :to-user "user" :subject "x" :body "y" :from "<EMAIL>"} @message-atom)) (reset! message-atom nil)) (testing "mail to user with notification email in user settings" (with-redefs [rems.db.user-settings/get-user-settings (constantly {:notification-email "<EMAIL>"})] (is (nil? (send-email! {:to-user "user" :subject "x" :body "y"})))) (is (= {:to "<EMAIL>" :to-user "user" :subject "x" :body "y" :from "<EMAIL>"} @message-atom)) (reset! message-atom nil)) (testing "mail to user without email" (with-redefs [rems.db.users/get-user (constantly {:email nil})] (is (nil? (send-email! {:to-user "user" :subject "x" :body "y"})))) (is (nil? @message-atom)) (reset! message-atom nil)) (testing "invalid email address" (is (= "failed address validation: Invalid address \"fake email\": javax.mail.internet.AddressException: Local address contains control or whitespace in string ``fake email''" (send-email! {:to "fake email" :subject "x" :body "y"}))) (is (nil? @message-atom)) (reset! message-atom nil)) (testing "failed send" (with-redefs [postal.core/send-message (fn [_host _message] (throw (Throwable. "dummy exception")))] (is (= "failed sending email: java.lang.Throwable: dummy exception" (send-email! {:to-user "user" :subject "x" :body "y"}))))) (testing "SMTP not configured" (with-redefs [rems.config/env (assoc rems.config/env :smtp-host nil)] (is (nil? (send-email! {:to-user "user" :subject "x" :body "y"})) "should skip the message quietly")) (is (nil? @message-atom)) (reset! message-atom nil)))))
true
(ns rems.email.test-core (:require [clojure.test :refer :all] [mount.core :as mount] [rems.config] [rems.email.core :refer [send-email!]])) (use-fixtures :once (fn [f] (mount/start #'rems.config/env) (f) (mount/stop))) (deftest test-send-email! ;; Just for a bit of coverage in code that doesn't get run in other tests or the dev profile (let [message-atom (atom nil)] (with-redefs [rems.config/env (assoc rems.config/env :smtp-host "localhost" :smtp-port 25 :mail-from "PI:EMAIL:<EMAIL>END_PIms") postal.core/send-message (fn [_host message] (reset! message-atom message)) rems.db.users/get-user (constantly {:email "PI:EMAIL:<EMAIL>END_PI"}) rems.db.user-settings/get-user-settings (constantly {})] (testing "mail to email address" (is (nil? (send-email! {:to "PI:EMAIL:<EMAIL>END_PI" :subject "ding" :body "boing"}))) (is (= {:to "PI:EMAIL:<EMAIL>END_PI" :subject "ding" :body "boing" :from "PI:EMAIL:<EMAIL>END_PI"} @message-atom)) (reset! message-atom nil)) (testing "mail to user" (is (nil? (send-email! {:to-user "user" :subject "x" :body "y"}))) (is (= {:to "PI:EMAIL:<EMAIL>END_PI" :to-user "user" :subject "x" :body "y" :from "PI:EMAIL:<EMAIL>END_PI"} @message-atom)) (reset! message-atom nil)) (testing "mail to user with notification email in user settings" (with-redefs [rems.db.user-settings/get-user-settings (constantly {:notification-email "PI:EMAIL:<EMAIL>END_PI"})] (is (nil? (send-email! {:to-user "user" :subject "x" :body "y"})))) (is (= {:to "PI:EMAIL:<EMAIL>END_PI" :to-user "user" :subject "x" :body "y" :from "PI:EMAIL:<EMAIL>END_PI"} @message-atom)) (reset! message-atom nil)) (testing "mail to user without email" (with-redefs [rems.db.users/get-user (constantly {:email nil})] (is (nil? (send-email! {:to-user "user" :subject "x" :body "y"})))) (is (nil? @message-atom)) (reset! message-atom nil)) (testing "invalid email address" (is (= "failed address validation: Invalid address \"fake email\": javax.mail.internet.AddressException: Local address contains control or whitespace in string ``fake email''" (send-email! {:to "fake email" :subject "x" :body "y"}))) (is (nil? @message-atom)) (reset! message-atom nil)) (testing "failed send" (with-redefs [postal.core/send-message (fn [_host _message] (throw (Throwable. "dummy exception")))] (is (= "failed sending email: java.lang.Throwable: dummy exception" (send-email! {:to-user "user" :subject "x" :body "y"}))))) (testing "SMTP not configured" (with-redefs [rems.config/env (assoc rems.config/env :smtp-host nil)] (is (nil? (send-email! {:to-user "user" :subject "x" :body "y"})) "should skip the message quietly")) (is (nil? @message-atom)) (reset! message-atom nil)))))
[ { "context": "(ns\n ^{:author \"Zach Tellman\"\n :doc \"Methods for creating, transforming, an", "end": 29, "score": 0.9998086094856262, "start": 17, "tag": "NAME", "value": "Zach Tellman" } ]
src/manifold/stream.clj
LuisThiamNye/manifold
0
(ns ^{:author "Zach Tellman" :doc "Methods for creating, transforming, and interacting with asynchronous streams of values."} manifold.stream (:refer-clojure :exclude [map filter mapcat reductions reduce concat]) (:require [clojure.core :as clj] [manifold.deferred :as d] [manifold.utils :as utils :refer [deftype+]] [manifold.time :as time] [manifold.stream [core :as core] [default :as default] random-access iterator queue seq deferred] [clojure.tools.logging :as log]) (:import [manifold.stream.core IEventSink IEventSource IEventStream] [java.lang.ref WeakReference] [java.util.concurrent CopyOnWriteArrayList ConcurrentHashMap BlockingQueue ArrayBlockingQueue LinkedBlockingQueue ConcurrentLinkedQueue TimeUnit] [java.util.concurrent.atomic AtomicReference AtomicLong] [java.util LinkedList Iterator])) (set! *unchecked-math* true) (utils/when-core-async (require 'manifold.stream.async)) ;;; (let [f (utils/fast-satisfies #'core/Sinkable)] (defn sinkable? [x] (or (instance? IEventSink x) (f x)))) (let [f (utils/fast-satisfies #'core/Sourceable)] (defn sourceable? [x] (or (instance? IEventSource x) (f x)))) (defn ->sink "Converts, if possible, the object to a Manifold sink, or `default-val` if it cannot. If no default value is given, an `IllegalArgumentException` is thrown." ([x] (let [x' (->sink x ::none)] (if (identical? ::none x') (throw (IllegalArgumentException. (str "cannot convert " (.getCanonicalName (class x)) " to sink"))) x'))) ([x default-val] (cond (instance? IEventSink x) x (sinkable? x) (core/to-sink x) :else default-val))) (defn ->source "Converts, if possible, the object to a Manifold source, or `default-val` if it cannot. If no default value is given, an `IllegalArgumentException` is thrown." ([x] (let [x' (->source x ::none)] (if (identical? ::none x') (throw (IllegalArgumentException. (str "cannot convert " (.getCanonicalName (class x)) " to source"))) x'))) ([x default-val] (cond (instance? IEventSource x) x (sourceable? x) (core/to-source x) :else default-val))) (deftype+ SinkProxy [^IEventSink sink] IEventStream (description [_] (.description ^IEventStream sink)) (isSynchronous [_] (.isSynchronous ^IEventStream sink)) (downstream [_] (.downstream ^IEventStream sink)) (close [_] (.close ^IEventStream sink)) (weakHandle [_ ref-queue] (.weakHandle ^IEventStream sink ref-queue)) IEventSink (put [_ x blocking?] (.put sink x blocking?)) (put [_ x blocking? timeout timeout-val] (.put sink x blocking? timeout timeout-val)) (isClosed [_] (.isClosed sink)) (onClosed [_ callback] (.onClosed sink callback))) (declare connect) (deftype+ SourceProxy [^IEventSource source] IEventStream (description [_] (.description ^IEventStream source)) (isSynchronous [_] (.isSynchronous ^IEventStream source)) (downstream [_] (.downstream ^IEventStream source)) (close [_] (.close ^IEventStream source)) (weakHandle [_ ref-queue] (.weakHandle ^IEventStream source ref-queue)) IEventSource (take [_ default-val blocking?] (.take source default-val blocking?)) (take [_ default-val blocking? timeout timeout-val] (.take source default-val blocking? timeout timeout-val)) (isDrained [_] (.isDrained source)) (onDrained [_ callback] (.onDrained source callback)) (connector [_ sink] (fn [_ sink options] (connect source sink options)))) (defn source-only "Returns a view of the stream which is only a source." [s] (SourceProxy. s)) (defn sink-only "Returns a view of the stream which is only a sink." [s] (SinkProxy. s)) (definline onto "Returns an identical stream whose deferred callbacks will be executed on `executor`." [executor s] `(manifold.stream.default/onto ~executor ~s)) ;;; (definline stream? "Returns true if the object is a Manifold stream." [x] `(instance? IEventStream ~x)) (definline source? "Returns true if the object is a Manifold source." [x] `(instance? IEventSource ~x)) (definline sink? "Returns true if the object is a Manifold sink." [x] `(instance? IEventSink ~x)) (definline description "Returns a description of the stream." [x] `(.description ~(with-meta x {:tag "manifold.stream.core.IEventStream"}))) (definline downstream "Returns all sinks downstream of the given source as a sequence of 2-tuples, with the first element containing the connection's description, and the second element containing the sink." [x] `(.downstream ~(with-meta x {:tag "manifold.stream.core.IEventStream"}))) (definline weak-handle "Returns a weak reference that can be used to construct topologies of streams." [x] `(.weakHandle ~(with-meta x {:tag "manifold.stream.core.IEventStream"}) nil)) (definline synchronous? "Returns true if the underlying abstraction behaves synchronously, using thread blocking to provide backpressure." [x] `(.isSynchronous ~(with-meta x {:tag "manifold.stream.core.IEventStream"}))) (definline close! "Closes a source or sink, so that it can't emit or accept any more messages." [sink] `(.close ~(with-meta sink {:tag "manifold.stream.core.IEventStream"}))) (definline closed? "Returns true if the event sink is closed." [sink] `(.isClosed ~(with-meta sink {:tag "manifold.stream.core.IEventSink"}))) (definline on-closed "Registers a no-arg callback which is invoked when the sink is closed." [sink callback] `(.onClosed ~(with-meta sink {:tag "manifold.stream.core.IEventSink"}) ~callback)) (definline drained? "Returns true if the event source is drained." [source] `(.isDrained ~(with-meta source {:tag "manifold.stream.core.IEventSource"}))) (definline on-drained "Registers a no-arg callback which is invoked when the source is drained." [source callback] `(.onDrained ~(with-meta source {:tag "manifold.stream.core.IEventSource"}) ~callback)) (defn put! "Puts a value into a sink, returning a deferred that yields `true` if it succeeds, and `false` if it fails. Guaranteed to be non-blocking." {:inline (fn [sink x] `(.put ~(with-meta sink {:tag "manifold.stream.core.IEventSink"}) ~x false))} ([^IEventSink sink x] (.put sink x false))) (defn put-all! "Puts all values into the sink, returning a deferred that yields `true` if all puts are successful, or `false` otherwise. If the sink provides backpressure, will pause. Guaranteed to be non-blocking." [^IEventSink sink msgs] (d/loop [msgs msgs] (if (empty? msgs) true (d/chain' (put! sink (first msgs)) (fn [result] (if result (d/recur (rest msgs)) false)))))) (defn try-put! "Puts a value into a stream if the put can successfully be completed in `timeout` milliseconds. Returns a promise that yields `true` if it succeeds, and `false` if it fails or times out. Guaranteed to be non-blocking. A special `timeout-val` may be specified, if it is important to differentiate between failure due to timeout and other failures." {:inline (fn ([sink x timeout] `(.put ~(with-meta sink {:tag "manifold.stream.core.IEventSink"}) ~x false ~timeout false)) ([sink x timeout timeout-val] `(.put ~(with-meta sink {:tag "manifold.stream.core.IEventSink"}) ~x false ~timeout ~timeout-val)))} ([^IEventSink sink x ^double timeout] (.put sink x false timeout false)) ([^IEventSink sink x ^double timeout timeout-val] (.put sink x false timeout timeout-val))) (defn take! "Takes a value from a stream, returning a deferred that yields the value when it is available, or `nil` if the take fails. Guaranteed to be non-blocking. A special `default-val` may be specified, if it is important to differentiate between actual `nil` values and failures." {:inline (fn ([source] `(.take ~(with-meta source {:tag "manifold.stream.core.IEventSource"}) nil false)) ([source default-val] `(.take ~(with-meta source {:tag "manifold.stream.core.IEventSource"}) ~default-val false)))} ([^IEventSource source] (.take source nil false)) ([^IEventSource source default-val] (.take source default-val false))) (defn try-take! "Takes a value from a stream, returning a deferred that yields the value if it is available within `timeout` milliseconds, or `nil` if it fails or times out. Guaranteed to be non-blocking. Special `timeout-val` and `default-val` values may be specified, if it is important to differentiate between actual `nil` values and timeouts/failures." {:inline (fn ([source timeout] `(.take ~(with-meta source {:tag "manifold.stream.core.IEventSource"}) nil false ~timeout nil)) ([source default-val timeout timeout-val] `(.take ~(with-meta source {:tag "manifold.stream.core.IEventSource"}) ~default-val false ~timeout ~timeout-val)))} ([^IEventSource source ^double timeout] (.take source nil false timeout nil)) ([^IEventSource source default-val ^double timeout timeout-val] (.take source default-val false timeout timeout-val))) ;;; (require '[manifold.stream.graph]) (defn connect "Connects a source to a sink, propagating all messages from the former into the latter. Optionally takes a map of parameters: |:---|:--- | `upstream?` | if closing the sink should always close the source, even if there are other sinks downstream of the source. Defaults to `false`. Note that if the sink is the only thing downstream of the source, the source will always be closed, unless it is permanent. | `downstream?` | if closing the source will close the sink. Defaults to `true`. | `timeout` | if defined, the maximum time, in milliseconds, that will be spent trying to put a message into the sink before closing it. Useful when there are multiple sinks downstream of a source, and you want to avoid a single backed up sink from blocking all the others. | `description` | describes the connection, useful for traversing the stream topology via `downstream`." {:arglists '[[source sink] [source sink {:keys [upstream? downstream? timeout description] :or {upstream? false downstream? true}}]]} ([source sink] (connect source sink nil)) ([^IEventSource source ^IEventSink sink options] (let [source (->source source) sink (->sink sink) connector (.connector ^IEventSource source sink)] (if connector (connector source sink options) (manifold.stream.graph/connect source sink options)) nil))) ;;; (defn stream "Returns a Manifold stream with a configurable `buffer-size`. If a capacity is specified, `put!` will yield `true` when the message is in the buffer. Otherwise it will only yield `true` once it has been consumed. `xform` is an optional transducer, which will transform all messages that are enqueued via `put!` before they are dequeued via `take!`. `executor`, if defined, specifies which java.util.concurrent.Executor will be used to handle the deferreds returned by `put!` and `take!`." ([] (default/stream)) ([buffer-size] (default/stream buffer-size)) ([buffer-size xform] (default/stream buffer-size xform)) ([buffer-size xform executor] (default/stream buffer-size xform executor))) (defn stream* "An alternate way to build a stream, via a map of parameters. |:---|:--- | `permanent?` | if `true`, the channel cannot be closed | `buffer-size` | the number of messages that can accumulate in the channel before backpressure is applied | `description` | the description of the channel, which is a single arg function that takes the base properties and returns an enriched map. | `executor` | the `java.util.concurrent.Executor` that will execute all callbacks registered on the deferreds returns by `put!` and `take!` | `xform` | a transducer which will transform all messages that are enqueued via `put!` before they are dequeued via `take!`." {:arglists '[[{:keys [permanent? buffer-size description executor xform]}]]} [options] (default/stream* options)) ;;; (deftype+ SplicedStream [^IEventSink sink ^IEventSource source ^:volatile-mutable mta lock] clojure.lang.IReference (meta [_] mta) (resetMeta [_ m] (utils/with-lock* lock (set! mta m))) (alterMeta [_ f args] (utils/with-lock* lock (set! mta (apply f mta args)))) IEventStream (isSynchronous [_] (or (synchronous? sink) (synchronous? source))) (description [_] {:type "splice" :sink (.description ^IEventStream sink) :source (.description ^IEventStream source)}) (downstream [_] (.downstream ^IEventStream source)) (close [_] (.close ^IEventStream source) (.close ^IEventStream sink)) (weakHandle [_ ref-queue] (.weakHandle ^IEventStream source ref-queue)) IEventSink (put [_ x blocking?] (.put sink x blocking?)) (put [_ x blocking? timeout timeout-val] (.put sink x blocking? timeout timeout-val)) (isClosed [_] (.isClosed sink)) (onClosed [_ callback] (.onClosed sink callback)) IEventSource (take [_ default-val blocking?] (.take source default-val blocking?)) (take [_ default-val blocking? timeout timeout-val] (.take source default-val blocking? timeout timeout-val)) (isDrained [_] (.isDrained source)) (onDrained [_ callback] (.onDrained source callback)) (connector [_ sink] (.connector source sink))) (defn splice "Splices together two halves of a stream, such that all messages enqueued via `put!` go into `sink`, and all messages dequeued via `take!` come from `source`." [sink source] (SplicedStream. (->sink sink) (->source source) nil (utils/mutex))) ;;; (deftype+ Callback [f close-callback ^IEventSink downstream constant-response] IEventStream (isSynchronous [_] false) (close [_] (when close-callback (close-callback))) (weakHandle [_ ref-queue] (if downstream (.weakHandle ^IEventStream downstream ref-queue) (throw (IllegalArgumentException.)))) (description [_] {:type "callback"}) (downstream [_] (when downstream [[(description downstream) downstream]])) IEventSink (put [this x _] (try (let [rsp (f x)] (if (nil? constant-response) rsp constant-response)) (catch Throwable e (log/error e "error in stream handler") (.close this) (d/success-deferred false)))) (put [this x default-val _ _] (.put this x default-val)) (isClosed [_] (if downstream (.isClosed downstream) false)) (onClosed [_ callback] (when downstream (.onClosed downstream callback)))) (let [result (d/success-deferred true)] (defn consume "Feeds all messages from `source` into `callback`. Messages will be processed as quickly as the callback can be executed. Returns a deferred which yields `true` when `source` is exhausted." [callback source] (let [complete (d/deferred)] (connect source (Callback. callback #(d/success! complete true) nil result) nil) complete))) (defn consume-async "Feeds all messages from `source` into `callback`, which must return a deferred yielding `true` or `false`. If the returned value yields `false`, the consumption will be cancelled. Messages will be processed only as quickly as the deferred values are realized. Returns a deferred which yields `true` when `source` is exhausted or `callback` yields `false`." [callback source] (let [complete (d/deferred) callback #(d/chain % callback (fn [result] (when (false? result) (d/success! complete true)) result))] (connect source (Callback. callback #(d/success! complete true) nil nil) nil) complete)) (defn connect-via "Feeds all messages from `src` into `callback`, with the understanding that they will eventually be propagated into `dst` in some form. The return value of `callback` should be a deferred yielding either `true` or `false`. When `false`, the downstream sink is assumed to be closed, and the connection is severed. Returns a deferred which yields `true` when `src` is exhausted or `callback` yields `false`." ([src callback dst] (connect-via src callback dst nil)) ([src callback dst options] (let [dst (->sink dst) complete (d/deferred) close-callback #(do (close! dst) (d/success! complete true))] (connect src (Callback. callback close-callback dst nil) options) complete))) (defn- connect-via-proxy ([src proxy dst] (connect-via-proxy src proxy dst nil)) ([src proxy dst options] (let [dst (->sink dst) proxy (->sink proxy) complete (d/deferred) close-callback #(do (close! proxy) (d/success! complete true))] (connect src (Callback. #(put! proxy %) close-callback dst nil) options) complete))) (defn drain-into "Takes all messages from `src` and puts them into `dst`, and returns a deferred that yields `true` once `src` is drained or `dst` is closed. If `src` is closed or drained, `dst` will not be closed." [src dst] (let [dst (->sink dst) complete (d/deferred)] (connect src (Callback. #(put! dst %) #(d/success! complete true) dst nil) {:description "drain-into"}) complete)) ;;; (defn stream->seq "Transforms a stream into a lazy sequence. If a `timeout-interval` is defined, the sequence will terminate if `timeout-interval` milliseconds elapses without a new event." ([s] (lazy-seq (let [x @(take! s ::none)] (when-not (identical? ::none x) (cons x (stream->seq s)))))) ([s timeout-interval] (lazy-seq (let [x @(try-take! s ::none timeout-interval ::none)] (when-not (identical? ::none x) (cons x (stream->seq s timeout-interval))))))) (defn- periodically- [stream period initial-delay f] (let [cancel (promise)] (deliver cancel (time/every period initial-delay (fn [] (try (let [d (if (closed? stream) (d/success-deferred false) (put! stream (f)))] (if (realized? d) (when-not @d (do (@cancel) (close! stream))) (do (@cancel) (d/chain' d (fn [x] (if-not x (close! stream) (periodically- stream period (- period (rem (System/currentTimeMillis) period)) f))))))) (catch Throwable e (@cancel) (close! stream) (log/error e "error in 'periodically' callback")))))))) (defn periodically "Creates a stream which emits the result of invoking `(f)` every `period` milliseconds." ([period initial-delay f] (let [s (stream 1)] (periodically- s period initial-delay f) (source-only s))) ([period f] (periodically period (- period (rem (System/currentTimeMillis) period)) f))) (declare zip) (defn transform "Takes a transducer `xform` and returns a source which applies it to source `s`. A buffer-size may optionally be defined for the output source." ([xform s] (transform xform 0 s)) ([xform buffer-size ^IEventSource s] (let [s' (stream buffer-size xform)] (connect s s' {:description {:op "transducer"}}) (source-only s')))) (defn map "Equivalent to Clojure's `map`, but for streams instead of sequences." ([f s] (let [s' (stream)] (connect-via s (fn [msg] (put! s' (f msg))) s' {:description {:op "map"}}) (source-only s'))) ([f s & rest] (map #(apply f %) (apply zip s rest)))) (defn realize-each "Takes a stream of potentially deferred values, and returns a stream of realized values." [s] (let [s' (stream)] (connect-via s (fn [msg] (-> msg (d/chain' #(put! s' %)) (d/catch' (fn [e] (log/error e "deferred realized as error, closing stream") (close! s') false)))) s' {:description {:op "realize-each"}}) (source-only s'))) (let [some-drained? (partial some #{::drained})] (defn zip "Takes n-many streams, and returns a single stream which will emit n-tuples representing a message from each stream." ([a] (map vector a)) ([a & rest] (let [srcs (list* a rest) intermediates (clj/repeatedly (count srcs) stream) dst (stream)] (doseq [[a b] (clj/map list srcs intermediates)] (connect-via a #(put! b %) b {:description {:op "zip"}})) (d/loop [] (d/chain' (->> intermediates (clj/map #(take! % ::drained)) (apply d/zip)) (fn [msgs] (if (some-drained? msgs) (do (close! dst) false) (put! dst msgs))) (fn [result] (when result (d/recur))))) (source-only dst))))) (defn filter "Equivalent to Clojure's `filter`, but for streams instead of sequences." [pred s] (let [s' (stream)] (connect-via s (fn [msg] (if (pred msg) (put! s' msg) (d/success-deferred true))) s' {:description {:op "filter"}}) (source-only s'))) (defn reductions "Equivalent to Clojure's `reductions`, but for streams instead of sequences." ([f s] (reductions f ::none s)) ([f initial-value s] (let [s' (stream) val (atom initial-value)] (d/chain' (if (identical? ::none initial-value) true (put! s' initial-value)) (fn [_] (connect-via s (fn [msg] (if (identical? ::none @val) (do (reset! val msg) (put! s' msg)) (-> msg (d/chain' (partial f @val) (fn [x] (reset! val x) (put! s' x))) (d/catch' (fn [e] (log/error e "error in reductions") (close! s) false))))) s'))) (source-only s')))) (defn reduce "Equivalent to Clojure's `reduce`, but returns a deferred representing the return value. The deferred will be realized once the stream is closed or if the accumulator functions returns a `reduced` value." ([f s] (reduce f ::none s)) ([f initial-value s] (-> (if (identical? ::none initial-value) (take! s ::none) initial-value) (d/chain' (fn [initial-value] (if (identical? ::none initial-value) (f) (d/loop [val initial-value] (-> (take! s ::none) (d/chain' (fn [x] (if (identical? ::none x) val (let [r (f val x)] (if (reduced? r) (deref r) (d/recur r)))))))))))))) (defn mapcat "Equivalent to Clojure's `mapcat`, but for streams instead of sequences." ([f s] (let [s' (stream)] (connect-via s (fn [msg] (d/loop [s (f msg)] (when-not (empty? s) (d/chain' (put! s' (first s)) (fn [_] (d/recur (rest s))))))) s' {:description {:op "mapcat"}}) (source-only s'))) ([f s & rest] (->> (apply zip s rest) (mapcat #(apply f %))))) (defn lazily-partition-by "Equivalent to Clojure's `partition-by`, but returns a stream of streams. This means that if a sub-stream is not completely consumed, the next sub-stream will never be emitted. Use with caution. If you're not totally sure you want a stream of streams, use `(transform (partition-by f))` instead." [f s] (let [in (stream) out (stream)] (connect-via-proxy s in out {:description {:op "lazily-partition-by"}}) ;; TODO: how is this represented in the topology? (d/loop [prev ::x, s' nil] (d/chain' (take! in ::none) (fn [msg] (if (identical? ::none msg) (do (when s' (close! s')) (close! out)) (let [curr (try (f msg) (catch Throwable e (close! in) (close! out) (log/error e "error in lazily-partition-by") ::error))] (when-not (identical? ::error curr) (if (= prev curr) (d/chain' (put! s' msg) (fn [_] (d/recur curr s'))) (let [s'' (stream)] (when s' (close! s')) (d/chain' (put! out s'') (fn [_] (put! s'' msg)) (fn [_] (d/recur curr s''))))))))))) (source-only out))) (defn concat "Takes a stream of streams, and flattens it into a single stream." [s] (let [in (stream) out (stream)] (connect-via-proxy s in out {:description {:op "concat"}}) (d/loop [] (d/chain' (take! in ::none) (fn [s'] (cond (closed? out) (close! s') (identical? ::none s') (do (close! out) s') :else (d/loop [] (d/chain' (take! s' ::none) (fn [msg] (if (identical? ::none msg) msg (put! out msg))) (fn [result] (case result false (do (close! s') (close! in)) ::none nil (d/recur))))))) (fn [result] (when-not (identical? ::none result) (d/recur))))) (source-only out))) ;;; (deftype+ BufferedStream [buf limit metric description ^AtomicLong buffer-size ^AtomicReference last-put buf+ handle mta] clojure.lang.IReference (meta [_] @mta) (resetMeta [_ m] (reset! mta m)) (alterMeta [_ f args] (apply swap! mta f args)) IEventStream (isSynchronous [_] false) (downstream [this] (manifold.stream.graph/downstream this)) (close [_] (.close ^IEventStream buf)) (description [_] (description (merge (manifold.stream/description buf) {:buffer-size (.get buffer-size) :buffer-capacity limit}))) (weakHandle [this ref-queue] (or @handle (do (compare-and-set! handle nil (WeakReference. this ref-queue)) @handle))) IEventSink (put [_ x blocking?] (let [size (metric x)] (let [val (d/chain' (.put ^IEventSink buf [size x] blocking?) (fn [result] (if result (do (buf+ size) (.get last-put)) false)))] (if blocking? @val val)))) (put [_ x blocking? timeout timeout-val] ;; TODO: this doesn't really time out, because that would ;; require consume-side filtering of messages (let [size (metric x)] (let [val (d/chain' (.put ^IEventSink buf [size x] blocking? timeout ::timeout) (fn [result] (cond (identical? result ::timeout) timeout-val (false? result) false :else (do (buf+ size) (.get last-put)))))] (if blocking? @val val)))) (isClosed [_] (.isClosed ^IEventSink buf)) (onClosed [_ callback] (.onClosed ^IEventSink buf callback)) IEventSource (take [_ default-val blocking?] (let [val (d/chain' (.take ^IEventSource buf default-val blocking?) (fn [x] (if (identical? default-val x) x (let [[size msg] x] (buf+ (- size)) msg))))] (if blocking? @val val))) (take [_ default-val blocking? timeout timeout-val] (let [val (d/chain' (.take ^IEventSource buf default-val blocking? timeout ::timeout) (fn [x] (cond (identical? ::timeout x) timeout-val (identical? default-val x) x :else (let [[size msg] x] (buf+ (- size)) msg))))] (if blocking? @val val))) (isDrained [_] (.isDrained ^IEventSource buf)) (onDrained [_ callback] (.onDrained ^IEventSource buf callback)) (connector [_ sink] (.connector ^IEventSource buf sink))) (defn buffered-stream "A stream which will buffer at most `limit` data, where the size of each message is defined by `(metric message)`." ([buffer-size] (buffered-stream (constantly 1) buffer-size)) ([metric limit] (buffered-stream metric limit identity)) ([metric limit description] (let [buf (stream Integer/MAX_VALUE) buffer-size (AtomicLong. 0) last-put (AtomicReference. (d/success-deferred true)) buf+ (fn [^long n] (locking last-put (let [buf' (.addAndGet buffer-size n) buf (unchecked-subtract buf' n)] (cond (and (<= buf' limit) (< limit buf)) (-> last-put .get (d/success! true)) (and (<= buf limit) (< limit buf')) (-> last-put (.getAndSet (d/deferred)) (d/success! true))))))] (BufferedStream. buf limit metric description buffer-size last-put buf+ (atom nil) (atom nil))))) (defn buffer "Takes a stream, and returns a stream which is a buffered view of that stream. The buffer size may either be measured in messages, or if a `metric` is defined, by the sum of `metric` mapped over all messages currently buffered." ([limit s] (let [s' (buffered-stream limit)] (connect s s') (source-only s'))) ([metric limit s] (let [s' (buffered-stream metric limit)] (connect s s') (source-only s')))) (defn batch "Batches messages, either into groups of fixed size, or according to upper bounds on size and latency, in milliseconds. By default, each message is of size `1`, but a custom `metric` function that returns the size of each message may be defined." ([batch-size s] (batch (constantly 1) batch-size nil s)) ([max-size max-latency s] (batch (constantly 1) max-size max-latency s)) ([metric max-size max-latency s] (assert (pos? max-size)) (let [buf (stream) s' (stream)] (connect-via-proxy s buf s' {:description {:op "batch"}}) (on-closed s' #(close! buf)) (d/loop [msgs [], size 0, earliest-message -1, last-message -1] (cond (or (== size max-size) (and (< max-size size) (== (count msgs) 1))) (d/chain' (put! s' msgs) (fn [_] (d/recur [] 0 -1 -1))) (> size max-size) (let [msg (peek msgs)] (d/chain' (put! s' (pop msgs)) (fn [_] (d/recur [msg] (metric msg) last-message last-message)))) :else (d/chain' (if (or (nil? max-latency) (neg? earliest-message) (empty? msgs)) (take! buf ::empty) (try-take! buf ::empty (- max-latency (- (System/currentTimeMillis) earliest-message)) ::timeout)) (fn [msg] (condp identical? msg ::empty (do (when-not (empty? msgs) (put! s' msgs)) (close! s')) ::timeout (d/chain' (when-not (empty? msgs) (put! s' msgs)) (fn [_] (d/recur [] 0 -1 -1))) (let [time (System/currentTimeMillis)] (d/recur (conj msgs msg) (+ size (metric msg)) (if (neg? earliest-message) time earliest-message) time))))))) (source-only s')))) (defn throttle "Limits the `max-rate` that messages are emitted, per second. The `max-backlog` dictates how much \"memory\" the throttling mechanism has, or how many messages it will emit immediately after a long interval without any messages. By default, this is set to one second's worth." ([max-rate s] (throttle max-rate max-rate s)) ([max-rate max-backlog s] (let [buf (stream) s' (stream) period (double (/ 1000 max-rate))] (connect-via-proxy s buf s' {:description {:op "throttle"}}) (on-closed s' #(close! buf)) (d/loop [backlog 0.0, read-start (System/currentTimeMillis)] (d/chain (take! buf ::none) (fn [msg] (if (identical? ::none msg) (do (close! s') false) (put! s' msg))) (fn [result] (when result (let [elapsed (double (- (System/currentTimeMillis) read-start)) backlog' (min (+ backlog (- (/ elapsed period) 1)) max-backlog)] (if (<= 1 backlog') (- backlog' 1.0) (d/timeout! (d/deferred) (- period elapsed) 0.0))))) (fn [backlog] (if backlog (d/recur backlog (System/currentTimeMillis)) (close! s))))) (source-only s')))) ;;; (alter-meta! #'->Callback assoc :private true) (alter-meta! #'->SinkProxy assoc :private true) (alter-meta! #'->SourceProxy assoc :private true) (alter-meta! #'->SplicedStream assoc :private true)
122781
(ns ^{:author "<NAME>" :doc "Methods for creating, transforming, and interacting with asynchronous streams of values."} manifold.stream (:refer-clojure :exclude [map filter mapcat reductions reduce concat]) (:require [clojure.core :as clj] [manifold.deferred :as d] [manifold.utils :as utils :refer [deftype+]] [manifold.time :as time] [manifold.stream [core :as core] [default :as default] random-access iterator queue seq deferred] [clojure.tools.logging :as log]) (:import [manifold.stream.core IEventSink IEventSource IEventStream] [java.lang.ref WeakReference] [java.util.concurrent CopyOnWriteArrayList ConcurrentHashMap BlockingQueue ArrayBlockingQueue LinkedBlockingQueue ConcurrentLinkedQueue TimeUnit] [java.util.concurrent.atomic AtomicReference AtomicLong] [java.util LinkedList Iterator])) (set! *unchecked-math* true) (utils/when-core-async (require 'manifold.stream.async)) ;;; (let [f (utils/fast-satisfies #'core/Sinkable)] (defn sinkable? [x] (or (instance? IEventSink x) (f x)))) (let [f (utils/fast-satisfies #'core/Sourceable)] (defn sourceable? [x] (or (instance? IEventSource x) (f x)))) (defn ->sink "Converts, if possible, the object to a Manifold sink, or `default-val` if it cannot. If no default value is given, an `IllegalArgumentException` is thrown." ([x] (let [x' (->sink x ::none)] (if (identical? ::none x') (throw (IllegalArgumentException. (str "cannot convert " (.getCanonicalName (class x)) " to sink"))) x'))) ([x default-val] (cond (instance? IEventSink x) x (sinkable? x) (core/to-sink x) :else default-val))) (defn ->source "Converts, if possible, the object to a Manifold source, or `default-val` if it cannot. If no default value is given, an `IllegalArgumentException` is thrown." ([x] (let [x' (->source x ::none)] (if (identical? ::none x') (throw (IllegalArgumentException. (str "cannot convert " (.getCanonicalName (class x)) " to source"))) x'))) ([x default-val] (cond (instance? IEventSource x) x (sourceable? x) (core/to-source x) :else default-val))) (deftype+ SinkProxy [^IEventSink sink] IEventStream (description [_] (.description ^IEventStream sink)) (isSynchronous [_] (.isSynchronous ^IEventStream sink)) (downstream [_] (.downstream ^IEventStream sink)) (close [_] (.close ^IEventStream sink)) (weakHandle [_ ref-queue] (.weakHandle ^IEventStream sink ref-queue)) IEventSink (put [_ x blocking?] (.put sink x blocking?)) (put [_ x blocking? timeout timeout-val] (.put sink x blocking? timeout timeout-val)) (isClosed [_] (.isClosed sink)) (onClosed [_ callback] (.onClosed sink callback))) (declare connect) (deftype+ SourceProxy [^IEventSource source] IEventStream (description [_] (.description ^IEventStream source)) (isSynchronous [_] (.isSynchronous ^IEventStream source)) (downstream [_] (.downstream ^IEventStream source)) (close [_] (.close ^IEventStream source)) (weakHandle [_ ref-queue] (.weakHandle ^IEventStream source ref-queue)) IEventSource (take [_ default-val blocking?] (.take source default-val blocking?)) (take [_ default-val blocking? timeout timeout-val] (.take source default-val blocking? timeout timeout-val)) (isDrained [_] (.isDrained source)) (onDrained [_ callback] (.onDrained source callback)) (connector [_ sink] (fn [_ sink options] (connect source sink options)))) (defn source-only "Returns a view of the stream which is only a source." [s] (SourceProxy. s)) (defn sink-only "Returns a view of the stream which is only a sink." [s] (SinkProxy. s)) (definline onto "Returns an identical stream whose deferred callbacks will be executed on `executor`." [executor s] `(manifold.stream.default/onto ~executor ~s)) ;;; (definline stream? "Returns true if the object is a Manifold stream." [x] `(instance? IEventStream ~x)) (definline source? "Returns true if the object is a Manifold source." [x] `(instance? IEventSource ~x)) (definline sink? "Returns true if the object is a Manifold sink." [x] `(instance? IEventSink ~x)) (definline description "Returns a description of the stream." [x] `(.description ~(with-meta x {:tag "manifold.stream.core.IEventStream"}))) (definline downstream "Returns all sinks downstream of the given source as a sequence of 2-tuples, with the first element containing the connection's description, and the second element containing the sink." [x] `(.downstream ~(with-meta x {:tag "manifold.stream.core.IEventStream"}))) (definline weak-handle "Returns a weak reference that can be used to construct topologies of streams." [x] `(.weakHandle ~(with-meta x {:tag "manifold.stream.core.IEventStream"}) nil)) (definline synchronous? "Returns true if the underlying abstraction behaves synchronously, using thread blocking to provide backpressure." [x] `(.isSynchronous ~(with-meta x {:tag "manifold.stream.core.IEventStream"}))) (definline close! "Closes a source or sink, so that it can't emit or accept any more messages." [sink] `(.close ~(with-meta sink {:tag "manifold.stream.core.IEventStream"}))) (definline closed? "Returns true if the event sink is closed." [sink] `(.isClosed ~(with-meta sink {:tag "manifold.stream.core.IEventSink"}))) (definline on-closed "Registers a no-arg callback which is invoked when the sink is closed." [sink callback] `(.onClosed ~(with-meta sink {:tag "manifold.stream.core.IEventSink"}) ~callback)) (definline drained? "Returns true if the event source is drained." [source] `(.isDrained ~(with-meta source {:tag "manifold.stream.core.IEventSource"}))) (definline on-drained "Registers a no-arg callback which is invoked when the source is drained." [source callback] `(.onDrained ~(with-meta source {:tag "manifold.stream.core.IEventSource"}) ~callback)) (defn put! "Puts a value into a sink, returning a deferred that yields `true` if it succeeds, and `false` if it fails. Guaranteed to be non-blocking." {:inline (fn [sink x] `(.put ~(with-meta sink {:tag "manifold.stream.core.IEventSink"}) ~x false))} ([^IEventSink sink x] (.put sink x false))) (defn put-all! "Puts all values into the sink, returning a deferred that yields `true` if all puts are successful, or `false` otherwise. If the sink provides backpressure, will pause. Guaranteed to be non-blocking." [^IEventSink sink msgs] (d/loop [msgs msgs] (if (empty? msgs) true (d/chain' (put! sink (first msgs)) (fn [result] (if result (d/recur (rest msgs)) false)))))) (defn try-put! "Puts a value into a stream if the put can successfully be completed in `timeout` milliseconds. Returns a promise that yields `true` if it succeeds, and `false` if it fails or times out. Guaranteed to be non-blocking. A special `timeout-val` may be specified, if it is important to differentiate between failure due to timeout and other failures." {:inline (fn ([sink x timeout] `(.put ~(with-meta sink {:tag "manifold.stream.core.IEventSink"}) ~x false ~timeout false)) ([sink x timeout timeout-val] `(.put ~(with-meta sink {:tag "manifold.stream.core.IEventSink"}) ~x false ~timeout ~timeout-val)))} ([^IEventSink sink x ^double timeout] (.put sink x false timeout false)) ([^IEventSink sink x ^double timeout timeout-val] (.put sink x false timeout timeout-val))) (defn take! "Takes a value from a stream, returning a deferred that yields the value when it is available, or `nil` if the take fails. Guaranteed to be non-blocking. A special `default-val` may be specified, if it is important to differentiate between actual `nil` values and failures." {:inline (fn ([source] `(.take ~(with-meta source {:tag "manifold.stream.core.IEventSource"}) nil false)) ([source default-val] `(.take ~(with-meta source {:tag "manifold.stream.core.IEventSource"}) ~default-val false)))} ([^IEventSource source] (.take source nil false)) ([^IEventSource source default-val] (.take source default-val false))) (defn try-take! "Takes a value from a stream, returning a deferred that yields the value if it is available within `timeout` milliseconds, or `nil` if it fails or times out. Guaranteed to be non-blocking. Special `timeout-val` and `default-val` values may be specified, if it is important to differentiate between actual `nil` values and timeouts/failures." {:inline (fn ([source timeout] `(.take ~(with-meta source {:tag "manifold.stream.core.IEventSource"}) nil false ~timeout nil)) ([source default-val timeout timeout-val] `(.take ~(with-meta source {:tag "manifold.stream.core.IEventSource"}) ~default-val false ~timeout ~timeout-val)))} ([^IEventSource source ^double timeout] (.take source nil false timeout nil)) ([^IEventSource source default-val ^double timeout timeout-val] (.take source default-val false timeout timeout-val))) ;;; (require '[manifold.stream.graph]) (defn connect "Connects a source to a sink, propagating all messages from the former into the latter. Optionally takes a map of parameters: |:---|:--- | `upstream?` | if closing the sink should always close the source, even if there are other sinks downstream of the source. Defaults to `false`. Note that if the sink is the only thing downstream of the source, the source will always be closed, unless it is permanent. | `downstream?` | if closing the source will close the sink. Defaults to `true`. | `timeout` | if defined, the maximum time, in milliseconds, that will be spent trying to put a message into the sink before closing it. Useful when there are multiple sinks downstream of a source, and you want to avoid a single backed up sink from blocking all the others. | `description` | describes the connection, useful for traversing the stream topology via `downstream`." {:arglists '[[source sink] [source sink {:keys [upstream? downstream? timeout description] :or {upstream? false downstream? true}}]]} ([source sink] (connect source sink nil)) ([^IEventSource source ^IEventSink sink options] (let [source (->source source) sink (->sink sink) connector (.connector ^IEventSource source sink)] (if connector (connector source sink options) (manifold.stream.graph/connect source sink options)) nil))) ;;; (defn stream "Returns a Manifold stream with a configurable `buffer-size`. If a capacity is specified, `put!` will yield `true` when the message is in the buffer. Otherwise it will only yield `true` once it has been consumed. `xform` is an optional transducer, which will transform all messages that are enqueued via `put!` before they are dequeued via `take!`. `executor`, if defined, specifies which java.util.concurrent.Executor will be used to handle the deferreds returned by `put!` and `take!`." ([] (default/stream)) ([buffer-size] (default/stream buffer-size)) ([buffer-size xform] (default/stream buffer-size xform)) ([buffer-size xform executor] (default/stream buffer-size xform executor))) (defn stream* "An alternate way to build a stream, via a map of parameters. |:---|:--- | `permanent?` | if `true`, the channel cannot be closed | `buffer-size` | the number of messages that can accumulate in the channel before backpressure is applied | `description` | the description of the channel, which is a single arg function that takes the base properties and returns an enriched map. | `executor` | the `java.util.concurrent.Executor` that will execute all callbacks registered on the deferreds returns by `put!` and `take!` | `xform` | a transducer which will transform all messages that are enqueued via `put!` before they are dequeued via `take!`." {:arglists '[[{:keys [permanent? buffer-size description executor xform]}]]} [options] (default/stream* options)) ;;; (deftype+ SplicedStream [^IEventSink sink ^IEventSource source ^:volatile-mutable mta lock] clojure.lang.IReference (meta [_] mta) (resetMeta [_ m] (utils/with-lock* lock (set! mta m))) (alterMeta [_ f args] (utils/with-lock* lock (set! mta (apply f mta args)))) IEventStream (isSynchronous [_] (or (synchronous? sink) (synchronous? source))) (description [_] {:type "splice" :sink (.description ^IEventStream sink) :source (.description ^IEventStream source)}) (downstream [_] (.downstream ^IEventStream source)) (close [_] (.close ^IEventStream source) (.close ^IEventStream sink)) (weakHandle [_ ref-queue] (.weakHandle ^IEventStream source ref-queue)) IEventSink (put [_ x blocking?] (.put sink x blocking?)) (put [_ x blocking? timeout timeout-val] (.put sink x blocking? timeout timeout-val)) (isClosed [_] (.isClosed sink)) (onClosed [_ callback] (.onClosed sink callback)) IEventSource (take [_ default-val blocking?] (.take source default-val blocking?)) (take [_ default-val blocking? timeout timeout-val] (.take source default-val blocking? timeout timeout-val)) (isDrained [_] (.isDrained source)) (onDrained [_ callback] (.onDrained source callback)) (connector [_ sink] (.connector source sink))) (defn splice "Splices together two halves of a stream, such that all messages enqueued via `put!` go into `sink`, and all messages dequeued via `take!` come from `source`." [sink source] (SplicedStream. (->sink sink) (->source source) nil (utils/mutex))) ;;; (deftype+ Callback [f close-callback ^IEventSink downstream constant-response] IEventStream (isSynchronous [_] false) (close [_] (when close-callback (close-callback))) (weakHandle [_ ref-queue] (if downstream (.weakHandle ^IEventStream downstream ref-queue) (throw (IllegalArgumentException.)))) (description [_] {:type "callback"}) (downstream [_] (when downstream [[(description downstream) downstream]])) IEventSink (put [this x _] (try (let [rsp (f x)] (if (nil? constant-response) rsp constant-response)) (catch Throwable e (log/error e "error in stream handler") (.close this) (d/success-deferred false)))) (put [this x default-val _ _] (.put this x default-val)) (isClosed [_] (if downstream (.isClosed downstream) false)) (onClosed [_ callback] (when downstream (.onClosed downstream callback)))) (let [result (d/success-deferred true)] (defn consume "Feeds all messages from `source` into `callback`. Messages will be processed as quickly as the callback can be executed. Returns a deferred which yields `true` when `source` is exhausted." [callback source] (let [complete (d/deferred)] (connect source (Callback. callback #(d/success! complete true) nil result) nil) complete))) (defn consume-async "Feeds all messages from `source` into `callback`, which must return a deferred yielding `true` or `false`. If the returned value yields `false`, the consumption will be cancelled. Messages will be processed only as quickly as the deferred values are realized. Returns a deferred which yields `true` when `source` is exhausted or `callback` yields `false`." [callback source] (let [complete (d/deferred) callback #(d/chain % callback (fn [result] (when (false? result) (d/success! complete true)) result))] (connect source (Callback. callback #(d/success! complete true) nil nil) nil) complete)) (defn connect-via "Feeds all messages from `src` into `callback`, with the understanding that they will eventually be propagated into `dst` in some form. The return value of `callback` should be a deferred yielding either `true` or `false`. When `false`, the downstream sink is assumed to be closed, and the connection is severed. Returns a deferred which yields `true` when `src` is exhausted or `callback` yields `false`." ([src callback dst] (connect-via src callback dst nil)) ([src callback dst options] (let [dst (->sink dst) complete (d/deferred) close-callback #(do (close! dst) (d/success! complete true))] (connect src (Callback. callback close-callback dst nil) options) complete))) (defn- connect-via-proxy ([src proxy dst] (connect-via-proxy src proxy dst nil)) ([src proxy dst options] (let [dst (->sink dst) proxy (->sink proxy) complete (d/deferred) close-callback #(do (close! proxy) (d/success! complete true))] (connect src (Callback. #(put! proxy %) close-callback dst nil) options) complete))) (defn drain-into "Takes all messages from `src` and puts them into `dst`, and returns a deferred that yields `true` once `src` is drained or `dst` is closed. If `src` is closed or drained, `dst` will not be closed." [src dst] (let [dst (->sink dst) complete (d/deferred)] (connect src (Callback. #(put! dst %) #(d/success! complete true) dst nil) {:description "drain-into"}) complete)) ;;; (defn stream->seq "Transforms a stream into a lazy sequence. If a `timeout-interval` is defined, the sequence will terminate if `timeout-interval` milliseconds elapses without a new event." ([s] (lazy-seq (let [x @(take! s ::none)] (when-not (identical? ::none x) (cons x (stream->seq s)))))) ([s timeout-interval] (lazy-seq (let [x @(try-take! s ::none timeout-interval ::none)] (when-not (identical? ::none x) (cons x (stream->seq s timeout-interval))))))) (defn- periodically- [stream period initial-delay f] (let [cancel (promise)] (deliver cancel (time/every period initial-delay (fn [] (try (let [d (if (closed? stream) (d/success-deferred false) (put! stream (f)))] (if (realized? d) (when-not @d (do (@cancel) (close! stream))) (do (@cancel) (d/chain' d (fn [x] (if-not x (close! stream) (periodically- stream period (- period (rem (System/currentTimeMillis) period)) f))))))) (catch Throwable e (@cancel) (close! stream) (log/error e "error in 'periodically' callback")))))))) (defn periodically "Creates a stream which emits the result of invoking `(f)` every `period` milliseconds." ([period initial-delay f] (let [s (stream 1)] (periodically- s period initial-delay f) (source-only s))) ([period f] (periodically period (- period (rem (System/currentTimeMillis) period)) f))) (declare zip) (defn transform "Takes a transducer `xform` and returns a source which applies it to source `s`. A buffer-size may optionally be defined for the output source." ([xform s] (transform xform 0 s)) ([xform buffer-size ^IEventSource s] (let [s' (stream buffer-size xform)] (connect s s' {:description {:op "transducer"}}) (source-only s')))) (defn map "Equivalent to Clojure's `map`, but for streams instead of sequences." ([f s] (let [s' (stream)] (connect-via s (fn [msg] (put! s' (f msg))) s' {:description {:op "map"}}) (source-only s'))) ([f s & rest] (map #(apply f %) (apply zip s rest)))) (defn realize-each "Takes a stream of potentially deferred values, and returns a stream of realized values." [s] (let [s' (stream)] (connect-via s (fn [msg] (-> msg (d/chain' #(put! s' %)) (d/catch' (fn [e] (log/error e "deferred realized as error, closing stream") (close! s') false)))) s' {:description {:op "realize-each"}}) (source-only s'))) (let [some-drained? (partial some #{::drained})] (defn zip "Takes n-many streams, and returns a single stream which will emit n-tuples representing a message from each stream." ([a] (map vector a)) ([a & rest] (let [srcs (list* a rest) intermediates (clj/repeatedly (count srcs) stream) dst (stream)] (doseq [[a b] (clj/map list srcs intermediates)] (connect-via a #(put! b %) b {:description {:op "zip"}})) (d/loop [] (d/chain' (->> intermediates (clj/map #(take! % ::drained)) (apply d/zip)) (fn [msgs] (if (some-drained? msgs) (do (close! dst) false) (put! dst msgs))) (fn [result] (when result (d/recur))))) (source-only dst))))) (defn filter "Equivalent to Clojure's `filter`, but for streams instead of sequences." [pred s] (let [s' (stream)] (connect-via s (fn [msg] (if (pred msg) (put! s' msg) (d/success-deferred true))) s' {:description {:op "filter"}}) (source-only s'))) (defn reductions "Equivalent to Clojure's `reductions`, but for streams instead of sequences." ([f s] (reductions f ::none s)) ([f initial-value s] (let [s' (stream) val (atom initial-value)] (d/chain' (if (identical? ::none initial-value) true (put! s' initial-value)) (fn [_] (connect-via s (fn [msg] (if (identical? ::none @val) (do (reset! val msg) (put! s' msg)) (-> msg (d/chain' (partial f @val) (fn [x] (reset! val x) (put! s' x))) (d/catch' (fn [e] (log/error e "error in reductions") (close! s) false))))) s'))) (source-only s')))) (defn reduce "Equivalent to Clojure's `reduce`, but returns a deferred representing the return value. The deferred will be realized once the stream is closed or if the accumulator functions returns a `reduced` value." ([f s] (reduce f ::none s)) ([f initial-value s] (-> (if (identical? ::none initial-value) (take! s ::none) initial-value) (d/chain' (fn [initial-value] (if (identical? ::none initial-value) (f) (d/loop [val initial-value] (-> (take! s ::none) (d/chain' (fn [x] (if (identical? ::none x) val (let [r (f val x)] (if (reduced? r) (deref r) (d/recur r)))))))))))))) (defn mapcat "Equivalent to Clojure's `mapcat`, but for streams instead of sequences." ([f s] (let [s' (stream)] (connect-via s (fn [msg] (d/loop [s (f msg)] (when-not (empty? s) (d/chain' (put! s' (first s)) (fn [_] (d/recur (rest s))))))) s' {:description {:op "mapcat"}}) (source-only s'))) ([f s & rest] (->> (apply zip s rest) (mapcat #(apply f %))))) (defn lazily-partition-by "Equivalent to Clojure's `partition-by`, but returns a stream of streams. This means that if a sub-stream is not completely consumed, the next sub-stream will never be emitted. Use with caution. If you're not totally sure you want a stream of streams, use `(transform (partition-by f))` instead." [f s] (let [in (stream) out (stream)] (connect-via-proxy s in out {:description {:op "lazily-partition-by"}}) ;; TODO: how is this represented in the topology? (d/loop [prev ::x, s' nil] (d/chain' (take! in ::none) (fn [msg] (if (identical? ::none msg) (do (when s' (close! s')) (close! out)) (let [curr (try (f msg) (catch Throwable e (close! in) (close! out) (log/error e "error in lazily-partition-by") ::error))] (when-not (identical? ::error curr) (if (= prev curr) (d/chain' (put! s' msg) (fn [_] (d/recur curr s'))) (let [s'' (stream)] (when s' (close! s')) (d/chain' (put! out s'') (fn [_] (put! s'' msg)) (fn [_] (d/recur curr s''))))))))))) (source-only out))) (defn concat "Takes a stream of streams, and flattens it into a single stream." [s] (let [in (stream) out (stream)] (connect-via-proxy s in out {:description {:op "concat"}}) (d/loop [] (d/chain' (take! in ::none) (fn [s'] (cond (closed? out) (close! s') (identical? ::none s') (do (close! out) s') :else (d/loop [] (d/chain' (take! s' ::none) (fn [msg] (if (identical? ::none msg) msg (put! out msg))) (fn [result] (case result false (do (close! s') (close! in)) ::none nil (d/recur))))))) (fn [result] (when-not (identical? ::none result) (d/recur))))) (source-only out))) ;;; (deftype+ BufferedStream [buf limit metric description ^AtomicLong buffer-size ^AtomicReference last-put buf+ handle mta] clojure.lang.IReference (meta [_] @mta) (resetMeta [_ m] (reset! mta m)) (alterMeta [_ f args] (apply swap! mta f args)) IEventStream (isSynchronous [_] false) (downstream [this] (manifold.stream.graph/downstream this)) (close [_] (.close ^IEventStream buf)) (description [_] (description (merge (manifold.stream/description buf) {:buffer-size (.get buffer-size) :buffer-capacity limit}))) (weakHandle [this ref-queue] (or @handle (do (compare-and-set! handle nil (WeakReference. this ref-queue)) @handle))) IEventSink (put [_ x blocking?] (let [size (metric x)] (let [val (d/chain' (.put ^IEventSink buf [size x] blocking?) (fn [result] (if result (do (buf+ size) (.get last-put)) false)))] (if blocking? @val val)))) (put [_ x blocking? timeout timeout-val] ;; TODO: this doesn't really time out, because that would ;; require consume-side filtering of messages (let [size (metric x)] (let [val (d/chain' (.put ^IEventSink buf [size x] blocking? timeout ::timeout) (fn [result] (cond (identical? result ::timeout) timeout-val (false? result) false :else (do (buf+ size) (.get last-put)))))] (if blocking? @val val)))) (isClosed [_] (.isClosed ^IEventSink buf)) (onClosed [_ callback] (.onClosed ^IEventSink buf callback)) IEventSource (take [_ default-val blocking?] (let [val (d/chain' (.take ^IEventSource buf default-val blocking?) (fn [x] (if (identical? default-val x) x (let [[size msg] x] (buf+ (- size)) msg))))] (if blocking? @val val))) (take [_ default-val blocking? timeout timeout-val] (let [val (d/chain' (.take ^IEventSource buf default-val blocking? timeout ::timeout) (fn [x] (cond (identical? ::timeout x) timeout-val (identical? default-val x) x :else (let [[size msg] x] (buf+ (- size)) msg))))] (if blocking? @val val))) (isDrained [_] (.isDrained ^IEventSource buf)) (onDrained [_ callback] (.onDrained ^IEventSource buf callback)) (connector [_ sink] (.connector ^IEventSource buf sink))) (defn buffered-stream "A stream which will buffer at most `limit` data, where the size of each message is defined by `(metric message)`." ([buffer-size] (buffered-stream (constantly 1) buffer-size)) ([metric limit] (buffered-stream metric limit identity)) ([metric limit description] (let [buf (stream Integer/MAX_VALUE) buffer-size (AtomicLong. 0) last-put (AtomicReference. (d/success-deferred true)) buf+ (fn [^long n] (locking last-put (let [buf' (.addAndGet buffer-size n) buf (unchecked-subtract buf' n)] (cond (and (<= buf' limit) (< limit buf)) (-> last-put .get (d/success! true)) (and (<= buf limit) (< limit buf')) (-> last-put (.getAndSet (d/deferred)) (d/success! true))))))] (BufferedStream. buf limit metric description buffer-size last-put buf+ (atom nil) (atom nil))))) (defn buffer "Takes a stream, and returns a stream which is a buffered view of that stream. The buffer size may either be measured in messages, or if a `metric` is defined, by the sum of `metric` mapped over all messages currently buffered." ([limit s] (let [s' (buffered-stream limit)] (connect s s') (source-only s'))) ([metric limit s] (let [s' (buffered-stream metric limit)] (connect s s') (source-only s')))) (defn batch "Batches messages, either into groups of fixed size, or according to upper bounds on size and latency, in milliseconds. By default, each message is of size `1`, but a custom `metric` function that returns the size of each message may be defined." ([batch-size s] (batch (constantly 1) batch-size nil s)) ([max-size max-latency s] (batch (constantly 1) max-size max-latency s)) ([metric max-size max-latency s] (assert (pos? max-size)) (let [buf (stream) s' (stream)] (connect-via-proxy s buf s' {:description {:op "batch"}}) (on-closed s' #(close! buf)) (d/loop [msgs [], size 0, earliest-message -1, last-message -1] (cond (or (== size max-size) (and (< max-size size) (== (count msgs) 1))) (d/chain' (put! s' msgs) (fn [_] (d/recur [] 0 -1 -1))) (> size max-size) (let [msg (peek msgs)] (d/chain' (put! s' (pop msgs)) (fn [_] (d/recur [msg] (metric msg) last-message last-message)))) :else (d/chain' (if (or (nil? max-latency) (neg? earliest-message) (empty? msgs)) (take! buf ::empty) (try-take! buf ::empty (- max-latency (- (System/currentTimeMillis) earliest-message)) ::timeout)) (fn [msg] (condp identical? msg ::empty (do (when-not (empty? msgs) (put! s' msgs)) (close! s')) ::timeout (d/chain' (when-not (empty? msgs) (put! s' msgs)) (fn [_] (d/recur [] 0 -1 -1))) (let [time (System/currentTimeMillis)] (d/recur (conj msgs msg) (+ size (metric msg)) (if (neg? earliest-message) time earliest-message) time))))))) (source-only s')))) (defn throttle "Limits the `max-rate` that messages are emitted, per second. The `max-backlog` dictates how much \"memory\" the throttling mechanism has, or how many messages it will emit immediately after a long interval without any messages. By default, this is set to one second's worth." ([max-rate s] (throttle max-rate max-rate s)) ([max-rate max-backlog s] (let [buf (stream) s' (stream) period (double (/ 1000 max-rate))] (connect-via-proxy s buf s' {:description {:op "throttle"}}) (on-closed s' #(close! buf)) (d/loop [backlog 0.0, read-start (System/currentTimeMillis)] (d/chain (take! buf ::none) (fn [msg] (if (identical? ::none msg) (do (close! s') false) (put! s' msg))) (fn [result] (when result (let [elapsed (double (- (System/currentTimeMillis) read-start)) backlog' (min (+ backlog (- (/ elapsed period) 1)) max-backlog)] (if (<= 1 backlog') (- backlog' 1.0) (d/timeout! (d/deferred) (- period elapsed) 0.0))))) (fn [backlog] (if backlog (d/recur backlog (System/currentTimeMillis)) (close! s))))) (source-only s')))) ;;; (alter-meta! #'->Callback assoc :private true) (alter-meta! #'->SinkProxy assoc :private true) (alter-meta! #'->SourceProxy assoc :private true) (alter-meta! #'->SplicedStream assoc :private true)
true
(ns ^{:author "PI:NAME:<NAME>END_PI" :doc "Methods for creating, transforming, and interacting with asynchronous streams of values."} manifold.stream (:refer-clojure :exclude [map filter mapcat reductions reduce concat]) (:require [clojure.core :as clj] [manifold.deferred :as d] [manifold.utils :as utils :refer [deftype+]] [manifold.time :as time] [manifold.stream [core :as core] [default :as default] random-access iterator queue seq deferred] [clojure.tools.logging :as log]) (:import [manifold.stream.core IEventSink IEventSource IEventStream] [java.lang.ref WeakReference] [java.util.concurrent CopyOnWriteArrayList ConcurrentHashMap BlockingQueue ArrayBlockingQueue LinkedBlockingQueue ConcurrentLinkedQueue TimeUnit] [java.util.concurrent.atomic AtomicReference AtomicLong] [java.util LinkedList Iterator])) (set! *unchecked-math* true) (utils/when-core-async (require 'manifold.stream.async)) ;;; (let [f (utils/fast-satisfies #'core/Sinkable)] (defn sinkable? [x] (or (instance? IEventSink x) (f x)))) (let [f (utils/fast-satisfies #'core/Sourceable)] (defn sourceable? [x] (or (instance? IEventSource x) (f x)))) (defn ->sink "Converts, if possible, the object to a Manifold sink, or `default-val` if it cannot. If no default value is given, an `IllegalArgumentException` is thrown." ([x] (let [x' (->sink x ::none)] (if (identical? ::none x') (throw (IllegalArgumentException. (str "cannot convert " (.getCanonicalName (class x)) " to sink"))) x'))) ([x default-val] (cond (instance? IEventSink x) x (sinkable? x) (core/to-sink x) :else default-val))) (defn ->source "Converts, if possible, the object to a Manifold source, or `default-val` if it cannot. If no default value is given, an `IllegalArgumentException` is thrown." ([x] (let [x' (->source x ::none)] (if (identical? ::none x') (throw (IllegalArgumentException. (str "cannot convert " (.getCanonicalName (class x)) " to source"))) x'))) ([x default-val] (cond (instance? IEventSource x) x (sourceable? x) (core/to-source x) :else default-val))) (deftype+ SinkProxy [^IEventSink sink] IEventStream (description [_] (.description ^IEventStream sink)) (isSynchronous [_] (.isSynchronous ^IEventStream sink)) (downstream [_] (.downstream ^IEventStream sink)) (close [_] (.close ^IEventStream sink)) (weakHandle [_ ref-queue] (.weakHandle ^IEventStream sink ref-queue)) IEventSink (put [_ x blocking?] (.put sink x blocking?)) (put [_ x blocking? timeout timeout-val] (.put sink x blocking? timeout timeout-val)) (isClosed [_] (.isClosed sink)) (onClosed [_ callback] (.onClosed sink callback))) (declare connect) (deftype+ SourceProxy [^IEventSource source] IEventStream (description [_] (.description ^IEventStream source)) (isSynchronous [_] (.isSynchronous ^IEventStream source)) (downstream [_] (.downstream ^IEventStream source)) (close [_] (.close ^IEventStream source)) (weakHandle [_ ref-queue] (.weakHandle ^IEventStream source ref-queue)) IEventSource (take [_ default-val blocking?] (.take source default-val blocking?)) (take [_ default-val blocking? timeout timeout-val] (.take source default-val blocking? timeout timeout-val)) (isDrained [_] (.isDrained source)) (onDrained [_ callback] (.onDrained source callback)) (connector [_ sink] (fn [_ sink options] (connect source sink options)))) (defn source-only "Returns a view of the stream which is only a source." [s] (SourceProxy. s)) (defn sink-only "Returns a view of the stream which is only a sink." [s] (SinkProxy. s)) (definline onto "Returns an identical stream whose deferred callbacks will be executed on `executor`." [executor s] `(manifold.stream.default/onto ~executor ~s)) ;;; (definline stream? "Returns true if the object is a Manifold stream." [x] `(instance? IEventStream ~x)) (definline source? "Returns true if the object is a Manifold source." [x] `(instance? IEventSource ~x)) (definline sink? "Returns true if the object is a Manifold sink." [x] `(instance? IEventSink ~x)) (definline description "Returns a description of the stream." [x] `(.description ~(with-meta x {:tag "manifold.stream.core.IEventStream"}))) (definline downstream "Returns all sinks downstream of the given source as a sequence of 2-tuples, with the first element containing the connection's description, and the second element containing the sink." [x] `(.downstream ~(with-meta x {:tag "manifold.stream.core.IEventStream"}))) (definline weak-handle "Returns a weak reference that can be used to construct topologies of streams." [x] `(.weakHandle ~(with-meta x {:tag "manifold.stream.core.IEventStream"}) nil)) (definline synchronous? "Returns true if the underlying abstraction behaves synchronously, using thread blocking to provide backpressure." [x] `(.isSynchronous ~(with-meta x {:tag "manifold.stream.core.IEventStream"}))) (definline close! "Closes a source or sink, so that it can't emit or accept any more messages." [sink] `(.close ~(with-meta sink {:tag "manifold.stream.core.IEventStream"}))) (definline closed? "Returns true if the event sink is closed." [sink] `(.isClosed ~(with-meta sink {:tag "manifold.stream.core.IEventSink"}))) (definline on-closed "Registers a no-arg callback which is invoked when the sink is closed." [sink callback] `(.onClosed ~(with-meta sink {:tag "manifold.stream.core.IEventSink"}) ~callback)) (definline drained? "Returns true if the event source is drained." [source] `(.isDrained ~(with-meta source {:tag "manifold.stream.core.IEventSource"}))) (definline on-drained "Registers a no-arg callback which is invoked when the source is drained." [source callback] `(.onDrained ~(with-meta source {:tag "manifold.stream.core.IEventSource"}) ~callback)) (defn put! "Puts a value into a sink, returning a deferred that yields `true` if it succeeds, and `false` if it fails. Guaranteed to be non-blocking." {:inline (fn [sink x] `(.put ~(with-meta sink {:tag "manifold.stream.core.IEventSink"}) ~x false))} ([^IEventSink sink x] (.put sink x false))) (defn put-all! "Puts all values into the sink, returning a deferred that yields `true` if all puts are successful, or `false` otherwise. If the sink provides backpressure, will pause. Guaranteed to be non-blocking." [^IEventSink sink msgs] (d/loop [msgs msgs] (if (empty? msgs) true (d/chain' (put! sink (first msgs)) (fn [result] (if result (d/recur (rest msgs)) false)))))) (defn try-put! "Puts a value into a stream if the put can successfully be completed in `timeout` milliseconds. Returns a promise that yields `true` if it succeeds, and `false` if it fails or times out. Guaranteed to be non-blocking. A special `timeout-val` may be specified, if it is important to differentiate between failure due to timeout and other failures." {:inline (fn ([sink x timeout] `(.put ~(with-meta sink {:tag "manifold.stream.core.IEventSink"}) ~x false ~timeout false)) ([sink x timeout timeout-val] `(.put ~(with-meta sink {:tag "manifold.stream.core.IEventSink"}) ~x false ~timeout ~timeout-val)))} ([^IEventSink sink x ^double timeout] (.put sink x false timeout false)) ([^IEventSink sink x ^double timeout timeout-val] (.put sink x false timeout timeout-val))) (defn take! "Takes a value from a stream, returning a deferred that yields the value when it is available, or `nil` if the take fails. Guaranteed to be non-blocking. A special `default-val` may be specified, if it is important to differentiate between actual `nil` values and failures." {:inline (fn ([source] `(.take ~(with-meta source {:tag "manifold.stream.core.IEventSource"}) nil false)) ([source default-val] `(.take ~(with-meta source {:tag "manifold.stream.core.IEventSource"}) ~default-val false)))} ([^IEventSource source] (.take source nil false)) ([^IEventSource source default-val] (.take source default-val false))) (defn try-take! "Takes a value from a stream, returning a deferred that yields the value if it is available within `timeout` milliseconds, or `nil` if it fails or times out. Guaranteed to be non-blocking. Special `timeout-val` and `default-val` values may be specified, if it is important to differentiate between actual `nil` values and timeouts/failures." {:inline (fn ([source timeout] `(.take ~(with-meta source {:tag "manifold.stream.core.IEventSource"}) nil false ~timeout nil)) ([source default-val timeout timeout-val] `(.take ~(with-meta source {:tag "manifold.stream.core.IEventSource"}) ~default-val false ~timeout ~timeout-val)))} ([^IEventSource source ^double timeout] (.take source nil false timeout nil)) ([^IEventSource source default-val ^double timeout timeout-val] (.take source default-val false timeout timeout-val))) ;;; (require '[manifold.stream.graph]) (defn connect "Connects a source to a sink, propagating all messages from the former into the latter. Optionally takes a map of parameters: |:---|:--- | `upstream?` | if closing the sink should always close the source, even if there are other sinks downstream of the source. Defaults to `false`. Note that if the sink is the only thing downstream of the source, the source will always be closed, unless it is permanent. | `downstream?` | if closing the source will close the sink. Defaults to `true`. | `timeout` | if defined, the maximum time, in milliseconds, that will be spent trying to put a message into the sink before closing it. Useful when there are multiple sinks downstream of a source, and you want to avoid a single backed up sink from blocking all the others. | `description` | describes the connection, useful for traversing the stream topology via `downstream`." {:arglists '[[source sink] [source sink {:keys [upstream? downstream? timeout description] :or {upstream? false downstream? true}}]]} ([source sink] (connect source sink nil)) ([^IEventSource source ^IEventSink sink options] (let [source (->source source) sink (->sink sink) connector (.connector ^IEventSource source sink)] (if connector (connector source sink options) (manifold.stream.graph/connect source sink options)) nil))) ;;; (defn stream "Returns a Manifold stream with a configurable `buffer-size`. If a capacity is specified, `put!` will yield `true` when the message is in the buffer. Otherwise it will only yield `true` once it has been consumed. `xform` is an optional transducer, which will transform all messages that are enqueued via `put!` before they are dequeued via `take!`. `executor`, if defined, specifies which java.util.concurrent.Executor will be used to handle the deferreds returned by `put!` and `take!`." ([] (default/stream)) ([buffer-size] (default/stream buffer-size)) ([buffer-size xform] (default/stream buffer-size xform)) ([buffer-size xform executor] (default/stream buffer-size xform executor))) (defn stream* "An alternate way to build a stream, via a map of parameters. |:---|:--- | `permanent?` | if `true`, the channel cannot be closed | `buffer-size` | the number of messages that can accumulate in the channel before backpressure is applied | `description` | the description of the channel, which is a single arg function that takes the base properties and returns an enriched map. | `executor` | the `java.util.concurrent.Executor` that will execute all callbacks registered on the deferreds returns by `put!` and `take!` | `xform` | a transducer which will transform all messages that are enqueued via `put!` before they are dequeued via `take!`." {:arglists '[[{:keys [permanent? buffer-size description executor xform]}]]} [options] (default/stream* options)) ;;; (deftype+ SplicedStream [^IEventSink sink ^IEventSource source ^:volatile-mutable mta lock] clojure.lang.IReference (meta [_] mta) (resetMeta [_ m] (utils/with-lock* lock (set! mta m))) (alterMeta [_ f args] (utils/with-lock* lock (set! mta (apply f mta args)))) IEventStream (isSynchronous [_] (or (synchronous? sink) (synchronous? source))) (description [_] {:type "splice" :sink (.description ^IEventStream sink) :source (.description ^IEventStream source)}) (downstream [_] (.downstream ^IEventStream source)) (close [_] (.close ^IEventStream source) (.close ^IEventStream sink)) (weakHandle [_ ref-queue] (.weakHandle ^IEventStream source ref-queue)) IEventSink (put [_ x blocking?] (.put sink x blocking?)) (put [_ x blocking? timeout timeout-val] (.put sink x blocking? timeout timeout-val)) (isClosed [_] (.isClosed sink)) (onClosed [_ callback] (.onClosed sink callback)) IEventSource (take [_ default-val blocking?] (.take source default-val blocking?)) (take [_ default-val blocking? timeout timeout-val] (.take source default-val blocking? timeout timeout-val)) (isDrained [_] (.isDrained source)) (onDrained [_ callback] (.onDrained source callback)) (connector [_ sink] (.connector source sink))) (defn splice "Splices together two halves of a stream, such that all messages enqueued via `put!` go into `sink`, and all messages dequeued via `take!` come from `source`." [sink source] (SplicedStream. (->sink sink) (->source source) nil (utils/mutex))) ;;; (deftype+ Callback [f close-callback ^IEventSink downstream constant-response] IEventStream (isSynchronous [_] false) (close [_] (when close-callback (close-callback))) (weakHandle [_ ref-queue] (if downstream (.weakHandle ^IEventStream downstream ref-queue) (throw (IllegalArgumentException.)))) (description [_] {:type "callback"}) (downstream [_] (when downstream [[(description downstream) downstream]])) IEventSink (put [this x _] (try (let [rsp (f x)] (if (nil? constant-response) rsp constant-response)) (catch Throwable e (log/error e "error in stream handler") (.close this) (d/success-deferred false)))) (put [this x default-val _ _] (.put this x default-val)) (isClosed [_] (if downstream (.isClosed downstream) false)) (onClosed [_ callback] (when downstream (.onClosed downstream callback)))) (let [result (d/success-deferred true)] (defn consume "Feeds all messages from `source` into `callback`. Messages will be processed as quickly as the callback can be executed. Returns a deferred which yields `true` when `source` is exhausted." [callback source] (let [complete (d/deferred)] (connect source (Callback. callback #(d/success! complete true) nil result) nil) complete))) (defn consume-async "Feeds all messages from `source` into `callback`, which must return a deferred yielding `true` or `false`. If the returned value yields `false`, the consumption will be cancelled. Messages will be processed only as quickly as the deferred values are realized. Returns a deferred which yields `true` when `source` is exhausted or `callback` yields `false`." [callback source] (let [complete (d/deferred) callback #(d/chain % callback (fn [result] (when (false? result) (d/success! complete true)) result))] (connect source (Callback. callback #(d/success! complete true) nil nil) nil) complete)) (defn connect-via "Feeds all messages from `src` into `callback`, with the understanding that they will eventually be propagated into `dst` in some form. The return value of `callback` should be a deferred yielding either `true` or `false`. When `false`, the downstream sink is assumed to be closed, and the connection is severed. Returns a deferred which yields `true` when `src` is exhausted or `callback` yields `false`." ([src callback dst] (connect-via src callback dst nil)) ([src callback dst options] (let [dst (->sink dst) complete (d/deferred) close-callback #(do (close! dst) (d/success! complete true))] (connect src (Callback. callback close-callback dst nil) options) complete))) (defn- connect-via-proxy ([src proxy dst] (connect-via-proxy src proxy dst nil)) ([src proxy dst options] (let [dst (->sink dst) proxy (->sink proxy) complete (d/deferred) close-callback #(do (close! proxy) (d/success! complete true))] (connect src (Callback. #(put! proxy %) close-callback dst nil) options) complete))) (defn drain-into "Takes all messages from `src` and puts them into `dst`, and returns a deferred that yields `true` once `src` is drained or `dst` is closed. If `src` is closed or drained, `dst` will not be closed." [src dst] (let [dst (->sink dst) complete (d/deferred)] (connect src (Callback. #(put! dst %) #(d/success! complete true) dst nil) {:description "drain-into"}) complete)) ;;; (defn stream->seq "Transforms a stream into a lazy sequence. If a `timeout-interval` is defined, the sequence will terminate if `timeout-interval` milliseconds elapses without a new event." ([s] (lazy-seq (let [x @(take! s ::none)] (when-not (identical? ::none x) (cons x (stream->seq s)))))) ([s timeout-interval] (lazy-seq (let [x @(try-take! s ::none timeout-interval ::none)] (when-not (identical? ::none x) (cons x (stream->seq s timeout-interval))))))) (defn- periodically- [stream period initial-delay f] (let [cancel (promise)] (deliver cancel (time/every period initial-delay (fn [] (try (let [d (if (closed? stream) (d/success-deferred false) (put! stream (f)))] (if (realized? d) (when-not @d (do (@cancel) (close! stream))) (do (@cancel) (d/chain' d (fn [x] (if-not x (close! stream) (periodically- stream period (- period (rem (System/currentTimeMillis) period)) f))))))) (catch Throwable e (@cancel) (close! stream) (log/error e "error in 'periodically' callback")))))))) (defn periodically "Creates a stream which emits the result of invoking `(f)` every `period` milliseconds." ([period initial-delay f] (let [s (stream 1)] (periodically- s period initial-delay f) (source-only s))) ([period f] (periodically period (- period (rem (System/currentTimeMillis) period)) f))) (declare zip) (defn transform "Takes a transducer `xform` and returns a source which applies it to source `s`. A buffer-size may optionally be defined for the output source." ([xform s] (transform xform 0 s)) ([xform buffer-size ^IEventSource s] (let [s' (stream buffer-size xform)] (connect s s' {:description {:op "transducer"}}) (source-only s')))) (defn map "Equivalent to Clojure's `map`, but for streams instead of sequences." ([f s] (let [s' (stream)] (connect-via s (fn [msg] (put! s' (f msg))) s' {:description {:op "map"}}) (source-only s'))) ([f s & rest] (map #(apply f %) (apply zip s rest)))) (defn realize-each "Takes a stream of potentially deferred values, and returns a stream of realized values." [s] (let [s' (stream)] (connect-via s (fn [msg] (-> msg (d/chain' #(put! s' %)) (d/catch' (fn [e] (log/error e "deferred realized as error, closing stream") (close! s') false)))) s' {:description {:op "realize-each"}}) (source-only s'))) (let [some-drained? (partial some #{::drained})] (defn zip "Takes n-many streams, and returns a single stream which will emit n-tuples representing a message from each stream." ([a] (map vector a)) ([a & rest] (let [srcs (list* a rest) intermediates (clj/repeatedly (count srcs) stream) dst (stream)] (doseq [[a b] (clj/map list srcs intermediates)] (connect-via a #(put! b %) b {:description {:op "zip"}})) (d/loop [] (d/chain' (->> intermediates (clj/map #(take! % ::drained)) (apply d/zip)) (fn [msgs] (if (some-drained? msgs) (do (close! dst) false) (put! dst msgs))) (fn [result] (when result (d/recur))))) (source-only dst))))) (defn filter "Equivalent to Clojure's `filter`, but for streams instead of sequences." [pred s] (let [s' (stream)] (connect-via s (fn [msg] (if (pred msg) (put! s' msg) (d/success-deferred true))) s' {:description {:op "filter"}}) (source-only s'))) (defn reductions "Equivalent to Clojure's `reductions`, but for streams instead of sequences." ([f s] (reductions f ::none s)) ([f initial-value s] (let [s' (stream) val (atom initial-value)] (d/chain' (if (identical? ::none initial-value) true (put! s' initial-value)) (fn [_] (connect-via s (fn [msg] (if (identical? ::none @val) (do (reset! val msg) (put! s' msg)) (-> msg (d/chain' (partial f @val) (fn [x] (reset! val x) (put! s' x))) (d/catch' (fn [e] (log/error e "error in reductions") (close! s) false))))) s'))) (source-only s')))) (defn reduce "Equivalent to Clojure's `reduce`, but returns a deferred representing the return value. The deferred will be realized once the stream is closed or if the accumulator functions returns a `reduced` value." ([f s] (reduce f ::none s)) ([f initial-value s] (-> (if (identical? ::none initial-value) (take! s ::none) initial-value) (d/chain' (fn [initial-value] (if (identical? ::none initial-value) (f) (d/loop [val initial-value] (-> (take! s ::none) (d/chain' (fn [x] (if (identical? ::none x) val (let [r (f val x)] (if (reduced? r) (deref r) (d/recur r)))))))))))))) (defn mapcat "Equivalent to Clojure's `mapcat`, but for streams instead of sequences." ([f s] (let [s' (stream)] (connect-via s (fn [msg] (d/loop [s (f msg)] (when-not (empty? s) (d/chain' (put! s' (first s)) (fn [_] (d/recur (rest s))))))) s' {:description {:op "mapcat"}}) (source-only s'))) ([f s & rest] (->> (apply zip s rest) (mapcat #(apply f %))))) (defn lazily-partition-by "Equivalent to Clojure's `partition-by`, but returns a stream of streams. This means that if a sub-stream is not completely consumed, the next sub-stream will never be emitted. Use with caution. If you're not totally sure you want a stream of streams, use `(transform (partition-by f))` instead." [f s] (let [in (stream) out (stream)] (connect-via-proxy s in out {:description {:op "lazily-partition-by"}}) ;; TODO: how is this represented in the topology? (d/loop [prev ::x, s' nil] (d/chain' (take! in ::none) (fn [msg] (if (identical? ::none msg) (do (when s' (close! s')) (close! out)) (let [curr (try (f msg) (catch Throwable e (close! in) (close! out) (log/error e "error in lazily-partition-by") ::error))] (when-not (identical? ::error curr) (if (= prev curr) (d/chain' (put! s' msg) (fn [_] (d/recur curr s'))) (let [s'' (stream)] (when s' (close! s')) (d/chain' (put! out s'') (fn [_] (put! s'' msg)) (fn [_] (d/recur curr s''))))))))))) (source-only out))) (defn concat "Takes a stream of streams, and flattens it into a single stream." [s] (let [in (stream) out (stream)] (connect-via-proxy s in out {:description {:op "concat"}}) (d/loop [] (d/chain' (take! in ::none) (fn [s'] (cond (closed? out) (close! s') (identical? ::none s') (do (close! out) s') :else (d/loop [] (d/chain' (take! s' ::none) (fn [msg] (if (identical? ::none msg) msg (put! out msg))) (fn [result] (case result false (do (close! s') (close! in)) ::none nil (d/recur))))))) (fn [result] (when-not (identical? ::none result) (d/recur))))) (source-only out))) ;;; (deftype+ BufferedStream [buf limit metric description ^AtomicLong buffer-size ^AtomicReference last-put buf+ handle mta] clojure.lang.IReference (meta [_] @mta) (resetMeta [_ m] (reset! mta m)) (alterMeta [_ f args] (apply swap! mta f args)) IEventStream (isSynchronous [_] false) (downstream [this] (manifold.stream.graph/downstream this)) (close [_] (.close ^IEventStream buf)) (description [_] (description (merge (manifold.stream/description buf) {:buffer-size (.get buffer-size) :buffer-capacity limit}))) (weakHandle [this ref-queue] (or @handle (do (compare-and-set! handle nil (WeakReference. this ref-queue)) @handle))) IEventSink (put [_ x blocking?] (let [size (metric x)] (let [val (d/chain' (.put ^IEventSink buf [size x] blocking?) (fn [result] (if result (do (buf+ size) (.get last-put)) false)))] (if blocking? @val val)))) (put [_ x blocking? timeout timeout-val] ;; TODO: this doesn't really time out, because that would ;; require consume-side filtering of messages (let [size (metric x)] (let [val (d/chain' (.put ^IEventSink buf [size x] blocking? timeout ::timeout) (fn [result] (cond (identical? result ::timeout) timeout-val (false? result) false :else (do (buf+ size) (.get last-put)))))] (if blocking? @val val)))) (isClosed [_] (.isClosed ^IEventSink buf)) (onClosed [_ callback] (.onClosed ^IEventSink buf callback)) IEventSource (take [_ default-val blocking?] (let [val (d/chain' (.take ^IEventSource buf default-val blocking?) (fn [x] (if (identical? default-val x) x (let [[size msg] x] (buf+ (- size)) msg))))] (if blocking? @val val))) (take [_ default-val blocking? timeout timeout-val] (let [val (d/chain' (.take ^IEventSource buf default-val blocking? timeout ::timeout) (fn [x] (cond (identical? ::timeout x) timeout-val (identical? default-val x) x :else (let [[size msg] x] (buf+ (- size)) msg))))] (if blocking? @val val))) (isDrained [_] (.isDrained ^IEventSource buf)) (onDrained [_ callback] (.onDrained ^IEventSource buf callback)) (connector [_ sink] (.connector ^IEventSource buf sink))) (defn buffered-stream "A stream which will buffer at most `limit` data, where the size of each message is defined by `(metric message)`." ([buffer-size] (buffered-stream (constantly 1) buffer-size)) ([metric limit] (buffered-stream metric limit identity)) ([metric limit description] (let [buf (stream Integer/MAX_VALUE) buffer-size (AtomicLong. 0) last-put (AtomicReference. (d/success-deferred true)) buf+ (fn [^long n] (locking last-put (let [buf' (.addAndGet buffer-size n) buf (unchecked-subtract buf' n)] (cond (and (<= buf' limit) (< limit buf)) (-> last-put .get (d/success! true)) (and (<= buf limit) (< limit buf')) (-> last-put (.getAndSet (d/deferred)) (d/success! true))))))] (BufferedStream. buf limit metric description buffer-size last-put buf+ (atom nil) (atom nil))))) (defn buffer "Takes a stream, and returns a stream which is a buffered view of that stream. The buffer size may either be measured in messages, or if a `metric` is defined, by the sum of `metric` mapped over all messages currently buffered." ([limit s] (let [s' (buffered-stream limit)] (connect s s') (source-only s'))) ([metric limit s] (let [s' (buffered-stream metric limit)] (connect s s') (source-only s')))) (defn batch "Batches messages, either into groups of fixed size, or according to upper bounds on size and latency, in milliseconds. By default, each message is of size `1`, but a custom `metric` function that returns the size of each message may be defined." ([batch-size s] (batch (constantly 1) batch-size nil s)) ([max-size max-latency s] (batch (constantly 1) max-size max-latency s)) ([metric max-size max-latency s] (assert (pos? max-size)) (let [buf (stream) s' (stream)] (connect-via-proxy s buf s' {:description {:op "batch"}}) (on-closed s' #(close! buf)) (d/loop [msgs [], size 0, earliest-message -1, last-message -1] (cond (or (== size max-size) (and (< max-size size) (== (count msgs) 1))) (d/chain' (put! s' msgs) (fn [_] (d/recur [] 0 -1 -1))) (> size max-size) (let [msg (peek msgs)] (d/chain' (put! s' (pop msgs)) (fn [_] (d/recur [msg] (metric msg) last-message last-message)))) :else (d/chain' (if (or (nil? max-latency) (neg? earliest-message) (empty? msgs)) (take! buf ::empty) (try-take! buf ::empty (- max-latency (- (System/currentTimeMillis) earliest-message)) ::timeout)) (fn [msg] (condp identical? msg ::empty (do (when-not (empty? msgs) (put! s' msgs)) (close! s')) ::timeout (d/chain' (when-not (empty? msgs) (put! s' msgs)) (fn [_] (d/recur [] 0 -1 -1))) (let [time (System/currentTimeMillis)] (d/recur (conj msgs msg) (+ size (metric msg)) (if (neg? earliest-message) time earliest-message) time))))))) (source-only s')))) (defn throttle "Limits the `max-rate` that messages are emitted, per second. The `max-backlog` dictates how much \"memory\" the throttling mechanism has, or how many messages it will emit immediately after a long interval without any messages. By default, this is set to one second's worth." ([max-rate s] (throttle max-rate max-rate s)) ([max-rate max-backlog s] (let [buf (stream) s' (stream) period (double (/ 1000 max-rate))] (connect-via-proxy s buf s' {:description {:op "throttle"}}) (on-closed s' #(close! buf)) (d/loop [backlog 0.0, read-start (System/currentTimeMillis)] (d/chain (take! buf ::none) (fn [msg] (if (identical? ::none msg) (do (close! s') false) (put! s' msg))) (fn [result] (when result (let [elapsed (double (- (System/currentTimeMillis) read-start)) backlog' (min (+ backlog (- (/ elapsed period) 1)) max-backlog)] (if (<= 1 backlog') (- backlog' 1.0) (d/timeout! (d/deferred) (- period elapsed) 0.0))))) (fn [backlog] (if backlog (d/recur backlog (System/currentTimeMillis)) (close! s))))) (source-only s')))) ;;; (alter-meta! #'->Callback assoc :private true) (alter-meta! #'->SinkProxy assoc :private true) (alter-meta! #'->SourceProxy assoc :private true) (alter-meta! #'->SplicedStream assoc :private true)
[ { "context": "%) basic-kinds )))\n\n(add-patient :pat1 \"London\" [\"fever\" \"cough\"] )\n(add-patient :pat2 \"London\" [\"fever\" ", "end": 1830, "score": 0.999826192855835, "start": 1825, "tag": "NAME", "value": "fever" }, { "context": "-kinds )))\n\n(add-patient :pat1 \"London\" [\"fever\" \"cough\"] )\n(add-patient :pat2 \"London\" [\"fever\" \"cough\"]", "end": 1838, "score": 0.9996840357780457, "start": 1833, "tag": "NAME", "value": "cough" }, { "context": "[\"fever\" \"cough\"] )\n(add-patient :pat2 \"London\" [\"fever\" \"cough\"] )\n\n(add-machine :1machine1 \"M11\")\n(add-", "end": 1878, "score": 0.9998105764389038, "start": 1873, "tag": "NAME", "value": "fever" }, { "context": " \"cough\"] )\n(add-patient :pat2 \"London\" [\"fever\" \"cough\"] )\n\n(add-machine :1machine1 \"M11\")\n(add-machine ", "end": 1886, "score": 0.9996474981307983, "start": 1881, "tag": "NAME", "value": "cough" } ]
functionalDB/src/scenarios/hospital.clj
chopptimus/500lines
84
(ns scenarios.hospital (:use [fdb core constructs graph] ) [:require [fdb.manage :as M] [clojure.set :as CS :only (union difference )]]) (def db-name "hos12") (M/drop-db-conn db-name) (def hospital-db (M/get-db-conn db-name)) (def basic-kinds [:test/bp-systolic :test/bp-diastolic :test/temperature :person/patient :person/doctor ] ) (defn make-patient[id address symptoms] (-> (make-entity id) (add-attr (make-attr :patient/kind :person/patient :db/ref)) (add-attr (make-attr :patient/city address :string )) (add-attr (make-attr :patient/tests #{} :db/ref :indexed true :cardinality :db/multiple)) (add-attr (make-attr :patient/symptoms (set symptoms) :string :cardinality :db/multiple)))) (defn make-test [t-id tests-map types ] (let [ent (make-entity t-id)] (reduce #(add-attr %1 (make-attr (first %2) ;attr-name (second %2) ; attr value (get types (first %2) :number) ; attr type :indexed true ));indexed ent tests-map))) (defn add-machine [id nm] (transact hospital-db (add-entity (-> (make-entity id) (add-attr (make-attr :machine/name nm :string)))))) (defn add-patient [id address symptoms] (transact hospital-db (add-entity (make-patient id address symptoms)))) (defn add-test-results-to-patient [pat-id test-result] (let [test-id (:id test-result) a (transact hospital-db (add-entity test-result))] (transact hospital-db (update-datom pat-id :patient/tests #{test-id} :db/add)))) ;; world setup (transact hospital-db (add-entities (map #(make-entity %) basic-kinds ))) (add-patient :pat1 "London" ["fever" "cough"] ) (add-patient :pat2 "London" ["fever" "cough"] ) (add-machine :1machine1 "M11") (add-machine :2machine2 "M222") (add-test-results-to-patient :pat1 (make-test :t2-pat1 {:test/bp-systolic 170 :test/bp-diastolic 80 :test/machine :2machine2 } {:test/machine :db/ref} )) (add-test-results-to-patient :pat2 (make-test :t4-pat2 {:test/bp-systolic 170 :test/bp-diastolic 90 :test/machine :1machine1} {:test/machine :db/ref} )) (add-test-results-to-patient :pat2 (make-test :t3-pat2 {:test/bp-systolic 140 :test/bp-diastolic 80 :test/machine :2machine2} {:test/machine :db/ref} )) (transact hospital-db (update-datom :pat1 :patient/symptoms #{"cold sweat" "sneeze"} :db/reset-to)) (transact hospital-db (update-datom :pat1 :patient/tests #{:t2-pat1} :db/remove)) ; (transact hospital-db (remove-entity :t2-pat1)) (defn keep-on-equals [a b](if (= a b) a nil )) (q @hospital-db {:find [?e ?k] :where [[ ?e :test/bp-systolic (> 200 ?b)] [ ?e :test/bp-diastolic ?k]]} ) (q @hospital-db {:find [?a ?b] :where [[ _ ?a (> 200 ?b)]]}) (q @hospital-db {:find [?e ?k ] :where [[ ?e :test/bp-systolic (> 180 ?b)] [ ?e :test/bp-diastolic ?k] ]}) (evolution-of (M/db-from-conn hospital-db) :pat1 :patient/symptoms) (evolution-of (M/db-from-conn hospital-db) :pat1 :patient/tests) (take 7 (traverse-db :pat2 @hospital-db :bfs :outgoing))
83123
(ns scenarios.hospital (:use [fdb core constructs graph] ) [:require [fdb.manage :as M] [clojure.set :as CS :only (union difference )]]) (def db-name "hos12") (M/drop-db-conn db-name) (def hospital-db (M/get-db-conn db-name)) (def basic-kinds [:test/bp-systolic :test/bp-diastolic :test/temperature :person/patient :person/doctor ] ) (defn make-patient[id address symptoms] (-> (make-entity id) (add-attr (make-attr :patient/kind :person/patient :db/ref)) (add-attr (make-attr :patient/city address :string )) (add-attr (make-attr :patient/tests #{} :db/ref :indexed true :cardinality :db/multiple)) (add-attr (make-attr :patient/symptoms (set symptoms) :string :cardinality :db/multiple)))) (defn make-test [t-id tests-map types ] (let [ent (make-entity t-id)] (reduce #(add-attr %1 (make-attr (first %2) ;attr-name (second %2) ; attr value (get types (first %2) :number) ; attr type :indexed true ));indexed ent tests-map))) (defn add-machine [id nm] (transact hospital-db (add-entity (-> (make-entity id) (add-attr (make-attr :machine/name nm :string)))))) (defn add-patient [id address symptoms] (transact hospital-db (add-entity (make-patient id address symptoms)))) (defn add-test-results-to-patient [pat-id test-result] (let [test-id (:id test-result) a (transact hospital-db (add-entity test-result))] (transact hospital-db (update-datom pat-id :patient/tests #{test-id} :db/add)))) ;; world setup (transact hospital-db (add-entities (map #(make-entity %) basic-kinds ))) (add-patient :pat1 "London" ["<NAME>" "<NAME>"] ) (add-patient :pat2 "London" ["<NAME>" "<NAME>"] ) (add-machine :1machine1 "M11") (add-machine :2machine2 "M222") (add-test-results-to-patient :pat1 (make-test :t2-pat1 {:test/bp-systolic 170 :test/bp-diastolic 80 :test/machine :2machine2 } {:test/machine :db/ref} )) (add-test-results-to-patient :pat2 (make-test :t4-pat2 {:test/bp-systolic 170 :test/bp-diastolic 90 :test/machine :1machine1} {:test/machine :db/ref} )) (add-test-results-to-patient :pat2 (make-test :t3-pat2 {:test/bp-systolic 140 :test/bp-diastolic 80 :test/machine :2machine2} {:test/machine :db/ref} )) (transact hospital-db (update-datom :pat1 :patient/symptoms #{"cold sweat" "sneeze"} :db/reset-to)) (transact hospital-db (update-datom :pat1 :patient/tests #{:t2-pat1} :db/remove)) ; (transact hospital-db (remove-entity :t2-pat1)) (defn keep-on-equals [a b](if (= a b) a nil )) (q @hospital-db {:find [?e ?k] :where [[ ?e :test/bp-systolic (> 200 ?b)] [ ?e :test/bp-diastolic ?k]]} ) (q @hospital-db {:find [?a ?b] :where [[ _ ?a (> 200 ?b)]]}) (q @hospital-db {:find [?e ?k ] :where [[ ?e :test/bp-systolic (> 180 ?b)] [ ?e :test/bp-diastolic ?k] ]}) (evolution-of (M/db-from-conn hospital-db) :pat1 :patient/symptoms) (evolution-of (M/db-from-conn hospital-db) :pat1 :patient/tests) (take 7 (traverse-db :pat2 @hospital-db :bfs :outgoing))
true
(ns scenarios.hospital (:use [fdb core constructs graph] ) [:require [fdb.manage :as M] [clojure.set :as CS :only (union difference )]]) (def db-name "hos12") (M/drop-db-conn db-name) (def hospital-db (M/get-db-conn db-name)) (def basic-kinds [:test/bp-systolic :test/bp-diastolic :test/temperature :person/patient :person/doctor ] ) (defn make-patient[id address symptoms] (-> (make-entity id) (add-attr (make-attr :patient/kind :person/patient :db/ref)) (add-attr (make-attr :patient/city address :string )) (add-attr (make-attr :patient/tests #{} :db/ref :indexed true :cardinality :db/multiple)) (add-attr (make-attr :patient/symptoms (set symptoms) :string :cardinality :db/multiple)))) (defn make-test [t-id tests-map types ] (let [ent (make-entity t-id)] (reduce #(add-attr %1 (make-attr (first %2) ;attr-name (second %2) ; attr value (get types (first %2) :number) ; attr type :indexed true ));indexed ent tests-map))) (defn add-machine [id nm] (transact hospital-db (add-entity (-> (make-entity id) (add-attr (make-attr :machine/name nm :string)))))) (defn add-patient [id address symptoms] (transact hospital-db (add-entity (make-patient id address symptoms)))) (defn add-test-results-to-patient [pat-id test-result] (let [test-id (:id test-result) a (transact hospital-db (add-entity test-result))] (transact hospital-db (update-datom pat-id :patient/tests #{test-id} :db/add)))) ;; world setup (transact hospital-db (add-entities (map #(make-entity %) basic-kinds ))) (add-patient :pat1 "London" ["PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI"] ) (add-patient :pat2 "London" ["PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI"] ) (add-machine :1machine1 "M11") (add-machine :2machine2 "M222") (add-test-results-to-patient :pat1 (make-test :t2-pat1 {:test/bp-systolic 170 :test/bp-diastolic 80 :test/machine :2machine2 } {:test/machine :db/ref} )) (add-test-results-to-patient :pat2 (make-test :t4-pat2 {:test/bp-systolic 170 :test/bp-diastolic 90 :test/machine :1machine1} {:test/machine :db/ref} )) (add-test-results-to-patient :pat2 (make-test :t3-pat2 {:test/bp-systolic 140 :test/bp-diastolic 80 :test/machine :2machine2} {:test/machine :db/ref} )) (transact hospital-db (update-datom :pat1 :patient/symptoms #{"cold sweat" "sneeze"} :db/reset-to)) (transact hospital-db (update-datom :pat1 :patient/tests #{:t2-pat1} :db/remove)) ; (transact hospital-db (remove-entity :t2-pat1)) (defn keep-on-equals [a b](if (= a b) a nil )) (q @hospital-db {:find [?e ?k] :where [[ ?e :test/bp-systolic (> 200 ?b)] [ ?e :test/bp-diastolic ?k]]} ) (q @hospital-db {:find [?a ?b] :where [[ _ ?a (> 200 ?b)]]}) (q @hospital-db {:find [?e ?k ] :where [[ ?e :test/bp-systolic (> 180 ?b)] [ ?e :test/bp-diastolic ?k] ]}) (evolution-of (M/db-from-conn hospital-db) :pat1 :patient/symptoms) (evolution-of (M/db-from-conn hospital-db) :pat1 :patient/tests) (take 7 (traverse-db :pat2 @hospital-db :bfs :outgoing))
[ { "context": "regexps))]\n (case dist\n \"\" 0\n \"kilsa\" 1000\n \"maraton\" 42195\n \"mara\" 4219", "end": 3564, "score": 0.9864576458930969, "start": 3559, "tag": "NAME", "value": "kilsa" }, { "context": "e dist\n \"\" 0\n \"kilsa\" 1000\n \"maraton\" 42195\n \"mara\" 42195\n \"maili\" 1609\n", "end": 3587, "score": 0.9888066053390503, "start": 3580, "tag": "NAME", "value": "maraton" }, { "context": " \"kilsa\" 1000\n \"maraton\" 42195\n \"mara\" 42195\n \"maili\" 1609\n (if (>= parse", "end": 3608, "score": 0.9900256395339966, "start": 3604, "tag": "NAME", "value": "mara" }, { "context": " \"maraton\" 42195\n \"mara\" 42195\n \"maili\" 1609\n (if (>= parse-result 1000000) ;; ba", "end": 3630, "score": 0.9903708100318909, "start": 3625, "tag": "NAME", "value": "maili" } ]
s3/src/s3/parser.clj
jrosti/ontrail
1
(ns s3.parser (:use [s3 formats log]) (:require [clj-time.format :as format] [clojure.string :as string] [clj-time.core :as time])) (use-logging) (def multi-parser (format/formatter (time/default-time-zone) "dd.MM.yyyy" "yyyy-MM-dd" "dd/MM/yyyy" "yyyy/MM/dd")) (defn as-number [x] (Integer/valueOf x)) (defn to-db [min] (* (Integer/valueOf min) 60 100)) (defn minutes [min] (to-db min)) (defn hours [h] (* (to-db h) 60)) (defn secs [sec] (* (Integer. sec) 100)) (defn hours-and-minutes [h min] (+ (hours h) (to-db min))) (defn hours-and-seconds [h sec] (+ (hours h) (secs sec))) (defn minutes-and-seconds [min sec] (+ (minutes min) (secs sec))) (defn hours-and-minutes-and-seconds [h min sec] (+ (hours h) (minutes min) (secs sec))) (defn minutes-and-seconds-and-tenths [min sec tenths] (+ (to-db min) (secs sec) (* 10 (Integer. tenths)))) (defn minutes-and-seconds-and-tenths-and-hundreds [min sec tenths hundreds] (+ (to-db min) (secs sec) (* 10 (Integer. tenths)) (Integer. hundreds))) (defn kilometers [km] (* (Integer. km) 1000)) (defn kilometers-and-meters [km m] (+ (as-number m) (kilometers km))) (def duration-regexps [ {:re #"^([0-9]+) *m[^0-9]*$" :conv minutes} {:re #"^([0-9]+)$" :conv minutes} {:re #"^([0-9]+).*h$" :conv hours} {:re #"^(\d+) h (\d+) s$" :conv hours-and-seconds} {:re #"^([0-9]+).*h[^0-9]*([0-9]+)[^0-9]*$" :conv hours-and-minutes} {:re #"^([0-9]+)\.([0-9]+)[^0-9]*$" :conv minutes-and-seconds} {:re #"^([0-9]+)[^0-9]*min[^0-9]*([0-9]+)[^0-9]*s[^0-9]*$" :conv minutes-and-seconds} {:re #"^([0-9]+):([0-9]+)$" :conv hours-and-minutes} {:re #"^([0-9]+) h ([0-9]+) min$" :conv hours-and-minutes} {:re #"^([0-9]+) h ([0-9]+) min ([0-9]+) s$" :conv hours-and-minutes-and-seconds} {:re #"^([0-9]+)h[^0-9]*([0-9]+)m[^0-9]*([0-9]+)s*" :conv hours-and-minutes-and-seconds} {:re #"^([0-9]+)[:\.]([0-9]+)[:\.]([0-9]+)$" :conv hours-and-minutes-and-seconds} {:re #"^([0-9]+) min ([0-9]+),([0-9]) s$" :conv minutes-and-seconds-and-tenths} {:re #"^([0-9]+) min ([0-9]+),([0-9])([0-9]) s$" :conv minutes-and-seconds-and-tenths-and-hundreds} {:re #"^([0-9]+)\.([0-9]+),([0-9])[^0-9]*$" :conv minutes-and-seconds-and-tenths} {:re #"^([0-9]+)\.([0-9]+),([0-9])([0-9])[^0-9]*$" :conv minutes-and-seconds-and-tenths-and-hundreds} ]) (defn try-match [re str] (re-matches re str)) (defn try-parse [re-conv str] (let [match (try-match (:re re-conv) (string/trim str))] (if match (apply (:conv re-conv) (rest match))))) (defn parse-duration [dur-str] (try (let [duration (some identity (map #(try-parse % dur-str) duration-regexps))] (if (nil? duration) 0 duration)) (catch Exception ex 0))) (defn parse-date [date-str] (if (= "" date-str) (time/now) (time/plus (format/parse multi-parser date-str) (time/hours 12)))) (defn as-double-km [str] (let [x (string/replace str #"," ".")] (Math/round (* 1000 (Double/valueOf x))))) (def distance-regexps [{:re #"^([0-9]+)$" :conv as-double-km} {:re #"^([0-9]+[\.,][0-9]+) *k*m*$" :conv as-double-km} {:re #"^([0-9]+) *m *$" :conv as-number} {:re #"^([0-9]+) *k$" :conv kilometers} {:re #"^([0-9]+) *km$" :conv kilometers}]) (defn parse-distance [dist] (try (let [parse-result (some identity (map #(try-parse % dist) distance-regexps))] (case dist "" 0 "kilsa" 1000 "maraton" 42195 "mara" 42195 "maili" 1609 (if (>= parse-result 1000000) ;; bare number is interpreted as meters, if it is over "1000km" (quot parse-result 1000) parse-result))) (catch Exception exception 0))) (defn cleanse-tag [str] ((comp string/trim #(string/replace % #"/" "-")) str)) (defn parse-tags ([] '()) ([tags] (if (string? tags) (filter (partial not= "") (map cleanse-tag (string/split tags #","))) '()))) (defn parse-natural [hr] (if-not (= nil hr) (try-parse {:re #"^([0-9]+)$" :conv as-number} hr)))
29845
(ns s3.parser (:use [s3 formats log]) (:require [clj-time.format :as format] [clojure.string :as string] [clj-time.core :as time])) (use-logging) (def multi-parser (format/formatter (time/default-time-zone) "dd.MM.yyyy" "yyyy-MM-dd" "dd/MM/yyyy" "yyyy/MM/dd")) (defn as-number [x] (Integer/valueOf x)) (defn to-db [min] (* (Integer/valueOf min) 60 100)) (defn minutes [min] (to-db min)) (defn hours [h] (* (to-db h) 60)) (defn secs [sec] (* (Integer. sec) 100)) (defn hours-and-minutes [h min] (+ (hours h) (to-db min))) (defn hours-and-seconds [h sec] (+ (hours h) (secs sec))) (defn minutes-and-seconds [min sec] (+ (minutes min) (secs sec))) (defn hours-and-minutes-and-seconds [h min sec] (+ (hours h) (minutes min) (secs sec))) (defn minutes-and-seconds-and-tenths [min sec tenths] (+ (to-db min) (secs sec) (* 10 (Integer. tenths)))) (defn minutes-and-seconds-and-tenths-and-hundreds [min sec tenths hundreds] (+ (to-db min) (secs sec) (* 10 (Integer. tenths)) (Integer. hundreds))) (defn kilometers [km] (* (Integer. km) 1000)) (defn kilometers-and-meters [km m] (+ (as-number m) (kilometers km))) (def duration-regexps [ {:re #"^([0-9]+) *m[^0-9]*$" :conv minutes} {:re #"^([0-9]+)$" :conv minutes} {:re #"^([0-9]+).*h$" :conv hours} {:re #"^(\d+) h (\d+) s$" :conv hours-and-seconds} {:re #"^([0-9]+).*h[^0-9]*([0-9]+)[^0-9]*$" :conv hours-and-minutes} {:re #"^([0-9]+)\.([0-9]+)[^0-9]*$" :conv minutes-and-seconds} {:re #"^([0-9]+)[^0-9]*min[^0-9]*([0-9]+)[^0-9]*s[^0-9]*$" :conv minutes-and-seconds} {:re #"^([0-9]+):([0-9]+)$" :conv hours-and-minutes} {:re #"^([0-9]+) h ([0-9]+) min$" :conv hours-and-minutes} {:re #"^([0-9]+) h ([0-9]+) min ([0-9]+) s$" :conv hours-and-minutes-and-seconds} {:re #"^([0-9]+)h[^0-9]*([0-9]+)m[^0-9]*([0-9]+)s*" :conv hours-and-minutes-and-seconds} {:re #"^([0-9]+)[:\.]([0-9]+)[:\.]([0-9]+)$" :conv hours-and-minutes-and-seconds} {:re #"^([0-9]+) min ([0-9]+),([0-9]) s$" :conv minutes-and-seconds-and-tenths} {:re #"^([0-9]+) min ([0-9]+),([0-9])([0-9]) s$" :conv minutes-and-seconds-and-tenths-and-hundreds} {:re #"^([0-9]+)\.([0-9]+),([0-9])[^0-9]*$" :conv minutes-and-seconds-and-tenths} {:re #"^([0-9]+)\.([0-9]+),([0-9])([0-9])[^0-9]*$" :conv minutes-and-seconds-and-tenths-and-hundreds} ]) (defn try-match [re str] (re-matches re str)) (defn try-parse [re-conv str] (let [match (try-match (:re re-conv) (string/trim str))] (if match (apply (:conv re-conv) (rest match))))) (defn parse-duration [dur-str] (try (let [duration (some identity (map #(try-parse % dur-str) duration-regexps))] (if (nil? duration) 0 duration)) (catch Exception ex 0))) (defn parse-date [date-str] (if (= "" date-str) (time/now) (time/plus (format/parse multi-parser date-str) (time/hours 12)))) (defn as-double-km [str] (let [x (string/replace str #"," ".")] (Math/round (* 1000 (Double/valueOf x))))) (def distance-regexps [{:re #"^([0-9]+)$" :conv as-double-km} {:re #"^([0-9]+[\.,][0-9]+) *k*m*$" :conv as-double-km} {:re #"^([0-9]+) *m *$" :conv as-number} {:re #"^([0-9]+) *k$" :conv kilometers} {:re #"^([0-9]+) *km$" :conv kilometers}]) (defn parse-distance [dist] (try (let [parse-result (some identity (map #(try-parse % dist) distance-regexps))] (case dist "" 0 "<NAME>" 1000 "<NAME>" 42195 "<NAME>" 42195 "<NAME>" 1609 (if (>= parse-result 1000000) ;; bare number is interpreted as meters, if it is over "1000km" (quot parse-result 1000) parse-result))) (catch Exception exception 0))) (defn cleanse-tag [str] ((comp string/trim #(string/replace % #"/" "-")) str)) (defn parse-tags ([] '()) ([tags] (if (string? tags) (filter (partial not= "") (map cleanse-tag (string/split tags #","))) '()))) (defn parse-natural [hr] (if-not (= nil hr) (try-parse {:re #"^([0-9]+)$" :conv as-number} hr)))
true
(ns s3.parser (:use [s3 formats log]) (:require [clj-time.format :as format] [clojure.string :as string] [clj-time.core :as time])) (use-logging) (def multi-parser (format/formatter (time/default-time-zone) "dd.MM.yyyy" "yyyy-MM-dd" "dd/MM/yyyy" "yyyy/MM/dd")) (defn as-number [x] (Integer/valueOf x)) (defn to-db [min] (* (Integer/valueOf min) 60 100)) (defn minutes [min] (to-db min)) (defn hours [h] (* (to-db h) 60)) (defn secs [sec] (* (Integer. sec) 100)) (defn hours-and-minutes [h min] (+ (hours h) (to-db min))) (defn hours-and-seconds [h sec] (+ (hours h) (secs sec))) (defn minutes-and-seconds [min sec] (+ (minutes min) (secs sec))) (defn hours-and-minutes-and-seconds [h min sec] (+ (hours h) (minutes min) (secs sec))) (defn minutes-and-seconds-and-tenths [min sec tenths] (+ (to-db min) (secs sec) (* 10 (Integer. tenths)))) (defn minutes-and-seconds-and-tenths-and-hundreds [min sec tenths hundreds] (+ (to-db min) (secs sec) (* 10 (Integer. tenths)) (Integer. hundreds))) (defn kilometers [km] (* (Integer. km) 1000)) (defn kilometers-and-meters [km m] (+ (as-number m) (kilometers km))) (def duration-regexps [ {:re #"^([0-9]+) *m[^0-9]*$" :conv minutes} {:re #"^([0-9]+)$" :conv minutes} {:re #"^([0-9]+).*h$" :conv hours} {:re #"^(\d+) h (\d+) s$" :conv hours-and-seconds} {:re #"^([0-9]+).*h[^0-9]*([0-9]+)[^0-9]*$" :conv hours-and-minutes} {:re #"^([0-9]+)\.([0-9]+)[^0-9]*$" :conv minutes-and-seconds} {:re #"^([0-9]+)[^0-9]*min[^0-9]*([0-9]+)[^0-9]*s[^0-9]*$" :conv minutes-and-seconds} {:re #"^([0-9]+):([0-9]+)$" :conv hours-and-minutes} {:re #"^([0-9]+) h ([0-9]+) min$" :conv hours-and-minutes} {:re #"^([0-9]+) h ([0-9]+) min ([0-9]+) s$" :conv hours-and-minutes-and-seconds} {:re #"^([0-9]+)h[^0-9]*([0-9]+)m[^0-9]*([0-9]+)s*" :conv hours-and-minutes-and-seconds} {:re #"^([0-9]+)[:\.]([0-9]+)[:\.]([0-9]+)$" :conv hours-and-minutes-and-seconds} {:re #"^([0-9]+) min ([0-9]+),([0-9]) s$" :conv minutes-and-seconds-and-tenths} {:re #"^([0-9]+) min ([0-9]+),([0-9])([0-9]) s$" :conv minutes-and-seconds-and-tenths-and-hundreds} {:re #"^([0-9]+)\.([0-9]+),([0-9])[^0-9]*$" :conv minutes-and-seconds-and-tenths} {:re #"^([0-9]+)\.([0-9]+),([0-9])([0-9])[^0-9]*$" :conv minutes-and-seconds-and-tenths-and-hundreds} ]) (defn try-match [re str] (re-matches re str)) (defn try-parse [re-conv str] (let [match (try-match (:re re-conv) (string/trim str))] (if match (apply (:conv re-conv) (rest match))))) (defn parse-duration [dur-str] (try (let [duration (some identity (map #(try-parse % dur-str) duration-regexps))] (if (nil? duration) 0 duration)) (catch Exception ex 0))) (defn parse-date [date-str] (if (= "" date-str) (time/now) (time/plus (format/parse multi-parser date-str) (time/hours 12)))) (defn as-double-km [str] (let [x (string/replace str #"," ".")] (Math/round (* 1000 (Double/valueOf x))))) (def distance-regexps [{:re #"^([0-9]+)$" :conv as-double-km} {:re #"^([0-9]+[\.,][0-9]+) *k*m*$" :conv as-double-km} {:re #"^([0-9]+) *m *$" :conv as-number} {:re #"^([0-9]+) *k$" :conv kilometers} {:re #"^([0-9]+) *km$" :conv kilometers}]) (defn parse-distance [dist] (try (let [parse-result (some identity (map #(try-parse % dist) distance-regexps))] (case dist "" 0 "PI:NAME:<NAME>END_PI" 1000 "PI:NAME:<NAME>END_PI" 42195 "PI:NAME:<NAME>END_PI" 42195 "PI:NAME:<NAME>END_PI" 1609 (if (>= parse-result 1000000) ;; bare number is interpreted as meters, if it is over "1000km" (quot parse-result 1000) parse-result))) (catch Exception exception 0))) (defn cleanse-tag [str] ((comp string/trim #(string/replace % #"/" "-")) str)) (defn parse-tags ([] '()) ([tags] (if (string? tags) (filter (partial not= "") (map cleanse-tag (string/split tags #","))) '()))) (defn parse-natural [hr] (if-not (= nil hr) (try-parse {:re #"^([0-9]+)$" :conv as-number} hr)))
[ { "context": "low methods for sums of double[].\"\n \n {:author \"palisades dot lakes at gmail dot com\"\n :since \"2017-04-06\"\n :version \"2017-05-29\"}", "end": 301, "score": 0.9865183234214783, "start": 265, "tag": "EMAIL", "value": "palisades dot lakes at gmail dot com" } ]
src/scripts/clojure/palisades/lakes/elements/scripts/numbers/sum/slow.clj
palisades-lakes/les-elemens
0
(set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) ;;---------------------------------------------------------------- (ns palisades.lakes.elements.scripts.numbers.sum.slow "Benchmarks for slow methods for sums of double[]." {:author "palisades dot lakes at gmail dot com" :since "2017-04-06" :version "2017-05-29"} (:require [clojure.set :as set] [clojure.string :as s] [clojure.java.io :as io] [clojure.pprint :as pp] [palisades.lakes.elements.api :as mc] [palisades.lakes.elements.scripts.defs :as defs] [palisades.lakes.elements.scripts.numbers.sum.bench :as bench])) ;;---------------------------------------------------------------- (defn fname [generator n ext] (str "slow." (mc/fn-name generator) "." n "." (java.time.LocalDate/now) "." ext)) ;;---------------------------------------------------------------- (time (doseq [generator [#_mc/random-doubles-nonnegative #_mc/random-doubles #_mc/random-doubles-minus-mean mc/random-doubles-zero-sum #_mc/uniform-doubles]] (doseq [n (take 1 (bench/data-sizes))] (println (mc/fn-name generator) n (java.time.LocalDateTime/now)) (time (with-open [w (io/writer (defs/log-file *ns* (fname generator n "txt")))] (binding [*out* w] (let [data-map (bench/data generator n)] (reduce (fn [records record] (if record (let [records (conj records record)] (mc/write-tsv records (defs/data-file *ns*(fname generator n "tsv"))) records) records)) [] (for [f [#_mc/sum-DoubleAccumulator #_mc/sum-DoubleAdder #_mc/sum-DoubleSummaryStatistics #_mc/sum-Stats #_mc/sum-DescriptiveStatistics #_mc/sum-math3 #_mc/sum-SummaryStatistics #_mc/sum-SynchronizedSummaryStatistics #_mc/sum-areduce #_mc/sum-loop mc/sum-reduce #_mc/sum-big-decimal #_mc/sum-big-fraction #_mc/sum-ratio #_mc/sum-aprational]] (bench/bench f identity data-map)))))))))) ;;----------------------------------------------------------------
88090
(set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) ;;---------------------------------------------------------------- (ns palisades.lakes.elements.scripts.numbers.sum.slow "Benchmarks for slow methods for sums of double[]." {:author "<EMAIL>" :since "2017-04-06" :version "2017-05-29"} (:require [clojure.set :as set] [clojure.string :as s] [clojure.java.io :as io] [clojure.pprint :as pp] [palisades.lakes.elements.api :as mc] [palisades.lakes.elements.scripts.defs :as defs] [palisades.lakes.elements.scripts.numbers.sum.bench :as bench])) ;;---------------------------------------------------------------- (defn fname [generator n ext] (str "slow." (mc/fn-name generator) "." n "." (java.time.LocalDate/now) "." ext)) ;;---------------------------------------------------------------- (time (doseq [generator [#_mc/random-doubles-nonnegative #_mc/random-doubles #_mc/random-doubles-minus-mean mc/random-doubles-zero-sum #_mc/uniform-doubles]] (doseq [n (take 1 (bench/data-sizes))] (println (mc/fn-name generator) n (java.time.LocalDateTime/now)) (time (with-open [w (io/writer (defs/log-file *ns* (fname generator n "txt")))] (binding [*out* w] (let [data-map (bench/data generator n)] (reduce (fn [records record] (if record (let [records (conj records record)] (mc/write-tsv records (defs/data-file *ns*(fname generator n "tsv"))) records) records)) [] (for [f [#_mc/sum-DoubleAccumulator #_mc/sum-DoubleAdder #_mc/sum-DoubleSummaryStatistics #_mc/sum-Stats #_mc/sum-DescriptiveStatistics #_mc/sum-math3 #_mc/sum-SummaryStatistics #_mc/sum-SynchronizedSummaryStatistics #_mc/sum-areduce #_mc/sum-loop mc/sum-reduce #_mc/sum-big-decimal #_mc/sum-big-fraction #_mc/sum-ratio #_mc/sum-aprational]] (bench/bench f identity data-map)))))))))) ;;----------------------------------------------------------------
true
(set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) ;;---------------------------------------------------------------- (ns palisades.lakes.elements.scripts.numbers.sum.slow "Benchmarks for slow methods for sums of double[]." {:author "PI:EMAIL:<EMAIL>END_PI" :since "2017-04-06" :version "2017-05-29"} (:require [clojure.set :as set] [clojure.string :as s] [clojure.java.io :as io] [clojure.pprint :as pp] [palisades.lakes.elements.api :as mc] [palisades.lakes.elements.scripts.defs :as defs] [palisades.lakes.elements.scripts.numbers.sum.bench :as bench])) ;;---------------------------------------------------------------- (defn fname [generator n ext] (str "slow." (mc/fn-name generator) "." n "." (java.time.LocalDate/now) "." ext)) ;;---------------------------------------------------------------- (time (doseq [generator [#_mc/random-doubles-nonnegative #_mc/random-doubles #_mc/random-doubles-minus-mean mc/random-doubles-zero-sum #_mc/uniform-doubles]] (doseq [n (take 1 (bench/data-sizes))] (println (mc/fn-name generator) n (java.time.LocalDateTime/now)) (time (with-open [w (io/writer (defs/log-file *ns* (fname generator n "txt")))] (binding [*out* w] (let [data-map (bench/data generator n)] (reduce (fn [records record] (if record (let [records (conj records record)] (mc/write-tsv records (defs/data-file *ns*(fname generator n "tsv"))) records) records)) [] (for [f [#_mc/sum-DoubleAccumulator #_mc/sum-DoubleAdder #_mc/sum-DoubleSummaryStatistics #_mc/sum-Stats #_mc/sum-DescriptiveStatistics #_mc/sum-math3 #_mc/sum-SummaryStatistics #_mc/sum-SynchronizedSummaryStatistics #_mc/sum-areduce #_mc/sum-loop mc/sum-reduce #_mc/sum-big-decimal #_mc/sum-big-fraction #_mc/sum-ratio #_mc/sum-aprational]] (bench/bench f identity data-map)))))))))) ;;----------------------------------------------------------------
[ { "context": "(ns ^{:author \"James McClain <jwm@daystrom-data-concepts.com>\"}\n sr33.kdtree)", "end": 28, "score": 0.9998365640640259, "start": 15, "tag": "NAME", "value": "James McClain" }, { "context": "(ns ^{:author \"James McClain <jwm@daystrom-data-concepts.com>\"}\n sr33.kdtree)\n\n(set! *warn-on-reflection* tru", "end": 60, "score": 0.9999333024024963, "start": 30, "tag": "EMAIL", "value": "jwm@daystrom-data-concepts.com" } ]
src/sr33/kdtree.clj
jamesmcclain/sr33
1
(ns ^{:author "James McClain <jwm@daystrom-data-concepts.com>"} sr33.kdtree) (set! *warn-on-reflection* true) (set! *unchecked-math* true) ;; Euclidean distance. (defn distance [xyz abc] (letfn [(square [^double x] (double (* x x)))] (Math/sqrt (reduce + (map (comp square -) xyz abc))))) ;; Sub-query on a leaf of a KD-tree. (defn- kdtree-leaf [xyz tree queue] (let [dist (distance xyz (get tree :xyz)) entry (assoc tree :dist dist) k (count queue)] ;; XXX probably inefficient way to insert into already-sorted list (take k (sort-by :dist < (conj queue entry))))) ;; Sub-query a non-leaf of a KD-tree. This macro might not need to be a macro. (defmacro kdtree-inner [xyz tree queue stretch this that] `(let [queue# (kdtree-query-aux ~xyz (get ~tree ~this) ~queue) worst# (double (reduce max (map :dist queue#)))] ;; ``worst'' is the distance from the query point to the kth ;; closest point that we know about so far. ``stretch'' is the ;; distance from the query point to the boundary of the split. ;; If worst <= stretch, then we know that there is no profit in ;; searching the sibling. If not, then the sibling must be ;; searched. (if (<= worst# ~stretch) queue# (kdtree-query-aux ~xyz (get ~tree ~that) queue#)))) ;; Recursively query a KD-tree. (defn- kdtree-query-aux [xyz tree queue] (cond ; leaf (= (get tree :type) :leaf) (kdtree-leaf xyz tree queue) ; inner (= (get tree :type) :inner) ;; ``stretch'' is the distance from the query point to the boundary ;; of the split between the left and right sub-trees. If it is ;; negative, go left. If it is positive, go right. (let [stretch (- (double (nth xyz (:d tree))) (double (:split tree)))] (if (<= stretch 0) (kdtree-inner xyz tree queue (- stretch) :left :right) (kdtree-inner xyz tree queue stretch :right :left))))) ;; Query a KD-tree. (defn query [xyz tree k] (kdtree-query-aux xyz tree (take k (repeat {:dist Double/POSITIVE_INFINITY :index -1})))) (defn build ;; Takes just points as input. Augments the points with an index, ;; determines the dimensionality of the data, and calls the 3-atic ;; version of build to build the kd-tree. ([points] (let [dims (map count points) min-dim (reduce min dims) max-dim (reduce max dims)] (if (= min-dim max-dim) ; if all points have the same number of coordinates (build (map #(list %1 (long %2)) points (range)) 0 min-dim)))) ; give each point an index and build tree ;; Takes augmented points, current dimension, and number of ;; dimensions. Returns a kd-tree over the points. ([aug-points ^long d ^long ds] (let [n (count aug-points)] (if (<= n 1) ; a leaf {:type :leaf :xyz (first (first aug-points)) :index (second (first aug-points))} ; an inner node (letfn [(P [x] (nth (first x) d))] ; P is a projection (let [next-d (mod (inc d) ds) aug-points (sort-by P < aug-points) left (take (/ n 2) aug-points) right (drop (/ n 2) aug-points) split (/ (+ (double (P (last left))) (double (P (first right)))) 2.0)] {:type :inner :d d :split split :left (build left next-d ds) :right (build right next-d ds)}))))))
98230
(ns ^{:author "<NAME> <<EMAIL>>"} sr33.kdtree) (set! *warn-on-reflection* true) (set! *unchecked-math* true) ;; Euclidean distance. (defn distance [xyz abc] (letfn [(square [^double x] (double (* x x)))] (Math/sqrt (reduce + (map (comp square -) xyz abc))))) ;; Sub-query on a leaf of a KD-tree. (defn- kdtree-leaf [xyz tree queue] (let [dist (distance xyz (get tree :xyz)) entry (assoc tree :dist dist) k (count queue)] ;; XXX probably inefficient way to insert into already-sorted list (take k (sort-by :dist < (conj queue entry))))) ;; Sub-query a non-leaf of a KD-tree. This macro might not need to be a macro. (defmacro kdtree-inner [xyz tree queue stretch this that] `(let [queue# (kdtree-query-aux ~xyz (get ~tree ~this) ~queue) worst# (double (reduce max (map :dist queue#)))] ;; ``worst'' is the distance from the query point to the kth ;; closest point that we know about so far. ``stretch'' is the ;; distance from the query point to the boundary of the split. ;; If worst <= stretch, then we know that there is no profit in ;; searching the sibling. If not, then the sibling must be ;; searched. (if (<= worst# ~stretch) queue# (kdtree-query-aux ~xyz (get ~tree ~that) queue#)))) ;; Recursively query a KD-tree. (defn- kdtree-query-aux [xyz tree queue] (cond ; leaf (= (get tree :type) :leaf) (kdtree-leaf xyz tree queue) ; inner (= (get tree :type) :inner) ;; ``stretch'' is the distance from the query point to the boundary ;; of the split between the left and right sub-trees. If it is ;; negative, go left. If it is positive, go right. (let [stretch (- (double (nth xyz (:d tree))) (double (:split tree)))] (if (<= stretch 0) (kdtree-inner xyz tree queue (- stretch) :left :right) (kdtree-inner xyz tree queue stretch :right :left))))) ;; Query a KD-tree. (defn query [xyz tree k] (kdtree-query-aux xyz tree (take k (repeat {:dist Double/POSITIVE_INFINITY :index -1})))) (defn build ;; Takes just points as input. Augments the points with an index, ;; determines the dimensionality of the data, and calls the 3-atic ;; version of build to build the kd-tree. ([points] (let [dims (map count points) min-dim (reduce min dims) max-dim (reduce max dims)] (if (= min-dim max-dim) ; if all points have the same number of coordinates (build (map #(list %1 (long %2)) points (range)) 0 min-dim)))) ; give each point an index and build tree ;; Takes augmented points, current dimension, and number of ;; dimensions. Returns a kd-tree over the points. ([aug-points ^long d ^long ds] (let [n (count aug-points)] (if (<= n 1) ; a leaf {:type :leaf :xyz (first (first aug-points)) :index (second (first aug-points))} ; an inner node (letfn [(P [x] (nth (first x) d))] ; P is a projection (let [next-d (mod (inc d) ds) aug-points (sort-by P < aug-points) left (take (/ n 2) aug-points) right (drop (/ n 2) aug-points) split (/ (+ (double (P (last left))) (double (P (first right)))) 2.0)] {:type :inner :d d :split split :left (build left next-d ds) :right (build right next-d ds)}))))))
true
(ns ^{:author "PI:NAME:<NAME>END_PI <PI:EMAIL:<EMAIL>END_PI>"} sr33.kdtree) (set! *warn-on-reflection* true) (set! *unchecked-math* true) ;; Euclidean distance. (defn distance [xyz abc] (letfn [(square [^double x] (double (* x x)))] (Math/sqrt (reduce + (map (comp square -) xyz abc))))) ;; Sub-query on a leaf of a KD-tree. (defn- kdtree-leaf [xyz tree queue] (let [dist (distance xyz (get tree :xyz)) entry (assoc tree :dist dist) k (count queue)] ;; XXX probably inefficient way to insert into already-sorted list (take k (sort-by :dist < (conj queue entry))))) ;; Sub-query a non-leaf of a KD-tree. This macro might not need to be a macro. (defmacro kdtree-inner [xyz tree queue stretch this that] `(let [queue# (kdtree-query-aux ~xyz (get ~tree ~this) ~queue) worst# (double (reduce max (map :dist queue#)))] ;; ``worst'' is the distance from the query point to the kth ;; closest point that we know about so far. ``stretch'' is the ;; distance from the query point to the boundary of the split. ;; If worst <= stretch, then we know that there is no profit in ;; searching the sibling. If not, then the sibling must be ;; searched. (if (<= worst# ~stretch) queue# (kdtree-query-aux ~xyz (get ~tree ~that) queue#)))) ;; Recursively query a KD-tree. (defn- kdtree-query-aux [xyz tree queue] (cond ; leaf (= (get tree :type) :leaf) (kdtree-leaf xyz tree queue) ; inner (= (get tree :type) :inner) ;; ``stretch'' is the distance from the query point to the boundary ;; of the split between the left and right sub-trees. If it is ;; negative, go left. If it is positive, go right. (let [stretch (- (double (nth xyz (:d tree))) (double (:split tree)))] (if (<= stretch 0) (kdtree-inner xyz tree queue (- stretch) :left :right) (kdtree-inner xyz tree queue stretch :right :left))))) ;; Query a KD-tree. (defn query [xyz tree k] (kdtree-query-aux xyz tree (take k (repeat {:dist Double/POSITIVE_INFINITY :index -1})))) (defn build ;; Takes just points as input. Augments the points with an index, ;; determines the dimensionality of the data, and calls the 3-atic ;; version of build to build the kd-tree. ([points] (let [dims (map count points) min-dim (reduce min dims) max-dim (reduce max dims)] (if (= min-dim max-dim) ; if all points have the same number of coordinates (build (map #(list %1 (long %2)) points (range)) 0 min-dim)))) ; give each point an index and build tree ;; Takes augmented points, current dimension, and number of ;; dimensions. Returns a kd-tree over the points. ([aug-points ^long d ^long ds] (let [n (count aug-points)] (if (<= n 1) ; a leaf {:type :leaf :xyz (first (first aug-points)) :index (second (first aug-points))} ; an inner node (letfn [(P [x] (nth (first x) d))] ; P is a projection (let [next-d (mod (inc d) ds) aug-points (sort-by P < aug-points) left (take (/ n 2) aug-points) right (drop (/ n 2) aug-points) split (/ (+ (double (P (last left))) (double (P (first right)))) 2.0)] {:type :inner :d d :split split :left (build left next-d ds) :right (build right next-d ds)}))))))
[ { "context": "esource\n freesound.org\"\n :author \"Sam Aaron, Kevin Neaton\"}\n overtone.samples.freesound\n ", "end": 134, "score": 0.9998664259910583, "start": 125, "tag": "NAME", "value": "Sam Aaron" }, { "context": " freesound.org\"\n :author \"Sam Aaron, Kevin Neaton\"}\n overtone.samples.freesound\n (:use [overton", "end": 148, "score": 0.9998534321784973, "start": 136, "tag": "NAME", "value": "Kevin Neaton" }, { "context": "\"ea6297be42e9de76d47c\")\n(def ^:dynamic *api-key* \"32da10a118819877ec041752680588c62684c0b2\")\n(def ^:dynamic *access-token* (atom false))\n\n(d", "end": 798, "score": 0.9997673034667969, "start": 758, "tag": "KEY", "value": "32da10a118819877ec041752680588c62684c0b2" } ]
src/overtone/samples/freesound.clj
egoist999p/overtone
3,870
(ns ^{:doc "An API for interacting with the awesome free online sample resource freesound.org" :author "Sam Aaron, Kevin Neaton"} overtone.samples.freesound (:use [overtone.samples.freesound.url] [overtone.samples.freesound.search-results] [overtone.sc.node]) (:require [clojure.data.json :as json] [clojure.java.browse] [clojure.pprint] [overtone.libs.asset :as asset] [overtone.sc.sample :as samp] [overtone.sc.buffer :as buffer] [overtone.helpers.lib :refer [defrecord-ifn]] [overtone.helpers.file :refer [*authorization-header* file-extension]])) (def ^:dynamic *client-id* "ea6297be42e9de76d47c") (def ^:dynamic *api-key* "32da10a118819877ec041752680588c62684c0b2") (def ^:dynamic *access-token* (atom false)) (defonce ^{:private true} __RECORDS__ (do (defrecord-ifn FreesoundSample [id size n-channels rate status path args name freesound-id] samp/sample-player to-sc-id* (to-sc-id [this] (:id this))))) (derive FreesoundSample :overtone.sc.sample/playable-sample) (defmethod clojure.pprint/simple-dispatch FreesoundSample [b] (println (format "#<freesound[%s]: %d %s %fs %s %d>" (name @(:status b)) (:freesound-id b) (:name b) (:duration b) (cond (= 1 (:n-channels b)) "mono" (= 2 (:n-channels b)) "stereo" :else (str (:n-channels b) " channels")) (:id b)))) (defmethod print-method FreesoundSample [b ^java.io.Writer w] (.write w (format "#<freesound[%s]: %d %s %fs %s %d>" (name @(:status b)) (:freesound-id b) (:name b) (:duration b) (cond (= 1 (:n-channels b)) "mono" (= 2 (:n-channels b)) "stereo" :else (str (:n-channels b) " channels")) (:id b)))) (def ^:private base-url "https://www.freesound.org/apiv2") (defn- freesound-url "Generate a freesound.org api url. Accepts an optional map of query-params as the last argument." [& url-tail] (let [params (if (map? (last url-tail)) (last url-tail)) url-tail (if params (butlast url-tail) url-tail)] (build-url (apply str base-url url-tail) params))) (defn- slurp-json "Slurp and read the json asset." [f] (json/read-json (slurp f))) (def ^:private slurp-json-mem "A memoized version of slurp-json." (memoize slurp-json)) (defn- slurp-json-asset "Download, cache, and slurp-json." [url] (slurp-json (asset/asset-path url))) ;; a generic POST request, nothing specific to freesound (defn- post-request [url params] (let [^java.net.URL url (java.net.URL. url) ^java.net.HttpURLConnection con (.openConnection url)] (.setDoOutput con true) (.setRequestMethod con "POST") (let [w (java.io.BufferedWriter. (java.io.OutputStreamWriter. (.getOutputStream con)))] (.write w ^java.lang.String (encode-query params)) (.close w)) (let [r (.getInputStream con)] r))) (defn access-token [code] (let [r (:access_token (slurp-json (post-request (freesound-url "/oauth2/access_token/") {:client_id *client-id* :client_secret *api-key* :grant_type "authorization_code" :code code})))] (reset! *access-token* r))) (defn authorization-instructions [] (let [url (freesound-url "/oauth2/authorize/" {:client_id *client-id* :response_type "code"})] (println "Authorize in browser and paste code in Stdin.") (println url) (clojure.java.browse/browse-url url) (access-token (read-line)))) (defmacro with-authorization-header [b] `(binding [*authorization-header* (fn [] (when (not @*access-token*) (authorization-instructions)) (str "Bearer " @*access-token*))] ~b)) ;; ## Sound Info (defn- info-url "Generate a freesound url for fetching a json datastructure representing the info for a given id." [id] (freesound-url "/sounds/" id "/" {:format "json"})) (defn- freesound-filename "Returns filename string, and ensures that the filename ends with extension, in case it's not provided in the `:name` attribute." [info] (let [filename (str (or (:name info) (:id info))) filetype (str (:type info))] (if (file-extension filename) filename (str filename "." filetype)))) (defn freesound-info "Returns a map containing information pertaining to a particular freesound. The freesound id may be specified as an integer or string." [id] (with-authorization-header (slurp-json-asset (info-url id)))) ;; ## Sound Serve (defn- sound-serve-url "Generate a freesound url for fetching the original audio file by id." [id] (freesound-url "/sounds/" id "/download/")) (defn freesound-path "Download, cache, and persist the freesound audio file specified by id. Returns the path to a cached local copy of the audio file." [id] (let [info (freesound-info id) name (freesound-filename info) url (sound-serve-url id)] (with-authorization-header (asset/asset-path url name)))) (defn freesound-sample "Download, cache and persist the freesound audio file specified by id. Creates a buffer containing the sample loaded onto the server and returns a playable sample capable of playing the sample when called as a fn." [id & args] (let [path (freesound-path id) smpl (apply samp/load-sample path args) free-smpl (assoc smpl :freesound-id id) ] (map->FreesoundSample free-smpl))) (defn freesound-samples "Download, cache and persist multiple freesound audio files specified by ids. Creates a vector of buffers containing the samples loaded onto the server and returns a vector of playable samples, each capable of being when called as a fn." [& ids] (let [paths (mapv freesound-path ids) smpls (apply samp/load-samples paths) free-smpls (mapv #(assoc %1 :freesound-id %2) smpls ids)] (mapv map->FreesoundSample free-smpls))) (defn freesound "Download, cache and persist the freesound audio file specified by id. Creates a buffer containing the sample loaded onto the server and returns a playable sample capable of playing the sample when called as a fn." [id & args] (apply freesound-sample id args)) ;; ## Pack Info (defn- pack-info-url [id] (freesound-url "/packs/" id "/" {:format "json"})) (defn freesound-pack-info "Get information about a freesound sample pack. Returns a map of pack properties for the given pack id." [id] (with-authorization-header (slurp-json-asset (pack-info-url id)))) ;; ## Pack Serve (defn- pack-serve-url "Freesound url for fetching a zipped sample pack by id." [id] (freesound-url "/packs/" id "/download/")) (defn freesound-pack-dir "Download, cache, and persist all of the sounds in the freesound sample pack specified by id. Returns the path to a local directory containing the cached audio files." [id] (let [url (pack-serve-url id)] (with-authorization-header (asset/asset-bundle-dir url)))) ;; ## Sound Search (defn- search-url "Generate a freesound url for fetching a json datastructure representing the the results of a search." [params] (freesound-url "/sounds/search" params)) (defn- normalize-search-args "Takes a sequence of search args and returns a map of params for use with freesound-search*" ([] (normalize-search-args nil)) ([args] (let [ks (first args) ks (when (coll? ks) ks) args (if ks (rest args) args) q (first args) q (when (string? q) q) args (if q (rest args) args)] (-> (apply hash-map args) (assoc :ks ks :sounds_per_page 100) (update-in [:q] #(or q % "")))))) (defn- freesound-search* [params] (let [ks (:ks params) params (if ks (assoc params :ks nil :fields (name (first ks))) params) url (search-url params) next (next-fn *api-key* params) resp (api-seq url slurp-json-mem next) count (:num_results (first resp)) sounds (lazy-cats (map :sounds resp)) sounds (if ks (map #(get-in % ks) sounds) sounds)] (search-results count sounds))) (defn freesound-search "Search freesound.org. Returns an instance of SearchResults containing a LazySeq over the sounds matching your query. Makes a single api call to get the first page of the results and the total number of matches. Additional api calls will be made as necessary as the LazySeq is realized. Use #'count to get the number total number of sounds without realizing the entire seq. Examples: Search for sounds matching the query \"kick drum\" (freesound-search :q \"kick drum\") (freesound-search \"kick drum\") ;same as above. Use a keyseq to filter the results per #'clojure.core/get-in (freesound-search [:id] \"kick drum\") Get just the ids for all of the sounds in the pack called \"MISStereoPiano\" matching the query \"LOUD\". (freesound-search [:id] \"LOUD\" :f \"pack:MISStereoPiano\" For more information about search params see... http://www.freesound.org/docs/api/resources.(first ks)html#sound-search-resource" {:arglists '([ks* q* & params])} [& args] (freesound-search* (normalize-search-args args))) (defmacro freesound-searchm "Search freesound.org and expand the results at macro expansion time." {:arglists '([ks* q* & params])} [& args] ;(println "Compiling freesound search results...") (let [params (normalize-search-args args) search (freesound-search* params)] (dorun search) `[~@search])) (defn freesound-search-paths "Search and download. Downloads a caches the sound file matching your search query. Returns a collection of local file paths to the cached sound files." {:arglists '([query* & params])} [& args] (let [params (-> (normalize-search-args args) (assoc :fields "id") (dissoc :ks))] (map (fn [sound] (let [url (sound-serve-url (:id sound)) name (:original_filename sound)] (with-authorization-header (asset/asset-path url name)))) (freesound-search* params))))
63172
(ns ^{:doc "An API for interacting with the awesome free online sample resource freesound.org" :author "<NAME>, <NAME>"} overtone.samples.freesound (:use [overtone.samples.freesound.url] [overtone.samples.freesound.search-results] [overtone.sc.node]) (:require [clojure.data.json :as json] [clojure.java.browse] [clojure.pprint] [overtone.libs.asset :as asset] [overtone.sc.sample :as samp] [overtone.sc.buffer :as buffer] [overtone.helpers.lib :refer [defrecord-ifn]] [overtone.helpers.file :refer [*authorization-header* file-extension]])) (def ^:dynamic *client-id* "ea6297be42e9de76d47c") (def ^:dynamic *api-key* "<KEY>") (def ^:dynamic *access-token* (atom false)) (defonce ^{:private true} __RECORDS__ (do (defrecord-ifn FreesoundSample [id size n-channels rate status path args name freesound-id] samp/sample-player to-sc-id* (to-sc-id [this] (:id this))))) (derive FreesoundSample :overtone.sc.sample/playable-sample) (defmethod clojure.pprint/simple-dispatch FreesoundSample [b] (println (format "#<freesound[%s]: %d %s %fs %s %d>" (name @(:status b)) (:freesound-id b) (:name b) (:duration b) (cond (= 1 (:n-channels b)) "mono" (= 2 (:n-channels b)) "stereo" :else (str (:n-channels b) " channels")) (:id b)))) (defmethod print-method FreesoundSample [b ^java.io.Writer w] (.write w (format "#<freesound[%s]: %d %s %fs %s %d>" (name @(:status b)) (:freesound-id b) (:name b) (:duration b) (cond (= 1 (:n-channels b)) "mono" (= 2 (:n-channels b)) "stereo" :else (str (:n-channels b) " channels")) (:id b)))) (def ^:private base-url "https://www.freesound.org/apiv2") (defn- freesound-url "Generate a freesound.org api url. Accepts an optional map of query-params as the last argument." [& url-tail] (let [params (if (map? (last url-tail)) (last url-tail)) url-tail (if params (butlast url-tail) url-tail)] (build-url (apply str base-url url-tail) params))) (defn- slurp-json "Slurp and read the json asset." [f] (json/read-json (slurp f))) (def ^:private slurp-json-mem "A memoized version of slurp-json." (memoize slurp-json)) (defn- slurp-json-asset "Download, cache, and slurp-json." [url] (slurp-json (asset/asset-path url))) ;; a generic POST request, nothing specific to freesound (defn- post-request [url params] (let [^java.net.URL url (java.net.URL. url) ^java.net.HttpURLConnection con (.openConnection url)] (.setDoOutput con true) (.setRequestMethod con "POST") (let [w (java.io.BufferedWriter. (java.io.OutputStreamWriter. (.getOutputStream con)))] (.write w ^java.lang.String (encode-query params)) (.close w)) (let [r (.getInputStream con)] r))) (defn access-token [code] (let [r (:access_token (slurp-json (post-request (freesound-url "/oauth2/access_token/") {:client_id *client-id* :client_secret *api-key* :grant_type "authorization_code" :code code})))] (reset! *access-token* r))) (defn authorization-instructions [] (let [url (freesound-url "/oauth2/authorize/" {:client_id *client-id* :response_type "code"})] (println "Authorize in browser and paste code in Stdin.") (println url) (clojure.java.browse/browse-url url) (access-token (read-line)))) (defmacro with-authorization-header [b] `(binding [*authorization-header* (fn [] (when (not @*access-token*) (authorization-instructions)) (str "Bearer " @*access-token*))] ~b)) ;; ## Sound Info (defn- info-url "Generate a freesound url for fetching a json datastructure representing the info for a given id." [id] (freesound-url "/sounds/" id "/" {:format "json"})) (defn- freesound-filename "Returns filename string, and ensures that the filename ends with extension, in case it's not provided in the `:name` attribute." [info] (let [filename (str (or (:name info) (:id info))) filetype (str (:type info))] (if (file-extension filename) filename (str filename "." filetype)))) (defn freesound-info "Returns a map containing information pertaining to a particular freesound. The freesound id may be specified as an integer or string." [id] (with-authorization-header (slurp-json-asset (info-url id)))) ;; ## Sound Serve (defn- sound-serve-url "Generate a freesound url for fetching the original audio file by id." [id] (freesound-url "/sounds/" id "/download/")) (defn freesound-path "Download, cache, and persist the freesound audio file specified by id. Returns the path to a cached local copy of the audio file." [id] (let [info (freesound-info id) name (freesound-filename info) url (sound-serve-url id)] (with-authorization-header (asset/asset-path url name)))) (defn freesound-sample "Download, cache and persist the freesound audio file specified by id. Creates a buffer containing the sample loaded onto the server and returns a playable sample capable of playing the sample when called as a fn." [id & args] (let [path (freesound-path id) smpl (apply samp/load-sample path args) free-smpl (assoc smpl :freesound-id id) ] (map->FreesoundSample free-smpl))) (defn freesound-samples "Download, cache and persist multiple freesound audio files specified by ids. Creates a vector of buffers containing the samples loaded onto the server and returns a vector of playable samples, each capable of being when called as a fn." [& ids] (let [paths (mapv freesound-path ids) smpls (apply samp/load-samples paths) free-smpls (mapv #(assoc %1 :freesound-id %2) smpls ids)] (mapv map->FreesoundSample free-smpls))) (defn freesound "Download, cache and persist the freesound audio file specified by id. Creates a buffer containing the sample loaded onto the server and returns a playable sample capable of playing the sample when called as a fn." [id & args] (apply freesound-sample id args)) ;; ## Pack Info (defn- pack-info-url [id] (freesound-url "/packs/" id "/" {:format "json"})) (defn freesound-pack-info "Get information about a freesound sample pack. Returns a map of pack properties for the given pack id." [id] (with-authorization-header (slurp-json-asset (pack-info-url id)))) ;; ## Pack Serve (defn- pack-serve-url "Freesound url for fetching a zipped sample pack by id." [id] (freesound-url "/packs/" id "/download/")) (defn freesound-pack-dir "Download, cache, and persist all of the sounds in the freesound sample pack specified by id. Returns the path to a local directory containing the cached audio files." [id] (let [url (pack-serve-url id)] (with-authorization-header (asset/asset-bundle-dir url)))) ;; ## Sound Search (defn- search-url "Generate a freesound url for fetching a json datastructure representing the the results of a search." [params] (freesound-url "/sounds/search" params)) (defn- normalize-search-args "Takes a sequence of search args and returns a map of params for use with freesound-search*" ([] (normalize-search-args nil)) ([args] (let [ks (first args) ks (when (coll? ks) ks) args (if ks (rest args) args) q (first args) q (when (string? q) q) args (if q (rest args) args)] (-> (apply hash-map args) (assoc :ks ks :sounds_per_page 100) (update-in [:q] #(or q % "")))))) (defn- freesound-search* [params] (let [ks (:ks params) params (if ks (assoc params :ks nil :fields (name (first ks))) params) url (search-url params) next (next-fn *api-key* params) resp (api-seq url slurp-json-mem next) count (:num_results (first resp)) sounds (lazy-cats (map :sounds resp)) sounds (if ks (map #(get-in % ks) sounds) sounds)] (search-results count sounds))) (defn freesound-search "Search freesound.org. Returns an instance of SearchResults containing a LazySeq over the sounds matching your query. Makes a single api call to get the first page of the results and the total number of matches. Additional api calls will be made as necessary as the LazySeq is realized. Use #'count to get the number total number of sounds without realizing the entire seq. Examples: Search for sounds matching the query \"kick drum\" (freesound-search :q \"kick drum\") (freesound-search \"kick drum\") ;same as above. Use a keyseq to filter the results per #'clojure.core/get-in (freesound-search [:id] \"kick drum\") Get just the ids for all of the sounds in the pack called \"MISStereoPiano\" matching the query \"LOUD\". (freesound-search [:id] \"LOUD\" :f \"pack:MISStereoPiano\" For more information about search params see... http://www.freesound.org/docs/api/resources.(first ks)html#sound-search-resource" {:arglists '([ks* q* & params])} [& args] (freesound-search* (normalize-search-args args))) (defmacro freesound-searchm "Search freesound.org and expand the results at macro expansion time." {:arglists '([ks* q* & params])} [& args] ;(println "Compiling freesound search results...") (let [params (normalize-search-args args) search (freesound-search* params)] (dorun search) `[~@search])) (defn freesound-search-paths "Search and download. Downloads a caches the sound file matching your search query. Returns a collection of local file paths to the cached sound files." {:arglists '([query* & params])} [& args] (let [params (-> (normalize-search-args args) (assoc :fields "id") (dissoc :ks))] (map (fn [sound] (let [url (sound-serve-url (:id sound)) name (:original_filename sound)] (with-authorization-header (asset/asset-path url name)))) (freesound-search* params))))
true
(ns ^{:doc "An API for interacting with the awesome free online sample resource freesound.org" :author "PI:NAME:<NAME>END_PI, PI:NAME:<NAME>END_PI"} overtone.samples.freesound (:use [overtone.samples.freesound.url] [overtone.samples.freesound.search-results] [overtone.sc.node]) (:require [clojure.data.json :as json] [clojure.java.browse] [clojure.pprint] [overtone.libs.asset :as asset] [overtone.sc.sample :as samp] [overtone.sc.buffer :as buffer] [overtone.helpers.lib :refer [defrecord-ifn]] [overtone.helpers.file :refer [*authorization-header* file-extension]])) (def ^:dynamic *client-id* "ea6297be42e9de76d47c") (def ^:dynamic *api-key* "PI:KEY:<KEY>END_PI") (def ^:dynamic *access-token* (atom false)) (defonce ^{:private true} __RECORDS__ (do (defrecord-ifn FreesoundSample [id size n-channels rate status path args name freesound-id] samp/sample-player to-sc-id* (to-sc-id [this] (:id this))))) (derive FreesoundSample :overtone.sc.sample/playable-sample) (defmethod clojure.pprint/simple-dispatch FreesoundSample [b] (println (format "#<freesound[%s]: %d %s %fs %s %d>" (name @(:status b)) (:freesound-id b) (:name b) (:duration b) (cond (= 1 (:n-channels b)) "mono" (= 2 (:n-channels b)) "stereo" :else (str (:n-channels b) " channels")) (:id b)))) (defmethod print-method FreesoundSample [b ^java.io.Writer w] (.write w (format "#<freesound[%s]: %d %s %fs %s %d>" (name @(:status b)) (:freesound-id b) (:name b) (:duration b) (cond (= 1 (:n-channels b)) "mono" (= 2 (:n-channels b)) "stereo" :else (str (:n-channels b) " channels")) (:id b)))) (def ^:private base-url "https://www.freesound.org/apiv2") (defn- freesound-url "Generate a freesound.org api url. Accepts an optional map of query-params as the last argument." [& url-tail] (let [params (if (map? (last url-tail)) (last url-tail)) url-tail (if params (butlast url-tail) url-tail)] (build-url (apply str base-url url-tail) params))) (defn- slurp-json "Slurp and read the json asset." [f] (json/read-json (slurp f))) (def ^:private slurp-json-mem "A memoized version of slurp-json." (memoize slurp-json)) (defn- slurp-json-asset "Download, cache, and slurp-json." [url] (slurp-json (asset/asset-path url))) ;; a generic POST request, nothing specific to freesound (defn- post-request [url params] (let [^java.net.URL url (java.net.URL. url) ^java.net.HttpURLConnection con (.openConnection url)] (.setDoOutput con true) (.setRequestMethod con "POST") (let [w (java.io.BufferedWriter. (java.io.OutputStreamWriter. (.getOutputStream con)))] (.write w ^java.lang.String (encode-query params)) (.close w)) (let [r (.getInputStream con)] r))) (defn access-token [code] (let [r (:access_token (slurp-json (post-request (freesound-url "/oauth2/access_token/") {:client_id *client-id* :client_secret *api-key* :grant_type "authorization_code" :code code})))] (reset! *access-token* r))) (defn authorization-instructions [] (let [url (freesound-url "/oauth2/authorize/" {:client_id *client-id* :response_type "code"})] (println "Authorize in browser and paste code in Stdin.") (println url) (clojure.java.browse/browse-url url) (access-token (read-line)))) (defmacro with-authorization-header [b] `(binding [*authorization-header* (fn [] (when (not @*access-token*) (authorization-instructions)) (str "Bearer " @*access-token*))] ~b)) ;; ## Sound Info (defn- info-url "Generate a freesound url for fetching a json datastructure representing the info for a given id." [id] (freesound-url "/sounds/" id "/" {:format "json"})) (defn- freesound-filename "Returns filename string, and ensures that the filename ends with extension, in case it's not provided in the `:name` attribute." [info] (let [filename (str (or (:name info) (:id info))) filetype (str (:type info))] (if (file-extension filename) filename (str filename "." filetype)))) (defn freesound-info "Returns a map containing information pertaining to a particular freesound. The freesound id may be specified as an integer or string." [id] (with-authorization-header (slurp-json-asset (info-url id)))) ;; ## Sound Serve (defn- sound-serve-url "Generate a freesound url for fetching the original audio file by id." [id] (freesound-url "/sounds/" id "/download/")) (defn freesound-path "Download, cache, and persist the freesound audio file specified by id. Returns the path to a cached local copy of the audio file." [id] (let [info (freesound-info id) name (freesound-filename info) url (sound-serve-url id)] (with-authorization-header (asset/asset-path url name)))) (defn freesound-sample "Download, cache and persist the freesound audio file specified by id. Creates a buffer containing the sample loaded onto the server and returns a playable sample capable of playing the sample when called as a fn." [id & args] (let [path (freesound-path id) smpl (apply samp/load-sample path args) free-smpl (assoc smpl :freesound-id id) ] (map->FreesoundSample free-smpl))) (defn freesound-samples "Download, cache and persist multiple freesound audio files specified by ids. Creates a vector of buffers containing the samples loaded onto the server and returns a vector of playable samples, each capable of being when called as a fn." [& ids] (let [paths (mapv freesound-path ids) smpls (apply samp/load-samples paths) free-smpls (mapv #(assoc %1 :freesound-id %2) smpls ids)] (mapv map->FreesoundSample free-smpls))) (defn freesound "Download, cache and persist the freesound audio file specified by id. Creates a buffer containing the sample loaded onto the server and returns a playable sample capable of playing the sample when called as a fn." [id & args] (apply freesound-sample id args)) ;; ## Pack Info (defn- pack-info-url [id] (freesound-url "/packs/" id "/" {:format "json"})) (defn freesound-pack-info "Get information about a freesound sample pack. Returns a map of pack properties for the given pack id." [id] (with-authorization-header (slurp-json-asset (pack-info-url id)))) ;; ## Pack Serve (defn- pack-serve-url "Freesound url for fetching a zipped sample pack by id." [id] (freesound-url "/packs/" id "/download/")) (defn freesound-pack-dir "Download, cache, and persist all of the sounds in the freesound sample pack specified by id. Returns the path to a local directory containing the cached audio files." [id] (let [url (pack-serve-url id)] (with-authorization-header (asset/asset-bundle-dir url)))) ;; ## Sound Search (defn- search-url "Generate a freesound url for fetching a json datastructure representing the the results of a search." [params] (freesound-url "/sounds/search" params)) (defn- normalize-search-args "Takes a sequence of search args and returns a map of params for use with freesound-search*" ([] (normalize-search-args nil)) ([args] (let [ks (first args) ks (when (coll? ks) ks) args (if ks (rest args) args) q (first args) q (when (string? q) q) args (if q (rest args) args)] (-> (apply hash-map args) (assoc :ks ks :sounds_per_page 100) (update-in [:q] #(or q % "")))))) (defn- freesound-search* [params] (let [ks (:ks params) params (if ks (assoc params :ks nil :fields (name (first ks))) params) url (search-url params) next (next-fn *api-key* params) resp (api-seq url slurp-json-mem next) count (:num_results (first resp)) sounds (lazy-cats (map :sounds resp)) sounds (if ks (map #(get-in % ks) sounds) sounds)] (search-results count sounds))) (defn freesound-search "Search freesound.org. Returns an instance of SearchResults containing a LazySeq over the sounds matching your query. Makes a single api call to get the first page of the results and the total number of matches. Additional api calls will be made as necessary as the LazySeq is realized. Use #'count to get the number total number of sounds without realizing the entire seq. Examples: Search for sounds matching the query \"kick drum\" (freesound-search :q \"kick drum\") (freesound-search \"kick drum\") ;same as above. Use a keyseq to filter the results per #'clojure.core/get-in (freesound-search [:id] \"kick drum\") Get just the ids for all of the sounds in the pack called \"MISStereoPiano\" matching the query \"LOUD\". (freesound-search [:id] \"LOUD\" :f \"pack:MISStereoPiano\" For more information about search params see... http://www.freesound.org/docs/api/resources.(first ks)html#sound-search-resource" {:arglists '([ks* q* & params])} [& args] (freesound-search* (normalize-search-args args))) (defmacro freesound-searchm "Search freesound.org and expand the results at macro expansion time." {:arglists '([ks* q* & params])} [& args] ;(println "Compiling freesound search results...") (let [params (normalize-search-args args) search (freesound-search* params)] (dorun search) `[~@search])) (defn freesound-search-paths "Search and download. Downloads a caches the sound file matching your search query. Returns a collection of local file paths to the cached sound files." {:arglists '([query* & params])} [& args] (let [params (-> (normalize-search-args args) (assoc :fields "id") (dissoc :ks))] (map (fn [sound] (let [url (sound-serve-url (:id sound)) name (:original_filename sound)] (with-authorization-header (asset/asset-path url name)))) (freesound-search* params))))
[ { "context": ";; Copyright 2014-2020 King\n;; Copyright 2009-2014 Ragnar Svensson, Christian Murray\n;; Licensed under the Defold Li", "end": 111, "score": 0.99981689453125, "start": 96, "tag": "NAME", "value": "Ragnar Svensson" }, { "context": "-2020 King\n;; Copyright 2009-2014 Ragnar Svensson, Christian Murray\n;; Licensed under the Defold License version 1.0 ", "end": 129, "score": 0.9998170137405396, "start": 113, "tag": "NAME", "value": "Christian Murray" } ]
editor/src/clj/editor/script_api.clj
cmarincia/defold
0
;; Copyright 2020-2022 The Defold Foundation ;; Copyright 2014-2020 King ;; Copyright 2009-2014 Ragnar Svensson, Christian Murray ;; Licensed under the Defold License version 1.0 (the "License"); you may not use ;; this file except in compliance with the License. ;; ;; You may obtain a copy of the License, together with FAQs at ;; https://www.defold.com/license ;; ;; Unless required by applicable law or agreed to in writing, software distributed ;; under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR ;; CONDITIONS OF ANY KIND, either express or implied. See the License for the ;; specific language governing permissions and limitations under the License. (ns editor.script-api (:require [clojure.string :as string] [dynamo.graph :as g] [editor.code.data :as data] [editor.code.resource :as r] [editor.code.script-intelligence :as si] [editor.defold-project :as project] [editor.resource :as resource] [editor.workspace :as workspace] [editor.yamlparser :as yp] [internal.graph.error-values :as error-values]) (:import [org.snakeyaml.engine.v1.exceptions Mark MarkedYamlEngineException])) (set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) (defmulti convert "Converts YAML documentation input to the internal auto-complete format defined in `editor.lua` namespace." :type) (defn- name-with-ns [ns name] (if (nil? ns) name (str ns \. name))) (defmethod convert "table" [{:keys [ns name members desc]}] (let [name (name-with-ns ns name)] (into [{:type :namespace :name name :doc desc :display-string name :insert-string name}] (comp (filter map?) (map #(convert (assoc % :ns name)))) members))) (defn- bracketname? [x] (= \[ (first (:name x)))) (defn- optional-param? [x] (or (:optional x) (bracketname? x))) (defn- param-names [params remove-optional?] (let [filter-optionals (if remove-optional? (filter #(not (optional-param? %))) (map #(if (and (:optional %) (not (bracketname? %))) (assoc % :name (str "[" (:name %) "]")) %)))] (into [] (comp filter-optionals (map :name)) params))) (defn- build-param-string ([params] (build-param-string params false)) ([params remove-optional?] (str "(" (string/join ", " (param-names params remove-optional?)) ")"))) (defmethod convert "function" [{:keys [ns name desc parameters]}] (let [name (name-with-ns ns name)] {:type :function :name name :doc desc :display-string (str name (build-param-string parameters)) :insert-string (str name (build-param-string parameters true)) :tab-triggers {:select (param-names parameters true) :exit (when parameters ")")}})) (defmethod convert :default [{:keys [ns name desc]}] (when name (let [name (name-with-ns ns name)] {:type :variable :name name :doc desc :display-string name :insert-string name}))) (defn convert-lines [lines] (into [] (comp (map convert) (remove nil?)) (-> (data/lines-reader lines) (yp/load keyword)))) (defn combine-conversions "This function combines the individual hierarchical conversions into a map where all the namespaces are keys at the top level mapping to a vector of their respective contents. A global namespace is also added with the empty string as a name, which contains a vector of namespace entries to enable auto completion of namespace names." [conversions] (first (reduce (fn [[m ns] x] (cond ;; Recurse into sublevels and merge the current map with the ;; result. Any key collisions will have vector values so we ;; can merge them with into. (vector? x) [(merge-with into m (combine-conversions x)) ns] (= :namespace (:type x)) [(let [m (assoc m (:name x) []) m (if-not (= "" ns) (update m ns conj x) m)] ;; Always add namespaces as members ;; of the global namespace. (update m "" conj x)) (:name x)] x [(update m ns conj x) ns] ;; Don't add empty parse results. They are probably ;; from syntactically valid but incomplete yaml ;; records. :else [m ns])) [{"" []} ""] conversions))) (defn lines->completion-info [lines] (combine-conversions (convert-lines lines))) (g/defnk produce-completions [parse-result] (g/precluding-errors parse-result parse-result)) (g/defnk produce-parse-result [_node-id lines] (try (lines->completion-info lines) (catch MarkedYamlEngineException myee (let [mark ^Mark (.get (.getProblemMark myee)) row (.getLine mark) col (.getColumn mark) cursor-range (data/Cursor->CursorRange (data/->Cursor row col)) message (string/trim (.getMessage myee)) ev (-> (error-values/error-fatal message) (assoc-in [:user-data :cursor-range] cursor-range))] (g/package-errors _node-id ev))))) (g/defnk produce-build-errors [parse-result] (when (g/error-package? parse-result) parse-result)) (g/defnode ScriptApiNode (inherits r/CodeEditorResourceNode) (output parse-result g/Any :cached produce-parse-result) (output build-errors g/Any produce-build-errors) (output completions si/ScriptCompletions produce-completions)) (defn- load-script-api [project self resource] (let [si (project/script-intelligence project)] (concat (g/connect self :completions si :lua-completions) (when (resource/file-resource? resource) ;; Only connect to the script-intelligence build errors if this is ;; a file resource. The assumption is that if it is a file ;; resource then it is being actively worked on. Otherwise it ;; belongs to an external dependency and should not stop the build ;; on errors. (concat (g/connect self :build-errors si :build-errors) (g/connect self :save-data project :save-data)))))) (defn register-resource-types [workspace] (workspace/register-resource-type workspace :ext "script_api" :label "Script API" :icon "icons/32/Icons_29-AT-Unknown.png" :view-types [:code :default] :view-opts nil :node-type ScriptApiNode :load-fn load-script-api :read-fn r/read-fn :write-fn r/write-fn :textual? true :auto-connect-save-data? false))
23235
;; Copyright 2020-2022 The Defold Foundation ;; Copyright 2014-2020 King ;; Copyright 2009-2014 <NAME>, <NAME> ;; Licensed under the Defold License version 1.0 (the "License"); you may not use ;; this file except in compliance with the License. ;; ;; You may obtain a copy of the License, together with FAQs at ;; https://www.defold.com/license ;; ;; Unless required by applicable law or agreed to in writing, software distributed ;; under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR ;; CONDITIONS OF ANY KIND, either express or implied. See the License for the ;; specific language governing permissions and limitations under the License. (ns editor.script-api (:require [clojure.string :as string] [dynamo.graph :as g] [editor.code.data :as data] [editor.code.resource :as r] [editor.code.script-intelligence :as si] [editor.defold-project :as project] [editor.resource :as resource] [editor.workspace :as workspace] [editor.yamlparser :as yp] [internal.graph.error-values :as error-values]) (:import [org.snakeyaml.engine.v1.exceptions Mark MarkedYamlEngineException])) (set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) (defmulti convert "Converts YAML documentation input to the internal auto-complete format defined in `editor.lua` namespace." :type) (defn- name-with-ns [ns name] (if (nil? ns) name (str ns \. name))) (defmethod convert "table" [{:keys [ns name members desc]}] (let [name (name-with-ns ns name)] (into [{:type :namespace :name name :doc desc :display-string name :insert-string name}] (comp (filter map?) (map #(convert (assoc % :ns name)))) members))) (defn- bracketname? [x] (= \[ (first (:name x)))) (defn- optional-param? [x] (or (:optional x) (bracketname? x))) (defn- param-names [params remove-optional?] (let [filter-optionals (if remove-optional? (filter #(not (optional-param? %))) (map #(if (and (:optional %) (not (bracketname? %))) (assoc % :name (str "[" (:name %) "]")) %)))] (into [] (comp filter-optionals (map :name)) params))) (defn- build-param-string ([params] (build-param-string params false)) ([params remove-optional?] (str "(" (string/join ", " (param-names params remove-optional?)) ")"))) (defmethod convert "function" [{:keys [ns name desc parameters]}] (let [name (name-with-ns ns name)] {:type :function :name name :doc desc :display-string (str name (build-param-string parameters)) :insert-string (str name (build-param-string parameters true)) :tab-triggers {:select (param-names parameters true) :exit (when parameters ")")}})) (defmethod convert :default [{:keys [ns name desc]}] (when name (let [name (name-with-ns ns name)] {:type :variable :name name :doc desc :display-string name :insert-string name}))) (defn convert-lines [lines] (into [] (comp (map convert) (remove nil?)) (-> (data/lines-reader lines) (yp/load keyword)))) (defn combine-conversions "This function combines the individual hierarchical conversions into a map where all the namespaces are keys at the top level mapping to a vector of their respective contents. A global namespace is also added with the empty string as a name, which contains a vector of namespace entries to enable auto completion of namespace names." [conversions] (first (reduce (fn [[m ns] x] (cond ;; Recurse into sublevels and merge the current map with the ;; result. Any key collisions will have vector values so we ;; can merge them with into. (vector? x) [(merge-with into m (combine-conversions x)) ns] (= :namespace (:type x)) [(let [m (assoc m (:name x) []) m (if-not (= "" ns) (update m ns conj x) m)] ;; Always add namespaces as members ;; of the global namespace. (update m "" conj x)) (:name x)] x [(update m ns conj x) ns] ;; Don't add empty parse results. They are probably ;; from syntactically valid but incomplete yaml ;; records. :else [m ns])) [{"" []} ""] conversions))) (defn lines->completion-info [lines] (combine-conversions (convert-lines lines))) (g/defnk produce-completions [parse-result] (g/precluding-errors parse-result parse-result)) (g/defnk produce-parse-result [_node-id lines] (try (lines->completion-info lines) (catch MarkedYamlEngineException myee (let [mark ^Mark (.get (.getProblemMark myee)) row (.getLine mark) col (.getColumn mark) cursor-range (data/Cursor->CursorRange (data/->Cursor row col)) message (string/trim (.getMessage myee)) ev (-> (error-values/error-fatal message) (assoc-in [:user-data :cursor-range] cursor-range))] (g/package-errors _node-id ev))))) (g/defnk produce-build-errors [parse-result] (when (g/error-package? parse-result) parse-result)) (g/defnode ScriptApiNode (inherits r/CodeEditorResourceNode) (output parse-result g/Any :cached produce-parse-result) (output build-errors g/Any produce-build-errors) (output completions si/ScriptCompletions produce-completions)) (defn- load-script-api [project self resource] (let [si (project/script-intelligence project)] (concat (g/connect self :completions si :lua-completions) (when (resource/file-resource? resource) ;; Only connect to the script-intelligence build errors if this is ;; a file resource. The assumption is that if it is a file ;; resource then it is being actively worked on. Otherwise it ;; belongs to an external dependency and should not stop the build ;; on errors. (concat (g/connect self :build-errors si :build-errors) (g/connect self :save-data project :save-data)))))) (defn register-resource-types [workspace] (workspace/register-resource-type workspace :ext "script_api" :label "Script API" :icon "icons/32/Icons_29-AT-Unknown.png" :view-types [:code :default] :view-opts nil :node-type ScriptApiNode :load-fn load-script-api :read-fn r/read-fn :write-fn r/write-fn :textual? true :auto-connect-save-data? false))
true
;; Copyright 2020-2022 The Defold Foundation ;; Copyright 2014-2020 King ;; Copyright 2009-2014 PI:NAME:<NAME>END_PI, PI:NAME:<NAME>END_PI ;; Licensed under the Defold License version 1.0 (the "License"); you may not use ;; this file except in compliance with the License. ;; ;; You may obtain a copy of the License, together with FAQs at ;; https://www.defold.com/license ;; ;; Unless required by applicable law or agreed to in writing, software distributed ;; under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR ;; CONDITIONS OF ANY KIND, either express or implied. See the License for the ;; specific language governing permissions and limitations under the License. (ns editor.script-api (:require [clojure.string :as string] [dynamo.graph :as g] [editor.code.data :as data] [editor.code.resource :as r] [editor.code.script-intelligence :as si] [editor.defold-project :as project] [editor.resource :as resource] [editor.workspace :as workspace] [editor.yamlparser :as yp] [internal.graph.error-values :as error-values]) (:import [org.snakeyaml.engine.v1.exceptions Mark MarkedYamlEngineException])) (set! *warn-on-reflection* true) (set! *unchecked-math* :warn-on-boxed) (defmulti convert "Converts YAML documentation input to the internal auto-complete format defined in `editor.lua` namespace." :type) (defn- name-with-ns [ns name] (if (nil? ns) name (str ns \. name))) (defmethod convert "table" [{:keys [ns name members desc]}] (let [name (name-with-ns ns name)] (into [{:type :namespace :name name :doc desc :display-string name :insert-string name}] (comp (filter map?) (map #(convert (assoc % :ns name)))) members))) (defn- bracketname? [x] (= \[ (first (:name x)))) (defn- optional-param? [x] (or (:optional x) (bracketname? x))) (defn- param-names [params remove-optional?] (let [filter-optionals (if remove-optional? (filter #(not (optional-param? %))) (map #(if (and (:optional %) (not (bracketname? %))) (assoc % :name (str "[" (:name %) "]")) %)))] (into [] (comp filter-optionals (map :name)) params))) (defn- build-param-string ([params] (build-param-string params false)) ([params remove-optional?] (str "(" (string/join ", " (param-names params remove-optional?)) ")"))) (defmethod convert "function" [{:keys [ns name desc parameters]}] (let [name (name-with-ns ns name)] {:type :function :name name :doc desc :display-string (str name (build-param-string parameters)) :insert-string (str name (build-param-string parameters true)) :tab-triggers {:select (param-names parameters true) :exit (when parameters ")")}})) (defmethod convert :default [{:keys [ns name desc]}] (when name (let [name (name-with-ns ns name)] {:type :variable :name name :doc desc :display-string name :insert-string name}))) (defn convert-lines [lines] (into [] (comp (map convert) (remove nil?)) (-> (data/lines-reader lines) (yp/load keyword)))) (defn combine-conversions "This function combines the individual hierarchical conversions into a map where all the namespaces are keys at the top level mapping to a vector of their respective contents. A global namespace is also added with the empty string as a name, which contains a vector of namespace entries to enable auto completion of namespace names." [conversions] (first (reduce (fn [[m ns] x] (cond ;; Recurse into sublevels and merge the current map with the ;; result. Any key collisions will have vector values so we ;; can merge them with into. (vector? x) [(merge-with into m (combine-conversions x)) ns] (= :namespace (:type x)) [(let [m (assoc m (:name x) []) m (if-not (= "" ns) (update m ns conj x) m)] ;; Always add namespaces as members ;; of the global namespace. (update m "" conj x)) (:name x)] x [(update m ns conj x) ns] ;; Don't add empty parse results. They are probably ;; from syntactically valid but incomplete yaml ;; records. :else [m ns])) [{"" []} ""] conversions))) (defn lines->completion-info [lines] (combine-conversions (convert-lines lines))) (g/defnk produce-completions [parse-result] (g/precluding-errors parse-result parse-result)) (g/defnk produce-parse-result [_node-id lines] (try (lines->completion-info lines) (catch MarkedYamlEngineException myee (let [mark ^Mark (.get (.getProblemMark myee)) row (.getLine mark) col (.getColumn mark) cursor-range (data/Cursor->CursorRange (data/->Cursor row col)) message (string/trim (.getMessage myee)) ev (-> (error-values/error-fatal message) (assoc-in [:user-data :cursor-range] cursor-range))] (g/package-errors _node-id ev))))) (g/defnk produce-build-errors [parse-result] (when (g/error-package? parse-result) parse-result)) (g/defnode ScriptApiNode (inherits r/CodeEditorResourceNode) (output parse-result g/Any :cached produce-parse-result) (output build-errors g/Any produce-build-errors) (output completions si/ScriptCompletions produce-completions)) (defn- load-script-api [project self resource] (let [si (project/script-intelligence project)] (concat (g/connect self :completions si :lua-completions) (when (resource/file-resource? resource) ;; Only connect to the script-intelligence build errors if this is ;; a file resource. The assumption is that if it is a file ;; resource then it is being actively worked on. Otherwise it ;; belongs to an external dependency and should not stop the build ;; on errors. (concat (g/connect self :build-errors si :build-errors) (g/connect self :save-data project :save-data)))))) (defn register-resource-types [workspace] (workspace/register-resource-type workspace :ext "script_api" :label "Script API" :icon "icons/32/Icons_29-AT-Unknown.png" :view-types [:code :default] :view-opts nil :node-type ScriptApiNode :load-fn load-script-api :read-fn r/read-fn :write-fn r/write-fn :textual? true :auto-connect-save-data? false))
[ { "context": "; Copyright (c) 2017-present Walmart, Inc.\n;\n; Licensed under the Apache License", "end": 30, "score": 0.560901939868927, "start": 29, "tag": "NAME", "value": "W" } ]
test/com/walmartlabs/lacinia/wrapped_values_in_lists_tests.clj
hagenek/lacinia
1,762
; Copyright (c) 2017-present Walmart, Inc. ; ; Licensed under the Apache License, Version 2.0 (the "License") ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ; See the License for the specific language governing permissions and ; limitations under the License. (ns com.walmartlabs.lacinia.wrapped-values-in-lists-tests "Tests that wrapped values inside lists (returned by field resolvers) are properly handled." (:require [clojure.test :refer [deftest is]] [com.walmartlabs.lacinia.resolve :refer [with-context]] [com.walmartlabs.lacinia.schema :as schema] [com.walmartlabs.test-utils :as utils])) (def ^:private compiled-schema (schema/compile {:objects {:IdObj {:fields {:id {:type 'String} :xid {:type 'String :resolve (fn [context _ obj] (str (::root-prefix context) "-" (::item-prefix context) "-" (:id obj)))}}}} :queries {:objects {:type '(list :IdObj) :args {:root_prefix {:type 'String}} :resolve (fn [_ args _] (with-context (->> [100 200 555] (map #(hash-map :id (format "%05d" %))) (map-indexed (fn [i v] (with-context v {::item-prefix (str "i" i)})))) {::root-prefix (:root_prefix args)}))}}})) (deftest exposes-context-to-sub-resolvers (is (= {:data {:objects [{:id "00100" :xid "r-i0-00100"} {:id "00200" :xid "r-i1-00200"} {:id "00555" :xid "r-i2-00555"}]}} (utils/execute compiled-schema "{ objects(root_prefix: \"r\") { id xid }}"))))
109183
; Copyright (c) 2017-present <NAME>almart, Inc. ; ; Licensed under the Apache License, Version 2.0 (the "License") ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ; See the License for the specific language governing permissions and ; limitations under the License. (ns com.walmartlabs.lacinia.wrapped-values-in-lists-tests "Tests that wrapped values inside lists (returned by field resolvers) are properly handled." (:require [clojure.test :refer [deftest is]] [com.walmartlabs.lacinia.resolve :refer [with-context]] [com.walmartlabs.lacinia.schema :as schema] [com.walmartlabs.test-utils :as utils])) (def ^:private compiled-schema (schema/compile {:objects {:IdObj {:fields {:id {:type 'String} :xid {:type 'String :resolve (fn [context _ obj] (str (::root-prefix context) "-" (::item-prefix context) "-" (:id obj)))}}}} :queries {:objects {:type '(list :IdObj) :args {:root_prefix {:type 'String}} :resolve (fn [_ args _] (with-context (->> [100 200 555] (map #(hash-map :id (format "%05d" %))) (map-indexed (fn [i v] (with-context v {::item-prefix (str "i" i)})))) {::root-prefix (:root_prefix args)}))}}})) (deftest exposes-context-to-sub-resolvers (is (= {:data {:objects [{:id "00100" :xid "r-i0-00100"} {:id "00200" :xid "r-i1-00200"} {:id "00555" :xid "r-i2-00555"}]}} (utils/execute compiled-schema "{ objects(root_prefix: \"r\") { id xid }}"))))
true
; Copyright (c) 2017-present PI:NAME:<NAME>END_PIalmart, Inc. ; ; Licensed under the Apache License, Version 2.0 (the "License") ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ; See the License for the specific language governing permissions and ; limitations under the License. (ns com.walmartlabs.lacinia.wrapped-values-in-lists-tests "Tests that wrapped values inside lists (returned by field resolvers) are properly handled." (:require [clojure.test :refer [deftest is]] [com.walmartlabs.lacinia.resolve :refer [with-context]] [com.walmartlabs.lacinia.schema :as schema] [com.walmartlabs.test-utils :as utils])) (def ^:private compiled-schema (schema/compile {:objects {:IdObj {:fields {:id {:type 'String} :xid {:type 'String :resolve (fn [context _ obj] (str (::root-prefix context) "-" (::item-prefix context) "-" (:id obj)))}}}} :queries {:objects {:type '(list :IdObj) :args {:root_prefix {:type 'String}} :resolve (fn [_ args _] (with-context (->> [100 200 555] (map #(hash-map :id (format "%05d" %))) (map-indexed (fn [i v] (with-context v {::item-prefix (str "i" i)})))) {::root-prefix (:root_prefix args)}))}}})) (deftest exposes-context-to-sub-resolvers (is (= {:data {:objects [{:id "00100" :xid "r-i0-00100"} {:id "00200" :xid "r-i1-00200"} {:id "00555" :xid "r-i2-00555"}]}} (utils/execute compiled-schema "{ objects(root_prefix: \"r\") { id xid }}"))))
[ { "context": "ating colour swatches\"\n :url \"https://github.com/rm-hull/corewar\"\n :license {\n :name \"The MIT License ", "end": 163, "score": 0.9988507628440857, "start": 156, "tag": "USERNAME", "value": "rm-hull" }, { "context": "m-hull/cljs-test \"0.0.8-SNAPSHOT\"]]\n :scm {:url \"git@github.com:rm-hull/corewar.git\"}\n :plugins [\n [codox \"0.", "end": 486, "score": 0.9994097948074341, "start": 472, "tag": "EMAIL", "value": "git@github.com" }, { "context": "t \"0.0.8-SNAPSHOT\"]]\n :scm {:url \"git@github.com:rm-hull/corewar.git\"}\n :plugins [\n [codox \"0.8.10\"]\n ", "end": 494, "score": 0.987886905670166, "start": 487, "tag": "USERNAME", "value": "rm-hull" }, { "context": "dir \"doc/api\"\n :src-dir-uri \"http://github.com/rm-hull/corewar/blob/master/\"\n :src-linenum-anchor-pre", "end": 1633, "score": 0.9996625781059265, "start": 1626, "tag": "USERNAME", "value": "rm-hull" } ]
project.clj
rm-hull/corewar
7
(defproject rm-hull/corewar "0.0.1-SNAPSHOT" :description "A small Clojure/ClojureScript library for creating colour swatches" :url "https://github.com/rm-hull/corewar" :license { :name "The MIT License (MIT)" :url "http://opensource.org/licenses/MIT"} :dependencies [ [org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-2280"] [org.clojure/core.async "0.1.303.0-886421-alpha"] [rm-hull/cljs-test "0.0.8-SNAPSHOT"]] :scm {:url "git@github.com:rm-hull/corewar.git"} :plugins [ [codox "0.8.10"] [lein-cljsbuild "1.0.3"] [com.birdseye-sw/lein-dalap "0.1.1"]] :hooks [ leiningen.dalap ;leiningen.cljsbuild ] :source-paths ["src"] :profiles {:dev {:dependencies [[org.clojure/test.check "0.5.9"]]}} :cljsbuild { :repl-listen-port 9000 :repl-launch-commands {"firefox" ["firefox"]} :test-commands {"phantomjs" ["phantomjs" "target/unit-test.js"]} :builds { :main { :source-paths ["target/generated-src"] :jar true :compiler { :output-to "target/corewar.js" :source-map "target/corewar.map" :static-fns true ;:optimizations :advanced :pretty-print true }} :test { :source-paths ["target/generated-src" "test"] :incremental? true :compiler { :output-to "target/unit-test.js" :source-map "target/unit-test.map" :static-fns true :optimizations :whitespace :pretty-print true }}}} :codox { :sources ["src"] :output-dir "doc/api" :src-dir-uri "http://github.com/rm-hull/corewar/blob/master/" :src-linenum-anchor-prefix "L" } :min-lein-version "2.4.2" :global-vars {*warn-on-reflection* true})
43291
(defproject rm-hull/corewar "0.0.1-SNAPSHOT" :description "A small Clojure/ClojureScript library for creating colour swatches" :url "https://github.com/rm-hull/corewar" :license { :name "The MIT License (MIT)" :url "http://opensource.org/licenses/MIT"} :dependencies [ [org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-2280"] [org.clojure/core.async "0.1.303.0-886421-alpha"] [rm-hull/cljs-test "0.0.8-SNAPSHOT"]] :scm {:url "<EMAIL>:rm-hull/corewar.git"} :plugins [ [codox "0.8.10"] [lein-cljsbuild "1.0.3"] [com.birdseye-sw/lein-dalap "0.1.1"]] :hooks [ leiningen.dalap ;leiningen.cljsbuild ] :source-paths ["src"] :profiles {:dev {:dependencies [[org.clojure/test.check "0.5.9"]]}} :cljsbuild { :repl-listen-port 9000 :repl-launch-commands {"firefox" ["firefox"]} :test-commands {"phantomjs" ["phantomjs" "target/unit-test.js"]} :builds { :main { :source-paths ["target/generated-src"] :jar true :compiler { :output-to "target/corewar.js" :source-map "target/corewar.map" :static-fns true ;:optimizations :advanced :pretty-print true }} :test { :source-paths ["target/generated-src" "test"] :incremental? true :compiler { :output-to "target/unit-test.js" :source-map "target/unit-test.map" :static-fns true :optimizations :whitespace :pretty-print true }}}} :codox { :sources ["src"] :output-dir "doc/api" :src-dir-uri "http://github.com/rm-hull/corewar/blob/master/" :src-linenum-anchor-prefix "L" } :min-lein-version "2.4.2" :global-vars {*warn-on-reflection* true})
true
(defproject rm-hull/corewar "0.0.1-SNAPSHOT" :description "A small Clojure/ClojureScript library for creating colour swatches" :url "https://github.com/rm-hull/corewar" :license { :name "The MIT License (MIT)" :url "http://opensource.org/licenses/MIT"} :dependencies [ [org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-2280"] [org.clojure/core.async "0.1.303.0-886421-alpha"] [rm-hull/cljs-test "0.0.8-SNAPSHOT"]] :scm {:url "PI:EMAIL:<EMAIL>END_PI:rm-hull/corewar.git"} :plugins [ [codox "0.8.10"] [lein-cljsbuild "1.0.3"] [com.birdseye-sw/lein-dalap "0.1.1"]] :hooks [ leiningen.dalap ;leiningen.cljsbuild ] :source-paths ["src"] :profiles {:dev {:dependencies [[org.clojure/test.check "0.5.9"]]}} :cljsbuild { :repl-listen-port 9000 :repl-launch-commands {"firefox" ["firefox"]} :test-commands {"phantomjs" ["phantomjs" "target/unit-test.js"]} :builds { :main { :source-paths ["target/generated-src"] :jar true :compiler { :output-to "target/corewar.js" :source-map "target/corewar.map" :static-fns true ;:optimizations :advanced :pretty-print true }} :test { :source-paths ["target/generated-src" "test"] :incremental? true :compiler { :output-to "target/unit-test.js" :source-map "target/unit-test.map" :static-fns true :optimizations :whitespace :pretty-print true }}}} :codox { :sources ["src"] :output-dir "doc/api" :src-dir-uri "http://github.com/rm-hull/corewar/blob/master/" :src-linenum-anchor-prefix "L" } :min-lein-version "2.4.2" :global-vars {*warn-on-reflection* true})
[ { "context": ";\n; Copyright © 2021 Peter Monks\n;\n; Licensed under the Apache License, Version 2.", "end": 32, "score": 0.9994940757751465, "start": 21, "tag": "NAME", "value": "Peter Monks" } ]
src/bot/commands.clj
pmonks/discljord-utils
1
; ; Copyright © 2021 Peter Monks ; ; Licensed under the Apache License, Version 2.0 (the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ; See the License for the specific language governing permissions and ; limitations under the License. ; ; SPDX-License-Identifier: Apache-2.0 ; (ns bot.commands (:require [clojure.string :as s] [clojure.tools.logging :as log] [java-time :as tm] [mount.core :as mnt :refer [defstate]] [discljord-utils.util :as u] [discljord-utils.message-util :as mu] [bot.config :as cfg])) (def prefix "!") (defn embed-template "Generates a default template for embeds." [] {:color (get-in cfg/config [:bot :colour]) :footer {:text (get-in cfg/config [:bot :name]) :icon_url (get-in cfg/config [:bot :logo])} :timestamp (str (tm/instant))}) (defn privacy-command! "Provides a link to the bot's privacy policy" [_ event-data] (when-let [build-url (:build-url cfg/build-info)] (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :embed (assoc (embed-template) :description (str "[" (get-in cfg/config [:bot :name]) "'s privacy policy is available here]" "(" (s/replace build-url "/tree/" "/blob/") "/PRIVACY.md)."))))) (defn status-command! "Provides technical status of the bot" [_ event-data] (let [now (tm/instant)] (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :embed (assoc (embed-template) :fields [ {:name "Running for" :value (str (u/human-readable-date-diff cfg/boot-time now))} {:name "Built at" :value (str (tm/format :iso-instant (:build-date cfg/build-info)) (when (:repo cfg/build-info) (str " from [" (if-let [tag (:tag cfg/build-info)] tag (:sha cfg/build-info)) "](" (:build-url cfg/build-info) ")")))} ; Table of fields here {:name "Clojure" :value (str "v" (clojure-version)) :inline true} {:name "JVM" :value (str (System/getProperty "java.vm.vendor") " v" (System/getProperty "java.vm.version") " (" (System/getProperty "os.name") "/" (System/getProperty "os.arch") ")") :inline true} ; Force a newline (Discord is hardcoded to show 3 fields per line), by using Unicode zero width spaces (empty/blank strings won't work!) {:name "​" :value "​" :inline true} {:name "Heap memory in use" :value (u/human-readable-size (.getUsed (.getHeapMemoryUsage (java.lang.management.ManagementFactory/getMemoryMXBean)))) :inline true} {:name "Non-heap memory in use" :value (u/human-readable-size (.getUsed (.getNonHeapMemoryUsage (java.lang.management.ManagementFactory/getMemoryMXBean)))) :inline true} ])))) (defn gc-command! "Requests that the bot's JVM perform a GC cycle." [_ event-data] (System/gc) (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :content "Garbage collection requested.")) (defn set-logging-command! "Sets the log level for the given logger" [args event-data] (let [[level logger] (s/split args #"\s+")] (if (and (not (s/blank? level)) (not (s/blank? logger))) (do (cfg/set-log-level! level logger) (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :content (str "Logging level " (s/upper-case level) " set for logger '" logger "'."))) (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :content "Logging level or logger not provided; logging level must be one of: ERROR, WARN, INFO, DEBUG, TRACE")))) (defn debug-logging-command! "Enables debug logging, which turns on TRACE for 'discljord' and DEBUG for the bot's top-level namespace." [_ event-data] (let [bot-tlns (first (s/split (str (:bot-ns cfg/config)) #"\.+"))] (cfg/set-log-level! "TRACE" "discljord") (cfg/set-log-level! "DEBUG" bot-tlns) (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :content (str "Debug logging enabled (TRACE for 'discljord' and DEBUG for '" bot-tlns "'.")))) (defn reset-logging-command! "Resets all log levels to their configured defaults." [_ event-data] (cfg/reset-logging!) (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :content "Logging configuration reset.")) (declare help-command!) (defn- find-bot-ns-commands "Find all public bot commands in the namespace represented by the given symbol, loading it if necessary" [ns-sym] (when ns-sym (require ns-sym) (into {} (for [[_ v] (ns-publics (find-ns ns-sym))] (when-let [bot-command (:bot-command (meta v))] [bot-command v]))))) ; Table of "public" commands; those that can be used in any channel, group or DM (declare public-command-dispatch-table) (defstate public-command-dispatch-table :start (merge {"help" #'help-command! "privacy" #'privacy-command!} (find-bot-ns-commands (get-in cfg/config [:bot :ns-sym])))) ; Table of "secret" commands; those that don't show up in the help and can only be used in a DM (def secret-command-dispatch-table {"status" #'status-command! "gc" #'gc-command! "setlogging" #'set-logging-command! "debuglogging" #'debug-logging-command! "resetlogging" #'reset-logging-command!}) (defn help-command! "Displays this help message" [_ event-data] (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :embed (assoc (embed-template) :description (str "I understand the following command(s):\n" (s/join "\n" (map #(str " • **`" prefix (key %) "`** - " (:doc (meta (val %)))) (sort-by key public-command-dispatch-table))))))) ; Responsive fns (defmulti handle-discord-event "Discord event handler" (fn [event-type _] event-type)) ; Default Discord event handler (noop) (defmethod handle-discord-event :default [_ _]) (defmethod handle-discord-event :message-create [_ event-data] ; Only respond to messages sent from a human (when (mu/human-message? event-data) (future ; Spin off the actual processing, so we don't clog the Discord event queue (try (let [content (s/triml (:content event-data))] (if (s/starts-with? content prefix) ; Parse the requested command and call it, if it exists (let [command-and-args (s/split content #"\s+" 2) command (s/lower-case (subs (s/trim (first command-and-args)) (count prefix))) args (second command-and-args)] (if-let [public-command-fn (get public-command-dispatch-table command)] (do (log/debug (str "Calling public command fn for '" command "' with args '" args "'.")) (public-command-fn args event-data)) (when (mu/direct-message? event-data) (if-let [secret-command-fn (get secret-command-dispatch-table command)] (do (log/debug (str "Calling secret command fn for '" command "' with args '" args "'.")) (secret-command-fn args event-data)) (help-command! nil event-data))))) ; If the requested secret command doesn't exist, provide help ; If any unrecognised message was sent to a DM channel, provide help (when (mu/direct-message? event-data) (help-command! nil event-data)))) (catch Exception e (u/log-exception e))))))
27359
; ; Copyright © 2021 <NAME> ; ; Licensed under the Apache License, Version 2.0 (the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ; See the License for the specific language governing permissions and ; limitations under the License. ; ; SPDX-License-Identifier: Apache-2.0 ; (ns bot.commands (:require [clojure.string :as s] [clojure.tools.logging :as log] [java-time :as tm] [mount.core :as mnt :refer [defstate]] [discljord-utils.util :as u] [discljord-utils.message-util :as mu] [bot.config :as cfg])) (def prefix "!") (defn embed-template "Generates a default template for embeds." [] {:color (get-in cfg/config [:bot :colour]) :footer {:text (get-in cfg/config [:bot :name]) :icon_url (get-in cfg/config [:bot :logo])} :timestamp (str (tm/instant))}) (defn privacy-command! "Provides a link to the bot's privacy policy" [_ event-data] (when-let [build-url (:build-url cfg/build-info)] (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :embed (assoc (embed-template) :description (str "[" (get-in cfg/config [:bot :name]) "'s privacy policy is available here]" "(" (s/replace build-url "/tree/" "/blob/") "/PRIVACY.md)."))))) (defn status-command! "Provides technical status of the bot" [_ event-data] (let [now (tm/instant)] (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :embed (assoc (embed-template) :fields [ {:name "Running for" :value (str (u/human-readable-date-diff cfg/boot-time now))} {:name "Built at" :value (str (tm/format :iso-instant (:build-date cfg/build-info)) (when (:repo cfg/build-info) (str " from [" (if-let [tag (:tag cfg/build-info)] tag (:sha cfg/build-info)) "](" (:build-url cfg/build-info) ")")))} ; Table of fields here {:name "Clojure" :value (str "v" (clojure-version)) :inline true} {:name "JVM" :value (str (System/getProperty "java.vm.vendor") " v" (System/getProperty "java.vm.version") " (" (System/getProperty "os.name") "/" (System/getProperty "os.arch") ")") :inline true} ; Force a newline (Discord is hardcoded to show 3 fields per line), by using Unicode zero width spaces (empty/blank strings won't work!) {:name "​" :value "​" :inline true} {:name "Heap memory in use" :value (u/human-readable-size (.getUsed (.getHeapMemoryUsage (java.lang.management.ManagementFactory/getMemoryMXBean)))) :inline true} {:name "Non-heap memory in use" :value (u/human-readable-size (.getUsed (.getNonHeapMemoryUsage (java.lang.management.ManagementFactory/getMemoryMXBean)))) :inline true} ])))) (defn gc-command! "Requests that the bot's JVM perform a GC cycle." [_ event-data] (System/gc) (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :content "Garbage collection requested.")) (defn set-logging-command! "Sets the log level for the given logger" [args event-data] (let [[level logger] (s/split args #"\s+")] (if (and (not (s/blank? level)) (not (s/blank? logger))) (do (cfg/set-log-level! level logger) (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :content (str "Logging level " (s/upper-case level) " set for logger '" logger "'."))) (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :content "Logging level or logger not provided; logging level must be one of: ERROR, WARN, INFO, DEBUG, TRACE")))) (defn debug-logging-command! "Enables debug logging, which turns on TRACE for 'discljord' and DEBUG for the bot's top-level namespace." [_ event-data] (let [bot-tlns (first (s/split (str (:bot-ns cfg/config)) #"\.+"))] (cfg/set-log-level! "TRACE" "discljord") (cfg/set-log-level! "DEBUG" bot-tlns) (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :content (str "Debug logging enabled (TRACE for 'discljord' and DEBUG for '" bot-tlns "'.")))) (defn reset-logging-command! "Resets all log levels to their configured defaults." [_ event-data] (cfg/reset-logging!) (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :content "Logging configuration reset.")) (declare help-command!) (defn- find-bot-ns-commands "Find all public bot commands in the namespace represented by the given symbol, loading it if necessary" [ns-sym] (when ns-sym (require ns-sym) (into {} (for [[_ v] (ns-publics (find-ns ns-sym))] (when-let [bot-command (:bot-command (meta v))] [bot-command v]))))) ; Table of "public" commands; those that can be used in any channel, group or DM (declare public-command-dispatch-table) (defstate public-command-dispatch-table :start (merge {"help" #'help-command! "privacy" #'privacy-command!} (find-bot-ns-commands (get-in cfg/config [:bot :ns-sym])))) ; Table of "secret" commands; those that don't show up in the help and can only be used in a DM (def secret-command-dispatch-table {"status" #'status-command! "gc" #'gc-command! "setlogging" #'set-logging-command! "debuglogging" #'debug-logging-command! "resetlogging" #'reset-logging-command!}) (defn help-command! "Displays this help message" [_ event-data] (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :embed (assoc (embed-template) :description (str "I understand the following command(s):\n" (s/join "\n" (map #(str " • **`" prefix (key %) "`** - " (:doc (meta (val %)))) (sort-by key public-command-dispatch-table))))))) ; Responsive fns (defmulti handle-discord-event "Discord event handler" (fn [event-type _] event-type)) ; Default Discord event handler (noop) (defmethod handle-discord-event :default [_ _]) (defmethod handle-discord-event :message-create [_ event-data] ; Only respond to messages sent from a human (when (mu/human-message? event-data) (future ; Spin off the actual processing, so we don't clog the Discord event queue (try (let [content (s/triml (:content event-data))] (if (s/starts-with? content prefix) ; Parse the requested command and call it, if it exists (let [command-and-args (s/split content #"\s+" 2) command (s/lower-case (subs (s/trim (first command-and-args)) (count prefix))) args (second command-and-args)] (if-let [public-command-fn (get public-command-dispatch-table command)] (do (log/debug (str "Calling public command fn for '" command "' with args '" args "'.")) (public-command-fn args event-data)) (when (mu/direct-message? event-data) (if-let [secret-command-fn (get secret-command-dispatch-table command)] (do (log/debug (str "Calling secret command fn for '" command "' with args '" args "'.")) (secret-command-fn args event-data)) (help-command! nil event-data))))) ; If the requested secret command doesn't exist, provide help ; If any unrecognised message was sent to a DM channel, provide help (when (mu/direct-message? event-data) (help-command! nil event-data)))) (catch Exception e (u/log-exception e))))))
true
; ; Copyright © 2021 PI:NAME:<NAME>END_PI ; ; Licensed under the Apache License, Version 2.0 (the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ; See the License for the specific language governing permissions and ; limitations under the License. ; ; SPDX-License-Identifier: Apache-2.0 ; (ns bot.commands (:require [clojure.string :as s] [clojure.tools.logging :as log] [java-time :as tm] [mount.core :as mnt :refer [defstate]] [discljord-utils.util :as u] [discljord-utils.message-util :as mu] [bot.config :as cfg])) (def prefix "!") (defn embed-template "Generates a default template for embeds." [] {:color (get-in cfg/config [:bot :colour]) :footer {:text (get-in cfg/config [:bot :name]) :icon_url (get-in cfg/config [:bot :logo])} :timestamp (str (tm/instant))}) (defn privacy-command! "Provides a link to the bot's privacy policy" [_ event-data] (when-let [build-url (:build-url cfg/build-info)] (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :embed (assoc (embed-template) :description (str "[" (get-in cfg/config [:bot :name]) "'s privacy policy is available here]" "(" (s/replace build-url "/tree/" "/blob/") "/PRIVACY.md)."))))) (defn status-command! "Provides technical status of the bot" [_ event-data] (let [now (tm/instant)] (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :embed (assoc (embed-template) :fields [ {:name "Running for" :value (str (u/human-readable-date-diff cfg/boot-time now))} {:name "Built at" :value (str (tm/format :iso-instant (:build-date cfg/build-info)) (when (:repo cfg/build-info) (str " from [" (if-let [tag (:tag cfg/build-info)] tag (:sha cfg/build-info)) "](" (:build-url cfg/build-info) ")")))} ; Table of fields here {:name "Clojure" :value (str "v" (clojure-version)) :inline true} {:name "JVM" :value (str (System/getProperty "java.vm.vendor") " v" (System/getProperty "java.vm.version") " (" (System/getProperty "os.name") "/" (System/getProperty "os.arch") ")") :inline true} ; Force a newline (Discord is hardcoded to show 3 fields per line), by using Unicode zero width spaces (empty/blank strings won't work!) {:name "​" :value "​" :inline true} {:name "Heap memory in use" :value (u/human-readable-size (.getUsed (.getHeapMemoryUsage (java.lang.management.ManagementFactory/getMemoryMXBean)))) :inline true} {:name "Non-heap memory in use" :value (u/human-readable-size (.getUsed (.getNonHeapMemoryUsage (java.lang.management.ManagementFactory/getMemoryMXBean)))) :inline true} ])))) (defn gc-command! "Requests that the bot's JVM perform a GC cycle." [_ event-data] (System/gc) (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :content "Garbage collection requested.")) (defn set-logging-command! "Sets the log level for the given logger" [args event-data] (let [[level logger] (s/split args #"\s+")] (if (and (not (s/blank? level)) (not (s/blank? logger))) (do (cfg/set-log-level! level logger) (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :content (str "Logging level " (s/upper-case level) " set for logger '" logger "'."))) (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :content "Logging level or logger not provided; logging level must be one of: ERROR, WARN, INFO, DEBUG, TRACE")))) (defn debug-logging-command! "Enables debug logging, which turns on TRACE for 'discljord' and DEBUG for the bot's top-level namespace." [_ event-data] (let [bot-tlns (first (s/split (str (:bot-ns cfg/config)) #"\.+"))] (cfg/set-log-level! "TRACE" "discljord") (cfg/set-log-level! "DEBUG" bot-tlns) (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :content (str "Debug logging enabled (TRACE for 'discljord' and DEBUG for '" bot-tlns "'.")))) (defn reset-logging-command! "Resets all log levels to their configured defaults." [_ event-data] (cfg/reset-logging!) (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :content "Logging configuration reset.")) (declare help-command!) (defn- find-bot-ns-commands "Find all public bot commands in the namespace represented by the given symbol, loading it if necessary" [ns-sym] (when ns-sym (require ns-sym) (into {} (for [[_ v] (ns-publics (find-ns ns-sym))] (when-let [bot-command (:bot-command (meta v))] [bot-command v]))))) ; Table of "public" commands; those that can be used in any channel, group or DM (declare public-command-dispatch-table) (defstate public-command-dispatch-table :start (merge {"help" #'help-command! "privacy" #'privacy-command!} (find-bot-ns-commands (get-in cfg/config [:bot :ns-sym])))) ; Table of "secret" commands; those that don't show up in the help and can only be used in a DM (def secret-command-dispatch-table {"status" #'status-command! "gc" #'gc-command! "setlogging" #'set-logging-command! "debuglogging" #'debug-logging-command! "resetlogging" #'reset-logging-command!}) (defn help-command! "Displays this help message" [_ event-data] (mu/create-message! (:discord-message-channel cfg/config) (:channel-id event-data) :embed (assoc (embed-template) :description (str "I understand the following command(s):\n" (s/join "\n" (map #(str " • **`" prefix (key %) "`** - " (:doc (meta (val %)))) (sort-by key public-command-dispatch-table))))))) ; Responsive fns (defmulti handle-discord-event "Discord event handler" (fn [event-type _] event-type)) ; Default Discord event handler (noop) (defmethod handle-discord-event :default [_ _]) (defmethod handle-discord-event :message-create [_ event-data] ; Only respond to messages sent from a human (when (mu/human-message? event-data) (future ; Spin off the actual processing, so we don't clog the Discord event queue (try (let [content (s/triml (:content event-data))] (if (s/starts-with? content prefix) ; Parse the requested command and call it, if it exists (let [command-and-args (s/split content #"\s+" 2) command (s/lower-case (subs (s/trim (first command-and-args)) (count prefix))) args (second command-and-args)] (if-let [public-command-fn (get public-command-dispatch-table command)] (do (log/debug (str "Calling public command fn for '" command "' with args '" args "'.")) (public-command-fn args event-data)) (when (mu/direct-message? event-data) (if-let [secret-command-fn (get secret-command-dispatch-table command)] (do (log/debug (str "Calling secret command fn for '" command "' with args '" args "'.")) (secret-command-fn args event-data)) (help-command! nil event-data))))) ; If the requested secret command doesn't exist, provide help ; If any unrecognised message was sent to a DM channel, provide help (when (mu/direct-message? event-data) (help-command! nil event-data)))) (catch Exception e (u/log-exception e))))))
[ { "context": ";; Copyright 2012 Mika Raento (mikie@iki.fi)\n;;\n;; Licensed under The BSD 2-Cla", "end": 29, "score": 0.9998741149902344, "start": 18, "tag": "NAME", "value": "Mika Raento" }, { "context": ";; Copyright 2012 Mika Raento (mikie@iki.fi)\n;;\n;; Licensed under The BSD 2-Clause License\n\n(", "end": 43, "score": 0.9999246597290039, "start": 31, "tag": "EMAIL", "value": "mikie@iki.fi" } ]
mkswigfile.clj
mikaraento/mkswigfile
2
;; Copyright 2012 Mika Raento (mikie@iki.fi) ;; ;; Licensed under The BSD 2-Clause License (ns mkswigfile "Loading of new swig code into your jvm - like mkoctfile for octave. The swig code must: - only declare functions, not classes - use not-publicly-visible implementations (either use static or an anonumous namespace). - not contain a %module statement You should be able to use whatever typemaps you think make sense for your code." (:use clojure.java.io clojure.java.shell)) (defn- make-def "Define a function in this namespace that has the same name as the given (static) Method and calls the method. We have to use intern and not defn (even through a macro) as all macros are expanded at compile time." [^java.lang.reflect.Method method] (let [nm-sym (symbol (.getName method))] (ns-unmap *ns* nm-sym) (intern *ns* nm-sym (fn [& args] (.invoke method nil (object-array args)))))) (defn- sh-or-die "Call clojure.java.shell/sh with the given args and check that the command succeeded. If it didn't throw an Error." [& args] (let [ret (apply sh args)] (when-not (zero? (get ret :exit)) (throw (Error. ^String (apply str (concat ["Failed to execute command "] (interleave args (repeat " ")) [" returned " (str ret)]))))))) (defn mkswigfile "Compile the given swig file that should only have function declarations (no classes), load the new code (class) and define the functions in the swig file in this namespace. The default flags only work on OS-X jni.h in the place where my Java installation put it, and require code to pass as c++." [^String filename0 &{:keys [swig cc swigflags ccflags] :or {swig "swig" cc "g++" ccflags ["-fPIC" "-shared" "-flat_namespace" "-I/System/Library/Frameworks/JavaVM.framework/Headers/"] swigflags ["-c++"]}}] (let [^String contents (slurp (as-file filename0)) filename (.replaceAll filename0 "/" "_") ;; Use java tmpdir for the created swig, java and c++ source ;; files as well as compiled class and so files. tmpdir (as-file (System/getProperty "java.io.tmpdir")) id (str "mksf" (.replaceAll (.toString (java.util.UUID/randomUUID)) "-" "")) out-dir (file tmpdir (as-file id)) wrapped (.replace filename ".i" "_wrap.cxx") i-file (file out-dir (as-file filename)) jnilib-file (file out-dir (as-file "libmksf.so")) jnilib (.getAbsolutePath jnilib-file)] (assert (not (.exists out-dir))) (assert (.mkdir out-dir)) (with-open [i-writer (writer i-file)] ;; The module becomes the java class name, have to have one (.write i-writer (str "%module mkswigfile\n")) (.write i-writer contents) ;; The library needs to be loaded from the jni wrapper class ;; so that's in the right classloader. (.write i-writer "%pragma(java) jniclasscode=%{\n") (.write i-writer (str " static { System.load(\"" jnilib "\"); }")) (.write i-writer "%}\n")) (with-sh-dir out-dir (apply sh-or-die (concat [swig] swigflags ["-package" id "-java" filename])) (sh-or-die "bash" "-c" "javac *java") (apply sh-or-die (concat [cc] ccflags ["-o" jnilib wrapped]))) ;; Have to use a separate classloader to access the tmpdir. ;; If things go really well once you reload a new version the ;; classloader becomes available for GC and eventually even ;; unloads the native library. (let [url (java.net.URL. (str "file:" (.getAbsolutePath tmpdir) "/")) urls (into-array java.net.URL [url]) loader (java.net.URLClassLoader. urls) c (.loadClass loader (str id ".mkswigfile")) ms (.getMethods c) own-ms (filter #(= (.getDeclaringClass ^java.lang.reflect.Method %) c) ms)] (doall (map make-def own-ms)))))
89674
;; Copyright 2012 <NAME> (<EMAIL>) ;; ;; Licensed under The BSD 2-Clause License (ns mkswigfile "Loading of new swig code into your jvm - like mkoctfile for octave. The swig code must: - only declare functions, not classes - use not-publicly-visible implementations (either use static or an anonumous namespace). - not contain a %module statement You should be able to use whatever typemaps you think make sense for your code." (:use clojure.java.io clojure.java.shell)) (defn- make-def "Define a function in this namespace that has the same name as the given (static) Method and calls the method. We have to use intern and not defn (even through a macro) as all macros are expanded at compile time." [^java.lang.reflect.Method method] (let [nm-sym (symbol (.getName method))] (ns-unmap *ns* nm-sym) (intern *ns* nm-sym (fn [& args] (.invoke method nil (object-array args)))))) (defn- sh-or-die "Call clojure.java.shell/sh with the given args and check that the command succeeded. If it didn't throw an Error." [& args] (let [ret (apply sh args)] (when-not (zero? (get ret :exit)) (throw (Error. ^String (apply str (concat ["Failed to execute command "] (interleave args (repeat " ")) [" returned " (str ret)]))))))) (defn mkswigfile "Compile the given swig file that should only have function declarations (no classes), load the new code (class) and define the functions in the swig file in this namespace. The default flags only work on OS-X jni.h in the place where my Java installation put it, and require code to pass as c++." [^String filename0 &{:keys [swig cc swigflags ccflags] :or {swig "swig" cc "g++" ccflags ["-fPIC" "-shared" "-flat_namespace" "-I/System/Library/Frameworks/JavaVM.framework/Headers/"] swigflags ["-c++"]}}] (let [^String contents (slurp (as-file filename0)) filename (.replaceAll filename0 "/" "_") ;; Use java tmpdir for the created swig, java and c++ source ;; files as well as compiled class and so files. tmpdir (as-file (System/getProperty "java.io.tmpdir")) id (str "mksf" (.replaceAll (.toString (java.util.UUID/randomUUID)) "-" "")) out-dir (file tmpdir (as-file id)) wrapped (.replace filename ".i" "_wrap.cxx") i-file (file out-dir (as-file filename)) jnilib-file (file out-dir (as-file "libmksf.so")) jnilib (.getAbsolutePath jnilib-file)] (assert (not (.exists out-dir))) (assert (.mkdir out-dir)) (with-open [i-writer (writer i-file)] ;; The module becomes the java class name, have to have one (.write i-writer (str "%module mkswigfile\n")) (.write i-writer contents) ;; The library needs to be loaded from the jni wrapper class ;; so that's in the right classloader. (.write i-writer "%pragma(java) jniclasscode=%{\n") (.write i-writer (str " static { System.load(\"" jnilib "\"); }")) (.write i-writer "%}\n")) (with-sh-dir out-dir (apply sh-or-die (concat [swig] swigflags ["-package" id "-java" filename])) (sh-or-die "bash" "-c" "javac *java") (apply sh-or-die (concat [cc] ccflags ["-o" jnilib wrapped]))) ;; Have to use a separate classloader to access the tmpdir. ;; If things go really well once you reload a new version the ;; classloader becomes available for GC and eventually even ;; unloads the native library. (let [url (java.net.URL. (str "file:" (.getAbsolutePath tmpdir) "/")) urls (into-array java.net.URL [url]) loader (java.net.URLClassLoader. urls) c (.loadClass loader (str id ".mkswigfile")) ms (.getMethods c) own-ms (filter #(= (.getDeclaringClass ^java.lang.reflect.Method %) c) ms)] (doall (map make-def own-ms)))))
true
;; Copyright 2012 PI:NAME:<NAME>END_PI (PI:EMAIL:<EMAIL>END_PI) ;; ;; Licensed under The BSD 2-Clause License (ns mkswigfile "Loading of new swig code into your jvm - like mkoctfile for octave. The swig code must: - only declare functions, not classes - use not-publicly-visible implementations (either use static or an anonumous namespace). - not contain a %module statement You should be able to use whatever typemaps you think make sense for your code." (:use clojure.java.io clojure.java.shell)) (defn- make-def "Define a function in this namespace that has the same name as the given (static) Method and calls the method. We have to use intern and not defn (even through a macro) as all macros are expanded at compile time." [^java.lang.reflect.Method method] (let [nm-sym (symbol (.getName method))] (ns-unmap *ns* nm-sym) (intern *ns* nm-sym (fn [& args] (.invoke method nil (object-array args)))))) (defn- sh-or-die "Call clojure.java.shell/sh with the given args and check that the command succeeded. If it didn't throw an Error." [& args] (let [ret (apply sh args)] (when-not (zero? (get ret :exit)) (throw (Error. ^String (apply str (concat ["Failed to execute command "] (interleave args (repeat " ")) [" returned " (str ret)]))))))) (defn mkswigfile "Compile the given swig file that should only have function declarations (no classes), load the new code (class) and define the functions in the swig file in this namespace. The default flags only work on OS-X jni.h in the place where my Java installation put it, and require code to pass as c++." [^String filename0 &{:keys [swig cc swigflags ccflags] :or {swig "swig" cc "g++" ccflags ["-fPIC" "-shared" "-flat_namespace" "-I/System/Library/Frameworks/JavaVM.framework/Headers/"] swigflags ["-c++"]}}] (let [^String contents (slurp (as-file filename0)) filename (.replaceAll filename0 "/" "_") ;; Use java tmpdir for the created swig, java and c++ source ;; files as well as compiled class and so files. tmpdir (as-file (System/getProperty "java.io.tmpdir")) id (str "mksf" (.replaceAll (.toString (java.util.UUID/randomUUID)) "-" "")) out-dir (file tmpdir (as-file id)) wrapped (.replace filename ".i" "_wrap.cxx") i-file (file out-dir (as-file filename)) jnilib-file (file out-dir (as-file "libmksf.so")) jnilib (.getAbsolutePath jnilib-file)] (assert (not (.exists out-dir))) (assert (.mkdir out-dir)) (with-open [i-writer (writer i-file)] ;; The module becomes the java class name, have to have one (.write i-writer (str "%module mkswigfile\n")) (.write i-writer contents) ;; The library needs to be loaded from the jni wrapper class ;; so that's in the right classloader. (.write i-writer "%pragma(java) jniclasscode=%{\n") (.write i-writer (str " static { System.load(\"" jnilib "\"); }")) (.write i-writer "%}\n")) (with-sh-dir out-dir (apply sh-or-die (concat [swig] swigflags ["-package" id "-java" filename])) (sh-or-die "bash" "-c" "javac *java") (apply sh-or-die (concat [cc] ccflags ["-o" jnilib wrapped]))) ;; Have to use a separate classloader to access the tmpdir. ;; If things go really well once you reload a new version the ;; classloader becomes available for GC and eventually even ;; unloads the native library. (let [url (java.net.URL. (str "file:" (.getAbsolutePath tmpdir) "/")) urls (into-array java.net.URL [url]) loader (java.net.URLClassLoader. urls) c (.loadClass loader (str id ".mkswigfile")) ms (.getMethods c) own-ms (filter #(= (.getDeclaringClass ^java.lang.reflect.Method %) c) ms)] (doall (map make-def own-ms)))))
[ { "context": ";; Copyright 2014-2015 Andrey Antukh <niwi@niwi.nz>\n;;\n;; Licensed under the Apache Li", "end": 36, "score": 0.9998779296875, "start": 23, "tag": "NAME", "value": "Andrey Antukh" }, { "context": ";; Copyright 2014-2015 Andrey Antukh <niwi@niwi.nz>\n;;\n;; Licensed under the Apache License, Version", "end": 50, "score": 0.9999328851699829, "start": 38, "tag": "EMAIL", "value": "niwi@niwi.nz" } ]
test/buddy/sign/interop_tests.clj
FieryCod/buddy-sign
0
;; Copyright 2014-2015 Andrey Antukh <niwi@niwi.nz> ;; ;; Licensed under the Apache License, Version 2.0 (the "License") ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. (ns buddy.sign.interop-tests (:require [clojure.test :refer :all] [clojure.string :as str] [buddy.core.codecs :as codecs] [buddy.core.crypto :as crypto] [buddy.core.bytes :as bytes] [buddy.core.nonce :as nonce] [buddy.core.keys :as keys] [buddy.sign.jwe :as jwe] [buddy.sign.jws :as jws] [buddy.sign.jwt :as jwt] [buddy.sign.util :as util] [cheshire.core :as json]) (:import com.nimbusds.jose.JWEHeader com.nimbusds.jose.JWSHeader com.nimbusds.jose.JWEAlgorithm com.nimbusds.jose.JWSAlgorithm com.nimbusds.jose.EncryptionMethod com.nimbusds.jose.Payload com.nimbusds.jose.JWEObject com.nimbusds.jwt.EncryptedJWT com.nimbusds.jwt.SignedJWT com.nimbusds.jwt.JWTClaimsSet com.nimbusds.jwt.JWTClaimsSet$Builder com.nimbusds.jose.crypto.MACSigner com.nimbusds.jose.crypto.MACVerifier com.nimbusds.jose.crypto.DirectEncrypter com.nimbusds.jose.crypto.DirectDecrypter com.nimbusds.jose.crypto.ECDSAVerifier (javax.crypto KeyGenerator) (java.security.interfaces ECPublicKey ECPrivateKey) (java.security SecureRandom KeyPairGenerator) (java.security.spec ECGenParameterSpec))) (def secret (codecs/hex->bytes (str "000102030405060708090a0b0c0d0e0f" "101112131415161718191a1b1c1d1e1f"))) (def data {:userid 1 :scope "auth"}) (def key16 (nonce/random-bytes 16)) (def key24 (nonce/random-bytes 24)) (def key32 (nonce/random-bytes 32)) (def key32' (nonce/random-bytes 32)) (def key48 (nonce/random-bytes 48)) (def key64 (nonce/random-bytes 64)) (def rsa-privkey (keys/private-key "test/_files/privkey.3des.rsa.pem" "secret")) (def rsa-pubkey (keys/public-key "test/_files/pubkey.3des.rsa.pem")) (def ec-privkey (keys/private-key "test/_files/privkey.ecdsa.pem" "secret")) (def ec-pubkey (keys/public-key "test/_files/pubkey.ecdsa.pem")) (deftest interoperability-test-1 (let [header (JWEHeader. JWEAlgorithm/DIR EncryptionMethod/A128GCM) claimsbuilder (doto (JWTClaimsSet$Builder.) (.claim "test1" "test")) claims (.build claimsbuilder) jwt (doto (EncryptedJWT. header claims) (.encrypt (DirectEncrypter. ^bytes key16))) result (.serialize jwt)] (let [data (jwt/decrypt result key16 {:alg :dir :enc :a128gcm})] (is (= data {:test1 "test"}))))) (deftest interoperability-test-2 (let [^String token (jwt/encrypt {:test1 "test"} key16 {:alg :dir :enc :a128gcm}) jwt (doto (EncryptedJWT/parse token) (.decrypt (DirectDecrypter. ^bytes key16)))] (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1")))))) (deftest interoperability-test-3 (let [header (JWEHeader. JWEAlgorithm/DIR EncryptionMethod/A128CBC_HS256) claimsbuilder (doto (JWTClaimsSet$Builder.) (.claim "test1" "test")) claims (.build claimsbuilder) jwt (doto (EncryptedJWT. header claims) (.encrypt (DirectEncrypter. ^bytes key32))) result (.serialize jwt)] (let [data (jwt/decrypt result key32 {:alg :dir :enc :a128cbc-hs256})] (is (= data {:test1 "test"}))))) (deftest interoperability-test-4 (let [^String token (jwt/encrypt {:test1 "test"} key32 {:alg :dir :enc :a128cbc-hs256}) jwt (doto (EncryptedJWT/parse token) (.decrypt (DirectDecrypter. ^bytes key32)))] (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1")))))) (deftest interoperability-test-5 (let [header (JWSHeader. JWSAlgorithm/HS256) claimsbuilder (doto (JWTClaimsSet$Builder.) (.claim "test1" "test")) claims (.build claimsbuilder) jwt (doto (SignedJWT. header claims) (.sign (MACSigner. ^bytes key32))) result (.serialize jwt)] (let [data (-> (jws/unsign result key32 {:alg :hs256}) (codecs/bytes->str) (json/parse-string true))] (is (= data {:test1 "test"}))))) (deftest interoperability-test-6 (let [^String token (jws/sign (json/generate-string {:test1 "test"}) key32 {:alg :hs256}) jwt (SignedJWT/parse token)] (is (.verify jwt (MACVerifier. ^bytes key32))) (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1")))))) (defn generate-ecdsa-pair [curvename] (let [kg (KeyPairGenerator/getInstance "EC" "BC") _ (.initialize kg (ECGenParameterSpec. curvename) (SecureRandom/getInstance "SHA1PRNG")) pair (.generateKeyPair kg) public (.getPublic pair) private (.getPrivate pair)] [public private])) (deftest interoperability-test-es256 (let [[^ECPublicKey public ^ECPrivateKey private] (generate-ecdsa-pair "P-256") ^String token (jws/sign (json/generate-string {:test1 "test"}) private {:alg :es256}) jwt (SignedJWT/parse token)] (is (.verify jwt (ECDSAVerifier. public))) (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1")))))) (deftest interoperability-test-es384 (let [[^ECPublicKey public ^ECPrivateKey private] (generate-ecdsa-pair "P-384") ^String token (jws/sign (json/generate-string {:test1 "test"}) private {:alg :es384}) jwt (SignedJWT/parse token)] (is (.verify jwt (ECDSAVerifier. public))) (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1")))))) (deftest interoperability-test-es512 (let [[^ECPublicKey public ^ECPrivateKey private] (generate-ecdsa-pair "P-521") ^String token (jws/sign (json/generate-string {:test1 "test"}) private {:alg :es512}) jwt (SignedJWT/parse token)] (is (.verify jwt (ECDSAVerifier. public))) (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1"))))))
19517
;; Copyright 2014-2015 <NAME> <<EMAIL>> ;; ;; Licensed under the Apache License, Version 2.0 (the "License") ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. (ns buddy.sign.interop-tests (:require [clojure.test :refer :all] [clojure.string :as str] [buddy.core.codecs :as codecs] [buddy.core.crypto :as crypto] [buddy.core.bytes :as bytes] [buddy.core.nonce :as nonce] [buddy.core.keys :as keys] [buddy.sign.jwe :as jwe] [buddy.sign.jws :as jws] [buddy.sign.jwt :as jwt] [buddy.sign.util :as util] [cheshire.core :as json]) (:import com.nimbusds.jose.JWEHeader com.nimbusds.jose.JWSHeader com.nimbusds.jose.JWEAlgorithm com.nimbusds.jose.JWSAlgorithm com.nimbusds.jose.EncryptionMethod com.nimbusds.jose.Payload com.nimbusds.jose.JWEObject com.nimbusds.jwt.EncryptedJWT com.nimbusds.jwt.SignedJWT com.nimbusds.jwt.JWTClaimsSet com.nimbusds.jwt.JWTClaimsSet$Builder com.nimbusds.jose.crypto.MACSigner com.nimbusds.jose.crypto.MACVerifier com.nimbusds.jose.crypto.DirectEncrypter com.nimbusds.jose.crypto.DirectDecrypter com.nimbusds.jose.crypto.ECDSAVerifier (javax.crypto KeyGenerator) (java.security.interfaces ECPublicKey ECPrivateKey) (java.security SecureRandom KeyPairGenerator) (java.security.spec ECGenParameterSpec))) (def secret (codecs/hex->bytes (str "000102030405060708090a0b0c0d0e0f" "101112131415161718191a1b1c1d1e1f"))) (def data {:userid 1 :scope "auth"}) (def key16 (nonce/random-bytes 16)) (def key24 (nonce/random-bytes 24)) (def key32 (nonce/random-bytes 32)) (def key32' (nonce/random-bytes 32)) (def key48 (nonce/random-bytes 48)) (def key64 (nonce/random-bytes 64)) (def rsa-privkey (keys/private-key "test/_files/privkey.3des.rsa.pem" "secret")) (def rsa-pubkey (keys/public-key "test/_files/pubkey.3des.rsa.pem")) (def ec-privkey (keys/private-key "test/_files/privkey.ecdsa.pem" "secret")) (def ec-pubkey (keys/public-key "test/_files/pubkey.ecdsa.pem")) (deftest interoperability-test-1 (let [header (JWEHeader. JWEAlgorithm/DIR EncryptionMethod/A128GCM) claimsbuilder (doto (JWTClaimsSet$Builder.) (.claim "test1" "test")) claims (.build claimsbuilder) jwt (doto (EncryptedJWT. header claims) (.encrypt (DirectEncrypter. ^bytes key16))) result (.serialize jwt)] (let [data (jwt/decrypt result key16 {:alg :dir :enc :a128gcm})] (is (= data {:test1 "test"}))))) (deftest interoperability-test-2 (let [^String token (jwt/encrypt {:test1 "test"} key16 {:alg :dir :enc :a128gcm}) jwt (doto (EncryptedJWT/parse token) (.decrypt (DirectDecrypter. ^bytes key16)))] (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1")))))) (deftest interoperability-test-3 (let [header (JWEHeader. JWEAlgorithm/DIR EncryptionMethod/A128CBC_HS256) claimsbuilder (doto (JWTClaimsSet$Builder.) (.claim "test1" "test")) claims (.build claimsbuilder) jwt (doto (EncryptedJWT. header claims) (.encrypt (DirectEncrypter. ^bytes key32))) result (.serialize jwt)] (let [data (jwt/decrypt result key32 {:alg :dir :enc :a128cbc-hs256})] (is (= data {:test1 "test"}))))) (deftest interoperability-test-4 (let [^String token (jwt/encrypt {:test1 "test"} key32 {:alg :dir :enc :a128cbc-hs256}) jwt (doto (EncryptedJWT/parse token) (.decrypt (DirectDecrypter. ^bytes key32)))] (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1")))))) (deftest interoperability-test-5 (let [header (JWSHeader. JWSAlgorithm/HS256) claimsbuilder (doto (JWTClaimsSet$Builder.) (.claim "test1" "test")) claims (.build claimsbuilder) jwt (doto (SignedJWT. header claims) (.sign (MACSigner. ^bytes key32))) result (.serialize jwt)] (let [data (-> (jws/unsign result key32 {:alg :hs256}) (codecs/bytes->str) (json/parse-string true))] (is (= data {:test1 "test"}))))) (deftest interoperability-test-6 (let [^String token (jws/sign (json/generate-string {:test1 "test"}) key32 {:alg :hs256}) jwt (SignedJWT/parse token)] (is (.verify jwt (MACVerifier. ^bytes key32))) (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1")))))) (defn generate-ecdsa-pair [curvename] (let [kg (KeyPairGenerator/getInstance "EC" "BC") _ (.initialize kg (ECGenParameterSpec. curvename) (SecureRandom/getInstance "SHA1PRNG")) pair (.generateKeyPair kg) public (.getPublic pair) private (.getPrivate pair)] [public private])) (deftest interoperability-test-es256 (let [[^ECPublicKey public ^ECPrivateKey private] (generate-ecdsa-pair "P-256") ^String token (jws/sign (json/generate-string {:test1 "test"}) private {:alg :es256}) jwt (SignedJWT/parse token)] (is (.verify jwt (ECDSAVerifier. public))) (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1")))))) (deftest interoperability-test-es384 (let [[^ECPublicKey public ^ECPrivateKey private] (generate-ecdsa-pair "P-384") ^String token (jws/sign (json/generate-string {:test1 "test"}) private {:alg :es384}) jwt (SignedJWT/parse token)] (is (.verify jwt (ECDSAVerifier. public))) (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1")))))) (deftest interoperability-test-es512 (let [[^ECPublicKey public ^ECPrivateKey private] (generate-ecdsa-pair "P-521") ^String token (jws/sign (json/generate-string {:test1 "test"}) private {:alg :es512}) jwt (SignedJWT/parse token)] (is (.verify jwt (ECDSAVerifier. public))) (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1"))))))
true
;; Copyright 2014-2015 PI:NAME:<NAME>END_PI <PI:EMAIL:<EMAIL>END_PI> ;; ;; Licensed under the Apache License, Version 2.0 (the "License") ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. (ns buddy.sign.interop-tests (:require [clojure.test :refer :all] [clojure.string :as str] [buddy.core.codecs :as codecs] [buddy.core.crypto :as crypto] [buddy.core.bytes :as bytes] [buddy.core.nonce :as nonce] [buddy.core.keys :as keys] [buddy.sign.jwe :as jwe] [buddy.sign.jws :as jws] [buddy.sign.jwt :as jwt] [buddy.sign.util :as util] [cheshire.core :as json]) (:import com.nimbusds.jose.JWEHeader com.nimbusds.jose.JWSHeader com.nimbusds.jose.JWEAlgorithm com.nimbusds.jose.JWSAlgorithm com.nimbusds.jose.EncryptionMethod com.nimbusds.jose.Payload com.nimbusds.jose.JWEObject com.nimbusds.jwt.EncryptedJWT com.nimbusds.jwt.SignedJWT com.nimbusds.jwt.JWTClaimsSet com.nimbusds.jwt.JWTClaimsSet$Builder com.nimbusds.jose.crypto.MACSigner com.nimbusds.jose.crypto.MACVerifier com.nimbusds.jose.crypto.DirectEncrypter com.nimbusds.jose.crypto.DirectDecrypter com.nimbusds.jose.crypto.ECDSAVerifier (javax.crypto KeyGenerator) (java.security.interfaces ECPublicKey ECPrivateKey) (java.security SecureRandom KeyPairGenerator) (java.security.spec ECGenParameterSpec))) (def secret (codecs/hex->bytes (str "000102030405060708090a0b0c0d0e0f" "101112131415161718191a1b1c1d1e1f"))) (def data {:userid 1 :scope "auth"}) (def key16 (nonce/random-bytes 16)) (def key24 (nonce/random-bytes 24)) (def key32 (nonce/random-bytes 32)) (def key32' (nonce/random-bytes 32)) (def key48 (nonce/random-bytes 48)) (def key64 (nonce/random-bytes 64)) (def rsa-privkey (keys/private-key "test/_files/privkey.3des.rsa.pem" "secret")) (def rsa-pubkey (keys/public-key "test/_files/pubkey.3des.rsa.pem")) (def ec-privkey (keys/private-key "test/_files/privkey.ecdsa.pem" "secret")) (def ec-pubkey (keys/public-key "test/_files/pubkey.ecdsa.pem")) (deftest interoperability-test-1 (let [header (JWEHeader. JWEAlgorithm/DIR EncryptionMethod/A128GCM) claimsbuilder (doto (JWTClaimsSet$Builder.) (.claim "test1" "test")) claims (.build claimsbuilder) jwt (doto (EncryptedJWT. header claims) (.encrypt (DirectEncrypter. ^bytes key16))) result (.serialize jwt)] (let [data (jwt/decrypt result key16 {:alg :dir :enc :a128gcm})] (is (= data {:test1 "test"}))))) (deftest interoperability-test-2 (let [^String token (jwt/encrypt {:test1 "test"} key16 {:alg :dir :enc :a128gcm}) jwt (doto (EncryptedJWT/parse token) (.decrypt (DirectDecrypter. ^bytes key16)))] (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1")))))) (deftest interoperability-test-3 (let [header (JWEHeader. JWEAlgorithm/DIR EncryptionMethod/A128CBC_HS256) claimsbuilder (doto (JWTClaimsSet$Builder.) (.claim "test1" "test")) claims (.build claimsbuilder) jwt (doto (EncryptedJWT. header claims) (.encrypt (DirectEncrypter. ^bytes key32))) result (.serialize jwt)] (let [data (jwt/decrypt result key32 {:alg :dir :enc :a128cbc-hs256})] (is (= data {:test1 "test"}))))) (deftest interoperability-test-4 (let [^String token (jwt/encrypt {:test1 "test"} key32 {:alg :dir :enc :a128cbc-hs256}) jwt (doto (EncryptedJWT/parse token) (.decrypt (DirectDecrypter. ^bytes key32)))] (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1")))))) (deftest interoperability-test-5 (let [header (JWSHeader. JWSAlgorithm/HS256) claimsbuilder (doto (JWTClaimsSet$Builder.) (.claim "test1" "test")) claims (.build claimsbuilder) jwt (doto (SignedJWT. header claims) (.sign (MACSigner. ^bytes key32))) result (.serialize jwt)] (let [data (-> (jws/unsign result key32 {:alg :hs256}) (codecs/bytes->str) (json/parse-string true))] (is (= data {:test1 "test"}))))) (deftest interoperability-test-6 (let [^String token (jws/sign (json/generate-string {:test1 "test"}) key32 {:alg :hs256}) jwt (SignedJWT/parse token)] (is (.verify jwt (MACVerifier. ^bytes key32))) (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1")))))) (defn generate-ecdsa-pair [curvename] (let [kg (KeyPairGenerator/getInstance "EC" "BC") _ (.initialize kg (ECGenParameterSpec. curvename) (SecureRandom/getInstance "SHA1PRNG")) pair (.generateKeyPair kg) public (.getPublic pair) private (.getPrivate pair)] [public private])) (deftest interoperability-test-es256 (let [[^ECPublicKey public ^ECPrivateKey private] (generate-ecdsa-pair "P-256") ^String token (jws/sign (json/generate-string {:test1 "test"}) private {:alg :es256}) jwt (SignedJWT/parse token)] (is (.verify jwt (ECDSAVerifier. public))) (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1")))))) (deftest interoperability-test-es384 (let [[^ECPublicKey public ^ECPrivateKey private] (generate-ecdsa-pair "P-384") ^String token (jws/sign (json/generate-string {:test1 "test"}) private {:alg :es384}) jwt (SignedJWT/parse token)] (is (.verify jwt (ECDSAVerifier. public))) (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1")))))) (deftest interoperability-test-es512 (let [[^ECPublicKey public ^ECPrivateKey private] (generate-ecdsa-pair "P-521") ^String token (jws/sign (json/generate-string {:test1 "test"}) private {:alg :es512}) jwt (SignedJWT/parse token)] (is (.verify jwt (ECDSAVerifier. public))) (is (= "test" (.. jwt getJWTClaimsSet (getClaim "test1"))))))
[ { "context": "\n [:div.logo-name\n [:div.logo-firstname \"Christian\"]\n [:div.logo-lastname \"Johansen\"]]]\n [:u", "end": 2874, "score": 0.9997433423995972, "start": 2865, "tag": "NAME", "value": "Christian" }, { "context": "firstname \"Christian\"]\n [:div.logo-lastname \"Johansen\"]]]\n [:ul.nav-list.menu {:role \"nav\"}\n [:l", "end": 2912, "score": 0.9998408555984497, "start": 2904, "tag": "NAME", "value": "Johansen" }, { "context": ".header-content\n [:a.header-title {:href \"/\"} \"Christian Johansen\"]\n [:ul.header-links\n [:a {:href \"/oppskri", "end": 3180, "score": 0.9998314380645752, "start": 3162, "tag": "NAME", "value": "Christian Johansen" }, { "context": " [:p.twitter\n [:a {:href \"https://twitter.com/cjno\"}\n \"Follow me (@cjno) on Twitter\"]]\n [:p.", "end": 3997, "score": 0.999630868434906, "start": 3993, "tag": "USERNAME", "value": "cjno" }, { "context": ":href \"https://twitter.com/cjno\"}\n \"Follow me (@cjno) on Twitter\"]]\n [:p.email\n [:a {:href \"mai", "end": 4023, "score": 0.9996883869171143, "start": 4017, "tag": "USERNAME", "value": "(@cjno" }, { "context": " Twitter\"]]\n [:p.email\n [:a {:href \"mailto:christian@cjohansen.no\"}\n \"christian@cjohansen.no\"]]]])\n\n(defn bloc", "end": 4099, "score": 0.9999133944511414, "start": 4077, "tag": "EMAIL", "value": "christian@cjohansen.no" }, { "context": ":a {:href \"mailto:christian@cjohansen.no\"}\n \"christian@cjohansen.no\"]]]])\n\n(defn blockquote [quote & [source]]\n [:bl", "end": 4131, "score": 0.9999139904975891, "start": 4109, "tag": "EMAIL", "value": "christian@cjohansen.no" } ]
ui/src/ui/elements.cljc
cjohansen/cjohansen-no
4
(ns ui.elements (:require [clojure.string :as str])) (defn el [el params text] [(get params :element el) {:className (str (name el) (when-let [cn (:className params)] (str " " cn)))} text]) (def h1 (partial el :h1)) (def h2 (partial el :h2)) (def h3 (partial el :h3)) (def h4 (partial el :h4)) (def h5 (partial el :h5)) (def headings [nil :h1.h1 :h2.h2 :h3.h3 :h4.h4 :h5.h5]) (defn byline [{:keys [published updated tags]}] [:p.byline.text-s (cond (and published updated) [:span.date (str updated " (published " published ")")] published [:span.date published]) (when tags [:span.subtle (->> (for [{:keys [title url]} tags] [:a {:href url} title]) (interpose ", "))])]) (defn theme-class [theme] (if (keyword? theme) (str " theme-" (name theme)) " theme-default")) (defn type-class [type] (when (keyword? type) (name type))) (defn section-class [{:keys [class theme type]} & [class-name]] (str/join " " (remove empty? [class-name class (theme-class theme) (type-class type)]))) (defn section [{:keys [title sub-title content media meta heading-level note] :as props}] (let [heading-level (or heading-level 1)] [:div.section {:className (section-class props)} [:div.content (when media [:div.media media]) [:div.section-content [:div.text-content (when title [(nth headings heading-level) title]) (when note [:p.note.text-s note]) (when (:byline props) (byline (:byline props))) (when sub-title [(nth headings (inc heading-level)) sub-title]) (when content content) (when (or (:published meta) (:updated meta)) [:p.subtle.text-s (if (and (:published meta) (:updated meta)) (str "Published " (:published meta) ", updated " (:updated meta)) (str "Published " (:published meta)))])]]]])) (defn split [{:keys [front back]}] [:div.split [:div.front front] [:div.back back]]) (defn centered [params] (section (assoc params :class "centered"))) (defn section-media-front [params] (section (assoc params :class "media-front"))) (defn section-media-back [params] (section (assoc params :class "media-back"))) (defn section-media [{:keys [media title size] :as props}] [:div.media-wide {:className (section-class props (if size (str "s-" (name size)) "section"))} [:div.content [:div.media media] (when title [:div.title (h1 {} title)])]]) (defn header [] [:div.header [:div.header-content [:a.logo {:href "/"} [:div.facebox [:img.img {:src "/images/christian-bw.png" :width 100}] [:img.img.hover {:src "/images/christian.png" :width 100}]] [:div.logo-name [:div.logo-firstname "Christian"] [:div.logo-lastname "Johansen"]]] [:ul.nav-list.menu {:role "nav"} [:li [:a {:href "/#blog-posts"} "Tech"]] [:li [:a {:href "/oppskrifter/"} "Oppskrifter"]]]]]) (defn simple-header [] [:div.simple-header [:div.header-content [:a.header-title {:href "/"} "Christian Johansen"] [:ul.header-links [:a {:href "/oppskrifter/"} "Oppskrifter"]]]]) (defn now-year [] #?(:clj (.getYear (java.time.LocalDate/ofInstant (java.time.Instant/now) (java.time.ZoneId/of "Europe/Oslo"))) :cljs (.getFullYear (js/Date.)))) (defn footer [] [:div.footer [:div.footer-content [:p.license [:a {:href "https://creativecommons.org/licenses/by-nc-sa/3.0/" :rel "license" :title "Creative Commons License"} [:span.cc-logo [:img {:src "/images/cc_icon_white_x2.png"}]] [:span.cc-logo [:img {:src "/images/attribution_icon_white_x2.png"}]] [:span.cc-logo [:img {:src "/images/nc_white_x2.png"}]] [:span.cc-logo [:img {:src "/images/sa_white_x2.png"}]]] (str "2006 - " (now-year))] [:p.twitter [:a {:href "https://twitter.com/cjno"} "Follow me (@cjno) on Twitter"]] [:p.email [:a {:href "mailto:christian@cjohansen.no"} "christian@cjohansen.no"]]]]) (defn blockquote [quote & [source]] [:blockquote.bq.text-content (when source [:div.bq-source [:p source]]) [:div.bq-quote [:p quote]]]) (defn kv-table [items] [:table.table.text-xs (for [{:keys [label val]} items] [:tr [:th label] [:td [:strong val]]])]) (defn ingredient-list [ingredients] [:table.table.text-xs (for [{:keys [amount percent temp title]} ingredients] [:tr [:th title (when temp [:span.subtle (str " (" temp ")")])] [:td amount] [:td [:strong percent]]])]) (defn captioned [{:keys [content caption class]}] [:div.captioned {:className class} content [:div.caption [:p caption]]]) (def caption-themes {:red "" :blue "captioned-b" :green "captioned-g" :light "captioned-light"}) (defn captioned-image [{:keys [src caption alt theme pop?]}] (captioned {:content [:img.img {:src src :alt (or alt caption)}] :caption caption :class (str (caption-themes theme) (when pop? " captioned-pop"))})) (defn teaser [{:keys [url media title description pitch kind] :as props}] [:div.teaser {:className (when kind (str "teaser-" (name kind)))} (when media [:div.media [:a {:href url} media]]) [:div.teaser-content (when pitch (h5 {:className "subtle"} pitch)) (h4 {} [:a {:href url} title]) description (byline props)]]) (defn teaser-section [{:keys [title sub-title teasers] :as props}] [:div.section {:className (section-class props "teasers")} [:div.content [:div.section-content (when title (h2 {} title)) (when sub-title (h2 {} sub-title)) [:div.teaser-list (map teaser teasers)]]]])
64147
(ns ui.elements (:require [clojure.string :as str])) (defn el [el params text] [(get params :element el) {:className (str (name el) (when-let [cn (:className params)] (str " " cn)))} text]) (def h1 (partial el :h1)) (def h2 (partial el :h2)) (def h3 (partial el :h3)) (def h4 (partial el :h4)) (def h5 (partial el :h5)) (def headings [nil :h1.h1 :h2.h2 :h3.h3 :h4.h4 :h5.h5]) (defn byline [{:keys [published updated tags]}] [:p.byline.text-s (cond (and published updated) [:span.date (str updated " (published " published ")")] published [:span.date published]) (when tags [:span.subtle (->> (for [{:keys [title url]} tags] [:a {:href url} title]) (interpose ", "))])]) (defn theme-class [theme] (if (keyword? theme) (str " theme-" (name theme)) " theme-default")) (defn type-class [type] (when (keyword? type) (name type))) (defn section-class [{:keys [class theme type]} & [class-name]] (str/join " " (remove empty? [class-name class (theme-class theme) (type-class type)]))) (defn section [{:keys [title sub-title content media meta heading-level note] :as props}] (let [heading-level (or heading-level 1)] [:div.section {:className (section-class props)} [:div.content (when media [:div.media media]) [:div.section-content [:div.text-content (when title [(nth headings heading-level) title]) (when note [:p.note.text-s note]) (when (:byline props) (byline (:byline props))) (when sub-title [(nth headings (inc heading-level)) sub-title]) (when content content) (when (or (:published meta) (:updated meta)) [:p.subtle.text-s (if (and (:published meta) (:updated meta)) (str "Published " (:published meta) ", updated " (:updated meta)) (str "Published " (:published meta)))])]]]])) (defn split [{:keys [front back]}] [:div.split [:div.front front] [:div.back back]]) (defn centered [params] (section (assoc params :class "centered"))) (defn section-media-front [params] (section (assoc params :class "media-front"))) (defn section-media-back [params] (section (assoc params :class "media-back"))) (defn section-media [{:keys [media title size] :as props}] [:div.media-wide {:className (section-class props (if size (str "s-" (name size)) "section"))} [:div.content [:div.media media] (when title [:div.title (h1 {} title)])]]) (defn header [] [:div.header [:div.header-content [:a.logo {:href "/"} [:div.facebox [:img.img {:src "/images/christian-bw.png" :width 100}] [:img.img.hover {:src "/images/christian.png" :width 100}]] [:div.logo-name [:div.logo-firstname "<NAME>"] [:div.logo-lastname "<NAME>"]]] [:ul.nav-list.menu {:role "nav"} [:li [:a {:href "/#blog-posts"} "Tech"]] [:li [:a {:href "/oppskrifter/"} "Oppskrifter"]]]]]) (defn simple-header [] [:div.simple-header [:div.header-content [:a.header-title {:href "/"} "<NAME>"] [:ul.header-links [:a {:href "/oppskrifter/"} "Oppskrifter"]]]]) (defn now-year [] #?(:clj (.getYear (java.time.LocalDate/ofInstant (java.time.Instant/now) (java.time.ZoneId/of "Europe/Oslo"))) :cljs (.getFullYear (js/Date.)))) (defn footer [] [:div.footer [:div.footer-content [:p.license [:a {:href "https://creativecommons.org/licenses/by-nc-sa/3.0/" :rel "license" :title "Creative Commons License"} [:span.cc-logo [:img {:src "/images/cc_icon_white_x2.png"}]] [:span.cc-logo [:img {:src "/images/attribution_icon_white_x2.png"}]] [:span.cc-logo [:img {:src "/images/nc_white_x2.png"}]] [:span.cc-logo [:img {:src "/images/sa_white_x2.png"}]]] (str "2006 - " (now-year))] [:p.twitter [:a {:href "https://twitter.com/cjno"} "Follow me (@cjno) on Twitter"]] [:p.email [:a {:href "mailto:<EMAIL>"} "<EMAIL>"]]]]) (defn blockquote [quote & [source]] [:blockquote.bq.text-content (when source [:div.bq-source [:p source]]) [:div.bq-quote [:p quote]]]) (defn kv-table [items] [:table.table.text-xs (for [{:keys [label val]} items] [:tr [:th label] [:td [:strong val]]])]) (defn ingredient-list [ingredients] [:table.table.text-xs (for [{:keys [amount percent temp title]} ingredients] [:tr [:th title (when temp [:span.subtle (str " (" temp ")")])] [:td amount] [:td [:strong percent]]])]) (defn captioned [{:keys [content caption class]}] [:div.captioned {:className class} content [:div.caption [:p caption]]]) (def caption-themes {:red "" :blue "captioned-b" :green "captioned-g" :light "captioned-light"}) (defn captioned-image [{:keys [src caption alt theme pop?]}] (captioned {:content [:img.img {:src src :alt (or alt caption)}] :caption caption :class (str (caption-themes theme) (when pop? " captioned-pop"))})) (defn teaser [{:keys [url media title description pitch kind] :as props}] [:div.teaser {:className (when kind (str "teaser-" (name kind)))} (when media [:div.media [:a {:href url} media]]) [:div.teaser-content (when pitch (h5 {:className "subtle"} pitch)) (h4 {} [:a {:href url} title]) description (byline props)]]) (defn teaser-section [{:keys [title sub-title teasers] :as props}] [:div.section {:className (section-class props "teasers")} [:div.content [:div.section-content (when title (h2 {} title)) (when sub-title (h2 {} sub-title)) [:div.teaser-list (map teaser teasers)]]]])
true
(ns ui.elements (:require [clojure.string :as str])) (defn el [el params text] [(get params :element el) {:className (str (name el) (when-let [cn (:className params)] (str " " cn)))} text]) (def h1 (partial el :h1)) (def h2 (partial el :h2)) (def h3 (partial el :h3)) (def h4 (partial el :h4)) (def h5 (partial el :h5)) (def headings [nil :h1.h1 :h2.h2 :h3.h3 :h4.h4 :h5.h5]) (defn byline [{:keys [published updated tags]}] [:p.byline.text-s (cond (and published updated) [:span.date (str updated " (published " published ")")] published [:span.date published]) (when tags [:span.subtle (->> (for [{:keys [title url]} tags] [:a {:href url} title]) (interpose ", "))])]) (defn theme-class [theme] (if (keyword? theme) (str " theme-" (name theme)) " theme-default")) (defn type-class [type] (when (keyword? type) (name type))) (defn section-class [{:keys [class theme type]} & [class-name]] (str/join " " (remove empty? [class-name class (theme-class theme) (type-class type)]))) (defn section [{:keys [title sub-title content media meta heading-level note] :as props}] (let [heading-level (or heading-level 1)] [:div.section {:className (section-class props)} [:div.content (when media [:div.media media]) [:div.section-content [:div.text-content (when title [(nth headings heading-level) title]) (when note [:p.note.text-s note]) (when (:byline props) (byline (:byline props))) (when sub-title [(nth headings (inc heading-level)) sub-title]) (when content content) (when (or (:published meta) (:updated meta)) [:p.subtle.text-s (if (and (:published meta) (:updated meta)) (str "Published " (:published meta) ", updated " (:updated meta)) (str "Published " (:published meta)))])]]]])) (defn split [{:keys [front back]}] [:div.split [:div.front front] [:div.back back]]) (defn centered [params] (section (assoc params :class "centered"))) (defn section-media-front [params] (section (assoc params :class "media-front"))) (defn section-media-back [params] (section (assoc params :class "media-back"))) (defn section-media [{:keys [media title size] :as props}] [:div.media-wide {:className (section-class props (if size (str "s-" (name size)) "section"))} [:div.content [:div.media media] (when title [:div.title (h1 {} title)])]]) (defn header [] [:div.header [:div.header-content [:a.logo {:href "/"} [:div.facebox [:img.img {:src "/images/christian-bw.png" :width 100}] [:img.img.hover {:src "/images/christian.png" :width 100}]] [:div.logo-name [:div.logo-firstname "PI:NAME:<NAME>END_PI"] [:div.logo-lastname "PI:NAME:<NAME>END_PI"]]] [:ul.nav-list.menu {:role "nav"} [:li [:a {:href "/#blog-posts"} "Tech"]] [:li [:a {:href "/oppskrifter/"} "Oppskrifter"]]]]]) (defn simple-header [] [:div.simple-header [:div.header-content [:a.header-title {:href "/"} "PI:NAME:<NAME>END_PI"] [:ul.header-links [:a {:href "/oppskrifter/"} "Oppskrifter"]]]]) (defn now-year [] #?(:clj (.getYear (java.time.LocalDate/ofInstant (java.time.Instant/now) (java.time.ZoneId/of "Europe/Oslo"))) :cljs (.getFullYear (js/Date.)))) (defn footer [] [:div.footer [:div.footer-content [:p.license [:a {:href "https://creativecommons.org/licenses/by-nc-sa/3.0/" :rel "license" :title "Creative Commons License"} [:span.cc-logo [:img {:src "/images/cc_icon_white_x2.png"}]] [:span.cc-logo [:img {:src "/images/attribution_icon_white_x2.png"}]] [:span.cc-logo [:img {:src "/images/nc_white_x2.png"}]] [:span.cc-logo [:img {:src "/images/sa_white_x2.png"}]]] (str "2006 - " (now-year))] [:p.twitter [:a {:href "https://twitter.com/cjno"} "Follow me (@cjno) on Twitter"]] [:p.email [:a {:href "mailto:PI:EMAIL:<EMAIL>END_PI"} "PI:EMAIL:<EMAIL>END_PI"]]]]) (defn blockquote [quote & [source]] [:blockquote.bq.text-content (when source [:div.bq-source [:p source]]) [:div.bq-quote [:p quote]]]) (defn kv-table [items] [:table.table.text-xs (for [{:keys [label val]} items] [:tr [:th label] [:td [:strong val]]])]) (defn ingredient-list [ingredients] [:table.table.text-xs (for [{:keys [amount percent temp title]} ingredients] [:tr [:th title (when temp [:span.subtle (str " (" temp ")")])] [:td amount] [:td [:strong percent]]])]) (defn captioned [{:keys [content caption class]}] [:div.captioned {:className class} content [:div.caption [:p caption]]]) (def caption-themes {:red "" :blue "captioned-b" :green "captioned-g" :light "captioned-light"}) (defn captioned-image [{:keys [src caption alt theme pop?]}] (captioned {:content [:img.img {:src src :alt (or alt caption)}] :caption caption :class (str (caption-themes theme) (when pop? " captioned-pop"))})) (defn teaser [{:keys [url media title description pitch kind] :as props}] [:div.teaser {:className (when kind (str "teaser-" (name kind)))} (when media [:div.media [:a {:href url} media]]) [:div.teaser-content (when pitch (h5 {:className "subtle"} pitch)) (h4 {} [:a {:href url} title]) description (byline props)]]) (defn teaser-section [{:keys [title sub-title teasers] :as props}] [:div.section {:className (section-class props "teasers")} [:div.content [:div.section-content (when title (h2 {} title)) (when sub-title (h2 {} sub-title)) [:div.teaser-list (map teaser teasers)]]]])
[ { "context": "; Copyright (c) 2013-2015 Tim Molderez.\n;\n; All rights reserved. This program and the ac", "end": 38, "score": 0.9998350143432617, "start": 26, "tag": "NAME", "value": "Tim Molderez" } ]
test/inspector_jay/core_test.clj
kawas44/inspector-jay
69
; Copyright (c) 2013-2015 Tim Molderez. ; ; All rights reserved. This program and the accompanying materials ; are made available under the terms of the 3-Clause BSD License ; which accompanies this distribution, and is available at ; http://www.opensource.org/licenses/BSD-3-Clause (ns inspector-jay.core-test "Inspector Jay unit tests" (:use clojure.test inspector-jay.core)) (deftest a-test (testing "FIXME, I fail." (is (= 0 1)))) (comment ; Open a ton of inspectors sequentially (doseq [x (range 1 40)] (do (inspect x) (println x))) ; Simultaneously open many inspectors from different threads (doseq [x (range 1 80)] (future (do (inspect x :pause true) (println x)))) (run-tests 'inspector-jay.core-test))
44167
; Copyright (c) 2013-2015 <NAME>. ; ; All rights reserved. This program and the accompanying materials ; are made available under the terms of the 3-Clause BSD License ; which accompanies this distribution, and is available at ; http://www.opensource.org/licenses/BSD-3-Clause (ns inspector-jay.core-test "Inspector Jay unit tests" (:use clojure.test inspector-jay.core)) (deftest a-test (testing "FIXME, I fail." (is (= 0 1)))) (comment ; Open a ton of inspectors sequentially (doseq [x (range 1 40)] (do (inspect x) (println x))) ; Simultaneously open many inspectors from different threads (doseq [x (range 1 80)] (future (do (inspect x :pause true) (println x)))) (run-tests 'inspector-jay.core-test))
true
; Copyright (c) 2013-2015 PI:NAME:<NAME>END_PI. ; ; All rights reserved. This program and the accompanying materials ; are made available under the terms of the 3-Clause BSD License ; which accompanies this distribution, and is available at ; http://www.opensource.org/licenses/BSD-3-Clause (ns inspector-jay.core-test "Inspector Jay unit tests" (:use clojure.test inspector-jay.core)) (deftest a-test (testing "FIXME, I fail." (is (= 0 1)))) (comment ; Open a ton of inspectors sequentially (doseq [x (range 1 40)] (do (inspect x) (println x))) ; Simultaneously open many inspectors from different threads (doseq [x (range 1 80)] (future (do (inspect x :pause true) (println x)))) (run-tests 'inspector-jay.core-test))
[ { "context": "ext\n {:style {:flex 1}}\n [:p \"Welcome to Gainz Goblin!\"]\n [:p \"Click the '+' button below to creat", "end": 4910, "score": 0.9996761679649353, "start": 4898, "tag": "NAME", "value": "Gainz Goblin" } ]
src/cljs/gainz_goblin/views.cljs
chriskiehl/gainz-goblin.com
0
(ns gainz-goblin.views (:require [re-frame.core :as rf] [gainz-goblin.subs :as subs] [gainz-goblin.routes :as routes] )) (defn current-cycle [{:keys [id percent-completed start-date] :as cycle}] (when-not (nil? cycle) [:div.current-cycle-card.mdl-card.mdl-shadow--2dp.card-margin [:div.mdl-card__title.current-cycle [:div.mdl-card__title-text ;[:img {:src "https://s3-us-west-1.amazonaws.com/gainz-goblin-storage/images/gainz-goblin.PNG"}] "Current Cycle"]] [:div.mdl-card__supporting-text [:div "Percent completed: " percent-completed "%"] [:div (str "Started on: " (.toLocaleDateString (js/Date. start-date) "en-US"))] [:div "Training Maxes:" (for [[lift weight] (:1rm cycle)] [:div (str lift ": " weight)])]] [:div.mdl-card__actions.mdl-card--border [:a.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect {:href (routes/url-for :day-breakdown :id id)} "Let's Go!"] [:div.mdl-card__menu [:a.mdl-button.mdl-button--icon.mdl-js-button.mdl-js-ripple-effect [:i.material-icons "more_vert"]]]]])) (defn previous-cycles [cycles] [:ul.mdl-list (for [cycle cycles] [:li.mdl-list__item.mdl-list__item--two-line [:span.mdl-list__item-primary-content [:span (.toLocaleDateString (js/Date. (:start-date cycle)) "en-US")] [:span.mdl-list__item-sub-title (str (:1rm cycle))]] [:span.mdl-list__item-secondary-content [:span.mdl-list__item-secondary-action [:button#id-xxx.mdl-button.mdl-js-button.mdl-button--icon [:i.material-icons "more_vert"]] ]]])]) (defn previous-cycles-card [cycles] (when-not (empty? cycles) [:div.current-cycle-card.mdl-card.mdl-shadow--2dp.card-margin [:div.mdl-card__title.current-cycle [:div.mdl-card__title-text "Previous Cycles"]] [:div.mdl-card__supporting-text [previous-cycles cycles] ]])) (defn day-summary-card [{:keys [day cycle-id percent-completed heavy-set-name heavy-set-weight volume-set-name volume-set-weight] :as props}] [:div.current-cycle-card.mdl-card.mdl-shadow--2dp.card-margin [:div.mdl-card__title.current-cycle [:div.mdl-card__title-text (str "Day " day)]] [:div.mdl-card__supporting-text [:div (str heavy-set-name " @ " heavy-set-weight)] [:div (str volume-set-name " @ " volume-set-weight)] [:div (str "Percent Complete: " percent-completed "%")] [:a {:href (routes/url-for :exercise-page :id cycle-id :day day) :style {:float "right"}} [:button.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect.mdl-button--raised.green-background "View Lifts"]]] [:div.mdl-card__menu [:a.mdl-button.mdl-button--icon.mdl-js-button.mdl-js-ripple-effect [:i.material-icons {:style {:color "#7d7d7d"}} "settings"]]]]) (defn day-breakdown [day-summaries] [:div (map day-summary-card day-summaries) [:dialog.mdl-dialog [:div.mdl-dialog__content "Hello world!"]]]) (defn new-cycle-form [fields cycle] [:div (if cycle [:div (str "Previous 1RM weights: " (:1rm cycle))] [:div (str "Set up your 1RM weights for the core lifts")]) (map (fn [{:keys [name display value] :as field}] [:div.mdl-textfield.mdl-js-textfield [:div display] [:input.mdl-textfield__input {:type "number" :name name :value value :placeholder "Weight in Pounds" :on-change #(let [new-val (-> % .-target .-value)] (rf/dispatch [:form-input name new-val]))}]]) fields)]) (defn modal [{:keys [open title body cancel-fn accept-fn] :as props}] (when open [:div.modal-backing {:on-click cancel-fn} [:div.current-cycle-card.mdl-card.mdl-shadow--2dp.card-margin.modal {:on-click (fn [e] (.stopPropagation e))} [:div.mdl-card__title.current-cycle [:div.mdl-card__title-text title]] [:div.mdl-card__supporting-text {:style {:flex 1}} body] [:div.mdl-card__actions.mdl-card--border [:button.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect {:on-click cancel-fn} "cancel"] [:button.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect {:on-click accept-fn} "Accept"] ]]])) (defn empty-state [cycle] (when-not cycle [:div.empty-state.mdl-shadow--2dp [:div.mdl-card__title.current-cycle [:h2.empty-state-title "Hai."]] [:div.mdl-card__supporting-text {:style {:flex 1}} [:p "Welcome to Gainz Goblin!"] [:p "Click the '+' button below to create your first Wendler 1.2 cycle!"]]])) (defn home-panel [] [:div [empty-state @(rf/subscribe [:current-cycle])] [current-cycle @(rf/subscribe [:current-cycle])] [previous-cycles-card @(rf/subscribe [:previous-cycles])] [:div.new-cycle-button [:button.mdl-button.mdl-js-button.mdl-button--fab.mdl-button--colored {:on-click #(rf/dispatch [:show-new-cycle-modal true])} [:i.material-icons "add"]]] [:div.bottom-image [:img {:src "https://s3-us-west-1.amazonaws.com/gainz-goblin-storage/images/gainz-goblin.PNG" :style {:max-width "100%"}}]] [modal {:open @(rf/subscribe [:show-new-cycle-modal]) :title "New Cycle" :body [new-cycle-form @(rf/subscribe [:cycle-form]) @(rf/subscribe [:current-cycle])] :cancel-fn #(rf/dispatch [:show-new-cycle-modal false]) :accept-fn #(rf/dispatch [:create-cycle]) }] ]) (defn primary-lift [sets] [:div.primary-lift-card.mdl-shadow--2dp.card-margin [:div.primary-lift-card-body [:h2.primary-lift-title (:verbose-name (first sets))] [:div.primary-lift-rep-scheme [:p (str "Current Training Max: " (:tm-max (first sets)))] [:ul.mdl-list (for [set sets] (let [{:keys [complete weight reps percentage id tm-max]} set] [:li.mdl-list__item.mdl-list__item--two-line {:style {:padding-top "10px" :padding-bottom "10px" :height "auto"} :on-click #(rf/dispatch [:toggle-complete id])} [:span.mdl-list__item-primary-content (str weight " lbs x " reps) [:span.mdl-list__item-sub-title (str (* 100 percentage) "% of 1RM")]] [:span.mdl-list__item-secondary-action [:input {:type "checkbox" :checked complete}]]]))]] [:div.primary-lift-action-line [:button.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect.mdl-button--raised "Rest"]]]]) (defn accessory-lift [sets] [:div.primary-lift-card.mdl-shadow--2dp.card-margin [:div.primary-lift-card-body [:h2.primary-lift-title (:verbose-name (first sets))] [:div.primary-lift-rep-scheme [:ul.mdl-list (for [set sets] (let [{:keys [complete weight reps percentage id tm-max]} set] [:li.mdl-list__item.mdl-list__item--two-line {:style {:padding-top "10px" :padding-bottom "10px" :height "auto"}} [:span.mdl-list__item-primary-content (str "Any Weight x " reps) [:span.mdl-list__item-sub-title (str "Assistance work")]] [:span.mdl-list__item-secondary-action [:input {:type "checkbox" :on-click #(rf/dispatch [:toggle-complete id]) :checked complete}]]]))]] [:div.primary-lift-action-line [:button.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect.mdl-button--raised "Rest"]]]]) (defn exercise-page [{:keys [primaries accessories] :as exercises}] [:div (map primary-lift primaries) (map accessory-lift accessories)]) (defn- panels [panel-name] (case panel-name :home [home-panel] :day-breakdown [day-breakdown @(rf/subscribe [:day-breakdown])] :exercise-page [exercise-page @(rf/subscribe [:exercises])] [:div])) (defn app-bar [{:keys [active-panel title previous-page] :as props}] [:div.app-bar [:div.hamburger (if (= active-panel :home) [:a.mdl-button.mdl-button--icon [:i.material-icons "menu" ]] [:a.mdl-button.mdl-button--icon {:href previous-page} [:i.material-icons "arrow_back"]])] [:span.mdl-layout-title title]]) (defn main-panel [] (let [active-panel (rf/subscribe [:active-panel])] [:div [app-bar {:title @(rf/subscribe [:page-title]) :previous-page @(rf/subscribe [:previous-page]) :active-panel @active-panel}] [:div.container [panels @active-panel]]]))
67543
(ns gainz-goblin.views (:require [re-frame.core :as rf] [gainz-goblin.subs :as subs] [gainz-goblin.routes :as routes] )) (defn current-cycle [{:keys [id percent-completed start-date] :as cycle}] (when-not (nil? cycle) [:div.current-cycle-card.mdl-card.mdl-shadow--2dp.card-margin [:div.mdl-card__title.current-cycle [:div.mdl-card__title-text ;[:img {:src "https://s3-us-west-1.amazonaws.com/gainz-goblin-storage/images/gainz-goblin.PNG"}] "Current Cycle"]] [:div.mdl-card__supporting-text [:div "Percent completed: " percent-completed "%"] [:div (str "Started on: " (.toLocaleDateString (js/Date. start-date) "en-US"))] [:div "Training Maxes:" (for [[lift weight] (:1rm cycle)] [:div (str lift ": " weight)])]] [:div.mdl-card__actions.mdl-card--border [:a.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect {:href (routes/url-for :day-breakdown :id id)} "Let's Go!"] [:div.mdl-card__menu [:a.mdl-button.mdl-button--icon.mdl-js-button.mdl-js-ripple-effect [:i.material-icons "more_vert"]]]]])) (defn previous-cycles [cycles] [:ul.mdl-list (for [cycle cycles] [:li.mdl-list__item.mdl-list__item--two-line [:span.mdl-list__item-primary-content [:span (.toLocaleDateString (js/Date. (:start-date cycle)) "en-US")] [:span.mdl-list__item-sub-title (str (:1rm cycle))]] [:span.mdl-list__item-secondary-content [:span.mdl-list__item-secondary-action [:button#id-xxx.mdl-button.mdl-js-button.mdl-button--icon [:i.material-icons "more_vert"]] ]]])]) (defn previous-cycles-card [cycles] (when-not (empty? cycles) [:div.current-cycle-card.mdl-card.mdl-shadow--2dp.card-margin [:div.mdl-card__title.current-cycle [:div.mdl-card__title-text "Previous Cycles"]] [:div.mdl-card__supporting-text [previous-cycles cycles] ]])) (defn day-summary-card [{:keys [day cycle-id percent-completed heavy-set-name heavy-set-weight volume-set-name volume-set-weight] :as props}] [:div.current-cycle-card.mdl-card.mdl-shadow--2dp.card-margin [:div.mdl-card__title.current-cycle [:div.mdl-card__title-text (str "Day " day)]] [:div.mdl-card__supporting-text [:div (str heavy-set-name " @ " heavy-set-weight)] [:div (str volume-set-name " @ " volume-set-weight)] [:div (str "Percent Complete: " percent-completed "%")] [:a {:href (routes/url-for :exercise-page :id cycle-id :day day) :style {:float "right"}} [:button.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect.mdl-button--raised.green-background "View Lifts"]]] [:div.mdl-card__menu [:a.mdl-button.mdl-button--icon.mdl-js-button.mdl-js-ripple-effect [:i.material-icons {:style {:color "#7d7d7d"}} "settings"]]]]) (defn day-breakdown [day-summaries] [:div (map day-summary-card day-summaries) [:dialog.mdl-dialog [:div.mdl-dialog__content "Hello world!"]]]) (defn new-cycle-form [fields cycle] [:div (if cycle [:div (str "Previous 1RM weights: " (:1rm cycle))] [:div (str "Set up your 1RM weights for the core lifts")]) (map (fn [{:keys [name display value] :as field}] [:div.mdl-textfield.mdl-js-textfield [:div display] [:input.mdl-textfield__input {:type "number" :name name :value value :placeholder "Weight in Pounds" :on-change #(let [new-val (-> % .-target .-value)] (rf/dispatch [:form-input name new-val]))}]]) fields)]) (defn modal [{:keys [open title body cancel-fn accept-fn] :as props}] (when open [:div.modal-backing {:on-click cancel-fn} [:div.current-cycle-card.mdl-card.mdl-shadow--2dp.card-margin.modal {:on-click (fn [e] (.stopPropagation e))} [:div.mdl-card__title.current-cycle [:div.mdl-card__title-text title]] [:div.mdl-card__supporting-text {:style {:flex 1}} body] [:div.mdl-card__actions.mdl-card--border [:button.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect {:on-click cancel-fn} "cancel"] [:button.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect {:on-click accept-fn} "Accept"] ]]])) (defn empty-state [cycle] (when-not cycle [:div.empty-state.mdl-shadow--2dp [:div.mdl-card__title.current-cycle [:h2.empty-state-title "Hai."]] [:div.mdl-card__supporting-text {:style {:flex 1}} [:p "Welcome to <NAME>!"] [:p "Click the '+' button below to create your first Wendler 1.2 cycle!"]]])) (defn home-panel [] [:div [empty-state @(rf/subscribe [:current-cycle])] [current-cycle @(rf/subscribe [:current-cycle])] [previous-cycles-card @(rf/subscribe [:previous-cycles])] [:div.new-cycle-button [:button.mdl-button.mdl-js-button.mdl-button--fab.mdl-button--colored {:on-click #(rf/dispatch [:show-new-cycle-modal true])} [:i.material-icons "add"]]] [:div.bottom-image [:img {:src "https://s3-us-west-1.amazonaws.com/gainz-goblin-storage/images/gainz-goblin.PNG" :style {:max-width "100%"}}]] [modal {:open @(rf/subscribe [:show-new-cycle-modal]) :title "New Cycle" :body [new-cycle-form @(rf/subscribe [:cycle-form]) @(rf/subscribe [:current-cycle])] :cancel-fn #(rf/dispatch [:show-new-cycle-modal false]) :accept-fn #(rf/dispatch [:create-cycle]) }] ]) (defn primary-lift [sets] [:div.primary-lift-card.mdl-shadow--2dp.card-margin [:div.primary-lift-card-body [:h2.primary-lift-title (:verbose-name (first sets))] [:div.primary-lift-rep-scheme [:p (str "Current Training Max: " (:tm-max (first sets)))] [:ul.mdl-list (for [set sets] (let [{:keys [complete weight reps percentage id tm-max]} set] [:li.mdl-list__item.mdl-list__item--two-line {:style {:padding-top "10px" :padding-bottom "10px" :height "auto"} :on-click #(rf/dispatch [:toggle-complete id])} [:span.mdl-list__item-primary-content (str weight " lbs x " reps) [:span.mdl-list__item-sub-title (str (* 100 percentage) "% of 1RM")]] [:span.mdl-list__item-secondary-action [:input {:type "checkbox" :checked complete}]]]))]] [:div.primary-lift-action-line [:button.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect.mdl-button--raised "Rest"]]]]) (defn accessory-lift [sets] [:div.primary-lift-card.mdl-shadow--2dp.card-margin [:div.primary-lift-card-body [:h2.primary-lift-title (:verbose-name (first sets))] [:div.primary-lift-rep-scheme [:ul.mdl-list (for [set sets] (let [{:keys [complete weight reps percentage id tm-max]} set] [:li.mdl-list__item.mdl-list__item--two-line {:style {:padding-top "10px" :padding-bottom "10px" :height "auto"}} [:span.mdl-list__item-primary-content (str "Any Weight x " reps) [:span.mdl-list__item-sub-title (str "Assistance work")]] [:span.mdl-list__item-secondary-action [:input {:type "checkbox" :on-click #(rf/dispatch [:toggle-complete id]) :checked complete}]]]))]] [:div.primary-lift-action-line [:button.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect.mdl-button--raised "Rest"]]]]) (defn exercise-page [{:keys [primaries accessories] :as exercises}] [:div (map primary-lift primaries) (map accessory-lift accessories)]) (defn- panels [panel-name] (case panel-name :home [home-panel] :day-breakdown [day-breakdown @(rf/subscribe [:day-breakdown])] :exercise-page [exercise-page @(rf/subscribe [:exercises])] [:div])) (defn app-bar [{:keys [active-panel title previous-page] :as props}] [:div.app-bar [:div.hamburger (if (= active-panel :home) [:a.mdl-button.mdl-button--icon [:i.material-icons "menu" ]] [:a.mdl-button.mdl-button--icon {:href previous-page} [:i.material-icons "arrow_back"]])] [:span.mdl-layout-title title]]) (defn main-panel [] (let [active-panel (rf/subscribe [:active-panel])] [:div [app-bar {:title @(rf/subscribe [:page-title]) :previous-page @(rf/subscribe [:previous-page]) :active-panel @active-panel}] [:div.container [panels @active-panel]]]))
true
(ns gainz-goblin.views (:require [re-frame.core :as rf] [gainz-goblin.subs :as subs] [gainz-goblin.routes :as routes] )) (defn current-cycle [{:keys [id percent-completed start-date] :as cycle}] (when-not (nil? cycle) [:div.current-cycle-card.mdl-card.mdl-shadow--2dp.card-margin [:div.mdl-card__title.current-cycle [:div.mdl-card__title-text ;[:img {:src "https://s3-us-west-1.amazonaws.com/gainz-goblin-storage/images/gainz-goblin.PNG"}] "Current Cycle"]] [:div.mdl-card__supporting-text [:div "Percent completed: " percent-completed "%"] [:div (str "Started on: " (.toLocaleDateString (js/Date. start-date) "en-US"))] [:div "Training Maxes:" (for [[lift weight] (:1rm cycle)] [:div (str lift ": " weight)])]] [:div.mdl-card__actions.mdl-card--border [:a.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect {:href (routes/url-for :day-breakdown :id id)} "Let's Go!"] [:div.mdl-card__menu [:a.mdl-button.mdl-button--icon.mdl-js-button.mdl-js-ripple-effect [:i.material-icons "more_vert"]]]]])) (defn previous-cycles [cycles] [:ul.mdl-list (for [cycle cycles] [:li.mdl-list__item.mdl-list__item--two-line [:span.mdl-list__item-primary-content [:span (.toLocaleDateString (js/Date. (:start-date cycle)) "en-US")] [:span.mdl-list__item-sub-title (str (:1rm cycle))]] [:span.mdl-list__item-secondary-content [:span.mdl-list__item-secondary-action [:button#id-xxx.mdl-button.mdl-js-button.mdl-button--icon [:i.material-icons "more_vert"]] ]]])]) (defn previous-cycles-card [cycles] (when-not (empty? cycles) [:div.current-cycle-card.mdl-card.mdl-shadow--2dp.card-margin [:div.mdl-card__title.current-cycle [:div.mdl-card__title-text "Previous Cycles"]] [:div.mdl-card__supporting-text [previous-cycles cycles] ]])) (defn day-summary-card [{:keys [day cycle-id percent-completed heavy-set-name heavy-set-weight volume-set-name volume-set-weight] :as props}] [:div.current-cycle-card.mdl-card.mdl-shadow--2dp.card-margin [:div.mdl-card__title.current-cycle [:div.mdl-card__title-text (str "Day " day)]] [:div.mdl-card__supporting-text [:div (str heavy-set-name " @ " heavy-set-weight)] [:div (str volume-set-name " @ " volume-set-weight)] [:div (str "Percent Complete: " percent-completed "%")] [:a {:href (routes/url-for :exercise-page :id cycle-id :day day) :style {:float "right"}} [:button.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect.mdl-button--raised.green-background "View Lifts"]]] [:div.mdl-card__menu [:a.mdl-button.mdl-button--icon.mdl-js-button.mdl-js-ripple-effect [:i.material-icons {:style {:color "#7d7d7d"}} "settings"]]]]) (defn day-breakdown [day-summaries] [:div (map day-summary-card day-summaries) [:dialog.mdl-dialog [:div.mdl-dialog__content "Hello world!"]]]) (defn new-cycle-form [fields cycle] [:div (if cycle [:div (str "Previous 1RM weights: " (:1rm cycle))] [:div (str "Set up your 1RM weights for the core lifts")]) (map (fn [{:keys [name display value] :as field}] [:div.mdl-textfield.mdl-js-textfield [:div display] [:input.mdl-textfield__input {:type "number" :name name :value value :placeholder "Weight in Pounds" :on-change #(let [new-val (-> % .-target .-value)] (rf/dispatch [:form-input name new-val]))}]]) fields)]) (defn modal [{:keys [open title body cancel-fn accept-fn] :as props}] (when open [:div.modal-backing {:on-click cancel-fn} [:div.current-cycle-card.mdl-card.mdl-shadow--2dp.card-margin.modal {:on-click (fn [e] (.stopPropagation e))} [:div.mdl-card__title.current-cycle [:div.mdl-card__title-text title]] [:div.mdl-card__supporting-text {:style {:flex 1}} body] [:div.mdl-card__actions.mdl-card--border [:button.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect {:on-click cancel-fn} "cancel"] [:button.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect {:on-click accept-fn} "Accept"] ]]])) (defn empty-state [cycle] (when-not cycle [:div.empty-state.mdl-shadow--2dp [:div.mdl-card__title.current-cycle [:h2.empty-state-title "Hai."]] [:div.mdl-card__supporting-text {:style {:flex 1}} [:p "Welcome to PI:NAME:<NAME>END_PI!"] [:p "Click the '+' button below to create your first Wendler 1.2 cycle!"]]])) (defn home-panel [] [:div [empty-state @(rf/subscribe [:current-cycle])] [current-cycle @(rf/subscribe [:current-cycle])] [previous-cycles-card @(rf/subscribe [:previous-cycles])] [:div.new-cycle-button [:button.mdl-button.mdl-js-button.mdl-button--fab.mdl-button--colored {:on-click #(rf/dispatch [:show-new-cycle-modal true])} [:i.material-icons "add"]]] [:div.bottom-image [:img {:src "https://s3-us-west-1.amazonaws.com/gainz-goblin-storage/images/gainz-goblin.PNG" :style {:max-width "100%"}}]] [modal {:open @(rf/subscribe [:show-new-cycle-modal]) :title "New Cycle" :body [new-cycle-form @(rf/subscribe [:cycle-form]) @(rf/subscribe [:current-cycle])] :cancel-fn #(rf/dispatch [:show-new-cycle-modal false]) :accept-fn #(rf/dispatch [:create-cycle]) }] ]) (defn primary-lift [sets] [:div.primary-lift-card.mdl-shadow--2dp.card-margin [:div.primary-lift-card-body [:h2.primary-lift-title (:verbose-name (first sets))] [:div.primary-lift-rep-scheme [:p (str "Current Training Max: " (:tm-max (first sets)))] [:ul.mdl-list (for [set sets] (let [{:keys [complete weight reps percentage id tm-max]} set] [:li.mdl-list__item.mdl-list__item--two-line {:style {:padding-top "10px" :padding-bottom "10px" :height "auto"} :on-click #(rf/dispatch [:toggle-complete id])} [:span.mdl-list__item-primary-content (str weight " lbs x " reps) [:span.mdl-list__item-sub-title (str (* 100 percentage) "% of 1RM")]] [:span.mdl-list__item-secondary-action [:input {:type "checkbox" :checked complete}]]]))]] [:div.primary-lift-action-line [:button.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect.mdl-button--raised "Rest"]]]]) (defn accessory-lift [sets] [:div.primary-lift-card.mdl-shadow--2dp.card-margin [:div.primary-lift-card-body [:h2.primary-lift-title (:verbose-name (first sets))] [:div.primary-lift-rep-scheme [:ul.mdl-list (for [set sets] (let [{:keys [complete weight reps percentage id tm-max]} set] [:li.mdl-list__item.mdl-list__item--two-line {:style {:padding-top "10px" :padding-bottom "10px" :height "auto"}} [:span.mdl-list__item-primary-content (str "Any Weight x " reps) [:span.mdl-list__item-sub-title (str "Assistance work")]] [:span.mdl-list__item-secondary-action [:input {:type "checkbox" :on-click #(rf/dispatch [:toggle-complete id]) :checked complete}]]]))]] [:div.primary-lift-action-line [:button.mdl-button.mdl-button--colored.mdl-js-button.mdl-js-ripple-effect.mdl-button--raised "Rest"]]]]) (defn exercise-page [{:keys [primaries accessories] :as exercises}] [:div (map primary-lift primaries) (map accessory-lift accessories)]) (defn- panels [panel-name] (case panel-name :home [home-panel] :day-breakdown [day-breakdown @(rf/subscribe [:day-breakdown])] :exercise-page [exercise-page @(rf/subscribe [:exercises])] [:div])) (defn app-bar [{:keys [active-panel title previous-page] :as props}] [:div.app-bar [:div.hamburger (if (= active-panel :home) [:a.mdl-button.mdl-button--icon [:i.material-icons "menu" ]] [:a.mdl-button.mdl-button--icon {:href previous-page} [:i.material-icons "arrow_back"]])] [:span.mdl-layout-title title]]) (defn main-panel [] (let [active-panel (rf/subscribe [:active-panel])] [:div [app-bar {:title @(rf/subscribe [:page-title]) :previous-page @(rf/subscribe [:previous-page]) :active-panel @active-panel}] [:div.container [panels @active-panel]]]))
[ { "context": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n; Copyright 2015 Xebia B.V.\n;\n; Licensed under the Apache License, Version 2", "end": 107, "score": 0.9917764067649841, "start": 98, "tag": "NAME", "value": "Xebia B.V" } ]
src/main/clojure/com/xebia/visualreview/service/screenshot/persistence.clj
andstepanuk/VisualReview
290
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Copyright 2015 Xebia B.V. ; ; Licensed under the Apache License, Version 2.0 (the "License") ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ; See the License for the specific language governing permissions and ; limitations under the License. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (ns com.xebia.visualreview.service.screenshot.persistence (:require [slingshot.slingshot :as ex] [cheshire.core :as json] [clojure.tools.logging :as log] [com.xebia.visualreview.service.persistence.util :as putil]) (:import [java.sql SQLException])) (defn save-screenshot! "Stores a reference with data of a new screenshot. Returns the new screenshot id." [conn run-id screenshot-name size properties meta image-id] (try (log/debug (str "saving screenshot with image-id " image-id)) (let [ screenshot-id (putil/insert-single! conn :screenshot { :screenshot-name screenshot-name :image-id image-id :size size :meta (json/generate-string meta) :properties (json/generate-string properties)})] (do (putil/insert-single! conn :run_screenshots { :screenshot-id screenshot-id :run-id run-id}) screenshot-id)) (catch SQLException e (if (putil/unique-constraint-violation? e) (ex/throw+ {:type :sql-exception :subtype ::unique-constraint-violation :message (.getMessage e)}) (throw e))))) (defn get-screenshot-by-id [conn screenshot-id] (putil/query-single conn ["SELECT screenshot.* FROM screenshot, image WHERE screenshot.id = ?" screenshot-id] :row-fn (putil/parse-json-fields :meta :properties) :result-set-fn vec)) (defn get-screenshots [conn run-id] (putil/query conn ["SELECT screenshot.* FROM screenshot, run_screenshots WHERE run_screenshots.run_id = ? AND screenshot.id = run_screenshots.screenshot_id" run-id] :row-fn (putil/parse-json-fields :meta :properties) :result-set-fn vec)) (defn delete-screenshots! [conn screenshot-ids] "Deletes screenshots with the given IDs" (putil/delete! conn :screenshot (into [(str "id IN (" (putil/sql-param-list (count screenshot-ids)) " )")] screenshot-ids))) (defn get-unused-screenshot-ids [conn] "Returns a vector of screenshot-IDs that are not referenced by any run" (putil/query conn ["SELECT id FROM screenshot where id NOT IN (select screenshot_id from run_screenshots) AND id NOT IN (SELECT screenshot_id FROM bl_node_screenshot) AND id NOT IN (SELECT before FROM diff) AND id NOT IN (SELECT after FROM diff)"] :row-fn :id :result-set-fn vec))
34142
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Copyright 2015 <NAME>. ; ; Licensed under the Apache License, Version 2.0 (the "License") ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ; See the License for the specific language governing permissions and ; limitations under the License. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (ns com.xebia.visualreview.service.screenshot.persistence (:require [slingshot.slingshot :as ex] [cheshire.core :as json] [clojure.tools.logging :as log] [com.xebia.visualreview.service.persistence.util :as putil]) (:import [java.sql SQLException])) (defn save-screenshot! "Stores a reference with data of a new screenshot. Returns the new screenshot id." [conn run-id screenshot-name size properties meta image-id] (try (log/debug (str "saving screenshot with image-id " image-id)) (let [ screenshot-id (putil/insert-single! conn :screenshot { :screenshot-name screenshot-name :image-id image-id :size size :meta (json/generate-string meta) :properties (json/generate-string properties)})] (do (putil/insert-single! conn :run_screenshots { :screenshot-id screenshot-id :run-id run-id}) screenshot-id)) (catch SQLException e (if (putil/unique-constraint-violation? e) (ex/throw+ {:type :sql-exception :subtype ::unique-constraint-violation :message (.getMessage e)}) (throw e))))) (defn get-screenshot-by-id [conn screenshot-id] (putil/query-single conn ["SELECT screenshot.* FROM screenshot, image WHERE screenshot.id = ?" screenshot-id] :row-fn (putil/parse-json-fields :meta :properties) :result-set-fn vec)) (defn get-screenshots [conn run-id] (putil/query conn ["SELECT screenshot.* FROM screenshot, run_screenshots WHERE run_screenshots.run_id = ? AND screenshot.id = run_screenshots.screenshot_id" run-id] :row-fn (putil/parse-json-fields :meta :properties) :result-set-fn vec)) (defn delete-screenshots! [conn screenshot-ids] "Deletes screenshots with the given IDs" (putil/delete! conn :screenshot (into [(str "id IN (" (putil/sql-param-list (count screenshot-ids)) " )")] screenshot-ids))) (defn get-unused-screenshot-ids [conn] "Returns a vector of screenshot-IDs that are not referenced by any run" (putil/query conn ["SELECT id FROM screenshot where id NOT IN (select screenshot_id from run_screenshots) AND id NOT IN (SELECT screenshot_id FROM bl_node_screenshot) AND id NOT IN (SELECT before FROM diff) AND id NOT IN (SELECT after FROM diff)"] :row-fn :id :result-set-fn vec))
true
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Copyright 2015 PI:NAME:<NAME>END_PI. ; ; Licensed under the Apache License, Version 2.0 (the "License") ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ; See the License for the specific language governing permissions and ; limitations under the License. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (ns com.xebia.visualreview.service.screenshot.persistence (:require [slingshot.slingshot :as ex] [cheshire.core :as json] [clojure.tools.logging :as log] [com.xebia.visualreview.service.persistence.util :as putil]) (:import [java.sql SQLException])) (defn save-screenshot! "Stores a reference with data of a new screenshot. Returns the new screenshot id." [conn run-id screenshot-name size properties meta image-id] (try (log/debug (str "saving screenshot with image-id " image-id)) (let [ screenshot-id (putil/insert-single! conn :screenshot { :screenshot-name screenshot-name :image-id image-id :size size :meta (json/generate-string meta) :properties (json/generate-string properties)})] (do (putil/insert-single! conn :run_screenshots { :screenshot-id screenshot-id :run-id run-id}) screenshot-id)) (catch SQLException e (if (putil/unique-constraint-violation? e) (ex/throw+ {:type :sql-exception :subtype ::unique-constraint-violation :message (.getMessage e)}) (throw e))))) (defn get-screenshot-by-id [conn screenshot-id] (putil/query-single conn ["SELECT screenshot.* FROM screenshot, image WHERE screenshot.id = ?" screenshot-id] :row-fn (putil/parse-json-fields :meta :properties) :result-set-fn vec)) (defn get-screenshots [conn run-id] (putil/query conn ["SELECT screenshot.* FROM screenshot, run_screenshots WHERE run_screenshots.run_id = ? AND screenshot.id = run_screenshots.screenshot_id" run-id] :row-fn (putil/parse-json-fields :meta :properties) :result-set-fn vec)) (defn delete-screenshots! [conn screenshot-ids] "Deletes screenshots with the given IDs" (putil/delete! conn :screenshot (into [(str "id IN (" (putil/sql-param-list (count screenshot-ids)) " )")] screenshot-ids))) (defn get-unused-screenshot-ids [conn] "Returns a vector of screenshot-IDs that are not referenced by any run" (putil/query conn ["SELECT id FROM screenshot where id NOT IN (select screenshot_id from run_screenshots) AND id NOT IN (SELECT screenshot_id FROM bl_node_screenshot) AND id NOT IN (SELECT before FROM diff) AND id NOT IN (SELECT after FROM diff)"] :row-fn :id :result-set-fn vec))
[ { "context": "ling protobuf schemas\"\n :url \"https://github.com/AppsFlyer/lein-protodeps\"\n :license {:name \"Apache License", "end": 173, "score": 0.7751777768135071, "start": 164, "tag": "USERNAME", "value": "AppsFlyer" }, { "context": "\n :password :env/clojars_password}]]\n :profiles {:dev {:dependencies [[org.clojure", "end": 809, "score": 0.9381727576255798, "start": 789, "tag": "PASSWORD", "value": "env/clojars_password" } ]
project.clj
nenorbot/lein-protodeps
12
(defproject com.appsflyer/lein-protodeps "1.0.4-SNAPSHOT" :description "Leiningen plugin for consuming and compiling protobuf schemas" :url "https://github.com/AppsFlyer/lein-protodeps" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :eval-in-leiningen true :deploy-repositories [["releases" {:url "https://repo.clojars.org" :sign-releases false :username :env/clojars_username :password :env/clojars_password}] ["snapshots" {:url "https://repo.clojars.org" :username :env/clojars_username :password :env/clojars_password}]] :profiles {:dev {:dependencies [[org.clojure/clojure "1.9.0"]]}})
103263
(defproject com.appsflyer/lein-protodeps "1.0.4-SNAPSHOT" :description "Leiningen plugin for consuming and compiling protobuf schemas" :url "https://github.com/AppsFlyer/lein-protodeps" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :eval-in-leiningen true :deploy-repositories [["releases" {:url "https://repo.clojars.org" :sign-releases false :username :env/clojars_username :password :env/clojars_password}] ["snapshots" {:url "https://repo.clojars.org" :username :env/clojars_username :password :<PASSWORD>}]] :profiles {:dev {:dependencies [[org.clojure/clojure "1.9.0"]]}})
true
(defproject com.appsflyer/lein-protodeps "1.0.4-SNAPSHOT" :description "Leiningen plugin for consuming and compiling protobuf schemas" :url "https://github.com/AppsFlyer/lein-protodeps" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :eval-in-leiningen true :deploy-repositories [["releases" {:url "https://repo.clojars.org" :sign-releases false :username :env/clojars_username :password :env/clojars_password}] ["snapshots" {:url "https://repo.clojars.org" :username :env/clojars_username :password :PI:PASSWORD:<PASSWORD>END_PI}]] :profiles {:dev {:dependencies [[org.clojure/clojure "1.9.0"]]}})
[ { "context": ";; Copyright (c) Michael Glaesemann\n;; Heavily inspired by congitect.http-client, Cop", "end": 35, "score": 0.9998553395271301, "start": 17, "tag": "NAME", "value": "Michael Glaesemann" } ]
src/com/grzm/aws/http_client/client.clj
borkdude/yaaws-api
1
;; Copyright (c) Michael Glaesemann ;; Heavily inspired by congitect.http-client, Copyright (c) Cognitect, Inc. ;; All rights reserved. (ns com.grzm.aws.http-client.client) (defprotocol Client (-submit [_ request ch])) (defn submit [client request ch] (-submit client request ch))
73914
;; Copyright (c) <NAME> ;; Heavily inspired by congitect.http-client, Copyright (c) Cognitect, Inc. ;; All rights reserved. (ns com.grzm.aws.http-client.client) (defprotocol Client (-submit [_ request ch])) (defn submit [client request ch] (-submit client request ch))
true
;; Copyright (c) PI:NAME:<NAME>END_PI ;; Heavily inspired by congitect.http-client, Copyright (c) Cognitect, Inc. ;; All rights reserved. (ns com.grzm.aws.http-client.client) (defprotocol Client (-submit [_ request ch])) (defn submit [client request ch] (-submit client request ch))
[ { "context": "c \"File system utilities in Clojure\"\n :author \"Miki Tebeka <miki.tebeka@gmail.com>\"}\n (:refer-clojure :excl", "end": 80, "score": 0.9998892545700073, "start": 69, "tag": "NAME", "value": "Miki Tebeka" }, { "context": "m utilities in Clojure\"\n :author \"Miki Tebeka <miki.tebeka@gmail.com>\"}\n (:refer-clojure :exclude [empty?])\n (:requi", "end": 103, "score": 0.9999328851699829, "start": 82, "tag": "EMAIL", "value": "miki.tebeka@gmail.com" } ]
fs.clj
anhinga/r-to-clojure
1
(ns RClj.fs ^{:doc "File system utilities in Clojure" :author "Miki Tebeka <miki.tebeka@gmail.com>"} (:refer-clojure :exclude [empty?]) (:require [clojure.contrib.io :as io] [clojure.contrib.string :as str] [clojure.zip :as zip]) (:import java.io.File java.io.FileInputStream java.io.FileOutputStream java.io.FilenameFilter)) ;;; (compile 'edu.bc.fs) (def separator File/separator) (defn fullpath [filespec-str] "Canonicalize FILESPEC, a string, to a fully qualified file path for the native system. ~ in position one is translated to the users home directory path, / and \\ are translated to the file separator for the native system." (let [^String s (str filespec-str) s (.replace s \\ File/separatorChar) s (.replace s \/ File/separatorChar)] (if (.startsWith s "~") (str (System/getProperty "user.home") separator (subs s 1)) s))) (declare exists? size) (defn empty? [path] "Returns false if either (io/file path) does not exist OR if the denoted file is empty (has size 0)" (or (not (exists? path)) (= (size path) 0))) (defn pwd [] (io/pwd)) (defn homedir [] (System/getProperty "user.home")) (defn join "Join parts of path.\n\t(join [\"a\" \"b\"]) -> \"a/b\"" [& parts] (apply str (interpose separator parts))) (defn split "Split path to componenets.\n\t(split \"a/b/c\") -> (\"a\" \"b\" \"c\")" [path] (into [] (.split path separator))) (defn rename "Rename old-path to new-path." [old-path new-path] (.renameTo (io/file old-path) (io/file new-path))) (defn exists? "Return true if path exists." [path] (.exists (io/file path))) (defn directory? "Return true if path is a directory." [path] (.isDirectory (io/file path))) (defn file? "Return true if path is a file." [path] (.isFile (io/file path))) (defn executable? "Return true if path is executable." [path] (.canExecute (io/file path))) (defn readable? "Return true if path is readable." [path] (.canRead (io/file path))) (defn writeable? "Return true if path is writeable." [path] (.canWrite (io/file path))) ;;; From clj-file-utils (defn delete "Delete path." [path] (.delete (io/file path))) (defn rm "Remove a file. Will throw an exception if the file cannot be deleted." [file] (io/delete-file file)) (defn rm-f "Remove a file, ignoring any errors." [file] (io/delete-file file true)) (defn rm-r "Remove a directory. The directory must be empty; will throw an exception if it is not or if the file cannot be deleted." [path] (io/delete-file-recursively path)) (defn rm-rf "Remove a directory, ignoring any errors." [path] (io/delete-file-recursively path true)) (defn abspath "Return absolute path." [path] (.getAbsolutePath (io/file path))) (defn- strinfify [file] (.getCanonicalPath file)) (defn normpath "Return nomralized (canonical) path." [path] (strinfify (io/file path))) (defn basename "Return basename (file part) of path.\n\t(basename \"/a/b/c\") -> \"c\"" [path] (.getName (io/file path))) (defn dirname "Return directory name of path.\n\t(dirname \"a/b/c\") -> \"/a/b\"" [path] (.getParent (io/file path))) (defn replace-type "Replace the file extension type of FILESPEC to be EXT. The type for FILESPEC is the last part dotted extension. Formally, matches regexp '\\.[^.]*$'. If EXT is a seq/vec replace extensions in last/first pairings. Last extension replace by (first EXT), then last of that result is replaced by (second EXT), etc." [filespec ext] (let [rep-type (fn [filespec ext] (let [dir (dirname filespec) fname (str/replace-re #"\.[^.]*$" ext (basename filespec))] (if dir (str dir separator fname) fname)))] (reduce #(rep-type %1 %2) filespec (if (coll? ext) ext [ext])))) (defn mtime "Return file modification time." [path] (.lastModified (io/file path))) (defn size "Return size (in bytes) if file." [path] (.length (io/file path))) (defn listdir "List files under path." [path] (seq (.list (io/file path)))) (defn directory-files [directory file-type] (let [pat (re-pattern (str file-type "$"))] (map #(join directory %) (filter #(re-find pat %) (listdir directory))))) (defn mkdir "Create a directory." [path] (.mkdir (io/file path))) (defn mkdirs "Make directory tree." [path] (.mkdirs (io/file path))) (defn copy [from to] (let [from (io/file from) to (io/file to)] (when (not (.exists to)) (.createNewFile to)) (with-open [to-channel (.getChannel (FileOutputStream. to)) from-channel (.getChannel (FileInputStream. from))] (.transferFrom to-channel from-channel 0 (.size from-channel))))) ; FIXME: Write this ; (defn copytree [from to] ... (defn tempfile "Create a temporary file." ([] (tempfile "-fs-" "")) ([prefix] (tempfile prefix "")) ([prefix suffix] (.getAbsolutePath (File/createTempFile prefix suffix))) ([prefix suffix directory] (.getAbsolutePath (File/createTempFile prefix suffix (File. directory))))) (defn tempdir "Create a temporary directory" ([] (let [dir (File/createTempFile "-fs-" "") path (.getAbsolutePath dir)] (.delete dir) (.mkdir dir) path)) ([root] (let [dir (File/createTempFile "-fs-" "" (File. root)) path (.getAbsolutePath dir)] (.delete dir) (.mkdir dir) path))) (defn cwd "Return the current working directory." [] (abspath ".")) ; Taken from https://github.com/jkk/clj-glob. (thanks Justin!) (defn- glob->regex "Takes a glob-format string and returns a regex." [s] (loop [stream s re "" curly-depth 0] (let [[c j] stream] (cond (nil? c) (re-pattern (str (if (= \. (first s)) "" "(?=[^\\.])") re)) (= c \\) (recur (nnext stream) (str re c c) curly-depth) (= c \/) (recur (next stream) (str re (if (= \. j) c "/(?=[^\\.])")) curly-depth) (= c \*) (recur (next stream) (str re "[^/]*") curly-depth) (= c \?) (recur (next stream) (str re "[^/]") curly-depth) (= c \{) (recur (next stream) (str re \() (inc curly-depth)) (= c \}) (recur (next stream) (str re \)) (dec curly-depth)) (and (= c \,) (< 0 curly-depth)) (recur (next stream) (str re \|) curly-depth) (#{\. \( \) \| \+ \^ \$ \@ \%} c) (recur (next stream) (str re \\ c) curly-depth) :else (recur (next stream) (str re c) curly-depth))))) (defn glob [pattern] "Returns files matching glob pattern." (let [parts (split pattern) root (if (= (count parts) 1) "." (apply join (butlast parts))) regex (glob->regex (last parts))] (map #(.getPath %) (seq (.listFiles (File. root) (reify FilenameFilter (accept [_ _ filename] (if (re-find regex filename) true false)))))))) ; walk helper functions (defn- w-directory? [f] (.isDirectory f)) (defn- w-file? [f] (.isFile f)) (defn- w-children [f] (.listFiles f)) (defn- w-base [f] (.getName f)) ; FIXME: I'm sure the Clojure gurus out there will make this a 1 liner :) (defn walk [path func] "Walk over directory structure. Calls 'func' with [root dirs files]" (loop [loc (zip/zipper w-directory? w-children nil (io/file path))] (when (not (zip/end? loc)) (let [file (zip/node loc)] (if (w-file? file) (recur (zip/next loc)) (let [kids (w-children file) dirs (set (map w-base (filter w-directory? kids))) files (set (map w-base (filter w-file? kids)))] (func (strinfify file) dirs files) (recur (zip/next loc))))))))
4420
(ns RClj.fs ^{:doc "File system utilities in Clojure" :author "<NAME> <<EMAIL>>"} (:refer-clojure :exclude [empty?]) (:require [clojure.contrib.io :as io] [clojure.contrib.string :as str] [clojure.zip :as zip]) (:import java.io.File java.io.FileInputStream java.io.FileOutputStream java.io.FilenameFilter)) ;;; (compile 'edu.bc.fs) (def separator File/separator) (defn fullpath [filespec-str] "Canonicalize FILESPEC, a string, to a fully qualified file path for the native system. ~ in position one is translated to the users home directory path, / and \\ are translated to the file separator for the native system." (let [^String s (str filespec-str) s (.replace s \\ File/separatorChar) s (.replace s \/ File/separatorChar)] (if (.startsWith s "~") (str (System/getProperty "user.home") separator (subs s 1)) s))) (declare exists? size) (defn empty? [path] "Returns false if either (io/file path) does not exist OR if the denoted file is empty (has size 0)" (or (not (exists? path)) (= (size path) 0))) (defn pwd [] (io/pwd)) (defn homedir [] (System/getProperty "user.home")) (defn join "Join parts of path.\n\t(join [\"a\" \"b\"]) -> \"a/b\"" [& parts] (apply str (interpose separator parts))) (defn split "Split path to componenets.\n\t(split \"a/b/c\") -> (\"a\" \"b\" \"c\")" [path] (into [] (.split path separator))) (defn rename "Rename old-path to new-path." [old-path new-path] (.renameTo (io/file old-path) (io/file new-path))) (defn exists? "Return true if path exists." [path] (.exists (io/file path))) (defn directory? "Return true if path is a directory." [path] (.isDirectory (io/file path))) (defn file? "Return true if path is a file." [path] (.isFile (io/file path))) (defn executable? "Return true if path is executable." [path] (.canExecute (io/file path))) (defn readable? "Return true if path is readable." [path] (.canRead (io/file path))) (defn writeable? "Return true if path is writeable." [path] (.canWrite (io/file path))) ;;; From clj-file-utils (defn delete "Delete path." [path] (.delete (io/file path))) (defn rm "Remove a file. Will throw an exception if the file cannot be deleted." [file] (io/delete-file file)) (defn rm-f "Remove a file, ignoring any errors." [file] (io/delete-file file true)) (defn rm-r "Remove a directory. The directory must be empty; will throw an exception if it is not or if the file cannot be deleted." [path] (io/delete-file-recursively path)) (defn rm-rf "Remove a directory, ignoring any errors." [path] (io/delete-file-recursively path true)) (defn abspath "Return absolute path." [path] (.getAbsolutePath (io/file path))) (defn- strinfify [file] (.getCanonicalPath file)) (defn normpath "Return nomralized (canonical) path." [path] (strinfify (io/file path))) (defn basename "Return basename (file part) of path.\n\t(basename \"/a/b/c\") -> \"c\"" [path] (.getName (io/file path))) (defn dirname "Return directory name of path.\n\t(dirname \"a/b/c\") -> \"/a/b\"" [path] (.getParent (io/file path))) (defn replace-type "Replace the file extension type of FILESPEC to be EXT. The type for FILESPEC is the last part dotted extension. Formally, matches regexp '\\.[^.]*$'. If EXT is a seq/vec replace extensions in last/first pairings. Last extension replace by (first EXT), then last of that result is replaced by (second EXT), etc." [filespec ext] (let [rep-type (fn [filespec ext] (let [dir (dirname filespec) fname (str/replace-re #"\.[^.]*$" ext (basename filespec))] (if dir (str dir separator fname) fname)))] (reduce #(rep-type %1 %2) filespec (if (coll? ext) ext [ext])))) (defn mtime "Return file modification time." [path] (.lastModified (io/file path))) (defn size "Return size (in bytes) if file." [path] (.length (io/file path))) (defn listdir "List files under path." [path] (seq (.list (io/file path)))) (defn directory-files [directory file-type] (let [pat (re-pattern (str file-type "$"))] (map #(join directory %) (filter #(re-find pat %) (listdir directory))))) (defn mkdir "Create a directory." [path] (.mkdir (io/file path))) (defn mkdirs "Make directory tree." [path] (.mkdirs (io/file path))) (defn copy [from to] (let [from (io/file from) to (io/file to)] (when (not (.exists to)) (.createNewFile to)) (with-open [to-channel (.getChannel (FileOutputStream. to)) from-channel (.getChannel (FileInputStream. from))] (.transferFrom to-channel from-channel 0 (.size from-channel))))) ; FIXME: Write this ; (defn copytree [from to] ... (defn tempfile "Create a temporary file." ([] (tempfile "-fs-" "")) ([prefix] (tempfile prefix "")) ([prefix suffix] (.getAbsolutePath (File/createTempFile prefix suffix))) ([prefix suffix directory] (.getAbsolutePath (File/createTempFile prefix suffix (File. directory))))) (defn tempdir "Create a temporary directory" ([] (let [dir (File/createTempFile "-fs-" "") path (.getAbsolutePath dir)] (.delete dir) (.mkdir dir) path)) ([root] (let [dir (File/createTempFile "-fs-" "" (File. root)) path (.getAbsolutePath dir)] (.delete dir) (.mkdir dir) path))) (defn cwd "Return the current working directory." [] (abspath ".")) ; Taken from https://github.com/jkk/clj-glob. (thanks Justin!) (defn- glob->regex "Takes a glob-format string and returns a regex." [s] (loop [stream s re "" curly-depth 0] (let [[c j] stream] (cond (nil? c) (re-pattern (str (if (= \. (first s)) "" "(?=[^\\.])") re)) (= c \\) (recur (nnext stream) (str re c c) curly-depth) (= c \/) (recur (next stream) (str re (if (= \. j) c "/(?=[^\\.])")) curly-depth) (= c \*) (recur (next stream) (str re "[^/]*") curly-depth) (= c \?) (recur (next stream) (str re "[^/]") curly-depth) (= c \{) (recur (next stream) (str re \() (inc curly-depth)) (= c \}) (recur (next stream) (str re \)) (dec curly-depth)) (and (= c \,) (< 0 curly-depth)) (recur (next stream) (str re \|) curly-depth) (#{\. \( \) \| \+ \^ \$ \@ \%} c) (recur (next stream) (str re \\ c) curly-depth) :else (recur (next stream) (str re c) curly-depth))))) (defn glob [pattern] "Returns files matching glob pattern." (let [parts (split pattern) root (if (= (count parts) 1) "." (apply join (butlast parts))) regex (glob->regex (last parts))] (map #(.getPath %) (seq (.listFiles (File. root) (reify FilenameFilter (accept [_ _ filename] (if (re-find regex filename) true false)))))))) ; walk helper functions (defn- w-directory? [f] (.isDirectory f)) (defn- w-file? [f] (.isFile f)) (defn- w-children [f] (.listFiles f)) (defn- w-base [f] (.getName f)) ; FIXME: I'm sure the Clojure gurus out there will make this a 1 liner :) (defn walk [path func] "Walk over directory structure. Calls 'func' with [root dirs files]" (loop [loc (zip/zipper w-directory? w-children nil (io/file path))] (when (not (zip/end? loc)) (let [file (zip/node loc)] (if (w-file? file) (recur (zip/next loc)) (let [kids (w-children file) dirs (set (map w-base (filter w-directory? kids))) files (set (map w-base (filter w-file? kids)))] (func (strinfify file) dirs files) (recur (zip/next loc))))))))
true
(ns RClj.fs ^{:doc "File system utilities in Clojure" :author "PI:NAME:<NAME>END_PI <PI:EMAIL:<EMAIL>END_PI>"} (:refer-clojure :exclude [empty?]) (:require [clojure.contrib.io :as io] [clojure.contrib.string :as str] [clojure.zip :as zip]) (:import java.io.File java.io.FileInputStream java.io.FileOutputStream java.io.FilenameFilter)) ;;; (compile 'edu.bc.fs) (def separator File/separator) (defn fullpath [filespec-str] "Canonicalize FILESPEC, a string, to a fully qualified file path for the native system. ~ in position one is translated to the users home directory path, / and \\ are translated to the file separator for the native system." (let [^String s (str filespec-str) s (.replace s \\ File/separatorChar) s (.replace s \/ File/separatorChar)] (if (.startsWith s "~") (str (System/getProperty "user.home") separator (subs s 1)) s))) (declare exists? size) (defn empty? [path] "Returns false if either (io/file path) does not exist OR if the denoted file is empty (has size 0)" (or (not (exists? path)) (= (size path) 0))) (defn pwd [] (io/pwd)) (defn homedir [] (System/getProperty "user.home")) (defn join "Join parts of path.\n\t(join [\"a\" \"b\"]) -> \"a/b\"" [& parts] (apply str (interpose separator parts))) (defn split "Split path to componenets.\n\t(split \"a/b/c\") -> (\"a\" \"b\" \"c\")" [path] (into [] (.split path separator))) (defn rename "Rename old-path to new-path." [old-path new-path] (.renameTo (io/file old-path) (io/file new-path))) (defn exists? "Return true if path exists." [path] (.exists (io/file path))) (defn directory? "Return true if path is a directory." [path] (.isDirectory (io/file path))) (defn file? "Return true if path is a file." [path] (.isFile (io/file path))) (defn executable? "Return true if path is executable." [path] (.canExecute (io/file path))) (defn readable? "Return true if path is readable." [path] (.canRead (io/file path))) (defn writeable? "Return true if path is writeable." [path] (.canWrite (io/file path))) ;;; From clj-file-utils (defn delete "Delete path." [path] (.delete (io/file path))) (defn rm "Remove a file. Will throw an exception if the file cannot be deleted." [file] (io/delete-file file)) (defn rm-f "Remove a file, ignoring any errors." [file] (io/delete-file file true)) (defn rm-r "Remove a directory. The directory must be empty; will throw an exception if it is not or if the file cannot be deleted." [path] (io/delete-file-recursively path)) (defn rm-rf "Remove a directory, ignoring any errors." [path] (io/delete-file-recursively path true)) (defn abspath "Return absolute path." [path] (.getAbsolutePath (io/file path))) (defn- strinfify [file] (.getCanonicalPath file)) (defn normpath "Return nomralized (canonical) path." [path] (strinfify (io/file path))) (defn basename "Return basename (file part) of path.\n\t(basename \"/a/b/c\") -> \"c\"" [path] (.getName (io/file path))) (defn dirname "Return directory name of path.\n\t(dirname \"a/b/c\") -> \"/a/b\"" [path] (.getParent (io/file path))) (defn replace-type "Replace the file extension type of FILESPEC to be EXT. The type for FILESPEC is the last part dotted extension. Formally, matches regexp '\\.[^.]*$'. If EXT is a seq/vec replace extensions in last/first pairings. Last extension replace by (first EXT), then last of that result is replaced by (second EXT), etc." [filespec ext] (let [rep-type (fn [filespec ext] (let [dir (dirname filespec) fname (str/replace-re #"\.[^.]*$" ext (basename filespec))] (if dir (str dir separator fname) fname)))] (reduce #(rep-type %1 %2) filespec (if (coll? ext) ext [ext])))) (defn mtime "Return file modification time." [path] (.lastModified (io/file path))) (defn size "Return size (in bytes) if file." [path] (.length (io/file path))) (defn listdir "List files under path." [path] (seq (.list (io/file path)))) (defn directory-files [directory file-type] (let [pat (re-pattern (str file-type "$"))] (map #(join directory %) (filter #(re-find pat %) (listdir directory))))) (defn mkdir "Create a directory." [path] (.mkdir (io/file path))) (defn mkdirs "Make directory tree." [path] (.mkdirs (io/file path))) (defn copy [from to] (let [from (io/file from) to (io/file to)] (when (not (.exists to)) (.createNewFile to)) (with-open [to-channel (.getChannel (FileOutputStream. to)) from-channel (.getChannel (FileInputStream. from))] (.transferFrom to-channel from-channel 0 (.size from-channel))))) ; FIXME: Write this ; (defn copytree [from to] ... (defn tempfile "Create a temporary file." ([] (tempfile "-fs-" "")) ([prefix] (tempfile prefix "")) ([prefix suffix] (.getAbsolutePath (File/createTempFile prefix suffix))) ([prefix suffix directory] (.getAbsolutePath (File/createTempFile prefix suffix (File. directory))))) (defn tempdir "Create a temporary directory" ([] (let [dir (File/createTempFile "-fs-" "") path (.getAbsolutePath dir)] (.delete dir) (.mkdir dir) path)) ([root] (let [dir (File/createTempFile "-fs-" "" (File. root)) path (.getAbsolutePath dir)] (.delete dir) (.mkdir dir) path))) (defn cwd "Return the current working directory." [] (abspath ".")) ; Taken from https://github.com/jkk/clj-glob. (thanks Justin!) (defn- glob->regex "Takes a glob-format string and returns a regex." [s] (loop [stream s re "" curly-depth 0] (let [[c j] stream] (cond (nil? c) (re-pattern (str (if (= \. (first s)) "" "(?=[^\\.])") re)) (= c \\) (recur (nnext stream) (str re c c) curly-depth) (= c \/) (recur (next stream) (str re (if (= \. j) c "/(?=[^\\.])")) curly-depth) (= c \*) (recur (next stream) (str re "[^/]*") curly-depth) (= c \?) (recur (next stream) (str re "[^/]") curly-depth) (= c \{) (recur (next stream) (str re \() (inc curly-depth)) (= c \}) (recur (next stream) (str re \)) (dec curly-depth)) (and (= c \,) (< 0 curly-depth)) (recur (next stream) (str re \|) curly-depth) (#{\. \( \) \| \+ \^ \$ \@ \%} c) (recur (next stream) (str re \\ c) curly-depth) :else (recur (next stream) (str re c) curly-depth))))) (defn glob [pattern] "Returns files matching glob pattern." (let [parts (split pattern) root (if (= (count parts) 1) "." (apply join (butlast parts))) regex (glob->regex (last parts))] (map #(.getPath %) (seq (.listFiles (File. root) (reify FilenameFilter (accept [_ _ filename] (if (re-find regex filename) true false)))))))) ; walk helper functions (defn- w-directory? [f] (.isDirectory f)) (defn- w-file? [f] (.isFile f)) (defn- w-children [f] (.listFiles f)) (defn- w-base [f] (.getName f)) ; FIXME: I'm sure the Clojure gurus out there will make this a 1 liner :) (defn walk [path func] "Walk over directory structure. Calls 'func' with [root dirs files]" (loop [loc (zip/zipper w-directory? w-children nil (io/file path))] (when (not (zip/end? loc)) (let [file (zip/node loc)] (if (w-file? file) (recur (zip/next loc)) (let [kids (w-children file) dirs (set (map w-base (filter w-directory? kids))) files (set (map w-base (filter w-file? kids)))] (func (strinfify file) dirs files) (recur (zip/next loc))))))))
[ { "context": "(ns\n ^{:author \"Brian Craft\"\n :doc \"Library for reading cgdata and related", "end": 28, "score": 0.9998733401298523, "start": 17, "tag": "NAME", "value": "Brian Craft" } ]
src/cgdata/core.clj
ucscXena/ucsc-xena-server
8
(ns ^{:author "Brian Craft" :doc "Library for reading cgdata and related file formats."} cgdata.core (:require [clojure.data.json :as json]) (:require [clojure.string :as s]) (:require [clojure.java.io :as io]) (:require [clojure-csv.core :as csv]) (:require [me.raynes.fs :as fs]) (:require clojure.pprint) (:require [cavm.fs-utils :refer [normalized-path relativize]]) ; should copy these fns if releasing cgdata stand-alone (:require [cavm.chrom-pos :refer [chrom-pos-vec]]) ; move to this directory? (:require [cavm.lazy-utils :refer [consume-vec]]) (:require [clojure.set]) (:gen-class)) ; ; Utility functions ; (defn map-invert "Invert the keys/values of a map" [m] (into {} (map (fn [[k v]] [v k]) m))) ; apply f to values of map (defn- fmap [f m] (into {} (for [[k v] m] [k (f v)]))) (defn intern-coll "Intern values of a collection, returning the original collection as a list of indices, and a map from values to the indices. Invert the map to perform lookups by index." [s] (loop [s s codes {} out (vector-of :int) ; XXX does this work with consume-vec? i 0] (if-let [v (first s)] (if (contains? codes v) (recur (rest s) codes (conj out (codes v)) i) (recur (rest s) (assoc codes v i) (conj out i) (inc i))) {:codes codes :values out}))) (defn range-from [i] (range i Double/POSITIVE_INFINITY 1)) (defn strcpy [s] (String. ^String s)) (defn- split-no-empty [in pat] ; XXX Does this need to handle quotes? (filter #(not (= "" %)) (map #(s/trim %) (s/split in pat)))) (defn intern-csv-coll "Intern values of a collection of csv, returning the original collection as a list of arrays of indices, and a map from indices to values." [s] (loop [s s codes {} out [] i 0] (if-let [line (first s)] (let [vs (split-no-empty line #",") to-add (map strcpy (filter #(not (contains? codes %)) vs)) new-codes (into codes (map vector to-add (range-from i))) new-vals (long-array (map new-codes vs))] (recur (rest s) new-codes (conj out new-vals) (+ i (count to-add)))) {:codes (map-invert codes) :values out}))) (defn- chunked-pmap [f coll] (->> coll (partition-all 250) (pmap (fn [chunk] (doall (map f chunk)))) (apply concat))) (defn- drop-quotes [s] (.replace ^String s "\"" "")) (defn- tabbed [line] (mapv #(drop-quotes (s/trim %)) (s/split line #"\t"))) (defn- not-blank? [line] (not (re-matches #"\s*" line))) (defn- comment? [line] (re-matches #"\s*#.*" line)) (def ^:private not-comment? (comp not comment?)) ; ; cgData metadata ; (defn- all-json [path] (let [files (file-seq (io/file path)) fnames (map str files)] (map #(vector (s/replace % #"\.json$" "") (json/read-str (slurp %))) (filter #(.endsWith ^String % ".json") fnames)))) (defn- json-add [acc [file {n "name" t "type" :as metadata}]] (if-let [group (and (= t "probeMap") (metadata "group"))] (-> acc (assoc-in [t (str group "::" (metadata ":assembly"))] file) (assoc-in [t n] file)) (assoc-in acc [t n] file))) (defn- json-table [json-list] (reduce json-add {} json-list)) (defn- dirname [file] (s/replace file #"[^/]*$" "")) (defn- basename [file] (s/replace file #".*/([^/]*)$" "$1")) (defn- make-absolute [^String path] (if (.startsWith path "/") path (str "/" path))) (defn- normalize-path [cut file path] (if (= (dirname file) (dirname path)) (basename path) (make-absolute (subs path cut)))) ; either pass through [k v] or map it to a file if ; it matches an object in the table. (defn- resolve-reference [normalize table file [k v]] (if-let [match (and (.startsWith ^String k ":") (or (get-in table [(subs k 1) v]) (get-in table [(subs k 1) (str v "::hg18")])))] [k (normalize file match)] [k v])) ; rewrite table to use files instead of object names (defn- resolve-references [normalize table file metadata] (into {} (map #(resolve-reference normalize table file %) metadata))) (defn- write-json [file json] (with-open [writer (io/writer file)] (binding [*out* writer] (json/pprint json :escape-slash false)))) (defn fix-json "Utility for rewriting references in cgdata metadata, so they refer to file paths, not abstract identifiers." [root] (let [files (all-json root) table (json-table files) normalize (partial normalize-path (count root))] (doseq [[file data] files] (write-json (str file ".json") (resolve-references normalize table file data))))) ; ; cgData clinicalFeature ; (defmulti ^:private feature-line (fn [acc line] (second line))) (defmethod ^:private feature-line :default [acc [feature attr value]] (assoc-in acc [feature attr] value)) (defn- add-state [curr value] (conj (vec curr) value)) (defmethod ^:private feature-line "state" [acc [feature attr value]] (update-in acc [feature attr] add-state value)) (defn- parse-order [order] (first (csv/parse-csv order))) (defmethod ^:private feature-line "stateOrder" [acc [feature attr value]] (assoc-in acc [feature attr] (parse-order value))) (defn- feature-map [lines] "Read tab-split clincalFeature rows into a map" (reduce feature-line {} lines)) (defn- calc-order "Take feature order from 'stateOrder', or file order of 'state' rows." [feature] (if-let [state (or (feature "stateOrder") (feature "state"))] (-> feature (assoc :order (into {} (map #(vector %1 %2) state (range)))) (assoc :state state)) feature)) (defn- feature-file [file] (when (and file (.exists (io/as-file file))) (->> file (slurp) (#(s/split % #"\n")) ; split lines (map #(s/split % #"\t")) ; split tabs (feature-map) (fmap calc-order)))) ; ; cgData genomicMatrix ; (defn- parseFloatNA [str] (if (or (= str "NA") (= str "nan") (= str "")) Double/NaN (Float/parseFloat str))) (defn- parseChromCSV-1 [str i] (->> str csv/parse-csv first (filter #(not (s/blank? %))) (mapv #(+ (long (Double/parseDouble (s/trim %))) i)) (s/join ","))) (defn- parseChromCSV [str] (parseChromCSV-1 str 0)) (defn- parseChromCSV0 [str] (parseChromCSV-1 str 1)) ; If we have no feature description, we try "float". If that ; fails, we try "category" by passing in a hint. We do not ; allow the hint to override a feature description, since that ; would mask curation errors. multimethod may not be the best ; mechanism for this policy. (defmulti ^:private data-line "(id val val val val) -> seq of parsed values) Return from a split probe line a probe name, feature definition, data type, and seq of floats" (fn [features cols & [hint]] (or (get (get features (first cols)) "valueType") hint))) (defn dup-indexes "Find indexes of duplicate values in coll." [coll] (loop [i 0 c coll in #{} dups #{}] (if-let [v (first c)] (if (in v) (recur (inc i) (rest c) in (conj dups i)) (recur (inc i) (rest c) (conj in v) dups)) dups))) (defn drop-indexes "Drop elements from coll by index." [indxs coll] (into [] (keep-indexed (fn [i v] (when (not (indxs i)) v)) coll))) (defmethod ^:private data-line :default [features cols & [hint]] (try ; the body must be eager so we stay in the try/except scope (let [feature (get features (first cols))] {:field (String. ^String (first cols)) ; copy, because split is evil. :feature feature :valueType "float" :rows (mapv parseFloatNA (rest cols))}) ; eager (catch NumberFormatException e (data-line features cols "category")))) ; update map with value for NA (defn- nil-val [order] (assoc order "" Double/NaN)) (defn- ad-hoc-order "Provide default order from data order in file" [feature cols] (if (:order feature) feature (let [state (distinct cols) ; XXX drop ""? This adds "" as a state. order (into {} (map vector state (range)))] ; XXX handle all values null? (assoc feature :state state :order order)))) (defn- throw-on-nil [x msg & args] (when-not x (throw (IllegalArgumentException. ^String (apply format msg args)))) x) (defmethod ^:private data-line "category" [features cols & [hint]] (let [name (first cols) feature (get features name) ; use 'get' to handle nil feature (ad-hoc-order feature (rest cols)) order (nil-val (:order feature)) msg "Invalid state %s for feature %s" vals (map #(throw-on-nil (order %) msg % name) (rest cols))] {:field (String. ^String name) ; copy the string. string/split is evil. :feature feature :valueType "category" :rows vals})) (defmulti ^:private matrix-data "Return seq of scores, probes X samples" (fn [metadata features lines] (metadata "type"))) (defn- ammend-header "Coerce first column name to sampleID" [header] (assoc header 0 "sampleID")) (defn fix-vec [v size] (let [c (count v)] (cond (> c size) (subvec v 0 size) (< c size) (apply conj v (repeat (- size c) "")) :else v))) (defn matrix-data-parse [metadata features lines parse] (let [header (ammend-header (parse (first lines))) dup-sample-rows (into #{} (map inc (dup-indexes (rest header)))) dup-samples (not-empty (map header dup-sample-rows)) drop-rows (partial drop-indexes dup-sample-rows) ncols (count header)] (with-meta (cons (data-line features (drop-rows header) "category") ; coerce sampleID type (pmap #(data-line features (drop-rows (fix-vec (parse %) ncols))) (rest lines))) (when dup-samples {:duplicate-keys {:sampleID dup-samples}})))) (defmethod matrix-data :default [metadata features lines] (matrix-data-parse metadata features lines tabbed)) (defn- transpose "Transpose cells of a tsv, using the first row to fix the number of columns." [lines] (let [pcount (count (first lines))] (into [] (for [i (range pcount)] (mapv #(get % i "") lines))))) (defmethod matrix-data "clinicalMatrix" [metadata features lines] (let [lines (->> lines (map tabbed) (transpose))] (matrix-data-parse metadata features lines identity))) (defn- cgdata-meta [file] (let [mfile (io/as-file (str file ".json"))] (when (.exists mfile) (json/read-str (slurp mfile))))) (defn- path-from-ref "Construct a file path relative to the document root, given a file reference and the referring file path. References can be relative to the referring file, or absolute (relative to document root)." [docroot referrer file] (let [sref (fs/split (normalized-path referrer)) sfile (fs/split file) abs (if (= (first sfile) fs/unix-root) (apply io/file docroot (rest sfile)) (apply io/file (conj (vec (drop-last sref)) file)))] (relativize docroot abs))) (defn references "Return map of any references in md to their paths relative to the document root." [docroot referrer md] (let [refs (->> md (keys) (filter #(.startsWith ^String % ":")))] (into {} (map vector refs (map #(when-let [path (md %)] ; don't resolve nil (str (path-from-ref docroot referrer path))) refs))))) (defn matrix-file "Return a map describing a cgData matrix file. This will read any assoicated json or clinicalFeature file." [file & {docroot :docroot :or {docroot fs/unix-root}}] (let [metadata (or (cgdata-meta file) {"name" file}) refs (references docroot file metadata) cf (refs ":clinicalFeature") feature (when cf (feature-file (fs/file docroot cf)))] {:metadata metadata ; json metadata :refs refs ; map of json metadata references to paths relative to docroot :features feature ; slurped clinicalFeatures :data-fn (fn [in] (matrix-data metadata feature (line-seq ((:reader in)))))})) (defn- chr-order [position] (mapv position [:chrom :chromStart])) ; ; general tsv reader ; (defn tsv-rows [in] (map tabbed (filter #(and (not-blank? %) (not-comment? %)) (line-seq ((:reader in)))))) ; ; Fields need to return :row as vectors so we can sort them. They could return lazy ; seqs if we wanted to convert them to vectors before sort. It's better if the ; field does it, so we can infer the correct storage type via 'empty' when sorting. ; (defmulti field-spec (fn [field _] (:type field))) (defn category-field [parse {:keys [name i]} in] (let [row-vals (delay (intern-coll (map #(parse (get % i "")) (tsv-rows in))))] {:field name :valueType "category" :feature (delay {:order (:codes @row-vals)}) :rows (delay (:values @row-vals))})) (defmethod field-spec :category [col in] (category-field #(s/trim (strcpy %)) col in)) (defmethod field-spec :float [{:keys [name i]} in] {:field name :valueType "float" ; XXX why strings instead of keywords? :rows (delay (reduce #(conj %1 (parseFloatNA (get %2 i ""))) (vector-of :float) (tsv-rows in)))}) (defmethod field-spec :chromStartCSV [{:keys [start-index] :as col} in] (let [parse ([parseChromCSV0 parseChromCSV] start-index)] (category-field parse col in))) (defmethod field-spec :gene [{:keys [name i]} in] (let [row-vals (delay (intern-csv-coll (map #(get % i "") (tsv-rows in))))] {:field name :valueType "genes" :row-val (fn [row] (map (:codes @row-vals) row)) :rows (delay (:values @row-vals))})) (defn normalize-chrom [s] (-> (s/trim s) (s/replace #"^(?i)(chr)?([0-9]+)$" "chr$2") (s/replace #"^(?i)(chr)?m$" "chrM") (s/replace #"^(?i)(chr)?y$" "chrY") (s/replace #"^(?i)(chr)?x$" "chrX"))) (let [parsers {:chrom normalize-chrom :chromStart #(long (Double/parseDouble (s/trim %))) :chromStart0 #(+ (long (Double/parseDouble (s/trim %))) 1) :chromEnd #(long (Double/parseDouble (s/trim %))) :strand #(first (s/trim %))} ; This is awkward. Override chromStart if start-index is 0. get-parser (fn [ftype start-index] (if (and (= start-index 0) (= ftype :chromStart)) (parsers :chromStart0) (parsers ftype)))] (defmethod field-spec :position [{:keys [name columns start-index]} in] ; XXX rename columns to fields (let [tlist (mapv :header columns) ; vec of field header ilist (mapv :i columns) ; vec of indexes in row plist (mapv #(get-parser (:header %) start-index) columns)] ; vec of parsers for fields {:field name :valueType "position" :rows (delay (into (chrom-pos-vec) (map #(into {} (mapv (fn [t i parse] [t (parse (get % i ""))]) tlist ilist plist)) (tsv-rows in))))}))) (defn normalize-column-name [patterns col fixed] (if fixed fixed (if-let [[pat canon] (first (filter #(re-matches (first %) col) patterns))] canon col))) ; Add default pattern (defn columns-from-header [patterns header fixed-columns] (map #(normalize-column-name patterns %1 %2) (tabbed header) (concat fixed-columns (repeat nil)))) (defn pick-header "Pick first non-blank line. Return index and line" [lines] (first (keep-indexed (fn [i line] (when (not-blank? line) [i line])) lines))) (defn drop-hash "Drop leading hash, e.g. in tsv header" [s] (clojure.string/replace s #"^\s*#" "")) (def ^:private position-columns #{:chrom :chromStart :chromEnd :strand}) ; [{:header :chrom :i 2} {:header :chromStart :i 3}.. ] ; -> [{:header :position :columns ({:header :chrom :i 2}... )}...] (defn find-position-field [columns] (let [unique (into {} (for [[k v] (group-by :header columns)] [k (first v)])) matches (select-keys unique position-columns) match-set (set (vals matches))] (if (every? matches [:chrom :chromStart :chromEnd]) (into [{:type :position :header :position :columns match-set}] (filter (comp not match-set) columns)) columns))) ; This is a really weak attempt to infer types of position columns. We ; need a better vision. (defn find-position-fields "Rewrite a list of column objects having a :header attribute, collating chrom position columns into position fields, having :chrom :chromStart :chromEnd and optional :strand. :chrom and :strand are reused if necessary." [columns start-index] (let [poscols (select-keys (group-by :header columns) position-columns) ; columns matching position types. limit (apply max (map count (vals poscols))) poscols (update-in poscols [:chrom] #(take limit (concat % (repeat (last %))))) ; repeat last chrom if necessary. poscols (update-in poscols [:strand] #(take limit (concat % (repeat (last %))))) ; repeat last strand if necessary. positions (filter #(every? (set (map :header %)) [:chrom :chromStart :chromEnd]) ; find groups with the required fields. (apply map vector (vals poscols))) ; collate into groups. consumed (set (apply concat positions))] ; columns used by position fields. (into (mapv #(-> {:type :position :start-index start-index :header :position :columns (filter identity %)}) ; write out position field specs. positions) (filter (comp not consumed) columns)))) ; append all remaining fields. ; XXX change this so numbering starts at 2? (defn- numbered-suffix [n] (if (== 0 n) "" (str " (" n ")"))) (defn- add-field [fields field] (update-in fields [field] (fnil inc 1))) (defn- assign-unique-names ([fields] (assign-unique-names fields {})) ([fields counts] (when-let [{header :header :as field} (first fields)] (cons (assoc field :name (str (name header) (numbered-suffix (counts header 0)))) (lazy-seq (assign-unique-names (rest fields) (add-field counts header))))))) (defn- resort [rows order] (let [rs (force rows)] (into (empty rs) (map rs order)))) ; Modify multireader to drop c lines (defn- drop-from-reader [mr c] (assoc mr :reader (fn [] (let [reader ((:reader mr))] (doseq [_ (range c)] (.readLine ^java.io.BufferedReader reader)) reader)))) (defn guess-column-type [in i] (try (do (doall (take 20 (map #(parseFloatNA (get % i "")) (tsv-rows in)))) :float) (catch NumberFormatException e :category))) (defn- tsv-data "Return the fields of a tsv file." [start-index columns fixed-columns column-types in] (let [[header-i header-content] (pick-header (line-seq ((:reader in)))) in (drop-from-reader in (inc header-i)) header (-> (columns-from-header columns (drop-hash header-content) fixed-columns) (#(for [[c i] (map vector % (range))] {:header c :type (or (column-types c) (guess-column-type in i)) :start-index start-index :i i})) (find-position-fields start-index) assign-unique-names) fields (mapv #(field-spec % in) header)] ; vector of field-specs, each holding vector of rows in :rows (if (= "position" (get-in fields [0 :valueType])) (let [pos-rows (force (get-in fields [0 :rows])) order (do (sort-by #(chr-order (pos-rows %)) (into (vector-of :int) (range (count pos-rows))))) sorted-fields (map #(update-in % [:rows] resort order) (consume-vec fields))] sorted-fields) (consume-vec fields)))) ; ; mutationVector ; (def ^:private mutation-column-types {:sampleID :category :chrom :category :ref :category :chromStart :float :chromEnd :float :position :position :genes :gene :reference :category :alt :category :effect :category :dna-vaf :float :rna-vaf :float :amino-acid :category}) (def mutation-columns {#"(?i)sample[ _]*(name|id)?" :sampleID #"(?i)chr(om)?" :chrom #"(?i)start" :chromStart #"(?i)end" :chromEnd #"(?i)genes?" :genes #"(?i)alt(ernate)?" :alt #"(?i)ref(erence)?" :ref #"(?i)effect" :effect #"(?i)dna[-_ ]*v?af" :dna-vaf #"(?i)rna[-_ ]*v?af" :rna-vaf #"(?i)amino[-_ ]*acid[-_ ]*(change)?" :amino-acid}) (def mutation-required-columns #{"sampleID" "position" "ref" "alt"}) ; This could be generalized by calling from tsv-data & ; passing in the require columns. (defn enforce-mutation-fields [fields] (let [field-set (set (map :field fields))] (when (not (clojure.set/subset? mutation-required-columns field-set)) (throw (IllegalArgumentException. ^String (str "Missing fields " (s/join " " (map name (clojure.set/difference mutation-required-columns field-set))))))) fields)) (defn map-file [file {docroot :docroot :or {docroot fs/unix-root}} data-fn] (let [metadata (cgdata-meta file) start-index (get metadata "start_index" 1) refs (references docroot file metadata)] {:metadata metadata :refs refs :data-fn (data-fn start-index)})) (defn mutation-file "Return a map describing a cgData mutation file. This will read any associated json." [file & args] (map-file file args (fn [start-index] (fn [in] (enforce-mutation-fields (tsv-data start-index mutation-columns [:sampleID] mutation-column-types in)))))) ; ; genomic-segment ; (def ^:private genomic-segment-column-types {:sampleID :category :chrom :category :chromStart :float :chromEnd :float :position :position :value :float}) (def genomic-segment-columns {#"(?i)sample[ _]*(name|id)?" :sampleID #"(?i)chr(om)?" :chrom #"(?i)start" :chromStart #"(?i)end" :chromEnd #"(?i)strand" :strand #"(?i)value" :value}) (defn column-map-file [file args columns types] (map-file file args (fn [start-index] (fn [in] (tsv-data start-index columns [] types in))))) (defn genomic-segment-file "Return a map describing a cgData genomicSegment file. This will read any associated json." [file & args] (column-map-file file args genomic-segment-columns genomic-segment-column-types)) ; ; probemap ; (def ^:private probemap-column-types {:name :category :chrom :category :chromStart :float :chromEnd :float :position :position :genes :gene :thickStart :category :thickEnd :category :blockCount :category :blockSizes :category :blockStarts :category}) (def probemap-columns {#"(?i)chr(om)?" :chrom #"(?i)start" :chromStart #"(?i)chromStart" :chromStart #"(?i)end" :chromEnd #"(?i)chromEnd" :chromEnd #"(?i)strand" :strand #"(?i)genes?" :genes #"(?i)name" :name #"(?i)id" :name #"(?i)thickStart" :thickStart #"(?i)thickEnd" :thickEnd #"(?i)blockCount" :blockCount #"(?i)blockSizes" :blockSizes #"(?i)blockStarts" :blockStarts}) (defn probemap-file "Return a map describing a cgData probemap file. This will read any associated json." [file & args] (column-map-file file args probemap-columns probemap-column-types)) ; ; gene prediction ; (def ^:private gene-pred-column-types {:bin :float :name :category :strand :category :chrom :category :chromStart :float :chromEnd :float :exonCount :float :exonStarts :chromStartCSV :exonEnds :category :score :float :name2 :gene :cdsStartStat :category :cdsEndStat :category :exonFrames :category}) ; XXX This has all gone slightly off due to the handling of position ; columns. We map common aliases to canonical names, like chromStart, but ; then extract positions by looking for canonical names. Thus we have to use ; the same name, chromStart, repeatedly if we have multiple positions per row. ; Instead, we should keep names like txStart and map them to abstract types ; like chromStart. We should also allow specifying which columns should be ; collected into positions columns, e.g. (chrom, strand, txStart, txEnd), ; and (chrom, strand, cdsStart, cdsEnd). If the user gives us no hints, we ; should scan for chrom, chromStart, chromEnd types, as we do now. It's a ; useful fail-over in the case that we don't know the file type. (def ^:private gene-pred-columns {#"(?i)bin" :bin #"(?i)name" :name #"(?i)strand" :strand #"(?i)chr(om)?" :chrom #"(?i)txStart" :chromStart #"(?i)txEnd" :chromEnd #"(?i)cdsStart" :chromStart #"(?i)cdsEnd" :chromEnd #"(?i)exonCount" :exonCount #"(?i)exonStarts" :exonStarts #"(?i)exonEnds" :exonEnds #"(?i)score" :score #"(?i)name2" :name2 #"(?i)cdsStartStat" :cdsStartStat #"(?i)cdsEndStat" :cdsEndStat #"(?i)exonFrames" :exonFrames}) (defn gene-pred-file "Return a map describing a genePred(Ext) file. This will read any associated json." [file & args] (column-map-file file args gene-pred-columns gene-pred-column-types)) ; ; cgdata file detector ; (def ^:private types {"mutationVector" ::mutation "clinicalMatrix" ::clinical "clinicalFeature" ::feature "genomicMatrix" ::genomic "probeMap" ::probemap "genomicSegment" ::segment "genePredExt" ::gene-pred "genePred" ::gene-pred}) (defn detect-cgdata "Detect cgdata files by presence of json metadata. If no type is given, assume genomicMatrix" [file] (when-let [cgmeta (cgdata-meta file)] (if-let [cgtype (cgmeta "type")] (types cgtype) ::genomic))) ; ; tsv file detector ; XXX might want to also files named *.tsv, files with # comment ; headers, check that column counts are consistent, etc. ; (defn- tabs [line] (count (filter #(= % \tab) line))) (defn ^:private is-tsv? "Detect tsv. Requires two non-blank lines, each having at least one tab." [lines] (let [head (take 2 (filter #(re-matches #".*\S.*" %) lines))] ; two non-blank lines (and (> (count head) 1) (every? #(> (tabs %) 0) head)))) ; XXX Note that this will pick up all kinds of unrelated files, ; including probeMaps without assocated json metadata. (defn detect-tsv "Return ::tsv if the file is tsv, or nil" [file] (when (with-open [in (io/reader file)] (is-tsv? (line-seq in))) ::tsv))
86893
(ns ^{:author "<NAME>" :doc "Library for reading cgdata and related file formats."} cgdata.core (:require [clojure.data.json :as json]) (:require [clojure.string :as s]) (:require [clojure.java.io :as io]) (:require [clojure-csv.core :as csv]) (:require [me.raynes.fs :as fs]) (:require clojure.pprint) (:require [cavm.fs-utils :refer [normalized-path relativize]]) ; should copy these fns if releasing cgdata stand-alone (:require [cavm.chrom-pos :refer [chrom-pos-vec]]) ; move to this directory? (:require [cavm.lazy-utils :refer [consume-vec]]) (:require [clojure.set]) (:gen-class)) ; ; Utility functions ; (defn map-invert "Invert the keys/values of a map" [m] (into {} (map (fn [[k v]] [v k]) m))) ; apply f to values of map (defn- fmap [f m] (into {} (for [[k v] m] [k (f v)]))) (defn intern-coll "Intern values of a collection, returning the original collection as a list of indices, and a map from values to the indices. Invert the map to perform lookups by index." [s] (loop [s s codes {} out (vector-of :int) ; XXX does this work with consume-vec? i 0] (if-let [v (first s)] (if (contains? codes v) (recur (rest s) codes (conj out (codes v)) i) (recur (rest s) (assoc codes v i) (conj out i) (inc i))) {:codes codes :values out}))) (defn range-from [i] (range i Double/POSITIVE_INFINITY 1)) (defn strcpy [s] (String. ^String s)) (defn- split-no-empty [in pat] ; XXX Does this need to handle quotes? (filter #(not (= "" %)) (map #(s/trim %) (s/split in pat)))) (defn intern-csv-coll "Intern values of a collection of csv, returning the original collection as a list of arrays of indices, and a map from indices to values." [s] (loop [s s codes {} out [] i 0] (if-let [line (first s)] (let [vs (split-no-empty line #",") to-add (map strcpy (filter #(not (contains? codes %)) vs)) new-codes (into codes (map vector to-add (range-from i))) new-vals (long-array (map new-codes vs))] (recur (rest s) new-codes (conj out new-vals) (+ i (count to-add)))) {:codes (map-invert codes) :values out}))) (defn- chunked-pmap [f coll] (->> coll (partition-all 250) (pmap (fn [chunk] (doall (map f chunk)))) (apply concat))) (defn- drop-quotes [s] (.replace ^String s "\"" "")) (defn- tabbed [line] (mapv #(drop-quotes (s/trim %)) (s/split line #"\t"))) (defn- not-blank? [line] (not (re-matches #"\s*" line))) (defn- comment? [line] (re-matches #"\s*#.*" line)) (def ^:private not-comment? (comp not comment?)) ; ; cgData metadata ; (defn- all-json [path] (let [files (file-seq (io/file path)) fnames (map str files)] (map #(vector (s/replace % #"\.json$" "") (json/read-str (slurp %))) (filter #(.endsWith ^String % ".json") fnames)))) (defn- json-add [acc [file {n "name" t "type" :as metadata}]] (if-let [group (and (= t "probeMap") (metadata "group"))] (-> acc (assoc-in [t (str group "::" (metadata ":assembly"))] file) (assoc-in [t n] file)) (assoc-in acc [t n] file))) (defn- json-table [json-list] (reduce json-add {} json-list)) (defn- dirname [file] (s/replace file #"[^/]*$" "")) (defn- basename [file] (s/replace file #".*/([^/]*)$" "$1")) (defn- make-absolute [^String path] (if (.startsWith path "/") path (str "/" path))) (defn- normalize-path [cut file path] (if (= (dirname file) (dirname path)) (basename path) (make-absolute (subs path cut)))) ; either pass through [k v] or map it to a file if ; it matches an object in the table. (defn- resolve-reference [normalize table file [k v]] (if-let [match (and (.startsWith ^String k ":") (or (get-in table [(subs k 1) v]) (get-in table [(subs k 1) (str v "::hg18")])))] [k (normalize file match)] [k v])) ; rewrite table to use files instead of object names (defn- resolve-references [normalize table file metadata] (into {} (map #(resolve-reference normalize table file %) metadata))) (defn- write-json [file json] (with-open [writer (io/writer file)] (binding [*out* writer] (json/pprint json :escape-slash false)))) (defn fix-json "Utility for rewriting references in cgdata metadata, so they refer to file paths, not abstract identifiers." [root] (let [files (all-json root) table (json-table files) normalize (partial normalize-path (count root))] (doseq [[file data] files] (write-json (str file ".json") (resolve-references normalize table file data))))) ; ; cgData clinicalFeature ; (defmulti ^:private feature-line (fn [acc line] (second line))) (defmethod ^:private feature-line :default [acc [feature attr value]] (assoc-in acc [feature attr] value)) (defn- add-state [curr value] (conj (vec curr) value)) (defmethod ^:private feature-line "state" [acc [feature attr value]] (update-in acc [feature attr] add-state value)) (defn- parse-order [order] (first (csv/parse-csv order))) (defmethod ^:private feature-line "stateOrder" [acc [feature attr value]] (assoc-in acc [feature attr] (parse-order value))) (defn- feature-map [lines] "Read tab-split clincalFeature rows into a map" (reduce feature-line {} lines)) (defn- calc-order "Take feature order from 'stateOrder', or file order of 'state' rows." [feature] (if-let [state (or (feature "stateOrder") (feature "state"))] (-> feature (assoc :order (into {} (map #(vector %1 %2) state (range)))) (assoc :state state)) feature)) (defn- feature-file [file] (when (and file (.exists (io/as-file file))) (->> file (slurp) (#(s/split % #"\n")) ; split lines (map #(s/split % #"\t")) ; split tabs (feature-map) (fmap calc-order)))) ; ; cgData genomicMatrix ; (defn- parseFloatNA [str] (if (or (= str "NA") (= str "nan") (= str "")) Double/NaN (Float/parseFloat str))) (defn- parseChromCSV-1 [str i] (->> str csv/parse-csv first (filter #(not (s/blank? %))) (mapv #(+ (long (Double/parseDouble (s/trim %))) i)) (s/join ","))) (defn- parseChromCSV [str] (parseChromCSV-1 str 0)) (defn- parseChromCSV0 [str] (parseChromCSV-1 str 1)) ; If we have no feature description, we try "float". If that ; fails, we try "category" by passing in a hint. We do not ; allow the hint to override a feature description, since that ; would mask curation errors. multimethod may not be the best ; mechanism for this policy. (defmulti ^:private data-line "(id val val val val) -> seq of parsed values) Return from a split probe line a probe name, feature definition, data type, and seq of floats" (fn [features cols & [hint]] (or (get (get features (first cols)) "valueType") hint))) (defn dup-indexes "Find indexes of duplicate values in coll." [coll] (loop [i 0 c coll in #{} dups #{}] (if-let [v (first c)] (if (in v) (recur (inc i) (rest c) in (conj dups i)) (recur (inc i) (rest c) (conj in v) dups)) dups))) (defn drop-indexes "Drop elements from coll by index." [indxs coll] (into [] (keep-indexed (fn [i v] (when (not (indxs i)) v)) coll))) (defmethod ^:private data-line :default [features cols & [hint]] (try ; the body must be eager so we stay in the try/except scope (let [feature (get features (first cols))] {:field (String. ^String (first cols)) ; copy, because split is evil. :feature feature :valueType "float" :rows (mapv parseFloatNA (rest cols))}) ; eager (catch NumberFormatException e (data-line features cols "category")))) ; update map with value for NA (defn- nil-val [order] (assoc order "" Double/NaN)) (defn- ad-hoc-order "Provide default order from data order in file" [feature cols] (if (:order feature) feature (let [state (distinct cols) ; XXX drop ""? This adds "" as a state. order (into {} (map vector state (range)))] ; XXX handle all values null? (assoc feature :state state :order order)))) (defn- throw-on-nil [x msg & args] (when-not x (throw (IllegalArgumentException. ^String (apply format msg args)))) x) (defmethod ^:private data-line "category" [features cols & [hint]] (let [name (first cols) feature (get features name) ; use 'get' to handle nil feature (ad-hoc-order feature (rest cols)) order (nil-val (:order feature)) msg "Invalid state %s for feature %s" vals (map #(throw-on-nil (order %) msg % name) (rest cols))] {:field (String. ^String name) ; copy the string. string/split is evil. :feature feature :valueType "category" :rows vals})) (defmulti ^:private matrix-data "Return seq of scores, probes X samples" (fn [metadata features lines] (metadata "type"))) (defn- ammend-header "Coerce first column name to sampleID" [header] (assoc header 0 "sampleID")) (defn fix-vec [v size] (let [c (count v)] (cond (> c size) (subvec v 0 size) (< c size) (apply conj v (repeat (- size c) "")) :else v))) (defn matrix-data-parse [metadata features lines parse] (let [header (ammend-header (parse (first lines))) dup-sample-rows (into #{} (map inc (dup-indexes (rest header)))) dup-samples (not-empty (map header dup-sample-rows)) drop-rows (partial drop-indexes dup-sample-rows) ncols (count header)] (with-meta (cons (data-line features (drop-rows header) "category") ; coerce sampleID type (pmap #(data-line features (drop-rows (fix-vec (parse %) ncols))) (rest lines))) (when dup-samples {:duplicate-keys {:sampleID dup-samples}})))) (defmethod matrix-data :default [metadata features lines] (matrix-data-parse metadata features lines tabbed)) (defn- transpose "Transpose cells of a tsv, using the first row to fix the number of columns." [lines] (let [pcount (count (first lines))] (into [] (for [i (range pcount)] (mapv #(get % i "") lines))))) (defmethod matrix-data "clinicalMatrix" [metadata features lines] (let [lines (->> lines (map tabbed) (transpose))] (matrix-data-parse metadata features lines identity))) (defn- cgdata-meta [file] (let [mfile (io/as-file (str file ".json"))] (when (.exists mfile) (json/read-str (slurp mfile))))) (defn- path-from-ref "Construct a file path relative to the document root, given a file reference and the referring file path. References can be relative to the referring file, or absolute (relative to document root)." [docroot referrer file] (let [sref (fs/split (normalized-path referrer)) sfile (fs/split file) abs (if (= (first sfile) fs/unix-root) (apply io/file docroot (rest sfile)) (apply io/file (conj (vec (drop-last sref)) file)))] (relativize docroot abs))) (defn references "Return map of any references in md to their paths relative to the document root." [docroot referrer md] (let [refs (->> md (keys) (filter #(.startsWith ^String % ":")))] (into {} (map vector refs (map #(when-let [path (md %)] ; don't resolve nil (str (path-from-ref docroot referrer path))) refs))))) (defn matrix-file "Return a map describing a cgData matrix file. This will read any assoicated json or clinicalFeature file." [file & {docroot :docroot :or {docroot fs/unix-root}}] (let [metadata (or (cgdata-meta file) {"name" file}) refs (references docroot file metadata) cf (refs ":clinicalFeature") feature (when cf (feature-file (fs/file docroot cf)))] {:metadata metadata ; json metadata :refs refs ; map of json metadata references to paths relative to docroot :features feature ; slurped clinicalFeatures :data-fn (fn [in] (matrix-data metadata feature (line-seq ((:reader in)))))})) (defn- chr-order [position] (mapv position [:chrom :chromStart])) ; ; general tsv reader ; (defn tsv-rows [in] (map tabbed (filter #(and (not-blank? %) (not-comment? %)) (line-seq ((:reader in)))))) ; ; Fields need to return :row as vectors so we can sort them. They could return lazy ; seqs if we wanted to convert them to vectors before sort. It's better if the ; field does it, so we can infer the correct storage type via 'empty' when sorting. ; (defmulti field-spec (fn [field _] (:type field))) (defn category-field [parse {:keys [name i]} in] (let [row-vals (delay (intern-coll (map #(parse (get % i "")) (tsv-rows in))))] {:field name :valueType "category" :feature (delay {:order (:codes @row-vals)}) :rows (delay (:values @row-vals))})) (defmethod field-spec :category [col in] (category-field #(s/trim (strcpy %)) col in)) (defmethod field-spec :float [{:keys [name i]} in] {:field name :valueType "float" ; XXX why strings instead of keywords? :rows (delay (reduce #(conj %1 (parseFloatNA (get %2 i ""))) (vector-of :float) (tsv-rows in)))}) (defmethod field-spec :chromStartCSV [{:keys [start-index] :as col} in] (let [parse ([parseChromCSV0 parseChromCSV] start-index)] (category-field parse col in))) (defmethod field-spec :gene [{:keys [name i]} in] (let [row-vals (delay (intern-csv-coll (map #(get % i "") (tsv-rows in))))] {:field name :valueType "genes" :row-val (fn [row] (map (:codes @row-vals) row)) :rows (delay (:values @row-vals))})) (defn normalize-chrom [s] (-> (s/trim s) (s/replace #"^(?i)(chr)?([0-9]+)$" "chr$2") (s/replace #"^(?i)(chr)?m$" "chrM") (s/replace #"^(?i)(chr)?y$" "chrY") (s/replace #"^(?i)(chr)?x$" "chrX"))) (let [parsers {:chrom normalize-chrom :chromStart #(long (Double/parseDouble (s/trim %))) :chromStart0 #(+ (long (Double/parseDouble (s/trim %))) 1) :chromEnd #(long (Double/parseDouble (s/trim %))) :strand #(first (s/trim %))} ; This is awkward. Override chromStart if start-index is 0. get-parser (fn [ftype start-index] (if (and (= start-index 0) (= ftype :chromStart)) (parsers :chromStart0) (parsers ftype)))] (defmethod field-spec :position [{:keys [name columns start-index]} in] ; XXX rename columns to fields (let [tlist (mapv :header columns) ; vec of field header ilist (mapv :i columns) ; vec of indexes in row plist (mapv #(get-parser (:header %) start-index) columns)] ; vec of parsers for fields {:field name :valueType "position" :rows (delay (into (chrom-pos-vec) (map #(into {} (mapv (fn [t i parse] [t (parse (get % i ""))]) tlist ilist plist)) (tsv-rows in))))}))) (defn normalize-column-name [patterns col fixed] (if fixed fixed (if-let [[pat canon] (first (filter #(re-matches (first %) col) patterns))] canon col))) ; Add default pattern (defn columns-from-header [patterns header fixed-columns] (map #(normalize-column-name patterns %1 %2) (tabbed header) (concat fixed-columns (repeat nil)))) (defn pick-header "Pick first non-blank line. Return index and line" [lines] (first (keep-indexed (fn [i line] (when (not-blank? line) [i line])) lines))) (defn drop-hash "Drop leading hash, e.g. in tsv header" [s] (clojure.string/replace s #"^\s*#" "")) (def ^:private position-columns #{:chrom :chromStart :chromEnd :strand}) ; [{:header :chrom :i 2} {:header :chromStart :i 3}.. ] ; -> [{:header :position :columns ({:header :chrom :i 2}... )}...] (defn find-position-field [columns] (let [unique (into {} (for [[k v] (group-by :header columns)] [k (first v)])) matches (select-keys unique position-columns) match-set (set (vals matches))] (if (every? matches [:chrom :chromStart :chromEnd]) (into [{:type :position :header :position :columns match-set}] (filter (comp not match-set) columns)) columns))) ; This is a really weak attempt to infer types of position columns. We ; need a better vision. (defn find-position-fields "Rewrite a list of column objects having a :header attribute, collating chrom position columns into position fields, having :chrom :chromStart :chromEnd and optional :strand. :chrom and :strand are reused if necessary." [columns start-index] (let [poscols (select-keys (group-by :header columns) position-columns) ; columns matching position types. limit (apply max (map count (vals poscols))) poscols (update-in poscols [:chrom] #(take limit (concat % (repeat (last %))))) ; repeat last chrom if necessary. poscols (update-in poscols [:strand] #(take limit (concat % (repeat (last %))))) ; repeat last strand if necessary. positions (filter #(every? (set (map :header %)) [:chrom :chromStart :chromEnd]) ; find groups with the required fields. (apply map vector (vals poscols))) ; collate into groups. consumed (set (apply concat positions))] ; columns used by position fields. (into (mapv #(-> {:type :position :start-index start-index :header :position :columns (filter identity %)}) ; write out position field specs. positions) (filter (comp not consumed) columns)))) ; append all remaining fields. ; XXX change this so numbering starts at 2? (defn- numbered-suffix [n] (if (== 0 n) "" (str " (" n ")"))) (defn- add-field [fields field] (update-in fields [field] (fnil inc 1))) (defn- assign-unique-names ([fields] (assign-unique-names fields {})) ([fields counts] (when-let [{header :header :as field} (first fields)] (cons (assoc field :name (str (name header) (numbered-suffix (counts header 0)))) (lazy-seq (assign-unique-names (rest fields) (add-field counts header))))))) (defn- resort [rows order] (let [rs (force rows)] (into (empty rs) (map rs order)))) ; Modify multireader to drop c lines (defn- drop-from-reader [mr c] (assoc mr :reader (fn [] (let [reader ((:reader mr))] (doseq [_ (range c)] (.readLine ^java.io.BufferedReader reader)) reader)))) (defn guess-column-type [in i] (try (do (doall (take 20 (map #(parseFloatNA (get % i "")) (tsv-rows in)))) :float) (catch NumberFormatException e :category))) (defn- tsv-data "Return the fields of a tsv file." [start-index columns fixed-columns column-types in] (let [[header-i header-content] (pick-header (line-seq ((:reader in)))) in (drop-from-reader in (inc header-i)) header (-> (columns-from-header columns (drop-hash header-content) fixed-columns) (#(for [[c i] (map vector % (range))] {:header c :type (or (column-types c) (guess-column-type in i)) :start-index start-index :i i})) (find-position-fields start-index) assign-unique-names) fields (mapv #(field-spec % in) header)] ; vector of field-specs, each holding vector of rows in :rows (if (= "position" (get-in fields [0 :valueType])) (let [pos-rows (force (get-in fields [0 :rows])) order (do (sort-by #(chr-order (pos-rows %)) (into (vector-of :int) (range (count pos-rows))))) sorted-fields (map #(update-in % [:rows] resort order) (consume-vec fields))] sorted-fields) (consume-vec fields)))) ; ; mutationVector ; (def ^:private mutation-column-types {:sampleID :category :chrom :category :ref :category :chromStart :float :chromEnd :float :position :position :genes :gene :reference :category :alt :category :effect :category :dna-vaf :float :rna-vaf :float :amino-acid :category}) (def mutation-columns {#"(?i)sample[ _]*(name|id)?" :sampleID #"(?i)chr(om)?" :chrom #"(?i)start" :chromStart #"(?i)end" :chromEnd #"(?i)genes?" :genes #"(?i)alt(ernate)?" :alt #"(?i)ref(erence)?" :ref #"(?i)effect" :effect #"(?i)dna[-_ ]*v?af" :dna-vaf #"(?i)rna[-_ ]*v?af" :rna-vaf #"(?i)amino[-_ ]*acid[-_ ]*(change)?" :amino-acid}) (def mutation-required-columns #{"sampleID" "position" "ref" "alt"}) ; This could be generalized by calling from tsv-data & ; passing in the require columns. (defn enforce-mutation-fields [fields] (let [field-set (set (map :field fields))] (when (not (clojure.set/subset? mutation-required-columns field-set)) (throw (IllegalArgumentException. ^String (str "Missing fields " (s/join " " (map name (clojure.set/difference mutation-required-columns field-set))))))) fields)) (defn map-file [file {docroot :docroot :or {docroot fs/unix-root}} data-fn] (let [metadata (cgdata-meta file) start-index (get metadata "start_index" 1) refs (references docroot file metadata)] {:metadata metadata :refs refs :data-fn (data-fn start-index)})) (defn mutation-file "Return a map describing a cgData mutation file. This will read any associated json." [file & args] (map-file file args (fn [start-index] (fn [in] (enforce-mutation-fields (tsv-data start-index mutation-columns [:sampleID] mutation-column-types in)))))) ; ; genomic-segment ; (def ^:private genomic-segment-column-types {:sampleID :category :chrom :category :chromStart :float :chromEnd :float :position :position :value :float}) (def genomic-segment-columns {#"(?i)sample[ _]*(name|id)?" :sampleID #"(?i)chr(om)?" :chrom #"(?i)start" :chromStart #"(?i)end" :chromEnd #"(?i)strand" :strand #"(?i)value" :value}) (defn column-map-file [file args columns types] (map-file file args (fn [start-index] (fn [in] (tsv-data start-index columns [] types in))))) (defn genomic-segment-file "Return a map describing a cgData genomicSegment file. This will read any associated json." [file & args] (column-map-file file args genomic-segment-columns genomic-segment-column-types)) ; ; probemap ; (def ^:private probemap-column-types {:name :category :chrom :category :chromStart :float :chromEnd :float :position :position :genes :gene :thickStart :category :thickEnd :category :blockCount :category :blockSizes :category :blockStarts :category}) (def probemap-columns {#"(?i)chr(om)?" :chrom #"(?i)start" :chromStart #"(?i)chromStart" :chromStart #"(?i)end" :chromEnd #"(?i)chromEnd" :chromEnd #"(?i)strand" :strand #"(?i)genes?" :genes #"(?i)name" :name #"(?i)id" :name #"(?i)thickStart" :thickStart #"(?i)thickEnd" :thickEnd #"(?i)blockCount" :blockCount #"(?i)blockSizes" :blockSizes #"(?i)blockStarts" :blockStarts}) (defn probemap-file "Return a map describing a cgData probemap file. This will read any associated json." [file & args] (column-map-file file args probemap-columns probemap-column-types)) ; ; gene prediction ; (def ^:private gene-pred-column-types {:bin :float :name :category :strand :category :chrom :category :chromStart :float :chromEnd :float :exonCount :float :exonStarts :chromStartCSV :exonEnds :category :score :float :name2 :gene :cdsStartStat :category :cdsEndStat :category :exonFrames :category}) ; XXX This has all gone slightly off due to the handling of position ; columns. We map common aliases to canonical names, like chromStart, but ; then extract positions by looking for canonical names. Thus we have to use ; the same name, chromStart, repeatedly if we have multiple positions per row. ; Instead, we should keep names like txStart and map them to abstract types ; like chromStart. We should also allow specifying which columns should be ; collected into positions columns, e.g. (chrom, strand, txStart, txEnd), ; and (chrom, strand, cdsStart, cdsEnd). If the user gives us no hints, we ; should scan for chrom, chromStart, chromEnd types, as we do now. It's a ; useful fail-over in the case that we don't know the file type. (def ^:private gene-pred-columns {#"(?i)bin" :bin #"(?i)name" :name #"(?i)strand" :strand #"(?i)chr(om)?" :chrom #"(?i)txStart" :chromStart #"(?i)txEnd" :chromEnd #"(?i)cdsStart" :chromStart #"(?i)cdsEnd" :chromEnd #"(?i)exonCount" :exonCount #"(?i)exonStarts" :exonStarts #"(?i)exonEnds" :exonEnds #"(?i)score" :score #"(?i)name2" :name2 #"(?i)cdsStartStat" :cdsStartStat #"(?i)cdsEndStat" :cdsEndStat #"(?i)exonFrames" :exonFrames}) (defn gene-pred-file "Return a map describing a genePred(Ext) file. This will read any associated json." [file & args] (column-map-file file args gene-pred-columns gene-pred-column-types)) ; ; cgdata file detector ; (def ^:private types {"mutationVector" ::mutation "clinicalMatrix" ::clinical "clinicalFeature" ::feature "genomicMatrix" ::genomic "probeMap" ::probemap "genomicSegment" ::segment "genePredExt" ::gene-pred "genePred" ::gene-pred}) (defn detect-cgdata "Detect cgdata files by presence of json metadata. If no type is given, assume genomicMatrix" [file] (when-let [cgmeta (cgdata-meta file)] (if-let [cgtype (cgmeta "type")] (types cgtype) ::genomic))) ; ; tsv file detector ; XXX might want to also files named *.tsv, files with # comment ; headers, check that column counts are consistent, etc. ; (defn- tabs [line] (count (filter #(= % \tab) line))) (defn ^:private is-tsv? "Detect tsv. Requires two non-blank lines, each having at least one tab." [lines] (let [head (take 2 (filter #(re-matches #".*\S.*" %) lines))] ; two non-blank lines (and (> (count head) 1) (every? #(> (tabs %) 0) head)))) ; XXX Note that this will pick up all kinds of unrelated files, ; including probeMaps without assocated json metadata. (defn detect-tsv "Return ::tsv if the file is tsv, or nil" [file] (when (with-open [in (io/reader file)] (is-tsv? (line-seq in))) ::tsv))
true
(ns ^{:author "PI:NAME:<NAME>END_PI" :doc "Library for reading cgdata and related file formats."} cgdata.core (:require [clojure.data.json :as json]) (:require [clojure.string :as s]) (:require [clojure.java.io :as io]) (:require [clojure-csv.core :as csv]) (:require [me.raynes.fs :as fs]) (:require clojure.pprint) (:require [cavm.fs-utils :refer [normalized-path relativize]]) ; should copy these fns if releasing cgdata stand-alone (:require [cavm.chrom-pos :refer [chrom-pos-vec]]) ; move to this directory? (:require [cavm.lazy-utils :refer [consume-vec]]) (:require [clojure.set]) (:gen-class)) ; ; Utility functions ; (defn map-invert "Invert the keys/values of a map" [m] (into {} (map (fn [[k v]] [v k]) m))) ; apply f to values of map (defn- fmap [f m] (into {} (for [[k v] m] [k (f v)]))) (defn intern-coll "Intern values of a collection, returning the original collection as a list of indices, and a map from values to the indices. Invert the map to perform lookups by index." [s] (loop [s s codes {} out (vector-of :int) ; XXX does this work with consume-vec? i 0] (if-let [v (first s)] (if (contains? codes v) (recur (rest s) codes (conj out (codes v)) i) (recur (rest s) (assoc codes v i) (conj out i) (inc i))) {:codes codes :values out}))) (defn range-from [i] (range i Double/POSITIVE_INFINITY 1)) (defn strcpy [s] (String. ^String s)) (defn- split-no-empty [in pat] ; XXX Does this need to handle quotes? (filter #(not (= "" %)) (map #(s/trim %) (s/split in pat)))) (defn intern-csv-coll "Intern values of a collection of csv, returning the original collection as a list of arrays of indices, and a map from indices to values." [s] (loop [s s codes {} out [] i 0] (if-let [line (first s)] (let [vs (split-no-empty line #",") to-add (map strcpy (filter #(not (contains? codes %)) vs)) new-codes (into codes (map vector to-add (range-from i))) new-vals (long-array (map new-codes vs))] (recur (rest s) new-codes (conj out new-vals) (+ i (count to-add)))) {:codes (map-invert codes) :values out}))) (defn- chunked-pmap [f coll] (->> coll (partition-all 250) (pmap (fn [chunk] (doall (map f chunk)))) (apply concat))) (defn- drop-quotes [s] (.replace ^String s "\"" "")) (defn- tabbed [line] (mapv #(drop-quotes (s/trim %)) (s/split line #"\t"))) (defn- not-blank? [line] (not (re-matches #"\s*" line))) (defn- comment? [line] (re-matches #"\s*#.*" line)) (def ^:private not-comment? (comp not comment?)) ; ; cgData metadata ; (defn- all-json [path] (let [files (file-seq (io/file path)) fnames (map str files)] (map #(vector (s/replace % #"\.json$" "") (json/read-str (slurp %))) (filter #(.endsWith ^String % ".json") fnames)))) (defn- json-add [acc [file {n "name" t "type" :as metadata}]] (if-let [group (and (= t "probeMap") (metadata "group"))] (-> acc (assoc-in [t (str group "::" (metadata ":assembly"))] file) (assoc-in [t n] file)) (assoc-in acc [t n] file))) (defn- json-table [json-list] (reduce json-add {} json-list)) (defn- dirname [file] (s/replace file #"[^/]*$" "")) (defn- basename [file] (s/replace file #".*/([^/]*)$" "$1")) (defn- make-absolute [^String path] (if (.startsWith path "/") path (str "/" path))) (defn- normalize-path [cut file path] (if (= (dirname file) (dirname path)) (basename path) (make-absolute (subs path cut)))) ; either pass through [k v] or map it to a file if ; it matches an object in the table. (defn- resolve-reference [normalize table file [k v]] (if-let [match (and (.startsWith ^String k ":") (or (get-in table [(subs k 1) v]) (get-in table [(subs k 1) (str v "::hg18")])))] [k (normalize file match)] [k v])) ; rewrite table to use files instead of object names (defn- resolve-references [normalize table file metadata] (into {} (map #(resolve-reference normalize table file %) metadata))) (defn- write-json [file json] (with-open [writer (io/writer file)] (binding [*out* writer] (json/pprint json :escape-slash false)))) (defn fix-json "Utility for rewriting references in cgdata metadata, so they refer to file paths, not abstract identifiers." [root] (let [files (all-json root) table (json-table files) normalize (partial normalize-path (count root))] (doseq [[file data] files] (write-json (str file ".json") (resolve-references normalize table file data))))) ; ; cgData clinicalFeature ; (defmulti ^:private feature-line (fn [acc line] (second line))) (defmethod ^:private feature-line :default [acc [feature attr value]] (assoc-in acc [feature attr] value)) (defn- add-state [curr value] (conj (vec curr) value)) (defmethod ^:private feature-line "state" [acc [feature attr value]] (update-in acc [feature attr] add-state value)) (defn- parse-order [order] (first (csv/parse-csv order))) (defmethod ^:private feature-line "stateOrder" [acc [feature attr value]] (assoc-in acc [feature attr] (parse-order value))) (defn- feature-map [lines] "Read tab-split clincalFeature rows into a map" (reduce feature-line {} lines)) (defn- calc-order "Take feature order from 'stateOrder', or file order of 'state' rows." [feature] (if-let [state (or (feature "stateOrder") (feature "state"))] (-> feature (assoc :order (into {} (map #(vector %1 %2) state (range)))) (assoc :state state)) feature)) (defn- feature-file [file] (when (and file (.exists (io/as-file file))) (->> file (slurp) (#(s/split % #"\n")) ; split lines (map #(s/split % #"\t")) ; split tabs (feature-map) (fmap calc-order)))) ; ; cgData genomicMatrix ; (defn- parseFloatNA [str] (if (or (= str "NA") (= str "nan") (= str "")) Double/NaN (Float/parseFloat str))) (defn- parseChromCSV-1 [str i] (->> str csv/parse-csv first (filter #(not (s/blank? %))) (mapv #(+ (long (Double/parseDouble (s/trim %))) i)) (s/join ","))) (defn- parseChromCSV [str] (parseChromCSV-1 str 0)) (defn- parseChromCSV0 [str] (parseChromCSV-1 str 1)) ; If we have no feature description, we try "float". If that ; fails, we try "category" by passing in a hint. We do not ; allow the hint to override a feature description, since that ; would mask curation errors. multimethod may not be the best ; mechanism for this policy. (defmulti ^:private data-line "(id val val val val) -> seq of parsed values) Return from a split probe line a probe name, feature definition, data type, and seq of floats" (fn [features cols & [hint]] (or (get (get features (first cols)) "valueType") hint))) (defn dup-indexes "Find indexes of duplicate values in coll." [coll] (loop [i 0 c coll in #{} dups #{}] (if-let [v (first c)] (if (in v) (recur (inc i) (rest c) in (conj dups i)) (recur (inc i) (rest c) (conj in v) dups)) dups))) (defn drop-indexes "Drop elements from coll by index." [indxs coll] (into [] (keep-indexed (fn [i v] (when (not (indxs i)) v)) coll))) (defmethod ^:private data-line :default [features cols & [hint]] (try ; the body must be eager so we stay in the try/except scope (let [feature (get features (first cols))] {:field (String. ^String (first cols)) ; copy, because split is evil. :feature feature :valueType "float" :rows (mapv parseFloatNA (rest cols))}) ; eager (catch NumberFormatException e (data-line features cols "category")))) ; update map with value for NA (defn- nil-val [order] (assoc order "" Double/NaN)) (defn- ad-hoc-order "Provide default order from data order in file" [feature cols] (if (:order feature) feature (let [state (distinct cols) ; XXX drop ""? This adds "" as a state. order (into {} (map vector state (range)))] ; XXX handle all values null? (assoc feature :state state :order order)))) (defn- throw-on-nil [x msg & args] (when-not x (throw (IllegalArgumentException. ^String (apply format msg args)))) x) (defmethod ^:private data-line "category" [features cols & [hint]] (let [name (first cols) feature (get features name) ; use 'get' to handle nil feature (ad-hoc-order feature (rest cols)) order (nil-val (:order feature)) msg "Invalid state %s for feature %s" vals (map #(throw-on-nil (order %) msg % name) (rest cols))] {:field (String. ^String name) ; copy the string. string/split is evil. :feature feature :valueType "category" :rows vals})) (defmulti ^:private matrix-data "Return seq of scores, probes X samples" (fn [metadata features lines] (metadata "type"))) (defn- ammend-header "Coerce first column name to sampleID" [header] (assoc header 0 "sampleID")) (defn fix-vec [v size] (let [c (count v)] (cond (> c size) (subvec v 0 size) (< c size) (apply conj v (repeat (- size c) "")) :else v))) (defn matrix-data-parse [metadata features lines parse] (let [header (ammend-header (parse (first lines))) dup-sample-rows (into #{} (map inc (dup-indexes (rest header)))) dup-samples (not-empty (map header dup-sample-rows)) drop-rows (partial drop-indexes dup-sample-rows) ncols (count header)] (with-meta (cons (data-line features (drop-rows header) "category") ; coerce sampleID type (pmap #(data-line features (drop-rows (fix-vec (parse %) ncols))) (rest lines))) (when dup-samples {:duplicate-keys {:sampleID dup-samples}})))) (defmethod matrix-data :default [metadata features lines] (matrix-data-parse metadata features lines tabbed)) (defn- transpose "Transpose cells of a tsv, using the first row to fix the number of columns." [lines] (let [pcount (count (first lines))] (into [] (for [i (range pcount)] (mapv #(get % i "") lines))))) (defmethod matrix-data "clinicalMatrix" [metadata features lines] (let [lines (->> lines (map tabbed) (transpose))] (matrix-data-parse metadata features lines identity))) (defn- cgdata-meta [file] (let [mfile (io/as-file (str file ".json"))] (when (.exists mfile) (json/read-str (slurp mfile))))) (defn- path-from-ref "Construct a file path relative to the document root, given a file reference and the referring file path. References can be relative to the referring file, or absolute (relative to document root)." [docroot referrer file] (let [sref (fs/split (normalized-path referrer)) sfile (fs/split file) abs (if (= (first sfile) fs/unix-root) (apply io/file docroot (rest sfile)) (apply io/file (conj (vec (drop-last sref)) file)))] (relativize docroot abs))) (defn references "Return map of any references in md to their paths relative to the document root." [docroot referrer md] (let [refs (->> md (keys) (filter #(.startsWith ^String % ":")))] (into {} (map vector refs (map #(when-let [path (md %)] ; don't resolve nil (str (path-from-ref docroot referrer path))) refs))))) (defn matrix-file "Return a map describing a cgData matrix file. This will read any assoicated json or clinicalFeature file." [file & {docroot :docroot :or {docroot fs/unix-root}}] (let [metadata (or (cgdata-meta file) {"name" file}) refs (references docroot file metadata) cf (refs ":clinicalFeature") feature (when cf (feature-file (fs/file docroot cf)))] {:metadata metadata ; json metadata :refs refs ; map of json metadata references to paths relative to docroot :features feature ; slurped clinicalFeatures :data-fn (fn [in] (matrix-data metadata feature (line-seq ((:reader in)))))})) (defn- chr-order [position] (mapv position [:chrom :chromStart])) ; ; general tsv reader ; (defn tsv-rows [in] (map tabbed (filter #(and (not-blank? %) (not-comment? %)) (line-seq ((:reader in)))))) ; ; Fields need to return :row as vectors so we can sort them. They could return lazy ; seqs if we wanted to convert them to vectors before sort. It's better if the ; field does it, so we can infer the correct storage type via 'empty' when sorting. ; (defmulti field-spec (fn [field _] (:type field))) (defn category-field [parse {:keys [name i]} in] (let [row-vals (delay (intern-coll (map #(parse (get % i "")) (tsv-rows in))))] {:field name :valueType "category" :feature (delay {:order (:codes @row-vals)}) :rows (delay (:values @row-vals))})) (defmethod field-spec :category [col in] (category-field #(s/trim (strcpy %)) col in)) (defmethod field-spec :float [{:keys [name i]} in] {:field name :valueType "float" ; XXX why strings instead of keywords? :rows (delay (reduce #(conj %1 (parseFloatNA (get %2 i ""))) (vector-of :float) (tsv-rows in)))}) (defmethod field-spec :chromStartCSV [{:keys [start-index] :as col} in] (let [parse ([parseChromCSV0 parseChromCSV] start-index)] (category-field parse col in))) (defmethod field-spec :gene [{:keys [name i]} in] (let [row-vals (delay (intern-csv-coll (map #(get % i "") (tsv-rows in))))] {:field name :valueType "genes" :row-val (fn [row] (map (:codes @row-vals) row)) :rows (delay (:values @row-vals))})) (defn normalize-chrom [s] (-> (s/trim s) (s/replace #"^(?i)(chr)?([0-9]+)$" "chr$2") (s/replace #"^(?i)(chr)?m$" "chrM") (s/replace #"^(?i)(chr)?y$" "chrY") (s/replace #"^(?i)(chr)?x$" "chrX"))) (let [parsers {:chrom normalize-chrom :chromStart #(long (Double/parseDouble (s/trim %))) :chromStart0 #(+ (long (Double/parseDouble (s/trim %))) 1) :chromEnd #(long (Double/parseDouble (s/trim %))) :strand #(first (s/trim %))} ; This is awkward. Override chromStart if start-index is 0. get-parser (fn [ftype start-index] (if (and (= start-index 0) (= ftype :chromStart)) (parsers :chromStart0) (parsers ftype)))] (defmethod field-spec :position [{:keys [name columns start-index]} in] ; XXX rename columns to fields (let [tlist (mapv :header columns) ; vec of field header ilist (mapv :i columns) ; vec of indexes in row plist (mapv #(get-parser (:header %) start-index) columns)] ; vec of parsers for fields {:field name :valueType "position" :rows (delay (into (chrom-pos-vec) (map #(into {} (mapv (fn [t i parse] [t (parse (get % i ""))]) tlist ilist plist)) (tsv-rows in))))}))) (defn normalize-column-name [patterns col fixed] (if fixed fixed (if-let [[pat canon] (first (filter #(re-matches (first %) col) patterns))] canon col))) ; Add default pattern (defn columns-from-header [patterns header fixed-columns] (map #(normalize-column-name patterns %1 %2) (tabbed header) (concat fixed-columns (repeat nil)))) (defn pick-header "Pick first non-blank line. Return index and line" [lines] (first (keep-indexed (fn [i line] (when (not-blank? line) [i line])) lines))) (defn drop-hash "Drop leading hash, e.g. in tsv header" [s] (clojure.string/replace s #"^\s*#" "")) (def ^:private position-columns #{:chrom :chromStart :chromEnd :strand}) ; [{:header :chrom :i 2} {:header :chromStart :i 3}.. ] ; -> [{:header :position :columns ({:header :chrom :i 2}... )}...] (defn find-position-field [columns] (let [unique (into {} (for [[k v] (group-by :header columns)] [k (first v)])) matches (select-keys unique position-columns) match-set (set (vals matches))] (if (every? matches [:chrom :chromStart :chromEnd]) (into [{:type :position :header :position :columns match-set}] (filter (comp not match-set) columns)) columns))) ; This is a really weak attempt to infer types of position columns. We ; need a better vision. (defn find-position-fields "Rewrite a list of column objects having a :header attribute, collating chrom position columns into position fields, having :chrom :chromStart :chromEnd and optional :strand. :chrom and :strand are reused if necessary." [columns start-index] (let [poscols (select-keys (group-by :header columns) position-columns) ; columns matching position types. limit (apply max (map count (vals poscols))) poscols (update-in poscols [:chrom] #(take limit (concat % (repeat (last %))))) ; repeat last chrom if necessary. poscols (update-in poscols [:strand] #(take limit (concat % (repeat (last %))))) ; repeat last strand if necessary. positions (filter #(every? (set (map :header %)) [:chrom :chromStart :chromEnd]) ; find groups with the required fields. (apply map vector (vals poscols))) ; collate into groups. consumed (set (apply concat positions))] ; columns used by position fields. (into (mapv #(-> {:type :position :start-index start-index :header :position :columns (filter identity %)}) ; write out position field specs. positions) (filter (comp not consumed) columns)))) ; append all remaining fields. ; XXX change this so numbering starts at 2? (defn- numbered-suffix [n] (if (== 0 n) "" (str " (" n ")"))) (defn- add-field [fields field] (update-in fields [field] (fnil inc 1))) (defn- assign-unique-names ([fields] (assign-unique-names fields {})) ([fields counts] (when-let [{header :header :as field} (first fields)] (cons (assoc field :name (str (name header) (numbered-suffix (counts header 0)))) (lazy-seq (assign-unique-names (rest fields) (add-field counts header))))))) (defn- resort [rows order] (let [rs (force rows)] (into (empty rs) (map rs order)))) ; Modify multireader to drop c lines (defn- drop-from-reader [mr c] (assoc mr :reader (fn [] (let [reader ((:reader mr))] (doseq [_ (range c)] (.readLine ^java.io.BufferedReader reader)) reader)))) (defn guess-column-type [in i] (try (do (doall (take 20 (map #(parseFloatNA (get % i "")) (tsv-rows in)))) :float) (catch NumberFormatException e :category))) (defn- tsv-data "Return the fields of a tsv file." [start-index columns fixed-columns column-types in] (let [[header-i header-content] (pick-header (line-seq ((:reader in)))) in (drop-from-reader in (inc header-i)) header (-> (columns-from-header columns (drop-hash header-content) fixed-columns) (#(for [[c i] (map vector % (range))] {:header c :type (or (column-types c) (guess-column-type in i)) :start-index start-index :i i})) (find-position-fields start-index) assign-unique-names) fields (mapv #(field-spec % in) header)] ; vector of field-specs, each holding vector of rows in :rows (if (= "position" (get-in fields [0 :valueType])) (let [pos-rows (force (get-in fields [0 :rows])) order (do (sort-by #(chr-order (pos-rows %)) (into (vector-of :int) (range (count pos-rows))))) sorted-fields (map #(update-in % [:rows] resort order) (consume-vec fields))] sorted-fields) (consume-vec fields)))) ; ; mutationVector ; (def ^:private mutation-column-types {:sampleID :category :chrom :category :ref :category :chromStart :float :chromEnd :float :position :position :genes :gene :reference :category :alt :category :effect :category :dna-vaf :float :rna-vaf :float :amino-acid :category}) (def mutation-columns {#"(?i)sample[ _]*(name|id)?" :sampleID #"(?i)chr(om)?" :chrom #"(?i)start" :chromStart #"(?i)end" :chromEnd #"(?i)genes?" :genes #"(?i)alt(ernate)?" :alt #"(?i)ref(erence)?" :ref #"(?i)effect" :effect #"(?i)dna[-_ ]*v?af" :dna-vaf #"(?i)rna[-_ ]*v?af" :rna-vaf #"(?i)amino[-_ ]*acid[-_ ]*(change)?" :amino-acid}) (def mutation-required-columns #{"sampleID" "position" "ref" "alt"}) ; This could be generalized by calling from tsv-data & ; passing in the require columns. (defn enforce-mutation-fields [fields] (let [field-set (set (map :field fields))] (when (not (clojure.set/subset? mutation-required-columns field-set)) (throw (IllegalArgumentException. ^String (str "Missing fields " (s/join " " (map name (clojure.set/difference mutation-required-columns field-set))))))) fields)) (defn map-file [file {docroot :docroot :or {docroot fs/unix-root}} data-fn] (let [metadata (cgdata-meta file) start-index (get metadata "start_index" 1) refs (references docroot file metadata)] {:metadata metadata :refs refs :data-fn (data-fn start-index)})) (defn mutation-file "Return a map describing a cgData mutation file. This will read any associated json." [file & args] (map-file file args (fn [start-index] (fn [in] (enforce-mutation-fields (tsv-data start-index mutation-columns [:sampleID] mutation-column-types in)))))) ; ; genomic-segment ; (def ^:private genomic-segment-column-types {:sampleID :category :chrom :category :chromStart :float :chromEnd :float :position :position :value :float}) (def genomic-segment-columns {#"(?i)sample[ _]*(name|id)?" :sampleID #"(?i)chr(om)?" :chrom #"(?i)start" :chromStart #"(?i)end" :chromEnd #"(?i)strand" :strand #"(?i)value" :value}) (defn column-map-file [file args columns types] (map-file file args (fn [start-index] (fn [in] (tsv-data start-index columns [] types in))))) (defn genomic-segment-file "Return a map describing a cgData genomicSegment file. This will read any associated json." [file & args] (column-map-file file args genomic-segment-columns genomic-segment-column-types)) ; ; probemap ; (def ^:private probemap-column-types {:name :category :chrom :category :chromStart :float :chromEnd :float :position :position :genes :gene :thickStart :category :thickEnd :category :blockCount :category :blockSizes :category :blockStarts :category}) (def probemap-columns {#"(?i)chr(om)?" :chrom #"(?i)start" :chromStart #"(?i)chromStart" :chromStart #"(?i)end" :chromEnd #"(?i)chromEnd" :chromEnd #"(?i)strand" :strand #"(?i)genes?" :genes #"(?i)name" :name #"(?i)id" :name #"(?i)thickStart" :thickStart #"(?i)thickEnd" :thickEnd #"(?i)blockCount" :blockCount #"(?i)blockSizes" :blockSizes #"(?i)blockStarts" :blockStarts}) (defn probemap-file "Return a map describing a cgData probemap file. This will read any associated json." [file & args] (column-map-file file args probemap-columns probemap-column-types)) ; ; gene prediction ; (def ^:private gene-pred-column-types {:bin :float :name :category :strand :category :chrom :category :chromStart :float :chromEnd :float :exonCount :float :exonStarts :chromStartCSV :exonEnds :category :score :float :name2 :gene :cdsStartStat :category :cdsEndStat :category :exonFrames :category}) ; XXX This has all gone slightly off due to the handling of position ; columns. We map common aliases to canonical names, like chromStart, but ; then extract positions by looking for canonical names. Thus we have to use ; the same name, chromStart, repeatedly if we have multiple positions per row. ; Instead, we should keep names like txStart and map them to abstract types ; like chromStart. We should also allow specifying which columns should be ; collected into positions columns, e.g. (chrom, strand, txStart, txEnd), ; and (chrom, strand, cdsStart, cdsEnd). If the user gives us no hints, we ; should scan for chrom, chromStart, chromEnd types, as we do now. It's a ; useful fail-over in the case that we don't know the file type. (def ^:private gene-pred-columns {#"(?i)bin" :bin #"(?i)name" :name #"(?i)strand" :strand #"(?i)chr(om)?" :chrom #"(?i)txStart" :chromStart #"(?i)txEnd" :chromEnd #"(?i)cdsStart" :chromStart #"(?i)cdsEnd" :chromEnd #"(?i)exonCount" :exonCount #"(?i)exonStarts" :exonStarts #"(?i)exonEnds" :exonEnds #"(?i)score" :score #"(?i)name2" :name2 #"(?i)cdsStartStat" :cdsStartStat #"(?i)cdsEndStat" :cdsEndStat #"(?i)exonFrames" :exonFrames}) (defn gene-pred-file "Return a map describing a genePred(Ext) file. This will read any associated json." [file & args] (column-map-file file args gene-pred-columns gene-pred-column-types)) ; ; cgdata file detector ; (def ^:private types {"mutationVector" ::mutation "clinicalMatrix" ::clinical "clinicalFeature" ::feature "genomicMatrix" ::genomic "probeMap" ::probemap "genomicSegment" ::segment "genePredExt" ::gene-pred "genePred" ::gene-pred}) (defn detect-cgdata "Detect cgdata files by presence of json metadata. If no type is given, assume genomicMatrix" [file] (when-let [cgmeta (cgdata-meta file)] (if-let [cgtype (cgmeta "type")] (types cgtype) ::genomic))) ; ; tsv file detector ; XXX might want to also files named *.tsv, files with # comment ; headers, check that column counts are consistent, etc. ; (defn- tabs [line] (count (filter #(= % \tab) line))) (defn ^:private is-tsv? "Detect tsv. Requires two non-blank lines, each having at least one tab." [lines] (let [head (take 2 (filter #(re-matches #".*\S.*" %) lines))] ; two non-blank lines (and (> (count head) 1) (every? #(> (tabs %) 0) head)))) ; XXX Note that this will pick up all kinds of unrelated files, ; including probeMaps without assocated json metadata. (defn detect-tsv "Return ::tsv if the file is tsv, or nil" [file] (when (with-open [in (io/reader file)] (is-tsv? (line-seq in))) ::tsv))
[ { "context": ";; Copyright © 2015-2020 Esko Luontola\n;; This software is released under the Apache Lic", "end": 38, "score": 0.9998877644538879, "start": 25, "tag": "NAME", "value": "Esko Luontola" } ]
test/territory_bro/commands_test.clj
orfjackal/territory-bro
2
;; Copyright © 2015-2020 Esko Luontola ;; This software is released under the Apache License 2.0. ;; The license text is at http://www.apache.org/licenses/LICENSE-2.0 (ns territory-bro.commands-test (:require [clojure.test :refer :all] [schema.core :as s] [territory-bro.commands :as commands] [territory-bro.infra.foreign-key :as foreign-key] [territory-bro.infra.permissions :as permissions] [territory-bro.test.testutil :as testutil :refer [re-equals re-contains]]) (:import (clojure.lang ExceptionInfo) (java.time Instant) (java.util UUID) (territory_bro NoPermitException) (territory_bro.infra.foreign_key References))) (def valid-command {:command/type :congregation.command/rename-congregation :command/time (Instant/now) :command/user (UUID/randomUUID) :congregation/id (UUID/randomUUID) :congregation/name ""}) (def invalid-command (dissoc valid-command :congregation/name)) (def unknown-command (assoc valid-command :command/type :foo)) (deftest sorted-keys-test (is (nil? (commands/sorted-keys nil))) (is (= [:command/type :command/user :command/time :congregation/id :congregation/name] (keys (commands/sorted-keys valid-command))))) ;; TODO: deduplicate event & command validation infra (deftest command-schema-test (binding [foreign-key/*reference-checkers* testutil/dummy-reference-checkers] (testing "check specific command schema" (is (nil? (s/check commands/RenameCongregation valid-command)))) (testing "check generic command schema" (is (nil? (s/check commands/Command valid-command)))) (testing "invalid command" (is (= {:congregation/name 'missing-required-key} (s/check commands/Command invalid-command)))) (testing "unknown command type" ;; TODO: produce a helpful error message (is (s/check commands/Command unknown-command))) (testing "all UUIDs are foreign-key checked" (letfn [(check-schema [schema path] ;; there should not be a schema where the value is a plain UUID ;; instead of a (foreign-key/references :stuff UUID) (is (not= UUID schema) (str "missing a foreign key check at " path)) (cond ;; don't recurse into foreign-key/references (instance? References schema) nil ;; map? matches also records, which is most schema types (map? schema) (doseq [[key val] schema] (check-schema key (conj path key)) (check-schema val (conj path key))) (vector? schema) (doseq [[idx val] (map-indexed vector schema)] (check-schema val (conj path idx)))))] (doseq [[type schema] commands/command-schemas] (testing {:command/type type} (check-schema schema []))))))) (deftest validate-command-test (binding [foreign-key/*reference-checkers* testutil/dummy-reference-checkers] (testing "valid command" (is (= valid-command (testutil/validate-command valid-command)))) (testing "invalid command" (is (thrown-with-msg? ExceptionInfo (re-contains "{:congregation/name missing-required-key}") (testutil/validate-command invalid-command)))) (testing "unknown command type" (is (thrown-with-msg? ExceptionInfo (re-equals "Unknown command type :foo") (testutil/validate-command unknown-command)))))) (deftest validate-commands-test ;; this tests is here instead of the testutil namespace, because the command examples are here (is (= [] (testutil/validate-commands []))) (is (= [valid-command] (testutil/validate-commands [valid-command]))) (is (thrown? ExceptionInfo (testutil/validate-commands [invalid-command])))) (deftest check-permit-test (let [user-id (UUID. 0 1) state (permissions/grant {} user-id [:some-user-permit])] (testing "user has permission" (is (nil? (commands/check-permit state {:command/user user-id} [:some-user-permit])))) (testing "user doesn't have permission" (is (thrown? NoPermitException (commands/check-permit state {:command/user user-id} [:arbitrary-permit])))) (testing "system always has permission" (is (nil? (commands/check-permit state {:command/system "sys"} [:some-user-permit]))) (is (nil? (commands/check-permit state {:command/system "sys"} [:arbitrary-permit])))) (testing "system, on behalf of a user, always has permission" (is (nil? (commands/check-permit state {:command/system "sys", :command/user user-id} [:some-user-permit]))) (is (nil? (commands/check-permit state {:command/system "sys", :command/user user-id} [:arbitrary-permit])))) (testing "error: user and system missing" (is (thrown-with-msg? IllegalArgumentException (re-equals ":command/user or :command/system required, but was: {:foo 123}") (commands/check-permit state {:foo 123} [:bar]))))))
5053
;; Copyright © 2015-2020 <NAME> ;; This software is released under the Apache License 2.0. ;; The license text is at http://www.apache.org/licenses/LICENSE-2.0 (ns territory-bro.commands-test (:require [clojure.test :refer :all] [schema.core :as s] [territory-bro.commands :as commands] [territory-bro.infra.foreign-key :as foreign-key] [territory-bro.infra.permissions :as permissions] [territory-bro.test.testutil :as testutil :refer [re-equals re-contains]]) (:import (clojure.lang ExceptionInfo) (java.time Instant) (java.util UUID) (territory_bro NoPermitException) (territory_bro.infra.foreign_key References))) (def valid-command {:command/type :congregation.command/rename-congregation :command/time (Instant/now) :command/user (UUID/randomUUID) :congregation/id (UUID/randomUUID) :congregation/name ""}) (def invalid-command (dissoc valid-command :congregation/name)) (def unknown-command (assoc valid-command :command/type :foo)) (deftest sorted-keys-test (is (nil? (commands/sorted-keys nil))) (is (= [:command/type :command/user :command/time :congregation/id :congregation/name] (keys (commands/sorted-keys valid-command))))) ;; TODO: deduplicate event & command validation infra (deftest command-schema-test (binding [foreign-key/*reference-checkers* testutil/dummy-reference-checkers] (testing "check specific command schema" (is (nil? (s/check commands/RenameCongregation valid-command)))) (testing "check generic command schema" (is (nil? (s/check commands/Command valid-command)))) (testing "invalid command" (is (= {:congregation/name 'missing-required-key} (s/check commands/Command invalid-command)))) (testing "unknown command type" ;; TODO: produce a helpful error message (is (s/check commands/Command unknown-command))) (testing "all UUIDs are foreign-key checked" (letfn [(check-schema [schema path] ;; there should not be a schema where the value is a plain UUID ;; instead of a (foreign-key/references :stuff UUID) (is (not= UUID schema) (str "missing a foreign key check at " path)) (cond ;; don't recurse into foreign-key/references (instance? References schema) nil ;; map? matches also records, which is most schema types (map? schema) (doseq [[key val] schema] (check-schema key (conj path key)) (check-schema val (conj path key))) (vector? schema) (doseq [[idx val] (map-indexed vector schema)] (check-schema val (conj path idx)))))] (doseq [[type schema] commands/command-schemas] (testing {:command/type type} (check-schema schema []))))))) (deftest validate-command-test (binding [foreign-key/*reference-checkers* testutil/dummy-reference-checkers] (testing "valid command" (is (= valid-command (testutil/validate-command valid-command)))) (testing "invalid command" (is (thrown-with-msg? ExceptionInfo (re-contains "{:congregation/name missing-required-key}") (testutil/validate-command invalid-command)))) (testing "unknown command type" (is (thrown-with-msg? ExceptionInfo (re-equals "Unknown command type :foo") (testutil/validate-command unknown-command)))))) (deftest validate-commands-test ;; this tests is here instead of the testutil namespace, because the command examples are here (is (= [] (testutil/validate-commands []))) (is (= [valid-command] (testutil/validate-commands [valid-command]))) (is (thrown? ExceptionInfo (testutil/validate-commands [invalid-command])))) (deftest check-permit-test (let [user-id (UUID. 0 1) state (permissions/grant {} user-id [:some-user-permit])] (testing "user has permission" (is (nil? (commands/check-permit state {:command/user user-id} [:some-user-permit])))) (testing "user doesn't have permission" (is (thrown? NoPermitException (commands/check-permit state {:command/user user-id} [:arbitrary-permit])))) (testing "system always has permission" (is (nil? (commands/check-permit state {:command/system "sys"} [:some-user-permit]))) (is (nil? (commands/check-permit state {:command/system "sys"} [:arbitrary-permit])))) (testing "system, on behalf of a user, always has permission" (is (nil? (commands/check-permit state {:command/system "sys", :command/user user-id} [:some-user-permit]))) (is (nil? (commands/check-permit state {:command/system "sys", :command/user user-id} [:arbitrary-permit])))) (testing "error: user and system missing" (is (thrown-with-msg? IllegalArgumentException (re-equals ":command/user or :command/system required, but was: {:foo 123}") (commands/check-permit state {:foo 123} [:bar]))))))
true
;; Copyright © 2015-2020 PI:NAME:<NAME>END_PI ;; This software is released under the Apache License 2.0. ;; The license text is at http://www.apache.org/licenses/LICENSE-2.0 (ns territory-bro.commands-test (:require [clojure.test :refer :all] [schema.core :as s] [territory-bro.commands :as commands] [territory-bro.infra.foreign-key :as foreign-key] [territory-bro.infra.permissions :as permissions] [territory-bro.test.testutil :as testutil :refer [re-equals re-contains]]) (:import (clojure.lang ExceptionInfo) (java.time Instant) (java.util UUID) (territory_bro NoPermitException) (territory_bro.infra.foreign_key References))) (def valid-command {:command/type :congregation.command/rename-congregation :command/time (Instant/now) :command/user (UUID/randomUUID) :congregation/id (UUID/randomUUID) :congregation/name ""}) (def invalid-command (dissoc valid-command :congregation/name)) (def unknown-command (assoc valid-command :command/type :foo)) (deftest sorted-keys-test (is (nil? (commands/sorted-keys nil))) (is (= [:command/type :command/user :command/time :congregation/id :congregation/name] (keys (commands/sorted-keys valid-command))))) ;; TODO: deduplicate event & command validation infra (deftest command-schema-test (binding [foreign-key/*reference-checkers* testutil/dummy-reference-checkers] (testing "check specific command schema" (is (nil? (s/check commands/RenameCongregation valid-command)))) (testing "check generic command schema" (is (nil? (s/check commands/Command valid-command)))) (testing "invalid command" (is (= {:congregation/name 'missing-required-key} (s/check commands/Command invalid-command)))) (testing "unknown command type" ;; TODO: produce a helpful error message (is (s/check commands/Command unknown-command))) (testing "all UUIDs are foreign-key checked" (letfn [(check-schema [schema path] ;; there should not be a schema where the value is a plain UUID ;; instead of a (foreign-key/references :stuff UUID) (is (not= UUID schema) (str "missing a foreign key check at " path)) (cond ;; don't recurse into foreign-key/references (instance? References schema) nil ;; map? matches also records, which is most schema types (map? schema) (doseq [[key val] schema] (check-schema key (conj path key)) (check-schema val (conj path key))) (vector? schema) (doseq [[idx val] (map-indexed vector schema)] (check-schema val (conj path idx)))))] (doseq [[type schema] commands/command-schemas] (testing {:command/type type} (check-schema schema []))))))) (deftest validate-command-test (binding [foreign-key/*reference-checkers* testutil/dummy-reference-checkers] (testing "valid command" (is (= valid-command (testutil/validate-command valid-command)))) (testing "invalid command" (is (thrown-with-msg? ExceptionInfo (re-contains "{:congregation/name missing-required-key}") (testutil/validate-command invalid-command)))) (testing "unknown command type" (is (thrown-with-msg? ExceptionInfo (re-equals "Unknown command type :foo") (testutil/validate-command unknown-command)))))) (deftest validate-commands-test ;; this tests is here instead of the testutil namespace, because the command examples are here (is (= [] (testutil/validate-commands []))) (is (= [valid-command] (testutil/validate-commands [valid-command]))) (is (thrown? ExceptionInfo (testutil/validate-commands [invalid-command])))) (deftest check-permit-test (let [user-id (UUID. 0 1) state (permissions/grant {} user-id [:some-user-permit])] (testing "user has permission" (is (nil? (commands/check-permit state {:command/user user-id} [:some-user-permit])))) (testing "user doesn't have permission" (is (thrown? NoPermitException (commands/check-permit state {:command/user user-id} [:arbitrary-permit])))) (testing "system always has permission" (is (nil? (commands/check-permit state {:command/system "sys"} [:some-user-permit]))) (is (nil? (commands/check-permit state {:command/system "sys"} [:arbitrary-permit])))) (testing "system, on behalf of a user, always has permission" (is (nil? (commands/check-permit state {:command/system "sys", :command/user user-id} [:some-user-permit]))) (is (nil? (commands/check-permit state {:command/system "sys", :command/user user-id} [:arbitrary-permit])))) (testing "error: user and system missing" (is (thrown-with-msg? IllegalArgumentException (re-equals ":command/user or :command/system required, but was: {:foo 123}") (commands/check-permit state {:foo 123} [:bar]))))))
[ { "context": "; Copyright (c) 2021 Mikołaj Kuranowski\n; SPDX-License-Identifier: WTFPL\n(ns day9a\n (:re", "end": 39, "score": 0.9996258616447449, "start": 21, "tag": "NAME", "value": "Mikołaj Kuranowski" } ]
src/day09a.clj
MKuranowski/AdventOfCode2020
0
; Copyright (c) 2021 Mikołaj Kuranowski ; SPDX-License-Identifier: WTFPL (ns day9a (:require [core] [clojure.math.combinatorics :refer [combinations]])) (defn is-valid? [number summands] (some (fn [[a b]] (= number (+ a b))) (combinations summands 2))) (defn enqueue-number [number summands] (conj (subvec summands 1) number)) (defn find-invalid [first-summands numbers] (loop [summands first-summands numbers numbers] (if (is-valid? (first numbers) summands) (recur (enqueue-number (first numbers) summands) (rest numbers)) (first numbers)))) (defn -main [filename] (let [all-numbers (map core/parse-int (core/lines-from-file filename))] (prn (find-invalid (vec (take 25 all-numbers)) (nthrest all-numbers 25)))))
33192
; Copyright (c) 2021 <NAME> ; SPDX-License-Identifier: WTFPL (ns day9a (:require [core] [clojure.math.combinatorics :refer [combinations]])) (defn is-valid? [number summands] (some (fn [[a b]] (= number (+ a b))) (combinations summands 2))) (defn enqueue-number [number summands] (conj (subvec summands 1) number)) (defn find-invalid [first-summands numbers] (loop [summands first-summands numbers numbers] (if (is-valid? (first numbers) summands) (recur (enqueue-number (first numbers) summands) (rest numbers)) (first numbers)))) (defn -main [filename] (let [all-numbers (map core/parse-int (core/lines-from-file filename))] (prn (find-invalid (vec (take 25 all-numbers)) (nthrest all-numbers 25)))))
true
; Copyright (c) 2021 PI:NAME:<NAME>END_PI ; SPDX-License-Identifier: WTFPL (ns day9a (:require [core] [clojure.math.combinatorics :refer [combinations]])) (defn is-valid? [number summands] (some (fn [[a b]] (= number (+ a b))) (combinations summands 2))) (defn enqueue-number [number summands] (conj (subvec summands 1) number)) (defn find-invalid [first-summands numbers] (loop [summands first-summands numbers numbers] (if (is-valid? (first numbers) summands) (recur (enqueue-number (first numbers) summands) (rest numbers)) (first numbers)))) (defn -main [filename] (let [all-numbers (map core/parse-int (core/lines-from-file filename))] (prn (find-invalid (vec (take 25 all-numbers)) (nthrest all-numbers 25)))))
[ { "context": "e (try (valid-input? [{:id 1 :features \"my name is andrew\"} {:id 2 :features \"i like clojure\"}] string?) (c", "end": 3482, "score": 0.9833909273147583, "start": 3476, "tag": "NAME", "value": "andrew" }, { "context": "false (try (valid-input? [{:id 1 :feat \"my name is andrew\"} {:id 2 :features \"i like clojure\"}] string?) (c", "end": 3706, "score": 0.9893797636032104, "start": 3700, "tag": "NAME", "value": "andrew" }, { "context": "e (try (valid-input? [{:id 1 :features \"my name is andrew\"} {:id 2 :features [2]}] string?) (catch Assertio", "end": 3950, "score": 0.9606478214263916, "start": 3944, "tag": "NAME", "value": "andrew" } ]
test/consimilo/lsh_util_test.clj
andrewmcloud/consimilo
62
(ns consimilo.lsh-util-test (:require [clojure.test :refer :all] [consimilo.lsh-util :refer :all] [consimilo.lsh-query :refer :all])) (deftest get-hashranges-test (testing "all ranges less than k * num trees" (is (every? #(>= (* 5 8) %) (map #(apply max %) (get-hashranges 5 8))))) (testing "buckets are the same size" (is (apply = (map #(- (second %) (first %)) (get-hashranges 5 8)))))) (deftest get-range-test (testing "returns correct number of buckets" (is (= 40 (get-range 5 8))))) (deftest keyword-int-test (testing "returns int turned into keyword" (is (= :0 (keywordize 0))))) (deftest build-hashtables-test (testing "initializes empty hashtables structure" (is (= {:0 {} :1 {} :2 {}} (build-hashtables 3))))) (deftest build-sorted-hashtables-test (testing "initializes empty sorted-hashtables structure" (is (= {:0 [] :1 [] :2 []} (build-sorted-hashtables 3))))) (deftest v=v-test (testing "vector1 = vector2" (is (true? (v=v [1 2 3] [1 2 3]))) (is (false? (v=v [1 2 2] [0 2 2]))) (is (false? (v=v [1 2 2] [1 0 2]))) (is (false? (v=v [1 2 2] [1 2 3]))))) (deftest v>=v-test (testing "vector1 >= vector2" (is (true? (v>=v [2 3 3] [1 2 3]))) (is (true? (v>=v [2 3 3] [2 2 3]))) (is (true? (v>=v [2 3 3] [2 3 2]))) (is (true? (v>=v [2 3 3] [2 3 3]))) (is (false? (v>=v [1 3 3] [2 3 3]))) (is (false? (v>=v [2 2 3] [2 3 3]))) (is (false? (v>=v [2 3 2] [2 3 3]))))) (deftest coll-prefix-test (testing "get first k elements of collection" (is (= [1 2 3] (coll-prefix [1 2 3 4 5] 3)))) (testing "get first k elements of empty collection" (is (= [] (coll-prefix [] 3))))) (deftest slice-test (let [private-slice #'consimilo.lsh-util/slice] (testing "slice of empty coll" (is (= () (private-slice 0 10 [])))) (testing "slice at begining" (is (= '(1 2 3) (private-slice 0 3 [1 2 3 4 5])))) (testing "slice in middle" (is (= '(2 3 4) (private-slice 1 4 [1 2 3 4 5])))))) (deftest slice-minhash-test (testing "returns sequence of slices" (is (= '((1 2 3) (4 5 6)) (slice-minhash [1 2 3 4 5 6] [[0 3] [3 6]]))))) (deftest tree-keys-test (testing "correct keywords" (is (= [:0 :1 :2] (tree-keys 3))))) (deftest pred-search-test (let [private-pred-search #'consimilo.lsh-query/pred-search sorted-vec [[0 1 2] [1 2 3] [2 3 4] [3 4 5] [4 5 6] [5 6 7] [6 7 8] [7 8 9] [8 9 0]]] (testing "search for min" (is (= 2 (private-pred-search #(>= (compare (get sorted-vec %) [2 3 4]) 0) (count sorted-vec))))))) (deftest valid-input?-test (testing "valid input, correct keys and :features is a collection" (is (= true (try (valid-input? [{:id 1 :features [1]} {:id 2 :features [2]}] coll?) (catch AssertionError e false))))) (testing "invalid input, incorrect keys and :features is a collection" (is (= false (try (valid-input? [{:id 1 :feat [1]} {:id 2 :features [2]}] coll?) (catch AssertionError e false))))) (testing "invalid input, correct keys but :features is not a collection" (is (= false (try (valid-input? [{:id 1 :features [1]} {:id 2 :features 2}] coll?) (catch AssertionError e false)))))) (deftest valid-input-add-strings?-test (testing "valid input, correct keys and :features is a collection" (is (= true (try (valid-input? [{:id 1 :features "my name is andrew"} {:id 2 :features "i like clojure"}] string?) (catch AssertionError e false))))) (testing "invalid input, incorrect keys and :features is a collection" (is (= false (try (valid-input? [{:id 1 :feat "my name is andrew"} {:id 2 :features "i like clojure"}] string?) (catch AssertionError e false))))) (testing "invalid input, correct keys but :features is a collection instead of string" (is (= false (try (valid-input? [{:id 1 :features "my name is andrew"} {:id 2 :features [2]}] string?) (catch AssertionError e false)))))) (deftest valid-input-add-files?-test (testing "valid input, multiple files in collection" (is (= true (try (valid-input-add-files? [(clojure.java.io/as-file "t1") (clojure.java.io/as-file "t1") (clojure.java.io/as-file "t2")]) (catch AssertionError e false))))) (testing "valid input, single file in collection" (is (= true (try (valid-input-add-files? [(clojure.java.io/file "t1")]) (catch AssertionError e false))))) (testing "invalid input, no files in collection" (is (= false (try (valid-input-add-files? [{:id 1 :features [1]} {:id 2 :features 2}]) (catch AssertionError e false))))))
108938
(ns consimilo.lsh-util-test (:require [clojure.test :refer :all] [consimilo.lsh-util :refer :all] [consimilo.lsh-query :refer :all])) (deftest get-hashranges-test (testing "all ranges less than k * num trees" (is (every? #(>= (* 5 8) %) (map #(apply max %) (get-hashranges 5 8))))) (testing "buckets are the same size" (is (apply = (map #(- (second %) (first %)) (get-hashranges 5 8)))))) (deftest get-range-test (testing "returns correct number of buckets" (is (= 40 (get-range 5 8))))) (deftest keyword-int-test (testing "returns int turned into keyword" (is (= :0 (keywordize 0))))) (deftest build-hashtables-test (testing "initializes empty hashtables structure" (is (= {:0 {} :1 {} :2 {}} (build-hashtables 3))))) (deftest build-sorted-hashtables-test (testing "initializes empty sorted-hashtables structure" (is (= {:0 [] :1 [] :2 []} (build-sorted-hashtables 3))))) (deftest v=v-test (testing "vector1 = vector2" (is (true? (v=v [1 2 3] [1 2 3]))) (is (false? (v=v [1 2 2] [0 2 2]))) (is (false? (v=v [1 2 2] [1 0 2]))) (is (false? (v=v [1 2 2] [1 2 3]))))) (deftest v>=v-test (testing "vector1 >= vector2" (is (true? (v>=v [2 3 3] [1 2 3]))) (is (true? (v>=v [2 3 3] [2 2 3]))) (is (true? (v>=v [2 3 3] [2 3 2]))) (is (true? (v>=v [2 3 3] [2 3 3]))) (is (false? (v>=v [1 3 3] [2 3 3]))) (is (false? (v>=v [2 2 3] [2 3 3]))) (is (false? (v>=v [2 3 2] [2 3 3]))))) (deftest coll-prefix-test (testing "get first k elements of collection" (is (= [1 2 3] (coll-prefix [1 2 3 4 5] 3)))) (testing "get first k elements of empty collection" (is (= [] (coll-prefix [] 3))))) (deftest slice-test (let [private-slice #'consimilo.lsh-util/slice] (testing "slice of empty coll" (is (= () (private-slice 0 10 [])))) (testing "slice at begining" (is (= '(1 2 3) (private-slice 0 3 [1 2 3 4 5])))) (testing "slice in middle" (is (= '(2 3 4) (private-slice 1 4 [1 2 3 4 5])))))) (deftest slice-minhash-test (testing "returns sequence of slices" (is (= '((1 2 3) (4 5 6)) (slice-minhash [1 2 3 4 5 6] [[0 3] [3 6]]))))) (deftest tree-keys-test (testing "correct keywords" (is (= [:0 :1 :2] (tree-keys 3))))) (deftest pred-search-test (let [private-pred-search #'consimilo.lsh-query/pred-search sorted-vec [[0 1 2] [1 2 3] [2 3 4] [3 4 5] [4 5 6] [5 6 7] [6 7 8] [7 8 9] [8 9 0]]] (testing "search for min" (is (= 2 (private-pred-search #(>= (compare (get sorted-vec %) [2 3 4]) 0) (count sorted-vec))))))) (deftest valid-input?-test (testing "valid input, correct keys and :features is a collection" (is (= true (try (valid-input? [{:id 1 :features [1]} {:id 2 :features [2]}] coll?) (catch AssertionError e false))))) (testing "invalid input, incorrect keys and :features is a collection" (is (= false (try (valid-input? [{:id 1 :feat [1]} {:id 2 :features [2]}] coll?) (catch AssertionError e false))))) (testing "invalid input, correct keys but :features is not a collection" (is (= false (try (valid-input? [{:id 1 :features [1]} {:id 2 :features 2}] coll?) (catch AssertionError e false)))))) (deftest valid-input-add-strings?-test (testing "valid input, correct keys and :features is a collection" (is (= true (try (valid-input? [{:id 1 :features "my name is <NAME>"} {:id 2 :features "i like clojure"}] string?) (catch AssertionError e false))))) (testing "invalid input, incorrect keys and :features is a collection" (is (= false (try (valid-input? [{:id 1 :feat "my name is <NAME>"} {:id 2 :features "i like clojure"}] string?) (catch AssertionError e false))))) (testing "invalid input, correct keys but :features is a collection instead of string" (is (= false (try (valid-input? [{:id 1 :features "my name is <NAME>"} {:id 2 :features [2]}] string?) (catch AssertionError e false)))))) (deftest valid-input-add-files?-test (testing "valid input, multiple files in collection" (is (= true (try (valid-input-add-files? [(clojure.java.io/as-file "t1") (clojure.java.io/as-file "t1") (clojure.java.io/as-file "t2")]) (catch AssertionError e false))))) (testing "valid input, single file in collection" (is (= true (try (valid-input-add-files? [(clojure.java.io/file "t1")]) (catch AssertionError e false))))) (testing "invalid input, no files in collection" (is (= false (try (valid-input-add-files? [{:id 1 :features [1]} {:id 2 :features 2}]) (catch AssertionError e false))))))
true
(ns consimilo.lsh-util-test (:require [clojure.test :refer :all] [consimilo.lsh-util :refer :all] [consimilo.lsh-query :refer :all])) (deftest get-hashranges-test (testing "all ranges less than k * num trees" (is (every? #(>= (* 5 8) %) (map #(apply max %) (get-hashranges 5 8))))) (testing "buckets are the same size" (is (apply = (map #(- (second %) (first %)) (get-hashranges 5 8)))))) (deftest get-range-test (testing "returns correct number of buckets" (is (= 40 (get-range 5 8))))) (deftest keyword-int-test (testing "returns int turned into keyword" (is (= :0 (keywordize 0))))) (deftest build-hashtables-test (testing "initializes empty hashtables structure" (is (= {:0 {} :1 {} :2 {}} (build-hashtables 3))))) (deftest build-sorted-hashtables-test (testing "initializes empty sorted-hashtables structure" (is (= {:0 [] :1 [] :2 []} (build-sorted-hashtables 3))))) (deftest v=v-test (testing "vector1 = vector2" (is (true? (v=v [1 2 3] [1 2 3]))) (is (false? (v=v [1 2 2] [0 2 2]))) (is (false? (v=v [1 2 2] [1 0 2]))) (is (false? (v=v [1 2 2] [1 2 3]))))) (deftest v>=v-test (testing "vector1 >= vector2" (is (true? (v>=v [2 3 3] [1 2 3]))) (is (true? (v>=v [2 3 3] [2 2 3]))) (is (true? (v>=v [2 3 3] [2 3 2]))) (is (true? (v>=v [2 3 3] [2 3 3]))) (is (false? (v>=v [1 3 3] [2 3 3]))) (is (false? (v>=v [2 2 3] [2 3 3]))) (is (false? (v>=v [2 3 2] [2 3 3]))))) (deftest coll-prefix-test (testing "get first k elements of collection" (is (= [1 2 3] (coll-prefix [1 2 3 4 5] 3)))) (testing "get first k elements of empty collection" (is (= [] (coll-prefix [] 3))))) (deftest slice-test (let [private-slice #'consimilo.lsh-util/slice] (testing "slice of empty coll" (is (= () (private-slice 0 10 [])))) (testing "slice at begining" (is (= '(1 2 3) (private-slice 0 3 [1 2 3 4 5])))) (testing "slice in middle" (is (= '(2 3 4) (private-slice 1 4 [1 2 3 4 5])))))) (deftest slice-minhash-test (testing "returns sequence of slices" (is (= '((1 2 3) (4 5 6)) (slice-minhash [1 2 3 4 5 6] [[0 3] [3 6]]))))) (deftest tree-keys-test (testing "correct keywords" (is (= [:0 :1 :2] (tree-keys 3))))) (deftest pred-search-test (let [private-pred-search #'consimilo.lsh-query/pred-search sorted-vec [[0 1 2] [1 2 3] [2 3 4] [3 4 5] [4 5 6] [5 6 7] [6 7 8] [7 8 9] [8 9 0]]] (testing "search for min" (is (= 2 (private-pred-search #(>= (compare (get sorted-vec %) [2 3 4]) 0) (count sorted-vec))))))) (deftest valid-input?-test (testing "valid input, correct keys and :features is a collection" (is (= true (try (valid-input? [{:id 1 :features [1]} {:id 2 :features [2]}] coll?) (catch AssertionError e false))))) (testing "invalid input, incorrect keys and :features is a collection" (is (= false (try (valid-input? [{:id 1 :feat [1]} {:id 2 :features [2]}] coll?) (catch AssertionError e false))))) (testing "invalid input, correct keys but :features is not a collection" (is (= false (try (valid-input? [{:id 1 :features [1]} {:id 2 :features 2}] coll?) (catch AssertionError e false)))))) (deftest valid-input-add-strings?-test (testing "valid input, correct keys and :features is a collection" (is (= true (try (valid-input? [{:id 1 :features "my name is PI:NAME:<NAME>END_PI"} {:id 2 :features "i like clojure"}] string?) (catch AssertionError e false))))) (testing "invalid input, incorrect keys and :features is a collection" (is (= false (try (valid-input? [{:id 1 :feat "my name is PI:NAME:<NAME>END_PI"} {:id 2 :features "i like clojure"}] string?) (catch AssertionError e false))))) (testing "invalid input, correct keys but :features is a collection instead of string" (is (= false (try (valid-input? [{:id 1 :features "my name is PI:NAME:<NAME>END_PI"} {:id 2 :features [2]}] string?) (catch AssertionError e false)))))) (deftest valid-input-add-files?-test (testing "valid input, multiple files in collection" (is (= true (try (valid-input-add-files? [(clojure.java.io/as-file "t1") (clojure.java.io/as-file "t1") (clojure.java.io/as-file "t2")]) (catch AssertionError e false))))) (testing "valid input, single file in collection" (is (= true (try (valid-input-add-files? [(clojure.java.io/file "t1")]) (catch AssertionError e false))))) (testing "invalid input, no files in collection" (is (= false (try (valid-input-add-files? [{:id 1 :features [1]} {:id 2 :features 2}]) (catch AssertionError e false))))))
[ { "context": " (str \"users:\" seller-id)\n item-key (format \"%s.%s\" item-id seller-id)\n inventory-key (str \"i", "end": 2006, "score": 0.7857796549797058, "start": 2000, "tag": "KEY", "value": "\"%s.%s" } ]
clojure-lang/src/clojure_lang/chapter06.clj
tanxiazhe/redis-in-action
2,256
(ns clojure-lang.chapter06 (:require [taoensso.carmine :as car] [cheshire.core :as cc] [clj-time.coerce :as ctc] [clj-time.core :as ct] [clojure.string :refer [starts-with?]] [clojure-lang.util :refer [wcar* server-conn]])) ;;;;;;;;;;;;;;;;;;;;;; ;; 6.1 Autocomplete ;; ;;;;;;;;;;;;;;;;;;;;;; ;; Listing 6.1: The add_update_contact() function (defn add-update-contact [user contact] (let [ac-list (str "recent:" user)] (wcar* (car/lrem ac-list 0 contact) (car/lpush ac-list contact) (car/ltrim ac-list 0 99)))) (defn remove-contact [user contact] (wcar* (car/lrem (str "recent:" user) contact))) ;; Listing 6.2: the fetch_autocomplete_list() function (defn fetch-autocomplete-list [user prefix] (let [list-key (str "recent:" user) candidates (wcar* (car/lrange list-key 0 -1))] (filter (fn [candidate] (starts-with? candidate prefix)) candidates))) ;; Listing 6.8: The acquire_lock() function (defn acquire-lock [lockname & {:keys [acquire-timeout] :or {acquire-timeout 10}}] (let [identifier (str (java.util.UUID/randomUUID)) end (+ (ctc/to-long (ct/now)) acquire-timeout)] (loop [] (cond (< end (ctc/to-long (ct/now))) false (= 1 (wcar* (car/setnx (str "lock:" lockname) identifier))) identifier :else (do (Thread/sleep 100) (recur)))))) ;; Listing 6.10: The release_lock() function (defn release-lock [lockname identifier] (let [lock-key (str "lock:" lockname)] (wcar* (car/watch lock-key) (if (= identifier (car/get lock-key)) (car/del lock-key) (car/unwatch))))) ;; Listing 6.9: The purchase_item_with_lock() function (defn purchase-item-with-lock [buyer-id item-id seller-id list-price] (let [buyer-key (str "users:" buyer-id) seller-key (str "users:" seller-id) item-key (format "%s.%s" item-id seller-id) inventory-key (str "inventory:" buyer-id) price (wcar* (car/zscore "market:" item-key)) funds (wcar* (car/hget buyer-key "funds")) lock-identifier (acquire-lock "market")] (when (and (= price list-price) (< price funds)) (car/atomic server-conn 5 (car/watch "market:" buyer-key) (car/multi) (car/hincrby seller-key "funds" (Integer/parseInt price)) (car/hincrby buyer-key "funds" (- (Integer/parseInt price))) (car/sadd inventory-key item-id) (car/zrem "market:" item-id))) (when lock-identifier (release-lock "market" lock-identifier)))) ;; Listing 6.11: The acquire_lock_with_timeout() function (defn acquire-lock-with-timeout [lockname & {:keys [acquire-timeout lock-timeout] :or {acquire-timeout 10 lock-timeout 10}}] (let [identifier (str (java.util.UUID/randomUUID)) end (+ (ctc/to-long (ct/now)) acquire-timeout)] (loop [] (cond (< end (ctc/to-long (ct/now))) false (= 1 (wcar* (car/setnx (str "lock:" lockname) identifier))) (do (wcar* (car/expire (str "lock:" lockname) lock-timeout)) identifier) :else (do (Thread/sleep 100) (recur)))))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; 6.3 Counting Semaphores ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Listing 6.12: The acquire_semaphore() function (defn acquire-semaphore [semname limit & {:keys [timeout] :or {timeout 10}}] (let [identifier (str (java.util.UUID/randomUUID)) now (ctc/to-long (ct/now)) result (wcar* (car/zremrangebyscore semname Double/NEGATIVE_INFINITY (- now timeout)) (car/zadd semname now identifier) (car/zrank semname identifier) limit)] (if (< (last result) limit) identifier (do (wcar* (car/zrem semname identifier)) nil)))) ;; Lisiting 6.13: The release_semaphore() function (defn release-semaphore [semname identifier] (wcar* (car/zrem semname identifier))) ;; Listing 6.14: The acquire_fair_semaphore() function (defn acquire-fair-semaphore [semname limit & {:keys [timeout] :or {timeout 10}}] (let [identifier (str (java.util.UUID/randomUUID)) czset (str semname ":owner") ctr (str semname ":counter") now (ctc/to-long (ct/now)) counter-result (wcar* (car/zremrangebyscore semname Double/NEGATIVE_INFINITY (- now timeout)) (car/zinterstore czset 2 czset semname "weights" 1 0) (car/incr ctr)) counter (last counter-result) acquire-sem-result (wcar* (car/zadd semname now identifier) (car/zadd czset counter identifier) (car/zrank czset identifier))] (if (< (last acquire-sem-result) limit) identifier (do (wcar* (car/zrem semname identifier) (car/zrem czset identifier)) nil)))) ;; Listing 6.15: The release_fair_semaphore() function (defn release-fair-semaphore [semname identifier] (-> (wcar* (car/zrem semname identifier) (car/zrem (str semname ":owner") identifier)) first (= 1))) ;; Listing 6.16: The refresh_fair_semaphore() function (defn refresh-fair-semaphore [semname identifier] (if (wcar* (car/zadd semname (ctc/to-long (ct/now)) identifier)) (do (release-fair-semaphore semname identifier) false) true)) ;; Listing 6.17: The acquire_semaphore_with_lock() function (defn acquire-semaphore-with-lock [semname limit & {:keys [timeout] :or {timeout 10}}] (let [identifier (acquire-lock semname :acquire-timeout 10)] (if identifier (try (acquire-fair-semaphore semname limit :timemout timeout) (finally (release-lock semname identifier)))))) ;;;;;;;;;;;;;;;;;;;;; ;; 6.4 Task Queues ;; ;;;;;;;;;;;;;;;;;;;;; ;; Listing 6.18: The send_sold_email_via_queue() function (defn send-sold-email-via-queue [seller item price buyer] (let [data {:seller_id seller :item_id item :price price :buyer_id buyer :time (ctc/to-long (ct/now))}] (wcar* (car/rpush "queue:email" (cc/generate-string data))))) ;; Listing 6.19: The process_sold_email_queue() function (defn process-sold-email-queue [] (let [packed (wcar* (car/blpop "queue:email" 30))] (if packed (println "Sending email with this content:" (cc/parse-string (last packed) true)) (println "No item in queue.")))) ;;;;;;;;;;;;;;;;;;;;;;;; ;; 6.5 Pull Messaging ;; ;;;;;;;;;;;;;;;;;;;;;;;; ;; Listing 6.25: The send_message() function (defn send-message [chat-id sender message] (let [identifier (acquire-lock (str "chat:" chat-id))] (if (not identifier) (throw (Exception. "Couldn't get the lock")) (do (try (let [mid (wcar* (car/incr (str ":ds:" chat-id))) ts (ctc/to-long (ct/now)) data (-> {:id mid :ts ts :sender sender :message message} cc/generate-string)] (wcar* (car/zadd (str "msgs:" chat-id) mid data))) (finally (release-lock (str "chat:" chat-id) identifier))) chat-id)))) ;; Listing 6.24: The create_chat() function (defn create-chat [sender recipients message & {:keys [chat-id]}] (let [chat-id (or chat-id (wcar* (car/incr "ids:chat"))) create-chat! (fn [recipient-id] (car/zadd (str "chat:" chat-id) 0 recipient-id) (car/zadd (str "seen:" recipient-id) 0 chat-id))] (wcar* (doseq [recipient recipients] (create-chat! recipient))) (send-message chat-id sender message))) ;; Listing 6.26: The fecth_pending_messages() function (defn fetch-pending-messages [recipient] (let [seen (wcar* (car/zrange (str "seen:" recipient) 0 -1 "withscores")) partitioned-seen (partition 2 seen) fetch-msgs (fn [[chat-id seen-id]] (wcar* (car/zrangebyscore (str "msgs:" chat-id) (inc (Integer/parseInt seen-id)) Double/POSITIVE_INFINITY))) chat-info (->> partitioned-seen (mapv fetch-msgs) (zipmap partitioned-seen))] (reduce-kv (fn [m [chat-id seen-id] v] (when v (let [parsed-messages (map #(cc/parse-string % true) v) seen-id (:id (last parsed-messages)) _ (wcar* (car/zadd (str "chat:" chat-id) seen-id recipient)) min-id (wcar* (car/zrange (str "chat:" chat-id) 0 0 "withscores"))] (wcar* (car/zadd (str "seen:" recipient) seen-id chat-id)) (when min-id (wcar* (car/zremrangebyscore (str "msgs:" chat-id) 0 (last min-id)))) (assoc m chat-id parsed-messages)))) {} chat-info))) ;; Listing 6.27: The join_chat() function (defn join-chat [chat-id user] (let [message-id (-> (wcar* (car/get (str "ids:" chat-id))) Integer/parseInt)] (wcar* (car/zadd (str "chat:" chat-id) message-id user) (car/zadd (str "seen:" user) message-id chat-id)))) ;; Listing 6.28: The leave_chat() function (defn leave-chat [chat-id user] (wcar* (car/zrem (str "chat:" chat-id) user) (car/zrem (str "seen:" user) chat-id) (if (not (car/zcard (str "chat:" chat-id))) (do (car/del (str "msgs:" chat-id)) (car/del (str "ids:" chat-id))) (let [oldest (car/zrange (str "chat:" chat-id) 0 0 "withscores")] (car/zremrangebyscore (str "chat:" chat-id) 0 oldest)))))
98763
(ns clojure-lang.chapter06 (:require [taoensso.carmine :as car] [cheshire.core :as cc] [clj-time.coerce :as ctc] [clj-time.core :as ct] [clojure.string :refer [starts-with?]] [clojure-lang.util :refer [wcar* server-conn]])) ;;;;;;;;;;;;;;;;;;;;;; ;; 6.1 Autocomplete ;; ;;;;;;;;;;;;;;;;;;;;;; ;; Listing 6.1: The add_update_contact() function (defn add-update-contact [user contact] (let [ac-list (str "recent:" user)] (wcar* (car/lrem ac-list 0 contact) (car/lpush ac-list contact) (car/ltrim ac-list 0 99)))) (defn remove-contact [user contact] (wcar* (car/lrem (str "recent:" user) contact))) ;; Listing 6.2: the fetch_autocomplete_list() function (defn fetch-autocomplete-list [user prefix] (let [list-key (str "recent:" user) candidates (wcar* (car/lrange list-key 0 -1))] (filter (fn [candidate] (starts-with? candidate prefix)) candidates))) ;; Listing 6.8: The acquire_lock() function (defn acquire-lock [lockname & {:keys [acquire-timeout] :or {acquire-timeout 10}}] (let [identifier (str (java.util.UUID/randomUUID)) end (+ (ctc/to-long (ct/now)) acquire-timeout)] (loop [] (cond (< end (ctc/to-long (ct/now))) false (= 1 (wcar* (car/setnx (str "lock:" lockname) identifier))) identifier :else (do (Thread/sleep 100) (recur)))))) ;; Listing 6.10: The release_lock() function (defn release-lock [lockname identifier] (let [lock-key (str "lock:" lockname)] (wcar* (car/watch lock-key) (if (= identifier (car/get lock-key)) (car/del lock-key) (car/unwatch))))) ;; Listing 6.9: The purchase_item_with_lock() function (defn purchase-item-with-lock [buyer-id item-id seller-id list-price] (let [buyer-key (str "users:" buyer-id) seller-key (str "users:" seller-id) item-key (format <KEY>" item-id seller-id) inventory-key (str "inventory:" buyer-id) price (wcar* (car/zscore "market:" item-key)) funds (wcar* (car/hget buyer-key "funds")) lock-identifier (acquire-lock "market")] (when (and (= price list-price) (< price funds)) (car/atomic server-conn 5 (car/watch "market:" buyer-key) (car/multi) (car/hincrby seller-key "funds" (Integer/parseInt price)) (car/hincrby buyer-key "funds" (- (Integer/parseInt price))) (car/sadd inventory-key item-id) (car/zrem "market:" item-id))) (when lock-identifier (release-lock "market" lock-identifier)))) ;; Listing 6.11: The acquire_lock_with_timeout() function (defn acquire-lock-with-timeout [lockname & {:keys [acquire-timeout lock-timeout] :or {acquire-timeout 10 lock-timeout 10}}] (let [identifier (str (java.util.UUID/randomUUID)) end (+ (ctc/to-long (ct/now)) acquire-timeout)] (loop [] (cond (< end (ctc/to-long (ct/now))) false (= 1 (wcar* (car/setnx (str "lock:" lockname) identifier))) (do (wcar* (car/expire (str "lock:" lockname) lock-timeout)) identifier) :else (do (Thread/sleep 100) (recur)))))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; 6.3 Counting Semaphores ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Listing 6.12: The acquire_semaphore() function (defn acquire-semaphore [semname limit & {:keys [timeout] :or {timeout 10}}] (let [identifier (str (java.util.UUID/randomUUID)) now (ctc/to-long (ct/now)) result (wcar* (car/zremrangebyscore semname Double/NEGATIVE_INFINITY (- now timeout)) (car/zadd semname now identifier) (car/zrank semname identifier) limit)] (if (< (last result) limit) identifier (do (wcar* (car/zrem semname identifier)) nil)))) ;; Lisiting 6.13: The release_semaphore() function (defn release-semaphore [semname identifier] (wcar* (car/zrem semname identifier))) ;; Listing 6.14: The acquire_fair_semaphore() function (defn acquire-fair-semaphore [semname limit & {:keys [timeout] :or {timeout 10}}] (let [identifier (str (java.util.UUID/randomUUID)) czset (str semname ":owner") ctr (str semname ":counter") now (ctc/to-long (ct/now)) counter-result (wcar* (car/zremrangebyscore semname Double/NEGATIVE_INFINITY (- now timeout)) (car/zinterstore czset 2 czset semname "weights" 1 0) (car/incr ctr)) counter (last counter-result) acquire-sem-result (wcar* (car/zadd semname now identifier) (car/zadd czset counter identifier) (car/zrank czset identifier))] (if (< (last acquire-sem-result) limit) identifier (do (wcar* (car/zrem semname identifier) (car/zrem czset identifier)) nil)))) ;; Listing 6.15: The release_fair_semaphore() function (defn release-fair-semaphore [semname identifier] (-> (wcar* (car/zrem semname identifier) (car/zrem (str semname ":owner") identifier)) first (= 1))) ;; Listing 6.16: The refresh_fair_semaphore() function (defn refresh-fair-semaphore [semname identifier] (if (wcar* (car/zadd semname (ctc/to-long (ct/now)) identifier)) (do (release-fair-semaphore semname identifier) false) true)) ;; Listing 6.17: The acquire_semaphore_with_lock() function (defn acquire-semaphore-with-lock [semname limit & {:keys [timeout] :or {timeout 10}}] (let [identifier (acquire-lock semname :acquire-timeout 10)] (if identifier (try (acquire-fair-semaphore semname limit :timemout timeout) (finally (release-lock semname identifier)))))) ;;;;;;;;;;;;;;;;;;;;; ;; 6.4 Task Queues ;; ;;;;;;;;;;;;;;;;;;;;; ;; Listing 6.18: The send_sold_email_via_queue() function (defn send-sold-email-via-queue [seller item price buyer] (let [data {:seller_id seller :item_id item :price price :buyer_id buyer :time (ctc/to-long (ct/now))}] (wcar* (car/rpush "queue:email" (cc/generate-string data))))) ;; Listing 6.19: The process_sold_email_queue() function (defn process-sold-email-queue [] (let [packed (wcar* (car/blpop "queue:email" 30))] (if packed (println "Sending email with this content:" (cc/parse-string (last packed) true)) (println "No item in queue.")))) ;;;;;;;;;;;;;;;;;;;;;;;; ;; 6.5 Pull Messaging ;; ;;;;;;;;;;;;;;;;;;;;;;;; ;; Listing 6.25: The send_message() function (defn send-message [chat-id sender message] (let [identifier (acquire-lock (str "chat:" chat-id))] (if (not identifier) (throw (Exception. "Couldn't get the lock")) (do (try (let [mid (wcar* (car/incr (str ":ds:" chat-id))) ts (ctc/to-long (ct/now)) data (-> {:id mid :ts ts :sender sender :message message} cc/generate-string)] (wcar* (car/zadd (str "msgs:" chat-id) mid data))) (finally (release-lock (str "chat:" chat-id) identifier))) chat-id)))) ;; Listing 6.24: The create_chat() function (defn create-chat [sender recipients message & {:keys [chat-id]}] (let [chat-id (or chat-id (wcar* (car/incr "ids:chat"))) create-chat! (fn [recipient-id] (car/zadd (str "chat:" chat-id) 0 recipient-id) (car/zadd (str "seen:" recipient-id) 0 chat-id))] (wcar* (doseq [recipient recipients] (create-chat! recipient))) (send-message chat-id sender message))) ;; Listing 6.26: The fecth_pending_messages() function (defn fetch-pending-messages [recipient] (let [seen (wcar* (car/zrange (str "seen:" recipient) 0 -1 "withscores")) partitioned-seen (partition 2 seen) fetch-msgs (fn [[chat-id seen-id]] (wcar* (car/zrangebyscore (str "msgs:" chat-id) (inc (Integer/parseInt seen-id)) Double/POSITIVE_INFINITY))) chat-info (->> partitioned-seen (mapv fetch-msgs) (zipmap partitioned-seen))] (reduce-kv (fn [m [chat-id seen-id] v] (when v (let [parsed-messages (map #(cc/parse-string % true) v) seen-id (:id (last parsed-messages)) _ (wcar* (car/zadd (str "chat:" chat-id) seen-id recipient)) min-id (wcar* (car/zrange (str "chat:" chat-id) 0 0 "withscores"))] (wcar* (car/zadd (str "seen:" recipient) seen-id chat-id)) (when min-id (wcar* (car/zremrangebyscore (str "msgs:" chat-id) 0 (last min-id)))) (assoc m chat-id parsed-messages)))) {} chat-info))) ;; Listing 6.27: The join_chat() function (defn join-chat [chat-id user] (let [message-id (-> (wcar* (car/get (str "ids:" chat-id))) Integer/parseInt)] (wcar* (car/zadd (str "chat:" chat-id) message-id user) (car/zadd (str "seen:" user) message-id chat-id)))) ;; Listing 6.28: The leave_chat() function (defn leave-chat [chat-id user] (wcar* (car/zrem (str "chat:" chat-id) user) (car/zrem (str "seen:" user) chat-id) (if (not (car/zcard (str "chat:" chat-id))) (do (car/del (str "msgs:" chat-id)) (car/del (str "ids:" chat-id))) (let [oldest (car/zrange (str "chat:" chat-id) 0 0 "withscores")] (car/zremrangebyscore (str "chat:" chat-id) 0 oldest)))))
true
(ns clojure-lang.chapter06 (:require [taoensso.carmine :as car] [cheshire.core :as cc] [clj-time.coerce :as ctc] [clj-time.core :as ct] [clojure.string :refer [starts-with?]] [clojure-lang.util :refer [wcar* server-conn]])) ;;;;;;;;;;;;;;;;;;;;;; ;; 6.1 Autocomplete ;; ;;;;;;;;;;;;;;;;;;;;;; ;; Listing 6.1: The add_update_contact() function (defn add-update-contact [user contact] (let [ac-list (str "recent:" user)] (wcar* (car/lrem ac-list 0 contact) (car/lpush ac-list contact) (car/ltrim ac-list 0 99)))) (defn remove-contact [user contact] (wcar* (car/lrem (str "recent:" user) contact))) ;; Listing 6.2: the fetch_autocomplete_list() function (defn fetch-autocomplete-list [user prefix] (let [list-key (str "recent:" user) candidates (wcar* (car/lrange list-key 0 -1))] (filter (fn [candidate] (starts-with? candidate prefix)) candidates))) ;; Listing 6.8: The acquire_lock() function (defn acquire-lock [lockname & {:keys [acquire-timeout] :or {acquire-timeout 10}}] (let [identifier (str (java.util.UUID/randomUUID)) end (+ (ctc/to-long (ct/now)) acquire-timeout)] (loop [] (cond (< end (ctc/to-long (ct/now))) false (= 1 (wcar* (car/setnx (str "lock:" lockname) identifier))) identifier :else (do (Thread/sleep 100) (recur)))))) ;; Listing 6.10: The release_lock() function (defn release-lock [lockname identifier] (let [lock-key (str "lock:" lockname)] (wcar* (car/watch lock-key) (if (= identifier (car/get lock-key)) (car/del lock-key) (car/unwatch))))) ;; Listing 6.9: The purchase_item_with_lock() function (defn purchase-item-with-lock [buyer-id item-id seller-id list-price] (let [buyer-key (str "users:" buyer-id) seller-key (str "users:" seller-id) item-key (format PI:KEY:<KEY>END_PI" item-id seller-id) inventory-key (str "inventory:" buyer-id) price (wcar* (car/zscore "market:" item-key)) funds (wcar* (car/hget buyer-key "funds")) lock-identifier (acquire-lock "market")] (when (and (= price list-price) (< price funds)) (car/atomic server-conn 5 (car/watch "market:" buyer-key) (car/multi) (car/hincrby seller-key "funds" (Integer/parseInt price)) (car/hincrby buyer-key "funds" (- (Integer/parseInt price))) (car/sadd inventory-key item-id) (car/zrem "market:" item-id))) (when lock-identifier (release-lock "market" lock-identifier)))) ;; Listing 6.11: The acquire_lock_with_timeout() function (defn acquire-lock-with-timeout [lockname & {:keys [acquire-timeout lock-timeout] :or {acquire-timeout 10 lock-timeout 10}}] (let [identifier (str (java.util.UUID/randomUUID)) end (+ (ctc/to-long (ct/now)) acquire-timeout)] (loop [] (cond (< end (ctc/to-long (ct/now))) false (= 1 (wcar* (car/setnx (str "lock:" lockname) identifier))) (do (wcar* (car/expire (str "lock:" lockname) lock-timeout)) identifier) :else (do (Thread/sleep 100) (recur)))))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; 6.3 Counting Semaphores ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Listing 6.12: The acquire_semaphore() function (defn acquire-semaphore [semname limit & {:keys [timeout] :or {timeout 10}}] (let [identifier (str (java.util.UUID/randomUUID)) now (ctc/to-long (ct/now)) result (wcar* (car/zremrangebyscore semname Double/NEGATIVE_INFINITY (- now timeout)) (car/zadd semname now identifier) (car/zrank semname identifier) limit)] (if (< (last result) limit) identifier (do (wcar* (car/zrem semname identifier)) nil)))) ;; Lisiting 6.13: The release_semaphore() function (defn release-semaphore [semname identifier] (wcar* (car/zrem semname identifier))) ;; Listing 6.14: The acquire_fair_semaphore() function (defn acquire-fair-semaphore [semname limit & {:keys [timeout] :or {timeout 10}}] (let [identifier (str (java.util.UUID/randomUUID)) czset (str semname ":owner") ctr (str semname ":counter") now (ctc/to-long (ct/now)) counter-result (wcar* (car/zremrangebyscore semname Double/NEGATIVE_INFINITY (- now timeout)) (car/zinterstore czset 2 czset semname "weights" 1 0) (car/incr ctr)) counter (last counter-result) acquire-sem-result (wcar* (car/zadd semname now identifier) (car/zadd czset counter identifier) (car/zrank czset identifier))] (if (< (last acquire-sem-result) limit) identifier (do (wcar* (car/zrem semname identifier) (car/zrem czset identifier)) nil)))) ;; Listing 6.15: The release_fair_semaphore() function (defn release-fair-semaphore [semname identifier] (-> (wcar* (car/zrem semname identifier) (car/zrem (str semname ":owner") identifier)) first (= 1))) ;; Listing 6.16: The refresh_fair_semaphore() function (defn refresh-fair-semaphore [semname identifier] (if (wcar* (car/zadd semname (ctc/to-long (ct/now)) identifier)) (do (release-fair-semaphore semname identifier) false) true)) ;; Listing 6.17: The acquire_semaphore_with_lock() function (defn acquire-semaphore-with-lock [semname limit & {:keys [timeout] :or {timeout 10}}] (let [identifier (acquire-lock semname :acquire-timeout 10)] (if identifier (try (acquire-fair-semaphore semname limit :timemout timeout) (finally (release-lock semname identifier)))))) ;;;;;;;;;;;;;;;;;;;;; ;; 6.4 Task Queues ;; ;;;;;;;;;;;;;;;;;;;;; ;; Listing 6.18: The send_sold_email_via_queue() function (defn send-sold-email-via-queue [seller item price buyer] (let [data {:seller_id seller :item_id item :price price :buyer_id buyer :time (ctc/to-long (ct/now))}] (wcar* (car/rpush "queue:email" (cc/generate-string data))))) ;; Listing 6.19: The process_sold_email_queue() function (defn process-sold-email-queue [] (let [packed (wcar* (car/blpop "queue:email" 30))] (if packed (println "Sending email with this content:" (cc/parse-string (last packed) true)) (println "No item in queue.")))) ;;;;;;;;;;;;;;;;;;;;;;;; ;; 6.5 Pull Messaging ;; ;;;;;;;;;;;;;;;;;;;;;;;; ;; Listing 6.25: The send_message() function (defn send-message [chat-id sender message] (let [identifier (acquire-lock (str "chat:" chat-id))] (if (not identifier) (throw (Exception. "Couldn't get the lock")) (do (try (let [mid (wcar* (car/incr (str ":ds:" chat-id))) ts (ctc/to-long (ct/now)) data (-> {:id mid :ts ts :sender sender :message message} cc/generate-string)] (wcar* (car/zadd (str "msgs:" chat-id) mid data))) (finally (release-lock (str "chat:" chat-id) identifier))) chat-id)))) ;; Listing 6.24: The create_chat() function (defn create-chat [sender recipients message & {:keys [chat-id]}] (let [chat-id (or chat-id (wcar* (car/incr "ids:chat"))) create-chat! (fn [recipient-id] (car/zadd (str "chat:" chat-id) 0 recipient-id) (car/zadd (str "seen:" recipient-id) 0 chat-id))] (wcar* (doseq [recipient recipients] (create-chat! recipient))) (send-message chat-id sender message))) ;; Listing 6.26: The fecth_pending_messages() function (defn fetch-pending-messages [recipient] (let [seen (wcar* (car/zrange (str "seen:" recipient) 0 -1 "withscores")) partitioned-seen (partition 2 seen) fetch-msgs (fn [[chat-id seen-id]] (wcar* (car/zrangebyscore (str "msgs:" chat-id) (inc (Integer/parseInt seen-id)) Double/POSITIVE_INFINITY))) chat-info (->> partitioned-seen (mapv fetch-msgs) (zipmap partitioned-seen))] (reduce-kv (fn [m [chat-id seen-id] v] (when v (let [parsed-messages (map #(cc/parse-string % true) v) seen-id (:id (last parsed-messages)) _ (wcar* (car/zadd (str "chat:" chat-id) seen-id recipient)) min-id (wcar* (car/zrange (str "chat:" chat-id) 0 0 "withscores"))] (wcar* (car/zadd (str "seen:" recipient) seen-id chat-id)) (when min-id (wcar* (car/zremrangebyscore (str "msgs:" chat-id) 0 (last min-id)))) (assoc m chat-id parsed-messages)))) {} chat-info))) ;; Listing 6.27: The join_chat() function (defn join-chat [chat-id user] (let [message-id (-> (wcar* (car/get (str "ids:" chat-id))) Integer/parseInt)] (wcar* (car/zadd (str "chat:" chat-id) message-id user) (car/zadd (str "seen:" user) message-id chat-id)))) ;; Listing 6.28: The leave_chat() function (defn leave-chat [chat-id user] (wcar* (car/zrem (str "chat:" chat-id) user) (car/zrem (str "seen:" user) chat-id) (if (not (car/zcard (str "chat:" chat-id))) (do (car/del (str "msgs:" chat-id)) (car/del (str "ids:" chat-id))) (let [oldest (car/zrange (str "chat:" chat-id) 0 0 "withscores")] (car/zremrangebyscore (str "chat:" chat-id) 0 oldest)))))
[ { "context": ".)\n content-ivan {:crux.db/id :ivan :name \"Ivan\"}]\n (t/testing \"put\"\n (let [tx (fix/submi", "end": 1413, "score": 0.8515595197677612, "start": 1409, "tag": "NAME", "value": "Ivan" }, { "context": "me]])]\n (t/is (= {:crux.db/id :ivan :name \"Ivan\"}\n (api/entity (api/db *api* {:cr", "end": 1564, "score": 0.9997414350509644, "start": 1560, "tag": "NAME", "value": "Ivan" }, { "context": "tx *api* [[:crux.tx/put {:crux.db/id :ivan :name \"Ivan\"}]])]\n (t/is (= submitted-tx (api/await-tx *ap", "end": 2879, "score": 0.9992755651473999, "start": 2875, "tag": "NAME", "value": "Ivan" }, { "context": "s://adam.com\"\n doc {:crux.db/id id, :name \"Adam\"}\n submitted-tx (api/submit-tx *api* [[:cr", "end": 3286, "score": 0.999842643737793, "start": 3282, "tag": "NAME", "value": "Adam" }, { "context": "tx *api* [[:crux.tx/put {:crux.db/id :ivan :name \"Ivan\"} valid-time]\n ", "end": 3586, "score": 0.9987832307815552, "start": 3582, "tag": "NAME", "value": "Ivan" }, { "context": " :where [[e :name \"Ivan\"]]})))\n\n (t/is (= #{} (api/q (api/db *api* #", "end": 4148, "score": 0.9986743927001953, "start": 4144, "tag": "NAME", "value": "Ivan" }, { "context": "[e]\n :where [[e :name \"Ivan\"]]})))\n\n (t/testing \"query :in args\"\n ", "end": 4299, "score": 0.9983943700790405, "start": 4295, "tag": "NAME", "value": "Ivan" }, { "context": "[e :name n]]}\n \"Ivan\"))))\n (t/testing \"query ?pull [*]\"\n (", "end": 4583, "score": 0.9995326995849609, "start": 4579, "tag": "NAME", "value": "Ivan" }, { "context": "*]\"\n (t/is (= #{[{:crux.db/id :ivan :name \"Ivan\"}]}\n (api/q (api/db *api*)\n ", "end": 4674, "score": 0.9991560578346252, "start": 4670, "tag": "NAME", "value": "Ivan" }, { "context": "[*])]\n :where [[e :name \"Ivan\"]]}))))\n\n (t/testing \"query string\"\n ", "end": 4813, "score": 0.9993736743927002, "start": 4809, "tag": "NAME", "value": "Ivan" }, { "context": "[:ivan]} (api/q db \"{:find [e] :where [[e :name \\\"Ivan\\\"]]}\"))))\n\n (t/testing \"query vector\"\n ", "end": 4928, "score": 0.9992953538894653, "start": 4924, "tag": "NAME", "value": "Ivan" }, { "context": " :where [e :name \"Ivan\"]]))))\n\n (t/testing \"malformed query\"\n ", "end": 5081, "score": 0.9992594718933105, "start": 5077, "tag": "NAME", "value": "Ivan" }, { "context": " :where [[e :name \"Ivan\"]]})]\n (t/is (= '([:ivan])\n ", "end": 5476, "score": 0.9986971616744995, "start": 5472, "tag": "NAME", "value": "Ivan" }, { "context": "tx *api* [[:crux.tx/put {:crux.db/id :ivan :name \"Ivan\"} valid-time]])]\n (api/await-tx *api* submit", "end": 6552, "score": 0.9994337558746338, "start": 6548, "tag": "NAME", "value": "Ivan" }, { "context": "van)\n ivan {:crux.db/id :ivan :name \"Ivan\"}\n ivan-crux-id (c/new-id ivan)]\n ", "end": 6737, "score": 0.9993536472320557, "start": 6733, "tag": "NAME", "value": "Ivan" }, { "context": "-using-map-as-id\n (let [doc {:crux.db/id {:user \"Xwop1A7Xog4nD6AfhZaPgg\"} :name \"Adam\"}\n submitted-tx (api/submit-", "end": 7306, "score": 0.8372771143913269, "start": 7284, "tag": "USERNAME", "value": "Xwop1A7Xog4nD6AfhZaPgg" }, { "context": "rux.db/id {:user \"Xwop1A7Xog4nD6AfhZaPgg\"} :name \"Adam\"}\n submitted-tx (api/submit-tx *api* [[:cr", "end": 7320, "score": 0.9998229146003723, "start": 7316, "tag": "NAME", "value": "Adam" }, { "context": "-tx)\n (t/is (api/entity (api/db *api*) {:user \"Xwop1A7Xog4nD6AfhZaPgg\"}))\n (t/is (not-empty (api/entity-history (api", "end": 7493, "score": 0.8405563235282898, "start": 7471, "tag": "USERNAME", "value": "Xwop1A7Xog4nD6AfhZaPgg" }, { "context": "-empty (api/entity-history (api/db *api*) {:user \"Xwop1A7Xog4nD6AfhZaPgg\"} :asc)))))\n\n(t/deftest test-inva", "end": 7568, "score": 0.6072069406509399, "start": 7562, "tag": "USERNAME", "value": "Xwop1A" }, { "context": "(api/entity-history (api/db *api*) {:user \"Xwop1A7Xog4nD6AfhZaPgg\"} :asc)))))\n\n(t/deftest test-invali", "end": 7570, "score": 0.4913301169872284, "start": 7569, "tag": "USERNAME", "value": "X" }, { "context": ".)\n content-ivan {:crux.db/id :ivan :name \"Ivan\"}\n content-hash (str (c/new-id content-iva", "end": 7846, "score": 0.998111367225647, "start": 7842, "tag": "NAME", "value": "Ivan" }, { "context": "tx *api* [[:crux.tx/put {:crux.db/id :ivan :name \"Ivan\"}]])]\n (api/await-tx *api* submitted-tx))\n\n (", "end": 8488, "score": 0.997206449508667, "start": 8484, "tag": "NAME", "value": "Ivan" }, { "context": "RE { ?e <http://juxt.pro/crux/unqualified/name> \\\"Ivan\\\" }\"))))\n (finally\n (.shutDow", "end": 8883, "score": 0.9966440200805664, "start": 8879, "tag": "NAME", "value": "Ivan" }, { "context": "await-tx [[:crux.tx/put {:crux.db/id :ivan :name \"Ivan\"} valid-time]])]\n\n (t/testing \"tx-log\"\n (", "end": 9426, "score": 0.9994654655456543, "start": 9422, "tag": "NAME", "value": "Ivan" }, { "context": "new-id :ivan) (c/new-id {:crux.db/id :ivan :name \"Ivan\"}) valid-time]])]\n result))\n ", "end": 9788, "score": 0.9992967247962952, "start": 9784, "tag": "NAME", "value": "Ivan" }, { "context": "i/tx-ops [[:crux.tx/put {:crux.db/id :ivan :name \"Ivan\"} valid-time]])]\n result))\n ", "end": 10195, "score": 0.9993199110031128, "start": 10191, "tag": "NAME", "value": "Ivan" }, { "context": " [[:crux.tx/match :ivan {:crux.db/id :ivan :name \"Ivan2\"}]\n [:crux", "end": 10630, "score": 0.9809814095497131, "start": 10625, "tag": "NAME", "value": "Ivan2" }, { "context": " [:crux.tx/put {:crux.db/id :ivan :name \"Ivan3\"}]])]\n (t/is (false? (api/tx-committed? ", "end": 10719, "score": 0.9949039816856384, "start": 10714, "tag": "NAME", "value": "Ivan3" }, { "context": "new-id :ivan) (c/new-id {:crux.db/id :ivan :name \"Ivan\"}) valid-time]])]\n result))", "end": 11076, "score": 0.9981943368911743, "start": 11072, "tag": "NAME", "value": "Ivan" }, { "context": " [[:crux.tx/match :ivan {:crux.db/id :ivan :name \"Ivan\"}]\n [:cr", "end": 11224, "score": 0.998676061630249, "start": 11220, "tag": "NAME", "value": "Ivan" }, { "context": " [:crux.tx/put {:crux.db/id :ivan :name \"Ivan3\"}]])]\n (t/is (true? (api/tx-committed?", "end": 11315, "score": 0.9892813563346863, "start": 11310, "tag": "NAME", "value": "Ivan3" }, { "context": " (let [doc (merge {:crux.db/id :ivan, :name \"Ivan\"} m)]\n (merge (fix/submit+await-tx [", "end": 13981, "score": 0.9996500611305237, "start": 13977, "tag": "NAME", "value": "Ivan" }, { "context": "x/submit+await-tx [[:crux.tx/fn :put-ivan {:name \"Ivan\"}]])\n\n (t/is (= {:crux.db/id :ivan, :name ", "end": 20219, "score": 0.9687199592590332, "start": 20215, "tag": "NAME", "value": "Ivan" }, { "context": "}]])\n\n (t/is (= {:crux.db/id :ivan, :name \"Ivan\"}\n (api/entity (api/db *api*) :iv", "end": 20274, "score": 0.9994556307792664, "start": 20270, "tag": "NAME", "value": "Ivan" }, { "context": "ew-id :ivan) (c/new-id {:crux.db/id :ivan, :name \"Ivan\"})]]}\n (-> (db/fetch-docs (:doc", "end": 20680, "score": 0.9994220733642578, "start": 20676, "tag": "NAME", "value": "Ivan" } ]
crux-test/test/crux/api_test.clj
keytiong/crux
0
(ns crux.api-test (:require [clojure.test :as t] [crux.api :as api] [crux.codec :as c] [crux.db :as db] [crux.fixtures :as fix :refer [*api*]] [crux.fixtures.every-api :as every-api :refer [*node-type* *http-server-api*]] [crux.fixtures.http-server :as fh] [crux.fixtures.kafka :as fk] [crux.rdf :as rdf] [crux.tx :as tx] [crux.tx.event :as txe]) (:import [crux.api NodeOutOfSyncException ICruxAPI] java.time.Duration java.util.Date java.util.concurrent.ExecutorService org.eclipse.rdf4j.query.Binding org.eclipse.rdf4j.repository.RepositoryConnection org.eclipse.rdf4j.repository.sparql.SPARQLRepository)) (t/use-fixtures :once every-api/with-embedded-kafka-cluster) (t/use-fixtures :each every-api/with-each-api-implementation) (defmacro with-dbs [[db db-args] & body] `(do (t/testing "with open-db" (with-open [~db (api/open-db ~@db-args)] ~@body)) (t/testing "with db" (let [~db (api/db ~@db-args)] ~@body)) (when-not (= *node-type* :remote) (t/testing "with speculative db" (let [~db (api/with-tx (api/db ~@db-args) [])] ~@body))))) (t/deftest test-single-id (let [valid-time (Date.) content-ivan {:crux.db/id :ivan :name "Ivan"}] (t/testing "put" (let [tx (fix/submit+await-tx [[:crux.tx/put content-ivan valid-time]])] (t/is (= {:crux.db/id :ivan :name "Ivan"} (api/entity (api/db *api* {:crux.db/valid-time valid-time, :crux.tx/tx tx}) :ivan))))) (t/testing "delete" (let [delete-tx (api/submit-tx *api* [[:crux.tx/delete :ivan valid-time]])] (api/await-tx *api* delete-tx) (t/is (nil? (api/entity (api/db *api* {:crux.db/valid-time valid-time, :crux.tx/tx delete-tx}) :ivan))))))) (t/deftest test-empty-db (let [empty-db (api/db *api*)] (t/is (nil? (api/sync *api* (Duration/ofSeconds 10)))) (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo} #inst "2020"]]) (t/is (= {:crux.db/id :foo} (api/entity (api/db *api*) :foo))) ;; TODO we don't currently distinguish between 'give me empty DB' ;; and 'give me latest tx-time' on the HTTP API when the tx-time QP is nil/missing (when-not (= *node-type* :remote) (t/is (nil? (api/entity empty-db :foo))) (t/is (empty? (api/entity-history empty-db :foo :asc)))))) (t/deftest test-status (t/is (= (merge {:crux.index/index-version 18} (when (instance? crux.kafka.KafkaTxLog (:tx-log *api*)) {:crux.zk/zk-active? true})) (select-keys (api/status *api*) [:crux.index/index-version :crux.zk/zk-active?]))) (let [submitted-tx (api/submit-tx *api* [[:crux.tx/put {:crux.db/id :ivan :name "Ivan"}]])] (t/is (= submitted-tx (api/await-tx *api* submitted-tx))) (t/is (true? (api/tx-committed? *api* submitted-tx))) (let [status-map (api/status *api*)] (t/is (pos? (:crux.kv/estimate-num-keys status-map))) (t/is (= submitted-tx (api/latest-completed-tx *api*)))))) (t/deftest test-can-use-crux-ids (let [id #crux/id "https://adam.com" doc {:crux.db/id id, :name "Adam"} submitted-tx (api/submit-tx *api* [[:crux.tx/put doc]])] (api/await-tx *api* submitted-tx nil) (t/is (= doc (api/entity (api/db *api*) id))))) (t/deftest test-query (let [valid-time (Date.) submitted-tx (api/submit-tx *api* [[:crux.tx/put {:crux.db/id :ivan :name "Ivan"} valid-time] [:crux.tx/put {:crux.db/id :a :foo 1}] [:crux.tx/put {:crux.db/id :b :foo 1}] [:crux.tx/put {:crux.db/id :c :bar 2}]])] (t/is (= submitted-tx (api/await-tx *api* submitted-tx))) (t/is (true? (api/tx-committed? *api* submitted-tx))) (with-dbs [db (*api*)] (t/is (= #{[:ivan]} (api/q (api/db *api*) '{:find [e] :where [[e :name "Ivan"]]}))) (t/is (= #{} (api/q (api/db *api* #inst "1999") '{:find [e] :where [[e :name "Ivan"]]}))) (t/testing "query :in args" (t/is (= #{[:ivan]} (api/q (api/db *api*) '{:find [e] :in [n] :where [[e :name n]]} "Ivan")))) (t/testing "query ?pull [*]" (t/is (= #{[{:crux.db/id :ivan :name "Ivan"}]} (api/q (api/db *api*) '{:find [(pull e [*])] :where [[e :name "Ivan"]]})))) (t/testing "query string" (t/is (= #{[:ivan]} (api/q db "{:find [e] :where [[e :name \"Ivan\"]]}")))) (t/testing "query vector" (t/is (= #{[:ivan]} (api/q db '[:find e :where [e :name "Ivan"]])))) (t/testing "malformed query" (t/is (thrown-with-msg? IllegalArgumentException #"Query didn't match expected structure" (api/q db '{:in [$ e]})))) (t/testing "query with streaming result" (with-open [res (api/open-q db '{:find [e] :where [[e :name "Ivan"]]})] (t/is (= '([:ivan]) (iterator-seq res))))) (t/testing "concurrent streaming queries" (with-open [q1 (api/open-q db '{:find [e] :where [[e :crux.db/id]]}) q2 (api/open-q db '{:find [e] :where [[e :foo]]})] (let [qq1 (iterator-seq q1) qq2 (iterator-seq q2)] (t/is (= '([[:a] [:a]] [[:b] [:b]] [[:c] :crux.test/nil] [[:ivan] :crux.test/nil]) (doall (for [i (range 10) :let [v1 (nth qq1 i :crux.test/nil) v2 (nth qq2 i :crux.test/nil)] :while (or (not= v1 :crux.test/nil) (not= v2 :crux.test/nil))] [v1 v2])))))))))) (t/deftest test-history (t/testing "transaction" (let [valid-time (Date.) submitted-tx (api/submit-tx *api* [[:crux.tx/put {:crux.db/id :ivan :name "Ivan"} valid-time]])] (api/await-tx *api* submitted-tx) (with-dbs [db (*api*)] (let [entity-tx (api/entity-tx db :ivan) ivan {:crux.db/id :ivan :name "Ivan"} ivan-crux-id (c/new-id ivan)] (t/is (= (merge submitted-tx {:crux.db/id (c/new-id :ivan) :crux.db/content-hash ivan-crux-id :crux.db/valid-time valid-time}) entity-tx)) (t/is (= [(dissoc entity-tx :crux.db/id)] (api/entity-history db :ivan :asc))) (t/is (nil? (api/entity-tx (api/db *api* #inst "1999") :ivan)))))))) (t/deftest test-can-write-entity-using-map-as-id (let [doc {:crux.db/id {:user "Xwop1A7Xog4nD6AfhZaPgg"} :name "Adam"} submitted-tx (api/submit-tx *api* [[:crux.tx/put doc]])] (api/await-tx *api* submitted-tx) (t/is (api/entity (api/db *api*) {:user "Xwop1A7Xog4nD6AfhZaPgg"})) (t/is (not-empty (api/entity-history (api/db *api*) {:user "Xwop1A7Xog4nD6AfhZaPgg"} :asc))))) (t/deftest test-invalid-doc (t/is (thrown? IllegalArgumentException (api/submit-tx *api* [[:crux.tx/put {}]])))) (t/deftest test-content-hash-invalid (let [valid-time (Date.) content-ivan {:crux.db/id :ivan :name "Ivan"} content-hash (str (c/new-id content-ivan))] (t/is (thrown-with-msg? IllegalArgumentException #"invalid doc" (api/submit-tx *api* [[:crux.tx/put content-hash valid-time]]))))) (defn execute-sparql [^RepositoryConnection conn q] (with-open [tq (.evaluate (.prepareTupleQuery conn q))] (set ((fn step [] (when (.hasNext tq) (cons (mapv #(rdf/rdf->clj (.getValue ^Binding %)) (.next tq)) (lazy-seq (step))))))))) (t/deftest test-sparql (let [submitted-tx (api/submit-tx *api* [[:crux.tx/put {:crux.db/id :ivan :name "Ivan"}]])] (api/await-tx *api* submitted-tx)) (t/testing "SPARQL query" (when (bound? #'fh/*api-url*) (let [repo (SPARQLRepository. (str fh/*api-url* "/_crux/sparql"))] (try (.initialize repo) (with-open [conn (.getConnection repo)] (t/is (= #{[:ivan]} (execute-sparql conn "SELECT ?e WHERE { ?e <http://juxt.pro/crux/unqualified/name> \"Ivan\" }")))) (finally (.shutDown repo))))))) (t/deftest test-adding-back-evicted-document (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo}]]) (t/is (api/entity (api/db *api*) :foo)) (fix/submit+await-tx [[:crux.tx/evict :foo]]) (t/is (nil? (api/entity (api/db *api*) :foo))) (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo}]]) (t/is (api/entity (api/db *api*) :foo))) (t/deftest test-tx-log (let [valid-time (Date.) tx1 (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :ivan :name "Ivan"} valid-time]])] (t/testing "tx-log" (with-open [tx-log-iterator (api/open-tx-log *api* nil false)] (let [result (iterator-seq tx-log-iterator)] (t/is (not (realized? result))) (t/is (= [(assoc tx1 :crux.tx.event/tx-events [[:crux.tx/put (c/new-id :ivan) (c/new-id {:crux.db/id :ivan :name "Ivan"}) valid-time]])] result)) (t/is (realized? result)))) (t/testing "with ops" (with-open [tx-log-iterator (api/open-tx-log *api* nil true)] (let [result (iterator-seq tx-log-iterator)] (t/is (not (realized? result))) (t/is (= [(assoc tx1 :crux.api/tx-ops [[:crux.tx/put {:crux.db/id :ivan :name "Ivan"} valid-time]])] result)) (t/is (realized? result))))) (t/testing "from tx id - doesnt't include itself" (with-open [tx-log-iterator (api/open-tx-log *api* (::tx/tx-id tx1) false)] (t/is (empty? (iterator-seq tx-log-iterator))))) (t/testing "tx log skips failed transactions" (let [tx2 (fix/submit+await-tx [[:crux.tx/match :ivan {:crux.db/id :ivan :name "Ivan2"}] [:crux.tx/put {:crux.db/id :ivan :name "Ivan3"}]])] (t/is (false? (api/tx-committed? *api* tx2))) (with-open [tx-log-iterator (api/open-tx-log *api* nil false)] (let [result (iterator-seq tx-log-iterator)] (t/is (= [(assoc tx1 :crux.tx.event/tx-events [[:crux.tx/put (c/new-id :ivan) (c/new-id {:crux.db/id :ivan :name "Ivan"}) valid-time]])] result)))) (let [tx3 (fix/submit+await-tx [[:crux.tx/match :ivan {:crux.db/id :ivan :name "Ivan"}] [:crux.tx/put {:crux.db/id :ivan :name "Ivan3"}]])] (t/is (true? (api/tx-committed? *api* tx3))) (with-open [tx-log-iterator (api/open-tx-log *api* nil false)] (let [result (iterator-seq tx-log-iterator)] (t/is (= 2 (count result)))))))) (t/testing "from tx id - doesn't include items <= `after-tx-id`" (with-open [tx-log-iterator (api/open-tx-log *api* (::tx/tx-id tx1) false)] (t/is (= 1 (count (iterator-seq tx-log-iterator)))))) (t/testing "match includes eid" (let [tx (fix/submit+await-tx [[:crux.tx/match :foo nil]])] (with-open [tx-log (api/open-tx-log *api* (dec (:crux.tx/tx-id tx)) true)] (t/is (= [:crux.tx/match (c/new-id :foo) (c/new-id nil)] (-> (iterator-seq tx-log) first :crux.api/tx-ops first)))))) ;; Intermittent failure on Kafka, see #1256 (when-not (contains? #{:local-kafka :local-kafka-transit} *node-type*) (t/testing "tx fns return with-ops? correctly" (let [tx4 (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :jack :age 21}] [:crux.tx/put {:crux.db/id :increment-age :crux.db/fn '(fn [ctx eid] (let [db (crux.api/db ctx) entity (crux.api/entity db eid)] [[:crux.tx/put (update entity :age inc)]]))}] [:crux.tx/put {:crux.db/id :increment-age-2 :crux.db/fn '(fn [ctx eid] [[:crux.tx/fn :increment-age eid]])}] [:crux.tx/fn :increment-age-2 :jack]])] (t/is (true? (api/tx-committed? *api* tx4))) (with-open [tx-log-iterator (api/open-tx-log *api* nil true)] (let [tx-ops (-> tx-log-iterator iterator-seq last :crux.api/tx-ops)] (t/is (= [:crux.tx/fn (c/new-id :increment-age-2) {:crux.api/tx-ops [[:crux.tx/fn (c/new-id :increment-age) {:crux.api/tx-ops [[:crux.tx/put {:crux.db/id :jack, :age 22}]]}]]}] (last tx-ops))))))))))) (t/deftest test-history-api (letfn [(submit-ivan [m valid-time] (let [doc (merge {:crux.db/id :ivan, :name "Ivan"} m)] (merge (fix/submit+await-tx [[:crux.tx/put doc valid-time]]) {:crux.db/doc doc :crux.db/valid-time valid-time :crux.db/content-hash (c/new-id doc)})))] (let [v1 (submit-ivan {:version 1} #inst "2019-02-01") v2 (submit-ivan {:version 2} #inst "2019-02-02") v3 (submit-ivan {:version 3} #inst "2019-02-03") v2-corrected (submit-ivan {:version 2, :corrected? true} #inst "2019-02-02")] (with-dbs [db (*api* #inst "2019-02-03")] (t/is (= [v1 v2-corrected v3] (api/entity-history db :ivan :asc {:with-docs? true}))) (t/is (= [v3 v2-corrected v1] (api/entity-history db :ivan :desc {:with-docs? true}))) (with-open [history-asc (api/open-entity-history db :ivan :asc {:with-docs? true}) history-desc (api/open-entity-history db :ivan :desc {:with-docs? true})] (t/is (= [v1 v2-corrected v3] (iterator-seq history-asc))) (t/is (= [v3 v2-corrected v1] (iterator-seq history-desc))))) (with-dbs [db (*api* #inst "2019-02-02")] (t/is (= [v1 v2-corrected] (api/entity-history db :ivan :asc {:with-docs? true}))) (t/is (= [v2-corrected v1] (api/entity-history db :ivan :desc {:with-docs? true})))) (with-dbs [db (*api* #inst "2019-01-31")] (t/is (empty? (api/entity-history db :ivan :asc))) (t/is (empty? (api/entity-history db :ivan :desc))) (with-open [history-asc (api/open-entity-history db :ivan :asc) history-desc (api/open-entity-history db :ivan :desc)] (t/is (empty? (iterator-seq history-asc))) (t/is (empty? (iterator-seq history-desc))))) (with-dbs [db (*api* #inst "2019-02-04")] (with-open [history-asc (api/open-entity-history db :ivan :asc {:with-docs? true}) history-desc (api/open-entity-history db :ivan :desc {:with-docs? true})] (t/is (= [v1 v2-corrected v3] (iterator-seq history-asc))) (t/is (= [v3 v2-corrected v1] (iterator-seq history-desc))))) (with-dbs [db (*api* {:crux.db/valid-time #inst "2019-02-04", :crux.tx/tx-time #inst "2019-01-31"})] (t/is (empty? (api/entity-history db :ivan :asc))) (t/is (empty? (api/entity-history db :ivan :desc)))) (with-dbs [db (*api* {:crux.db/valid-time #inst "2019-02-02", :crux.tx/tx v2})] (with-open [history-asc (api/open-entity-history db :ivan :asc {:with-docs? true}) history-desc (api/open-entity-history db :ivan :desc {:with-docs? true})] (t/is (= [v1 v2] (iterator-seq history-asc))) (t/is (= [v2 v1] (iterator-seq history-desc))))) (with-dbs [db (*api* {:crux.db/valid-time #inst "2019-02-03", :crux.tx/tx v2})] (t/is (= [v1 v2] (api/entity-history db :ivan :asc {:with-docs? true}))) (t/is (= [v2 v1] (api/entity-history db :ivan :desc {:with-docs? true}))))))) (t/deftest test-db-throws-if-future-tx-time-provided-546 (let [{:keys [^Date crux.tx/tx-time]} (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo}]]) the-future (Date. (+ (.getTime tx-time) 10000))] (t/is (thrown? NodeOutOfSyncException (api/db *api* the-future the-future))))) (t/deftest test-db-is-a-snapshot (let [tx (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo, :count 0}]]) db (api/db *api*)] (t/is (= tx (:crux.tx/tx (api/db-basis db)))) (t/is (= {:crux.db/id :foo, :count 0} (api/entity db :foo))) (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo, :count 1}]]) (t/is (= {:crux.db/id :foo, :count 0} (api/entity db :foo))))) (t/deftest test-latest-submitted-tx (t/is (nil? (api/latest-submitted-tx *api*))) (let [{:keys [crux.tx/tx-id] :as tx} (api/submit-tx *api* [[:crux.tx/put {:crux.db/id :foo}]])] (t/is (= {:crux.tx/tx-id tx-id} (api/latest-submitted-tx *api*)))) (api/sync *api*) (t/is (= {:crux.db/id :foo} (api/entity (api/db *api*) :foo)))) (t/deftest test-listen-for-indexed-txs (when-not (contains? (set t/*testing-contexts*) (str :remote)) (let [!events (atom [])] (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo}]]) (let [[bar-tx baz-tx] (with-open [_ (api/listen *api* {:crux/event-type :crux/indexed-tx :with-tx-ops? true} (fn [evt] (swap! !events conj evt)))] (let [bar-tx (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :bar}]]) baz-tx (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :baz}]])] (Thread/sleep 100) [bar-tx baz-tx]))] (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :ivan}]]) (Thread/sleep 100) (t/is (= [(merge {:crux/event-type :crux/indexed-tx, :committed? true :crux/tx-ops [[:crux.tx/put {:crux.db/id :bar}]]} bar-tx) (merge {:crux/event-type :crux/indexed-tx, :committed? true :crux/tx-ops [[:crux.tx/put {:crux.db/id :baz}]]} baz-tx)] @!events)))))) (t/deftest test-tx-fn-replacing-arg-docs-866 ;; Intermittent failure on Kafka, see #1256 (when-not (contains? #{:local-kafka :local-kafka-transit} *node-type*) (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :put-ivan :crux.db/fn '(fn [ctx doc] [[:crux.tx/put (assoc doc :crux.db/id :ivan)]])}]]) (with-redefs [tx/tx-fn-eval-cache (memoize eval)] (t/testing "replaces args doc with resulting ops" (fix/submit+await-tx [[:crux.tx/fn :put-ivan {:name "Ivan"}]]) (t/is (= {:crux.db/id :ivan, :name "Ivan"} (api/entity (api/db *api*) :ivan))) (let [*server-api* (or *http-server-api* *api*) arg-doc-id (with-open [tx-log (db/open-tx-log (:tx-log *server-api*) nil)] (-> (iterator-seq tx-log) last ::txe/tx-events first last))] (t/is (= {:crux.db.fn/tx-events [[:crux.tx/put (c/new-id :ivan) (c/new-id {:crux.db/id :ivan, :name "Ivan"})]]} (-> (db/fetch-docs (:document-store *server-api*) #{arg-doc-id}) (get arg-doc-id) (dissoc :crux.db/id))))))))) (t/deftest test-await-tx (when-not (= *node-type* :remote) (t/testing "timeout outputs properly" (let [tx (api/submit-tx *api* (for [n (range 100)] [:crux.tx/put {:crux.db/id (str "test-" n)}]))] (t/is (thrown-with-msg? java.util.concurrent.TimeoutException #"Timed out waiting for: #:crux.tx" (api/await-tx *api* tx (Duration/ofNanos 1)))))))) (t/deftest missing-doc-halts-tx-ingestion (when-not (contains? #{:remote} *node-type*) (let [tx (db/submit-tx (:tx-log *api*) [[:crux.tx/put (c/new-id :foo) (c/new-id {:crux.db/id :foo})]])] (t/is (thrown-with-msg? IllegalStateException #"missing docs" (try (api/await-tx *api* tx (Duration/ofMillis 5000)) (catch Exception e (throw (.getCause e))))))))) (t/deftest round-trips-clobs ;; ensure that anyone changing this also checks this test (t/is (= 224 @#'c/max-value-index-length)) (let [clob (pr-str (range 1000)) clob-doc {:crux.db/id :clob, :clob clob}] (fix/submit+await-tx [[:crux.tx/put clob-doc]]) (let [db (api/db *api*)] (t/is (= #{[clob]} (api/q db '{:find [?clob] :where [[?e :clob ?clob]]}))) (t/is (= #{[clob-doc]} (api/q db '{:find [(pull ?e [*])] :where [[?e :clob]]}))) (t/is (= clob-doc (api/entity db :clob))))))
86705
(ns crux.api-test (:require [clojure.test :as t] [crux.api :as api] [crux.codec :as c] [crux.db :as db] [crux.fixtures :as fix :refer [*api*]] [crux.fixtures.every-api :as every-api :refer [*node-type* *http-server-api*]] [crux.fixtures.http-server :as fh] [crux.fixtures.kafka :as fk] [crux.rdf :as rdf] [crux.tx :as tx] [crux.tx.event :as txe]) (:import [crux.api NodeOutOfSyncException ICruxAPI] java.time.Duration java.util.Date java.util.concurrent.ExecutorService org.eclipse.rdf4j.query.Binding org.eclipse.rdf4j.repository.RepositoryConnection org.eclipse.rdf4j.repository.sparql.SPARQLRepository)) (t/use-fixtures :once every-api/with-embedded-kafka-cluster) (t/use-fixtures :each every-api/with-each-api-implementation) (defmacro with-dbs [[db db-args] & body] `(do (t/testing "with open-db" (with-open [~db (api/open-db ~@db-args)] ~@body)) (t/testing "with db" (let [~db (api/db ~@db-args)] ~@body)) (when-not (= *node-type* :remote) (t/testing "with speculative db" (let [~db (api/with-tx (api/db ~@db-args) [])] ~@body))))) (t/deftest test-single-id (let [valid-time (Date.) content-ivan {:crux.db/id :ivan :name "<NAME>"}] (t/testing "put" (let [tx (fix/submit+await-tx [[:crux.tx/put content-ivan valid-time]])] (t/is (= {:crux.db/id :ivan :name "<NAME>"} (api/entity (api/db *api* {:crux.db/valid-time valid-time, :crux.tx/tx tx}) :ivan))))) (t/testing "delete" (let [delete-tx (api/submit-tx *api* [[:crux.tx/delete :ivan valid-time]])] (api/await-tx *api* delete-tx) (t/is (nil? (api/entity (api/db *api* {:crux.db/valid-time valid-time, :crux.tx/tx delete-tx}) :ivan))))))) (t/deftest test-empty-db (let [empty-db (api/db *api*)] (t/is (nil? (api/sync *api* (Duration/ofSeconds 10)))) (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo} #inst "2020"]]) (t/is (= {:crux.db/id :foo} (api/entity (api/db *api*) :foo))) ;; TODO we don't currently distinguish between 'give me empty DB' ;; and 'give me latest tx-time' on the HTTP API when the tx-time QP is nil/missing (when-not (= *node-type* :remote) (t/is (nil? (api/entity empty-db :foo))) (t/is (empty? (api/entity-history empty-db :foo :asc)))))) (t/deftest test-status (t/is (= (merge {:crux.index/index-version 18} (when (instance? crux.kafka.KafkaTxLog (:tx-log *api*)) {:crux.zk/zk-active? true})) (select-keys (api/status *api*) [:crux.index/index-version :crux.zk/zk-active?]))) (let [submitted-tx (api/submit-tx *api* [[:crux.tx/put {:crux.db/id :ivan :name "<NAME>"}]])] (t/is (= submitted-tx (api/await-tx *api* submitted-tx))) (t/is (true? (api/tx-committed? *api* submitted-tx))) (let [status-map (api/status *api*)] (t/is (pos? (:crux.kv/estimate-num-keys status-map))) (t/is (= submitted-tx (api/latest-completed-tx *api*)))))) (t/deftest test-can-use-crux-ids (let [id #crux/id "https://adam.com" doc {:crux.db/id id, :name "<NAME>"} submitted-tx (api/submit-tx *api* [[:crux.tx/put doc]])] (api/await-tx *api* submitted-tx nil) (t/is (= doc (api/entity (api/db *api*) id))))) (t/deftest test-query (let [valid-time (Date.) submitted-tx (api/submit-tx *api* [[:crux.tx/put {:crux.db/id :ivan :name "<NAME>"} valid-time] [:crux.tx/put {:crux.db/id :a :foo 1}] [:crux.tx/put {:crux.db/id :b :foo 1}] [:crux.tx/put {:crux.db/id :c :bar 2}]])] (t/is (= submitted-tx (api/await-tx *api* submitted-tx))) (t/is (true? (api/tx-committed? *api* submitted-tx))) (with-dbs [db (*api*)] (t/is (= #{[:ivan]} (api/q (api/db *api*) '{:find [e] :where [[e :name "<NAME>"]]}))) (t/is (= #{} (api/q (api/db *api* #inst "1999") '{:find [e] :where [[e :name "<NAME>"]]}))) (t/testing "query :in args" (t/is (= #{[:ivan]} (api/q (api/db *api*) '{:find [e] :in [n] :where [[e :name n]]} "<NAME>")))) (t/testing "query ?pull [*]" (t/is (= #{[{:crux.db/id :ivan :name "<NAME>"}]} (api/q (api/db *api*) '{:find [(pull e [*])] :where [[e :name "<NAME>"]]})))) (t/testing "query string" (t/is (= #{[:ivan]} (api/q db "{:find [e] :where [[e :name \"<NAME>\"]]}")))) (t/testing "query vector" (t/is (= #{[:ivan]} (api/q db '[:find e :where [e :name "<NAME>"]])))) (t/testing "malformed query" (t/is (thrown-with-msg? IllegalArgumentException #"Query didn't match expected structure" (api/q db '{:in [$ e]})))) (t/testing "query with streaming result" (with-open [res (api/open-q db '{:find [e] :where [[e :name "<NAME>"]]})] (t/is (= '([:ivan]) (iterator-seq res))))) (t/testing "concurrent streaming queries" (with-open [q1 (api/open-q db '{:find [e] :where [[e :crux.db/id]]}) q2 (api/open-q db '{:find [e] :where [[e :foo]]})] (let [qq1 (iterator-seq q1) qq2 (iterator-seq q2)] (t/is (= '([[:a] [:a]] [[:b] [:b]] [[:c] :crux.test/nil] [[:ivan] :crux.test/nil]) (doall (for [i (range 10) :let [v1 (nth qq1 i :crux.test/nil) v2 (nth qq2 i :crux.test/nil)] :while (or (not= v1 :crux.test/nil) (not= v2 :crux.test/nil))] [v1 v2])))))))))) (t/deftest test-history (t/testing "transaction" (let [valid-time (Date.) submitted-tx (api/submit-tx *api* [[:crux.tx/put {:crux.db/id :ivan :name "<NAME>"} valid-time]])] (api/await-tx *api* submitted-tx) (with-dbs [db (*api*)] (let [entity-tx (api/entity-tx db :ivan) ivan {:crux.db/id :ivan :name "<NAME>"} ivan-crux-id (c/new-id ivan)] (t/is (= (merge submitted-tx {:crux.db/id (c/new-id :ivan) :crux.db/content-hash ivan-crux-id :crux.db/valid-time valid-time}) entity-tx)) (t/is (= [(dissoc entity-tx :crux.db/id)] (api/entity-history db :ivan :asc))) (t/is (nil? (api/entity-tx (api/db *api* #inst "1999") :ivan)))))))) (t/deftest test-can-write-entity-using-map-as-id (let [doc {:crux.db/id {:user "Xwop1A7Xog4nD6AfhZaPgg"} :name "<NAME>"} submitted-tx (api/submit-tx *api* [[:crux.tx/put doc]])] (api/await-tx *api* submitted-tx) (t/is (api/entity (api/db *api*) {:user "Xwop1A7Xog4nD6AfhZaPgg"})) (t/is (not-empty (api/entity-history (api/db *api*) {:user "Xwop1A7Xog4nD6AfhZaPgg"} :asc))))) (t/deftest test-invalid-doc (t/is (thrown? IllegalArgumentException (api/submit-tx *api* [[:crux.tx/put {}]])))) (t/deftest test-content-hash-invalid (let [valid-time (Date.) content-ivan {:crux.db/id :ivan :name "<NAME>"} content-hash (str (c/new-id content-ivan))] (t/is (thrown-with-msg? IllegalArgumentException #"invalid doc" (api/submit-tx *api* [[:crux.tx/put content-hash valid-time]]))))) (defn execute-sparql [^RepositoryConnection conn q] (with-open [tq (.evaluate (.prepareTupleQuery conn q))] (set ((fn step [] (when (.hasNext tq) (cons (mapv #(rdf/rdf->clj (.getValue ^Binding %)) (.next tq)) (lazy-seq (step))))))))) (t/deftest test-sparql (let [submitted-tx (api/submit-tx *api* [[:crux.tx/put {:crux.db/id :ivan :name "<NAME>"}]])] (api/await-tx *api* submitted-tx)) (t/testing "SPARQL query" (when (bound? #'fh/*api-url*) (let [repo (SPARQLRepository. (str fh/*api-url* "/_crux/sparql"))] (try (.initialize repo) (with-open [conn (.getConnection repo)] (t/is (= #{[:ivan]} (execute-sparql conn "SELECT ?e WHERE { ?e <http://juxt.pro/crux/unqualified/name> \"<NAME>\" }")))) (finally (.shutDown repo))))))) (t/deftest test-adding-back-evicted-document (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo}]]) (t/is (api/entity (api/db *api*) :foo)) (fix/submit+await-tx [[:crux.tx/evict :foo]]) (t/is (nil? (api/entity (api/db *api*) :foo))) (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo}]]) (t/is (api/entity (api/db *api*) :foo))) (t/deftest test-tx-log (let [valid-time (Date.) tx1 (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :ivan :name "<NAME>"} valid-time]])] (t/testing "tx-log" (with-open [tx-log-iterator (api/open-tx-log *api* nil false)] (let [result (iterator-seq tx-log-iterator)] (t/is (not (realized? result))) (t/is (= [(assoc tx1 :crux.tx.event/tx-events [[:crux.tx/put (c/new-id :ivan) (c/new-id {:crux.db/id :ivan :name "<NAME>"}) valid-time]])] result)) (t/is (realized? result)))) (t/testing "with ops" (with-open [tx-log-iterator (api/open-tx-log *api* nil true)] (let [result (iterator-seq tx-log-iterator)] (t/is (not (realized? result))) (t/is (= [(assoc tx1 :crux.api/tx-ops [[:crux.tx/put {:crux.db/id :ivan :name "<NAME>"} valid-time]])] result)) (t/is (realized? result))))) (t/testing "from tx id - doesnt't include itself" (with-open [tx-log-iterator (api/open-tx-log *api* (::tx/tx-id tx1) false)] (t/is (empty? (iterator-seq tx-log-iterator))))) (t/testing "tx log skips failed transactions" (let [tx2 (fix/submit+await-tx [[:crux.tx/match :ivan {:crux.db/id :ivan :name "<NAME>"}] [:crux.tx/put {:crux.db/id :ivan :name "<NAME>"}]])] (t/is (false? (api/tx-committed? *api* tx2))) (with-open [tx-log-iterator (api/open-tx-log *api* nil false)] (let [result (iterator-seq tx-log-iterator)] (t/is (= [(assoc tx1 :crux.tx.event/tx-events [[:crux.tx/put (c/new-id :ivan) (c/new-id {:crux.db/id :ivan :name "<NAME>"}) valid-time]])] result)))) (let [tx3 (fix/submit+await-tx [[:crux.tx/match :ivan {:crux.db/id :ivan :name "<NAME>"}] [:crux.tx/put {:crux.db/id :ivan :name "<NAME>"}]])] (t/is (true? (api/tx-committed? *api* tx3))) (with-open [tx-log-iterator (api/open-tx-log *api* nil false)] (let [result (iterator-seq tx-log-iterator)] (t/is (= 2 (count result)))))))) (t/testing "from tx id - doesn't include items <= `after-tx-id`" (with-open [tx-log-iterator (api/open-tx-log *api* (::tx/tx-id tx1) false)] (t/is (= 1 (count (iterator-seq tx-log-iterator)))))) (t/testing "match includes eid" (let [tx (fix/submit+await-tx [[:crux.tx/match :foo nil]])] (with-open [tx-log (api/open-tx-log *api* (dec (:crux.tx/tx-id tx)) true)] (t/is (= [:crux.tx/match (c/new-id :foo) (c/new-id nil)] (-> (iterator-seq tx-log) first :crux.api/tx-ops first)))))) ;; Intermittent failure on Kafka, see #1256 (when-not (contains? #{:local-kafka :local-kafka-transit} *node-type*) (t/testing "tx fns return with-ops? correctly" (let [tx4 (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :jack :age 21}] [:crux.tx/put {:crux.db/id :increment-age :crux.db/fn '(fn [ctx eid] (let [db (crux.api/db ctx) entity (crux.api/entity db eid)] [[:crux.tx/put (update entity :age inc)]]))}] [:crux.tx/put {:crux.db/id :increment-age-2 :crux.db/fn '(fn [ctx eid] [[:crux.tx/fn :increment-age eid]])}] [:crux.tx/fn :increment-age-2 :jack]])] (t/is (true? (api/tx-committed? *api* tx4))) (with-open [tx-log-iterator (api/open-tx-log *api* nil true)] (let [tx-ops (-> tx-log-iterator iterator-seq last :crux.api/tx-ops)] (t/is (= [:crux.tx/fn (c/new-id :increment-age-2) {:crux.api/tx-ops [[:crux.tx/fn (c/new-id :increment-age) {:crux.api/tx-ops [[:crux.tx/put {:crux.db/id :jack, :age 22}]]}]]}] (last tx-ops))))))))))) (t/deftest test-history-api (letfn [(submit-ivan [m valid-time] (let [doc (merge {:crux.db/id :ivan, :name "<NAME>"} m)] (merge (fix/submit+await-tx [[:crux.tx/put doc valid-time]]) {:crux.db/doc doc :crux.db/valid-time valid-time :crux.db/content-hash (c/new-id doc)})))] (let [v1 (submit-ivan {:version 1} #inst "2019-02-01") v2 (submit-ivan {:version 2} #inst "2019-02-02") v3 (submit-ivan {:version 3} #inst "2019-02-03") v2-corrected (submit-ivan {:version 2, :corrected? true} #inst "2019-02-02")] (with-dbs [db (*api* #inst "2019-02-03")] (t/is (= [v1 v2-corrected v3] (api/entity-history db :ivan :asc {:with-docs? true}))) (t/is (= [v3 v2-corrected v1] (api/entity-history db :ivan :desc {:with-docs? true}))) (with-open [history-asc (api/open-entity-history db :ivan :asc {:with-docs? true}) history-desc (api/open-entity-history db :ivan :desc {:with-docs? true})] (t/is (= [v1 v2-corrected v3] (iterator-seq history-asc))) (t/is (= [v3 v2-corrected v1] (iterator-seq history-desc))))) (with-dbs [db (*api* #inst "2019-02-02")] (t/is (= [v1 v2-corrected] (api/entity-history db :ivan :asc {:with-docs? true}))) (t/is (= [v2-corrected v1] (api/entity-history db :ivan :desc {:with-docs? true})))) (with-dbs [db (*api* #inst "2019-01-31")] (t/is (empty? (api/entity-history db :ivan :asc))) (t/is (empty? (api/entity-history db :ivan :desc))) (with-open [history-asc (api/open-entity-history db :ivan :asc) history-desc (api/open-entity-history db :ivan :desc)] (t/is (empty? (iterator-seq history-asc))) (t/is (empty? (iterator-seq history-desc))))) (with-dbs [db (*api* #inst "2019-02-04")] (with-open [history-asc (api/open-entity-history db :ivan :asc {:with-docs? true}) history-desc (api/open-entity-history db :ivan :desc {:with-docs? true})] (t/is (= [v1 v2-corrected v3] (iterator-seq history-asc))) (t/is (= [v3 v2-corrected v1] (iterator-seq history-desc))))) (with-dbs [db (*api* {:crux.db/valid-time #inst "2019-02-04", :crux.tx/tx-time #inst "2019-01-31"})] (t/is (empty? (api/entity-history db :ivan :asc))) (t/is (empty? (api/entity-history db :ivan :desc)))) (with-dbs [db (*api* {:crux.db/valid-time #inst "2019-02-02", :crux.tx/tx v2})] (with-open [history-asc (api/open-entity-history db :ivan :asc {:with-docs? true}) history-desc (api/open-entity-history db :ivan :desc {:with-docs? true})] (t/is (= [v1 v2] (iterator-seq history-asc))) (t/is (= [v2 v1] (iterator-seq history-desc))))) (with-dbs [db (*api* {:crux.db/valid-time #inst "2019-02-03", :crux.tx/tx v2})] (t/is (= [v1 v2] (api/entity-history db :ivan :asc {:with-docs? true}))) (t/is (= [v2 v1] (api/entity-history db :ivan :desc {:with-docs? true}))))))) (t/deftest test-db-throws-if-future-tx-time-provided-546 (let [{:keys [^Date crux.tx/tx-time]} (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo}]]) the-future (Date. (+ (.getTime tx-time) 10000))] (t/is (thrown? NodeOutOfSyncException (api/db *api* the-future the-future))))) (t/deftest test-db-is-a-snapshot (let [tx (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo, :count 0}]]) db (api/db *api*)] (t/is (= tx (:crux.tx/tx (api/db-basis db)))) (t/is (= {:crux.db/id :foo, :count 0} (api/entity db :foo))) (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo, :count 1}]]) (t/is (= {:crux.db/id :foo, :count 0} (api/entity db :foo))))) (t/deftest test-latest-submitted-tx (t/is (nil? (api/latest-submitted-tx *api*))) (let [{:keys [crux.tx/tx-id] :as tx} (api/submit-tx *api* [[:crux.tx/put {:crux.db/id :foo}]])] (t/is (= {:crux.tx/tx-id tx-id} (api/latest-submitted-tx *api*)))) (api/sync *api*) (t/is (= {:crux.db/id :foo} (api/entity (api/db *api*) :foo)))) (t/deftest test-listen-for-indexed-txs (when-not (contains? (set t/*testing-contexts*) (str :remote)) (let [!events (atom [])] (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo}]]) (let [[bar-tx baz-tx] (with-open [_ (api/listen *api* {:crux/event-type :crux/indexed-tx :with-tx-ops? true} (fn [evt] (swap! !events conj evt)))] (let [bar-tx (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :bar}]]) baz-tx (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :baz}]])] (Thread/sleep 100) [bar-tx baz-tx]))] (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :ivan}]]) (Thread/sleep 100) (t/is (= [(merge {:crux/event-type :crux/indexed-tx, :committed? true :crux/tx-ops [[:crux.tx/put {:crux.db/id :bar}]]} bar-tx) (merge {:crux/event-type :crux/indexed-tx, :committed? true :crux/tx-ops [[:crux.tx/put {:crux.db/id :baz}]]} baz-tx)] @!events)))))) (t/deftest test-tx-fn-replacing-arg-docs-866 ;; Intermittent failure on Kafka, see #1256 (when-not (contains? #{:local-kafka :local-kafka-transit} *node-type*) (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :put-ivan :crux.db/fn '(fn [ctx doc] [[:crux.tx/put (assoc doc :crux.db/id :ivan)]])}]]) (with-redefs [tx/tx-fn-eval-cache (memoize eval)] (t/testing "replaces args doc with resulting ops" (fix/submit+await-tx [[:crux.tx/fn :put-ivan {:name "<NAME>"}]]) (t/is (= {:crux.db/id :ivan, :name "<NAME>"} (api/entity (api/db *api*) :ivan))) (let [*server-api* (or *http-server-api* *api*) arg-doc-id (with-open [tx-log (db/open-tx-log (:tx-log *server-api*) nil)] (-> (iterator-seq tx-log) last ::txe/tx-events first last))] (t/is (= {:crux.db.fn/tx-events [[:crux.tx/put (c/new-id :ivan) (c/new-id {:crux.db/id :ivan, :name "<NAME>"})]]} (-> (db/fetch-docs (:document-store *server-api*) #{arg-doc-id}) (get arg-doc-id) (dissoc :crux.db/id))))))))) (t/deftest test-await-tx (when-not (= *node-type* :remote) (t/testing "timeout outputs properly" (let [tx (api/submit-tx *api* (for [n (range 100)] [:crux.tx/put {:crux.db/id (str "test-" n)}]))] (t/is (thrown-with-msg? java.util.concurrent.TimeoutException #"Timed out waiting for: #:crux.tx" (api/await-tx *api* tx (Duration/ofNanos 1)))))))) (t/deftest missing-doc-halts-tx-ingestion (when-not (contains? #{:remote} *node-type*) (let [tx (db/submit-tx (:tx-log *api*) [[:crux.tx/put (c/new-id :foo) (c/new-id {:crux.db/id :foo})]])] (t/is (thrown-with-msg? IllegalStateException #"missing docs" (try (api/await-tx *api* tx (Duration/ofMillis 5000)) (catch Exception e (throw (.getCause e))))))))) (t/deftest round-trips-clobs ;; ensure that anyone changing this also checks this test (t/is (= 224 @#'c/max-value-index-length)) (let [clob (pr-str (range 1000)) clob-doc {:crux.db/id :clob, :clob clob}] (fix/submit+await-tx [[:crux.tx/put clob-doc]]) (let [db (api/db *api*)] (t/is (= #{[clob]} (api/q db '{:find [?clob] :where [[?e :clob ?clob]]}))) (t/is (= #{[clob-doc]} (api/q db '{:find [(pull ?e [*])] :where [[?e :clob]]}))) (t/is (= clob-doc (api/entity db :clob))))))
true
(ns crux.api-test (:require [clojure.test :as t] [crux.api :as api] [crux.codec :as c] [crux.db :as db] [crux.fixtures :as fix :refer [*api*]] [crux.fixtures.every-api :as every-api :refer [*node-type* *http-server-api*]] [crux.fixtures.http-server :as fh] [crux.fixtures.kafka :as fk] [crux.rdf :as rdf] [crux.tx :as tx] [crux.tx.event :as txe]) (:import [crux.api NodeOutOfSyncException ICruxAPI] java.time.Duration java.util.Date java.util.concurrent.ExecutorService org.eclipse.rdf4j.query.Binding org.eclipse.rdf4j.repository.RepositoryConnection org.eclipse.rdf4j.repository.sparql.SPARQLRepository)) (t/use-fixtures :once every-api/with-embedded-kafka-cluster) (t/use-fixtures :each every-api/with-each-api-implementation) (defmacro with-dbs [[db db-args] & body] `(do (t/testing "with open-db" (with-open [~db (api/open-db ~@db-args)] ~@body)) (t/testing "with db" (let [~db (api/db ~@db-args)] ~@body)) (when-not (= *node-type* :remote) (t/testing "with speculative db" (let [~db (api/with-tx (api/db ~@db-args) [])] ~@body))))) (t/deftest test-single-id (let [valid-time (Date.) content-ivan {:crux.db/id :ivan :name "PI:NAME:<NAME>END_PI"}] (t/testing "put" (let [tx (fix/submit+await-tx [[:crux.tx/put content-ivan valid-time]])] (t/is (= {:crux.db/id :ivan :name "PI:NAME:<NAME>END_PI"} (api/entity (api/db *api* {:crux.db/valid-time valid-time, :crux.tx/tx tx}) :ivan))))) (t/testing "delete" (let [delete-tx (api/submit-tx *api* [[:crux.tx/delete :ivan valid-time]])] (api/await-tx *api* delete-tx) (t/is (nil? (api/entity (api/db *api* {:crux.db/valid-time valid-time, :crux.tx/tx delete-tx}) :ivan))))))) (t/deftest test-empty-db (let [empty-db (api/db *api*)] (t/is (nil? (api/sync *api* (Duration/ofSeconds 10)))) (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo} #inst "2020"]]) (t/is (= {:crux.db/id :foo} (api/entity (api/db *api*) :foo))) ;; TODO we don't currently distinguish between 'give me empty DB' ;; and 'give me latest tx-time' on the HTTP API when the tx-time QP is nil/missing (when-not (= *node-type* :remote) (t/is (nil? (api/entity empty-db :foo))) (t/is (empty? (api/entity-history empty-db :foo :asc)))))) (t/deftest test-status (t/is (= (merge {:crux.index/index-version 18} (when (instance? crux.kafka.KafkaTxLog (:tx-log *api*)) {:crux.zk/zk-active? true})) (select-keys (api/status *api*) [:crux.index/index-version :crux.zk/zk-active?]))) (let [submitted-tx (api/submit-tx *api* [[:crux.tx/put {:crux.db/id :ivan :name "PI:NAME:<NAME>END_PI"}]])] (t/is (= submitted-tx (api/await-tx *api* submitted-tx))) (t/is (true? (api/tx-committed? *api* submitted-tx))) (let [status-map (api/status *api*)] (t/is (pos? (:crux.kv/estimate-num-keys status-map))) (t/is (= submitted-tx (api/latest-completed-tx *api*)))))) (t/deftest test-can-use-crux-ids (let [id #crux/id "https://adam.com" doc {:crux.db/id id, :name "PI:NAME:<NAME>END_PI"} submitted-tx (api/submit-tx *api* [[:crux.tx/put doc]])] (api/await-tx *api* submitted-tx nil) (t/is (= doc (api/entity (api/db *api*) id))))) (t/deftest test-query (let [valid-time (Date.) submitted-tx (api/submit-tx *api* [[:crux.tx/put {:crux.db/id :ivan :name "PI:NAME:<NAME>END_PI"} valid-time] [:crux.tx/put {:crux.db/id :a :foo 1}] [:crux.tx/put {:crux.db/id :b :foo 1}] [:crux.tx/put {:crux.db/id :c :bar 2}]])] (t/is (= submitted-tx (api/await-tx *api* submitted-tx))) (t/is (true? (api/tx-committed? *api* submitted-tx))) (with-dbs [db (*api*)] (t/is (= #{[:ivan]} (api/q (api/db *api*) '{:find [e] :where [[e :name "PI:NAME:<NAME>END_PI"]]}))) (t/is (= #{} (api/q (api/db *api* #inst "1999") '{:find [e] :where [[e :name "PI:NAME:<NAME>END_PI"]]}))) (t/testing "query :in args" (t/is (= #{[:ivan]} (api/q (api/db *api*) '{:find [e] :in [n] :where [[e :name n]]} "PI:NAME:<NAME>END_PI")))) (t/testing "query ?pull [*]" (t/is (= #{[{:crux.db/id :ivan :name "PI:NAME:<NAME>END_PI"}]} (api/q (api/db *api*) '{:find [(pull e [*])] :where [[e :name "PI:NAME:<NAME>END_PI"]]})))) (t/testing "query string" (t/is (= #{[:ivan]} (api/q db "{:find [e] :where [[e :name \"PI:NAME:<NAME>END_PI\"]]}")))) (t/testing "query vector" (t/is (= #{[:ivan]} (api/q db '[:find e :where [e :name "PI:NAME:<NAME>END_PI"]])))) (t/testing "malformed query" (t/is (thrown-with-msg? IllegalArgumentException #"Query didn't match expected structure" (api/q db '{:in [$ e]})))) (t/testing "query with streaming result" (with-open [res (api/open-q db '{:find [e] :where [[e :name "PI:NAME:<NAME>END_PI"]]})] (t/is (= '([:ivan]) (iterator-seq res))))) (t/testing "concurrent streaming queries" (with-open [q1 (api/open-q db '{:find [e] :where [[e :crux.db/id]]}) q2 (api/open-q db '{:find [e] :where [[e :foo]]})] (let [qq1 (iterator-seq q1) qq2 (iterator-seq q2)] (t/is (= '([[:a] [:a]] [[:b] [:b]] [[:c] :crux.test/nil] [[:ivan] :crux.test/nil]) (doall (for [i (range 10) :let [v1 (nth qq1 i :crux.test/nil) v2 (nth qq2 i :crux.test/nil)] :while (or (not= v1 :crux.test/nil) (not= v2 :crux.test/nil))] [v1 v2])))))))))) (t/deftest test-history (t/testing "transaction" (let [valid-time (Date.) submitted-tx (api/submit-tx *api* [[:crux.tx/put {:crux.db/id :ivan :name "PI:NAME:<NAME>END_PI"} valid-time]])] (api/await-tx *api* submitted-tx) (with-dbs [db (*api*)] (let [entity-tx (api/entity-tx db :ivan) ivan {:crux.db/id :ivan :name "PI:NAME:<NAME>END_PI"} ivan-crux-id (c/new-id ivan)] (t/is (= (merge submitted-tx {:crux.db/id (c/new-id :ivan) :crux.db/content-hash ivan-crux-id :crux.db/valid-time valid-time}) entity-tx)) (t/is (= [(dissoc entity-tx :crux.db/id)] (api/entity-history db :ivan :asc))) (t/is (nil? (api/entity-tx (api/db *api* #inst "1999") :ivan)))))))) (t/deftest test-can-write-entity-using-map-as-id (let [doc {:crux.db/id {:user "Xwop1A7Xog4nD6AfhZaPgg"} :name "PI:NAME:<NAME>END_PI"} submitted-tx (api/submit-tx *api* [[:crux.tx/put doc]])] (api/await-tx *api* submitted-tx) (t/is (api/entity (api/db *api*) {:user "Xwop1A7Xog4nD6AfhZaPgg"})) (t/is (not-empty (api/entity-history (api/db *api*) {:user "Xwop1A7Xog4nD6AfhZaPgg"} :asc))))) (t/deftest test-invalid-doc (t/is (thrown? IllegalArgumentException (api/submit-tx *api* [[:crux.tx/put {}]])))) (t/deftest test-content-hash-invalid (let [valid-time (Date.) content-ivan {:crux.db/id :ivan :name "PI:NAME:<NAME>END_PI"} content-hash (str (c/new-id content-ivan))] (t/is (thrown-with-msg? IllegalArgumentException #"invalid doc" (api/submit-tx *api* [[:crux.tx/put content-hash valid-time]]))))) (defn execute-sparql [^RepositoryConnection conn q] (with-open [tq (.evaluate (.prepareTupleQuery conn q))] (set ((fn step [] (when (.hasNext tq) (cons (mapv #(rdf/rdf->clj (.getValue ^Binding %)) (.next tq)) (lazy-seq (step))))))))) (t/deftest test-sparql (let [submitted-tx (api/submit-tx *api* [[:crux.tx/put {:crux.db/id :ivan :name "PI:NAME:<NAME>END_PI"}]])] (api/await-tx *api* submitted-tx)) (t/testing "SPARQL query" (when (bound? #'fh/*api-url*) (let [repo (SPARQLRepository. (str fh/*api-url* "/_crux/sparql"))] (try (.initialize repo) (with-open [conn (.getConnection repo)] (t/is (= #{[:ivan]} (execute-sparql conn "SELECT ?e WHERE { ?e <http://juxt.pro/crux/unqualified/name> \"PI:NAME:<NAME>END_PI\" }")))) (finally (.shutDown repo))))))) (t/deftest test-adding-back-evicted-document (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo}]]) (t/is (api/entity (api/db *api*) :foo)) (fix/submit+await-tx [[:crux.tx/evict :foo]]) (t/is (nil? (api/entity (api/db *api*) :foo))) (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo}]]) (t/is (api/entity (api/db *api*) :foo))) (t/deftest test-tx-log (let [valid-time (Date.) tx1 (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :ivan :name "PI:NAME:<NAME>END_PI"} valid-time]])] (t/testing "tx-log" (with-open [tx-log-iterator (api/open-tx-log *api* nil false)] (let [result (iterator-seq tx-log-iterator)] (t/is (not (realized? result))) (t/is (= [(assoc tx1 :crux.tx.event/tx-events [[:crux.tx/put (c/new-id :ivan) (c/new-id {:crux.db/id :ivan :name "PI:NAME:<NAME>END_PI"}) valid-time]])] result)) (t/is (realized? result)))) (t/testing "with ops" (with-open [tx-log-iterator (api/open-tx-log *api* nil true)] (let [result (iterator-seq tx-log-iterator)] (t/is (not (realized? result))) (t/is (= [(assoc tx1 :crux.api/tx-ops [[:crux.tx/put {:crux.db/id :ivan :name "PI:NAME:<NAME>END_PI"} valid-time]])] result)) (t/is (realized? result))))) (t/testing "from tx id - doesnt't include itself" (with-open [tx-log-iterator (api/open-tx-log *api* (::tx/tx-id tx1) false)] (t/is (empty? (iterator-seq tx-log-iterator))))) (t/testing "tx log skips failed transactions" (let [tx2 (fix/submit+await-tx [[:crux.tx/match :ivan {:crux.db/id :ivan :name "PI:NAME:<NAME>END_PI"}] [:crux.tx/put {:crux.db/id :ivan :name "PI:NAME:<NAME>END_PI"}]])] (t/is (false? (api/tx-committed? *api* tx2))) (with-open [tx-log-iterator (api/open-tx-log *api* nil false)] (let [result (iterator-seq tx-log-iterator)] (t/is (= [(assoc tx1 :crux.tx.event/tx-events [[:crux.tx/put (c/new-id :ivan) (c/new-id {:crux.db/id :ivan :name "PI:NAME:<NAME>END_PI"}) valid-time]])] result)))) (let [tx3 (fix/submit+await-tx [[:crux.tx/match :ivan {:crux.db/id :ivan :name "PI:NAME:<NAME>END_PI"}] [:crux.tx/put {:crux.db/id :ivan :name "PI:NAME:<NAME>END_PI"}]])] (t/is (true? (api/tx-committed? *api* tx3))) (with-open [tx-log-iterator (api/open-tx-log *api* nil false)] (let [result (iterator-seq tx-log-iterator)] (t/is (= 2 (count result)))))))) (t/testing "from tx id - doesn't include items <= `after-tx-id`" (with-open [tx-log-iterator (api/open-tx-log *api* (::tx/tx-id tx1) false)] (t/is (= 1 (count (iterator-seq tx-log-iterator)))))) (t/testing "match includes eid" (let [tx (fix/submit+await-tx [[:crux.tx/match :foo nil]])] (with-open [tx-log (api/open-tx-log *api* (dec (:crux.tx/tx-id tx)) true)] (t/is (= [:crux.tx/match (c/new-id :foo) (c/new-id nil)] (-> (iterator-seq tx-log) first :crux.api/tx-ops first)))))) ;; Intermittent failure on Kafka, see #1256 (when-not (contains? #{:local-kafka :local-kafka-transit} *node-type*) (t/testing "tx fns return with-ops? correctly" (let [tx4 (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :jack :age 21}] [:crux.tx/put {:crux.db/id :increment-age :crux.db/fn '(fn [ctx eid] (let [db (crux.api/db ctx) entity (crux.api/entity db eid)] [[:crux.tx/put (update entity :age inc)]]))}] [:crux.tx/put {:crux.db/id :increment-age-2 :crux.db/fn '(fn [ctx eid] [[:crux.tx/fn :increment-age eid]])}] [:crux.tx/fn :increment-age-2 :jack]])] (t/is (true? (api/tx-committed? *api* tx4))) (with-open [tx-log-iterator (api/open-tx-log *api* nil true)] (let [tx-ops (-> tx-log-iterator iterator-seq last :crux.api/tx-ops)] (t/is (= [:crux.tx/fn (c/new-id :increment-age-2) {:crux.api/tx-ops [[:crux.tx/fn (c/new-id :increment-age) {:crux.api/tx-ops [[:crux.tx/put {:crux.db/id :jack, :age 22}]]}]]}] (last tx-ops))))))))))) (t/deftest test-history-api (letfn [(submit-ivan [m valid-time] (let [doc (merge {:crux.db/id :ivan, :name "PI:NAME:<NAME>END_PI"} m)] (merge (fix/submit+await-tx [[:crux.tx/put doc valid-time]]) {:crux.db/doc doc :crux.db/valid-time valid-time :crux.db/content-hash (c/new-id doc)})))] (let [v1 (submit-ivan {:version 1} #inst "2019-02-01") v2 (submit-ivan {:version 2} #inst "2019-02-02") v3 (submit-ivan {:version 3} #inst "2019-02-03") v2-corrected (submit-ivan {:version 2, :corrected? true} #inst "2019-02-02")] (with-dbs [db (*api* #inst "2019-02-03")] (t/is (= [v1 v2-corrected v3] (api/entity-history db :ivan :asc {:with-docs? true}))) (t/is (= [v3 v2-corrected v1] (api/entity-history db :ivan :desc {:with-docs? true}))) (with-open [history-asc (api/open-entity-history db :ivan :asc {:with-docs? true}) history-desc (api/open-entity-history db :ivan :desc {:with-docs? true})] (t/is (= [v1 v2-corrected v3] (iterator-seq history-asc))) (t/is (= [v3 v2-corrected v1] (iterator-seq history-desc))))) (with-dbs [db (*api* #inst "2019-02-02")] (t/is (= [v1 v2-corrected] (api/entity-history db :ivan :asc {:with-docs? true}))) (t/is (= [v2-corrected v1] (api/entity-history db :ivan :desc {:with-docs? true})))) (with-dbs [db (*api* #inst "2019-01-31")] (t/is (empty? (api/entity-history db :ivan :asc))) (t/is (empty? (api/entity-history db :ivan :desc))) (with-open [history-asc (api/open-entity-history db :ivan :asc) history-desc (api/open-entity-history db :ivan :desc)] (t/is (empty? (iterator-seq history-asc))) (t/is (empty? (iterator-seq history-desc))))) (with-dbs [db (*api* #inst "2019-02-04")] (with-open [history-asc (api/open-entity-history db :ivan :asc {:with-docs? true}) history-desc (api/open-entity-history db :ivan :desc {:with-docs? true})] (t/is (= [v1 v2-corrected v3] (iterator-seq history-asc))) (t/is (= [v3 v2-corrected v1] (iterator-seq history-desc))))) (with-dbs [db (*api* {:crux.db/valid-time #inst "2019-02-04", :crux.tx/tx-time #inst "2019-01-31"})] (t/is (empty? (api/entity-history db :ivan :asc))) (t/is (empty? (api/entity-history db :ivan :desc)))) (with-dbs [db (*api* {:crux.db/valid-time #inst "2019-02-02", :crux.tx/tx v2})] (with-open [history-asc (api/open-entity-history db :ivan :asc {:with-docs? true}) history-desc (api/open-entity-history db :ivan :desc {:with-docs? true})] (t/is (= [v1 v2] (iterator-seq history-asc))) (t/is (= [v2 v1] (iterator-seq history-desc))))) (with-dbs [db (*api* {:crux.db/valid-time #inst "2019-02-03", :crux.tx/tx v2})] (t/is (= [v1 v2] (api/entity-history db :ivan :asc {:with-docs? true}))) (t/is (= [v2 v1] (api/entity-history db :ivan :desc {:with-docs? true}))))))) (t/deftest test-db-throws-if-future-tx-time-provided-546 (let [{:keys [^Date crux.tx/tx-time]} (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo}]]) the-future (Date. (+ (.getTime tx-time) 10000))] (t/is (thrown? NodeOutOfSyncException (api/db *api* the-future the-future))))) (t/deftest test-db-is-a-snapshot (let [tx (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo, :count 0}]]) db (api/db *api*)] (t/is (= tx (:crux.tx/tx (api/db-basis db)))) (t/is (= {:crux.db/id :foo, :count 0} (api/entity db :foo))) (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo, :count 1}]]) (t/is (= {:crux.db/id :foo, :count 0} (api/entity db :foo))))) (t/deftest test-latest-submitted-tx (t/is (nil? (api/latest-submitted-tx *api*))) (let [{:keys [crux.tx/tx-id] :as tx} (api/submit-tx *api* [[:crux.tx/put {:crux.db/id :foo}]])] (t/is (= {:crux.tx/tx-id tx-id} (api/latest-submitted-tx *api*)))) (api/sync *api*) (t/is (= {:crux.db/id :foo} (api/entity (api/db *api*) :foo)))) (t/deftest test-listen-for-indexed-txs (when-not (contains? (set t/*testing-contexts*) (str :remote)) (let [!events (atom [])] (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :foo}]]) (let [[bar-tx baz-tx] (with-open [_ (api/listen *api* {:crux/event-type :crux/indexed-tx :with-tx-ops? true} (fn [evt] (swap! !events conj evt)))] (let [bar-tx (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :bar}]]) baz-tx (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :baz}]])] (Thread/sleep 100) [bar-tx baz-tx]))] (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :ivan}]]) (Thread/sleep 100) (t/is (= [(merge {:crux/event-type :crux/indexed-tx, :committed? true :crux/tx-ops [[:crux.tx/put {:crux.db/id :bar}]]} bar-tx) (merge {:crux/event-type :crux/indexed-tx, :committed? true :crux/tx-ops [[:crux.tx/put {:crux.db/id :baz}]]} baz-tx)] @!events)))))) (t/deftest test-tx-fn-replacing-arg-docs-866 ;; Intermittent failure on Kafka, see #1256 (when-not (contains? #{:local-kafka :local-kafka-transit} *node-type*) (fix/submit+await-tx [[:crux.tx/put {:crux.db/id :put-ivan :crux.db/fn '(fn [ctx doc] [[:crux.tx/put (assoc doc :crux.db/id :ivan)]])}]]) (with-redefs [tx/tx-fn-eval-cache (memoize eval)] (t/testing "replaces args doc with resulting ops" (fix/submit+await-tx [[:crux.tx/fn :put-ivan {:name "PI:NAME:<NAME>END_PI"}]]) (t/is (= {:crux.db/id :ivan, :name "PI:NAME:<NAME>END_PI"} (api/entity (api/db *api*) :ivan))) (let [*server-api* (or *http-server-api* *api*) arg-doc-id (with-open [tx-log (db/open-tx-log (:tx-log *server-api*) nil)] (-> (iterator-seq tx-log) last ::txe/tx-events first last))] (t/is (= {:crux.db.fn/tx-events [[:crux.tx/put (c/new-id :ivan) (c/new-id {:crux.db/id :ivan, :name "PI:NAME:<NAME>END_PI"})]]} (-> (db/fetch-docs (:document-store *server-api*) #{arg-doc-id}) (get arg-doc-id) (dissoc :crux.db/id))))))))) (t/deftest test-await-tx (when-not (= *node-type* :remote) (t/testing "timeout outputs properly" (let [tx (api/submit-tx *api* (for [n (range 100)] [:crux.tx/put {:crux.db/id (str "test-" n)}]))] (t/is (thrown-with-msg? java.util.concurrent.TimeoutException #"Timed out waiting for: #:crux.tx" (api/await-tx *api* tx (Duration/ofNanos 1)))))))) (t/deftest missing-doc-halts-tx-ingestion (when-not (contains? #{:remote} *node-type*) (let [tx (db/submit-tx (:tx-log *api*) [[:crux.tx/put (c/new-id :foo) (c/new-id {:crux.db/id :foo})]])] (t/is (thrown-with-msg? IllegalStateException #"missing docs" (try (api/await-tx *api* tx (Duration/ofMillis 5000)) (catch Exception e (throw (.getCause e))))))))) (t/deftest round-trips-clobs ;; ensure that anyone changing this also checks this test (t/is (= 224 @#'c/max-value-index-length)) (let [clob (pr-str (range 1000)) clob-doc {:crux.db/id :clob, :clob clob}] (fix/submit+await-tx [[:crux.tx/put clob-doc]]) (let [db (api/db *api*)] (t/is (= #{[clob]} (api/q db '{:find [?clob] :where [[?e :clob ?clob]]}))) (t/is (= #{[clob-doc]} (api/q db '{:find [(pull ?e [*])] :where [[?e :clob]]}))) (t/is (= clob-doc (api/entity db :clob))))))
[ { "context": " 'Judson))\n\n )\n\n(def name-list\n (set (map str '[Sal Julietta Dodie Janina Krista Freeman Angila Cathy", "end": 56467, "score": 0.9907975196838379, "start": 56464, "tag": "NAME", "value": "Sal" }, { "context": "udson))\n\n )\n\n(def name-list\n (set (map str '[Sal Julietta Dodie Janina Krista Freeman Angila Cathy Brant Porter Marty Jerrell Stephan Glenn Palmer Carmelina Monroe Eufemia Cia", "end": 56544, "score": 0.9806839823722839, "start": 56468, "tag": "NAME", "value": "Julietta Dodie Janina Krista Freeman Angila Cathy Brant Porter Marty Jerrell" }, { "context": "ta Freeman Angila Cathy Brant Porter Marty Jerrell Stephan Glenn Palmer Carmelina Monroe Eufemia Ciara Thu Stevie Dee Shamika Jazmin Doyle Roselle Lucien Laveta Marshall Rosy Hilde Yoshiko Nicola Elmo Tana Odelia Gigi Mac Tanner J", "end": 56674, "score": 0.9812466502189636, "start": 56545, "tag": "NAME", "value": "Stephan Glenn Palmer Carmelina Monroe Eufemia Ciara Thu Stevie Dee Shamika Jazmin Doyle Roselle Lucien Laveta Marshall Rosy Hilde" }, { "context": "in Doyle Roselle Lucien Laveta Marshall Rosy Hilde Yoshiko Nicola Elmo Tana Odelia Gigi Mac Tanner Johnson Roselia Gilberto Marcos Shelia Kittie Bruno Leeanne Elicia Miyoko Lilliana Tatiana Steven Vashti Rolando Korey Selene Emilio Fred Marvin Eduardo Jolie Lorine Epifania Jeramy Eloy Melodee Lilian Kim Cory Daniel Grayce Darin Russ Vanita Yan Quyen Kenda Iris Mable Hong Francisco Abdul Judson Boyce Bridget Cecil Dirk Janetta Kelle Shawn Rema Rosie Nakesha Dominick Jerald Shawnda Enrique Jose Vince])))\n\n#_(defonce ^:private message-loop\n (doto (T", "end": 57127, "score": 0.9968650341033936, "start": 56675, "tag": "NAME", "value": "Yoshiko Nicola Elmo Tana Odelia Gigi Mac Tanner Johnson Roselia Gilberto Marcos Shelia Kittie Bruno Leeanne Elicia Miyoko Lilliana Tatiana Steven Vashti Rolando Korey Selene Emilio Fred Marvin Eduardo Jolie Lorine Epifania Jeramy Eloy Melodee Lilian Kim Cory Daniel Grayce Darin Russ Vanita Yan Quyen Kenda Iris Mable Hong Francisco Abdul Judson Boyce Bridget Cecil Dirk Janetta Kelle Shawn Rema Rosie Nakesha Dominick Jerald Shawnda Enrique Jose Vince" } ]
web-dashboard/resources/public/cljs-out/dev/figwheel/repl.cljc
colinlcrawford/home-app
2
(ns figwheel.repl (:require [clojure.string :as string] #?@(:cljs [[goog.object :as gobj] [goog.storage.mechanism.mechanismfactory :as storage-factory] [goog.Uri :as guri] [goog.string :as gstring] [goog.net.jsloader :as loader] [goog.net.XhrIo :as xhrio] [goog.log :as glog] [goog.array :as garray] [goog.json :as gjson] [goog.html.legacyconversions :as conv] [goog.userAgent.product :as product]] :clj [[clojure.data.json :as json] [clojure.set :as set] [clojure.edn :as edn] [clojure.java.browse :as browse] [cljs.repl] [cljs.stacktrace] [clojure.java.io :as io] [clojure.string :as string] [figwheel.server.ring]])) (:import #?@(:cljs [goog.net.WebSocket goog.debug.Console [goog.Uri QueryData] [goog Promise] [goog.storage.mechanism HTML5SessionStorage]] :clj [java.util.concurrent.ArrayBlockingQueue java.net.URLDecoder [java.lang ProcessBuilder Process]]))) (def default-port 9500) #?(:cljs (do ;; TODO dev only ;; -------------------------------------------------- ;; Logging ;; -------------------------------------------------- ;; ;; Levels ;; goog.debug.Logger.Level.(SEVERE WARNING INFO CONFIG FINE FINER FINEST) ;; ;; set level (.setLevel logger goog.debug.Logger.Level.INFO) ;; disable (.setCapturing log-console false) (defonce logger (glog/getLogger "Figwheel REPL")) (defn ^:export console-logging [] (when-not (gobj/get goog.debug.Console "instance") (let [c (goog.debug.Console.)] ;; don't display time (doto (.getFormatter c) (gobj/set "showAbsoluteTime" false) (gobj/set "showRelativeTime" false)) (gobj/set goog.debug.Console "instance" c) c)) (when-let [console-instance (gobj/get goog.debug.Console "instance")] (.setCapturing console-instance true) true)) (defonce log-console (console-logging)) (defn debug [msg] (glog/log logger goog.debug.Logger.Level.FINEST msg)) ;; TODO dev #_(.setLevel logger goog.debug.Logger.Level.FINEST) ;; -------------------------------------------------------------- ;; Bootstrap goog require reloading ;; -------------------------------------------------------------- (declare queued-file-reload) (defn unprovide! [ns] (let [path (gobj/get js/goog.dependencies_.nameToPath ns)] (gobj/remove js/goog.dependencies_.visited path) (gobj/remove js/goog.dependencies_.written path) (gobj/remove js/goog.dependencies_.written (str js/goog.basePath path)))) ;; this will not work unless bootstrap has been called (defn figwheel-require [src reload] ;; require is going to be called (set! (.-require js/goog) figwheel-require) (when (= reload "reload-all") (set! (.-cljsReloadAll_ js/goog) true)) (when (or reload (.-cljsReloadAll_ js/goog)) (unprovide! src)) (let [res (.require_figwheel_backup_ js/goog src)] (when (= reload "reload-all") (set! (.-cljsReloadAll_ js/goog) false)) res)) (defn bootstrap-goog-base "Reusable browser REPL bootstrapping. Patches the essential functions in goog.base to support re-loading of namespaces after page load." [] ;; The biggest problem here is that clojure.browser.repl might have ;; patched this or might patch this afterward (when-not js/COMPILED (when-not (.-require_figwheel_backup_ js/goog) (set! (.-require_figwheel_backup_ js/goog) (or js/goog.require__ js/goog.require))) (set! (.-isProvided_ js/goog) (fn [name] false)) (when-not (and (exists? js/cljs) (exists? js/cljs.user)) (goog/constructNamespace_ "cljs.user")) (set! (.-CLOSURE_IMPORT_SCRIPT goog/global) queued-file-reload) (set! (.-require js/goog) figwheel-require))) (defn patch-goog-base [] (defonce bootstrapped-cljs (do (bootstrap-goog-base) true))) ;; -------------------------------------------------------------- ;; File reloading on different platforms ;; -------------------------------------------------------------- ;; this assumes no query string on url (defn add-cache-buster [url] (.makeUnique (guri/parse url))) (def gloader (cond (exists? loader/safeLoad) #(loader/safeLoad (conv/trustedResourceUrlFromString (str %1)) %2) (exists? loader/load) #(loader/load (str %1) %2) :else (throw (ex-info "No remote script loading function found." {})))) (defn reload-file-in-html-env [request-url callback] {:pre [(string? request-url) (not (nil? callback))]} (doto (gloader (add-cache-buster request-url) #js {:cleanupWhenDone true}) (.addCallback #(apply callback [true])) (.addErrback #(apply callback [false])))) (def ^:export write-script-tag-import reload-file-in-html-env) (defn ^:export worker-import-script [request-url callback] {:pre [(string? request-url) (not (nil? callback))]} (callback (try (do (.importScripts js/self (add-cache-buster request-url)) true) (catch js/Error e (glog/error logger (str "Figwheel: Error loading file " request-url)) (glog/error logger e) false)))) (defn ^:export create-node-script-import-fn [] (let [node-path-lib (js/require "path") ;; just finding a file that is in the cache so we can ;; figure out where we are util-pattern (str (.-sep node-path-lib) (.join node-path-lib "goog" "bootstrap" "nodejs.js")) util-path (gobj/findKey js/require.cache (fn [v k o] (gstring/endsWith k util-pattern))) parts (-> (string/split util-path #"[/\\]") pop pop) root-path (string/join (.-sep node-path-lib) parts)] (fn [request-url callback] (assert (string? request-url) (not (nil? callback))) (let [cache-path (.resolve node-path-lib root-path request-url)] (gobj/remove (.-cache js/require) cache-path) (callback (try (js/require cache-path) (catch js/Error e (glog/error logger (str "Figwheel: Error loading file " cache-path)) (glog/error logger e) false))))))) (def host-env (cond (not (nil? goog/nodeGlobalRequire)) :node (not (nil? goog/global.document)) :html (and (exists? goog/global.navigator) (= goog/global.navigator.product "ReactNative")) :react-native (and (nil? goog/global.document) (exists? js/self) (exists? (.-importScripts js/self))) :worker)) (def reload-file* (condp = host-env :node (create-node-script-import-fn) :html write-script-tag-import :worker worker-import-script (fn [a b] (throw "Reload not defined for this platform")))) ;; TODO Should just leverage the import script here somehow (defn reload-file [{:keys [request-url] :as file-msg} callback] {:pre [(string? request-url) (not (nil? callback))]} (glog/fine logger (str "Attempting to load " request-url)) ((or (gobj/get goog.global "FIGWHEEL_IMPORT_SCRIPT") reload-file*) request-url (fn [success?] (if success? (do (glog/fine logger (str "Successfully loaded " request-url)) (apply callback [(assoc file-msg :loaded-file true)])) (do (glog/error logger (str "Error loading file " request-url)) (apply callback [file-msg])))))) ;; for goog.require consumption (defonce reload-promise-chain (atom (Promise. #(%1 true)))) (defn queued-file-reload ([url] (queued-file-reload url nil)) ([url opt-source-text] (when-let [next-promise-fn (cond opt-source-text #(.then % (fn [_] (Promise. (fn [r _] (try (js/eval opt-source-text) (catch js/Error e (glog/error logger e))) (r true))))) url #(.then % (fn [_] (Promise. (fn [r _] (reload-file {:request-url url} (fn [file-msg] (r true))))))))] (swap! reload-promise-chain next-promise-fn)))) (defn ^:export after-reloads [f] (swap! reload-promise-chain #(.then % f))) ;; -------------------------------------------------------------- ;; REPL print forwarding ;; -------------------------------------------------------------- (goog-define print-output "console,repl") (defn print-receivers [outputs] (->> (string/split outputs #",") (map string/trim) (filter (complement string/blank?)) (map keyword) set)) (defmulti out-print (fn [k args] k)) (defmethod out-print :console [_ args] (.apply (.-log js/console) js/console (garray/clone (to-array args)))) (defmulti err-print (fn [k args] k)) (defmethod err-print :console [_ args] (.apply (.-error js/console) js/console (garray/clone (to-array args)))) (defn setup-printing! [] (let [printers (print-receivers print-output)] (set-print-fn! (fn [& args] (doseq [p printers] (out-print p args)))) (set-print-err-fn! (fn [& args] (doseq [p printers] (err-print p args)))))) #_ (printing-receivers "console,repl") ;; -------------------------------------------------------------- ;; Websocket REPL ;; -------------------------------------------------------------- (goog-define connect-url "ws://[[client-hostname]]:[[client-port]]/figwheel-connect") (def state (atom {})) ;; returns nil if not available (def storage (storage-factory/createHTML5SessionStorage "figwheel.repl")) (defn set-state [k v] (swap! state assoc k v) (when storage (.set storage (str k) v))) (defn get-state [k] (if storage (.get storage (str k)) (get @state k))) (defn ^:export session-name [] (get-state ::session-name)) (defn ^:export session-id [] (get-state ::session-id)) (defn response-for [{:keys [uuid]} response-body] (cond-> {:session-id (session-id) :session-name (session-name) :response response-body} uuid (assoc :uuid uuid))) ;; this is a fire and forget POST (def http-post (condp = host-env :node (let [http (js/require "http")] (fn [url post-data] (let [data (volatile! "") uri (guri/parse (str url))] (-> (.request http #js {:host (.getDomain uri) :port (.getPort uri) :path (str (.getPath uri) (when-let [q (.getQuery uri)] (str "?" q))) :method "POST" :headers #js {"Content-Length" (js/Buffer.byteLength post-data)}} (fn [x])) (.on "error" #(js/console.error %)) (doto (.write post-data) (.end)))))) (fn [url response] (xhrio/send url (fn [e] (debug "Response Posted")) "POST" response)))) (defn respond-to [{:keys [websocket http-url] :as old-msg} response-body] (let [response (response-for old-msg response-body)] (cond websocket (.send websocket (pr-str response)) http-url (http-post http-url (pr-str response))))) (defn respond-to-connection [response-body] (respond-to (:connection @state) response-body)) (defmulti message :op) (defmethod message "naming" [msg] (when-let [sn (:session-name msg)] (set-state ::session-name sn)) (when-let [sid (:session-id msg)] (set-state ::session-id sid)) (glog/info logger (str "Session ID: " (session-id))) (glog/info logger (str "Session Name: " (session-name)))) (defmethod message "ping" [msg] (respond-to msg {:pong true})) (defn get-ua-product [] (cond (not (nil? goog/nodeGlobalRequire)) :chrome product/SAFARI :safari product/CHROME :chrome product/FIREFOX :firefox product/IE :ie)) (let [print-to-console? ((print-receivers print-output) :console)] (defn eval-javascript** [code] (let [ua-product (get-ua-product)] (try (let [sb (js/goog.string.StringBuffer.)] ;; TODO capture err as well? (binding [cljs.core/*print-newline* true cljs.core/*print-fn* (fn [x] (.append sb x))] (let [result-value (js/eval code) ;; the result needs to be readable result-value (if-not (string? result-value) (try (pr-str result-value) (catch js/Error e nil)) result-value) output-str (str sb)] (when (and print-to-console? (not (zero? (.getLength sb)))) (js/setTimeout #(out-print :console [output-str]) 0)) {:status :success :out output-str :ua-product ua-product :value result-value}))) (catch js/Error e ;; logging errors to console helpful (when (and (exists? js/console) (exists? js/console.error)) (js/console.error "REPL eval error" e)) {:status :exception :value (pr-str e) :ua-product ua-product :stacktrace (.-stack e)}) (catch :default e {:status :exception :ua-product ua-product :value (pr-str e) :stacktrace "No stacktrace available."}))))) (defmethod message "eval" [{:keys [code] :as msg}] (let [result (eval-javascript** code)] (respond-to msg result))) (defmethod message "messages" [{:keys [messages http-url]}] (doseq [msg messages] (message (cond-> (js->clj msg :keywordize-keys true) http-url (assoc :http-url http-url))))) (defn fill-url-template [connect-url'] (if (= host-env :html) (-> connect-url' (string/replace "[[client-hostname]]" js/location.hostname) (string/replace "[[client-port]]" js/location.port)) connect-url')) (defn make-url [connect-url'] (let [uri (guri/parse (fill-url-template (or connect-url' connect-url)))] (cond-> (.add (.getQueryData uri) "fwsid" (or (session-id) (random-uuid))) (session-name) (.add "fwsname" (session-name))) uri)) (defn exponential-backoff [attempt] (* 1000 (min (js/Math.pow 2 attempt) 20))) (defn hook-repl-printing-output! [respond-msg] (defmethod out-print :repl [_ args] (respond-to respond-msg {:output true :stream :out :args (mapv #(if (string? %) % (gjson/serialize %)) args)})) (defmethod err-print :repl [_ args] (respond-to respond-msg {:output true :stream :err :args (mapv #(if (string? %) % (gjson/serialize %)) args)})) (setup-printing!)) (defn connection-established! [url] (when (= host-env :html) (let [target (.. goog.global -document -body)] (.dispatchEvent target (doto (js/Event. "figwheel.repl.connected" target) (gobj/add "data" {:url url})))))) (defn connection-closed! [url] (when (= host-env :html) (let [target (.. goog.global -document -body)] (.dispatchEvent target (doto (js/Event. "figwheel.repl.disconnected" target) (gobj/add "data" {:url url})))))) (defn get-websocket-class [] (or (gobj/get goog.global "WebSocket") (gobj/get goog.global "FIGWHEEL_WEBSOCKET_CLASS") (and (= host-env :node) (try (js/require "ws") (catch js/Error e nil))) (and (= host-env :worker) (gobj/get js/self "WebSocket")))) (defn ensure-websocket [thunk] (if (gobj/get goog.global "WebSocket") (thunk) (if-let [websocket-class (get-websocket-class)] (do (gobj/set goog.global "WebSocket" websocket-class) (thunk) (gobj/set goog.global "WebSocket" nil)) (do (glog/error logger (if (= host-env :node) "Can't connect!! Please make sure ws is installed\n do -> 'npm install ws'" "Can't connect!! This client doesn't support WebSockets")))))) (defn ws-connect [& [websocket-url']] (ensure-websocket #(let [websocket (goog.net.WebSocket.) url (str (make-url websocket-url'))] (try (doto websocket (.addEventListener goog.net.WebSocket.EventType.MESSAGE (fn [e] (when-let [msg (gobj/get e "message")] (try (debug msg) (message (assoc (js->clj (js/JSON.parse msg) :keywordize-keys true) :websocket websocket)) (catch js/Error e (glog/error logger e)))))) (.addEventListener goog.net.WebSocket.EventType.OPENED (fn [e] (connection-established! url) (swap! state assoc :connection {:websocket websocket}) (hook-repl-printing-output! {:websocket websocket}))) (.addEventListener goog.net.WebSocket.EventType.CLOSED (fn [e] (connection-closed! url))) (.open url)))))) ;; ----------------------------------------------------------- ;; HTTP simple and long polling ;; ----------------------------------------------------------- (def http-get (condp = host-env :node (let [http (js/require "http")] (fn [url] (Promise. (fn [succ err] (let [data (volatile! "")] (-> (.get http (str url) (fn [response] (.on response "data" (fn [chunk] (vswap! data str chunk))) (.on response "end" #(succ (try (js/JSON.parse @data) (catch js/Error e (js/console.error e) (err e))))))) (.on "error" err))))))) (fn [url] (Promise. (fn [succ err] (xhrio/send url (fn [e] (let [xhr (gobj/get e "target")] (if (.isSuccess xhr) (succ (.getResponseJson xhr)) (err xhr)))))))))) (declare http-connect http-connect*) (defn poll [msg-fn connect-url'] (.then (http-get (make-url connect-url')) (fn [msg] (msg-fn msg) (js/setTimeout #(poll msg-fn connect-url') 500)) (fn [e] ;; lost connection (connection-closed! connect-url') (http-connect connect-url')))) (defn long-poll [msg-fn connect-url'] (.then (http-get (make-url connect-url')) (fn [msg] (msg-fn msg) (long-poll msg-fn connect-url')) (fn [e] ;; lost connection (connection-closed! connect-url') (http-connect connect-url')))) (defn http-connect* [attempt connect-url'] (let [url (make-url connect-url') surl (str url) msg-fn (fn [msg] (try (debug (pr-str msg)) (message (assoc (js->clj msg :keywordize-keys true) :http-url surl)) (catch js/Error e (glog/error logger e))))] (doto (.getQueryData url) (.add "fwinit" "true")) (.then (http-get url) (fn [msg] (let [typ (gobj/get msg "connection-type")] (glog/info logger (str "Connected: " typ)) (msg-fn msg) (connection-established! url) ;; after connecting setup printing redirects (swap! state assoc :connection {:http-url surl}) (hook-repl-printing-output! {:http-url surl}) (if (= typ "http-long-polling") (long-poll msg-fn connect-url') (poll msg-fn connect-url')))) (fn [e];; didn't connect (when (instance? js/Error e) (glog/error logger e)) (when (and (instance? goog.net.XhrIo e) (.getResponseBody e)) (debug (.getResponseBody e))) (let [wait-time (exponential-backoff attempt)] (glog/info logger (str "HTTP Connection Error: next connection attempt in " (/ wait-time 1000) " seconds")) (js/setTimeout #(http-connect* (inc attempt) connect-url') wait-time)))))) (defn http-connect [& [connect-url']] (http-connect* 0 connect-url')) (defn switch-to-http? [url] (if (or (gstring/startsWith url "http") (get-websocket-class)) url (do (glog/warning logger (str "No WebSocket implementation found! Falling back to http-long-polling" (when (= host-env :node) ":\n For a more efficient connection ensure that \"ws\" is installed :: do -> 'npm install ws'"))) (-> (guri/parse url) (.setScheme "http") str)))) (goog-define client-log-level "info") (def log-levels (into {} (map (juxt string/lower-case #(gobj/get goog.debug.Logger.Level %)) (map str '(SEVERE WARNING INFO CONFIG FINE FINER FINEST))))) (defn set-log-level [logger' level] (if-let [lvl (get log-levels level)] (do (.setLevel logger' lvl) (debug (str "setting log level to " level))) (glog/warn (str "Log level " (pr-str level) " doesn't exist must be one of " (pr-str '("severe" "warning" "info" "config" "fine" "finer" "finest")))))) (defn init-log-level! [] (doseq [logger' (cond-> [logger] (exists? js/figwheel.core) (conj js/figwheel.core.logger))] (set-log-level logger' client-log-level))) (defn connect* [connect-url'] (init-log-level!) (patch-goog-base) (let [url (switch-to-http? (string/trim (or connect-url' connect-url)))] (cond (gstring/startsWith url "ws") (ws-connect url) (gstring/startsWith url "http") (http-connect url)))) (defn connect [& [connect-url']] (defonce connected (do (connect* connect-url') true)))) ) ;; end :cljs #?(:clj (do (defonce ^:private listener-set (atom {})) (defn add-listener ([f] (add-listener f f)) ([k f] (swap! listener-set assoc k f) nil)) (defn remove-listener [k] (swap! listener-set dissoc k) nil) (defn clear-listeners [] (reset! listener-set {})) (declare name-list) (defn log [& args] (spit "server.log" (apply prn-str args) :append true)) (defonce scratch (atom {})) (def ^:dynamic *server* nil) (defn parse-query-string [qs] (when (string? qs) (into {} (for [[_ k v] (re-seq #"([^&=]+)=([^&]+)" qs)] [(keyword k) (java.net.URLDecoder/decode v)])))) ;; ------------------------------------------------------------------ ;; Connection management ;; ------------------------------------------------------------------ (defonce ^:dynamic *connections* (atom {})) (defn taken-names [connections] (set (mapv :session-name (vals connections)))) (defn available-names [connections] (set/difference name-list (taken-names connections))) (defn negotiate-id [ring-request connections] (let [query (parse-query-string (:query-string ring-request)) sid (:fwsid query (str (java.util.UUID/randomUUID))) sname (or (some-> connections (get sid) :session-name) (when-let [chosen-name (:fwsname query)] (when-not ((taken-names connections) chosen-name) chosen-name)) (rand-nth (seq (available-names connections))))] [sid sname])) (defn create-connection! [ring-request options] (let [[sess-id sess-name] (negotiate-id ring-request @*connections*) conn (merge (select-keys ring-request [:server-port :scheme :uri :server-name :query-string :request-method]) (cond-> {:session-name sess-name :session-id sess-id ::alive-at (System/currentTimeMillis) :created-at (System/currentTimeMillis)} (:query-string ring-request) (assoc :query (parse-query-string (:query-string ring-request)))) options)] (swap! *connections* assoc sess-id conn) conn)) (defn remove-connection! [{:keys [session-id] :as conn}] (swap! *connections* dissoc session-id)) (defn receive-message! [data] (when-let [data (try (edn/read-string data) (catch Throwable t (binding [*out* *err*] (clojure.pprint/pprint (Throwable->map t)))))] (doseq [[_ f] @listener-set] (try (f data) (catch Throwable ex))))) (defn naming-response [{:keys [session-name session-id type] :as conn}] (json/write-str {:op :naming :session-name session-name :session-id session-id :connection-type type})) ;; ------------------------------------------------------------------ ;; Websocket behavior ;; ------------------------------------------------------------------ (defn abstract-websocket-connection [connections] (let [conn (volatile! nil)] {:on-connect (fn [{:keys [request send-fn close-fn is-open-fn] :as connect-data}] ;; TODO remove dev only (swap! scratch assoc :ring-request request) (binding [*connections* connections] (let [conn' (create-connection! request {:type :websocket :is-open-fn is-open-fn :close-fn close-fn :send-fn (fn [_ data] (send-fn data))})] (vreset! conn conn') (send-fn (naming-response conn'))))) :on-close (fn [status] (binding [*connections* connections] (remove-connection! @conn))) :on-receive (fn [data] (binding [*connections* connections] (receive-message! data)))})) ;; ------------------------------------------------------------------ ;; http polling ;; ------------------------------------------------------------------ (defn json-response [json-body] {:status 200 :headers {"Content-Type" "application/json"} :body json-body}) (defn http-polling-send [conn data] (swap! (::comm-atom conn) update :messages (fnil conj []) data)) (defn http-polling-connect [ring-request] (let [{:keys [fwsid fwinit]} (-> ring-request :query-string parse-query-string)] ;; new connection create the connection (cond (not (get @*connections* fwsid)) (let [conn (create-connection! ring-request {:type :http-polling ::comm-atom (atom {}) :is-open-fn (fn [conn] (< (- (System/currentTimeMillis) (::alive-at conn)) 3000)) :send-fn http-polling-send})] (json-response (naming-response conn))) fwinit (let [conn (get @*connections* fwsid)] (swap! *connections* assoc-in [fwsid :created-at] (System/currentTimeMillis)) (json-response (naming-response conn))) :else ;; otherwise we are polling (let [messages (volatile! []) comm-atom (get-in @*connections* [fwsid ::comm-atom])] (swap! *connections* assoc-in [fwsid ::alive-at] (System/currentTimeMillis)) (swap! comm-atom update :messages (fn [msgs] (vreset! messages (or msgs [])) [])) (json-response (json/write-str {:op :messages :messages (mapv json/read-json @messages) :connection-type :http-polling})))))) (defn http-polling-endpoint [ring-request] (condp = (:request-method ring-request) :get (http-polling-connect ring-request) :post (do (receive-message! (slurp (:body ring-request))) {:status 200 :headers {"Content-Type" "text/html"} :body "Received"}))) ;; simple http polling can be included in any ring middleware stack (defn http-polling-middleware [handler path connections] (fn [ring-request] (if-not (.startsWith (:uri ring-request) path) (handler ring-request) (binding [*connections* connections] (http-polling-endpoint ring-request))))) ;; ------------------------------------------------------------------ ;; http async polling - long polling ;; ------------------------------------------------------------------ ;; long polling is a bit complex - but this currently appears to work ;; as well as websockets in terms of connectivity, it is slower and heavier ;; overall and much harder to determine when it is closed (declare send-for-response) (defn ping [conn] (send-for-response [conn] {:op :ping})) ;; could make no-response behavior configurable (defn ping-thread [connections fwsid {:keys [interval ping-timeout] :or {interval 15000 ping-timeout 2000}}] (doto (Thread. (fn [] (loop [] (Thread/sleep interval) (when-let [conn (get @connections fwsid)] (if-not (try ;; TODO consider re-trying a couple times on failure (deref (ping conn) ping-timeout false) (catch Throwable e false)) (swap! connections dissoc fwsid) (recur)))))) (.setDaemon true) (.start))) ;; agents would be easier but heavier and agent clean up is harder (defn long-poll-send [comm-atom msg] (let [data (volatile! nil) add-message #(if-not msg % (update % :messages (fnil conj []) msg))] (swap! comm-atom (fn [{:keys [respond messages] :as comm}] (if (and respond (or (not-empty messages) msg)) (do (vreset! data (add-message comm)) {}) (add-message comm)))) (when-let [{:keys [respond messages]} @data] ;; when this fails? (respond (json-response (json/write-str {:op :messages :messages (mapv json/read-json messages) :connection-type :http-long-polling})))))) (defn long-poll-capture-respond [comm-atom respond] (let [has-messages (volatile! false)] (swap! comm-atom (fn [{:keys [messages] :as comm}] (vreset! has-messages (not (empty? messages))) (assoc comm :respond respond))) (when @has-messages (long-poll-send comm-atom nil)))) ;; may turn this into a multi method (defn connection-send [{:keys [send-fn] :as conn} data] (send-fn conn data)) (defn send-for-response* [prom conn msg] (let [uuid (str (java.util.UUID/randomUUID)) listener (fn listen [msg] (when (= uuid (:uuid msg)) (when-let [result (:response msg)] (deliver prom (if (instance? clojure.lang.IMeta result) (vary-meta result assoc ::message msg) result))) (remove-listener listen)))] (add-listener listener) (try (connection-send conn (json/write-str (-> (select-keys conn [:session-id :session-name]) (merge msg) (assoc :uuid uuid)))) (catch Throwable t (remove-listener listener) (throw t))))) (def no-connection-result (vary-meta {:status :exception :value "Expected REPL Connections Evaporated!" :stacktrace "No stacktrace available."} assoc ::no-connection-made true)) (defn broadcast-for-response [connections msg] (let [prom (promise) cnt (->> connections (mapv #(try (send-for-response* prom % msg) true (catch Throwable t nil))) (filter some?) count)] (when (zero? cnt) (deliver prom no-connection-result)) prom)) (defn send-for-response [connections msg] (let [prom (promise) sent (loop [[conn & xc] connections] (when conn (if-not (try (send-for-response* prom conn msg) true (catch Throwable t false)) (recur xc) true)))] (when-not sent (deliver prom no-connection-result)) prom)) (defn http-long-polling-connect [ring-request respond raise] (let [{:keys [fwsid fwinit]} (-> ring-request :query-string parse-query-string)] (if (not (get @*connections* fwsid)) (let [conn (create-connection! ring-request {:type :http-long-polling ::comm-atom (atom {:messages []}) :is-open-fn (fn [conn] (not (> (- (System/currentTimeMillis) (::alive-at conn)) 20000))) :send-fn (fn [conn msg] (long-poll-send (::comm-atom conn) msg))})] (respond (json-response (naming-response conn))) ;; keep alive with ping thread ;; This behavior is much more subtle that it appears, it is far better ;; than webserver triggered async timeout because it doesn't ;; leave behind an orphaned respond-fn ;; also it helps us remove lost connections, as I haven't found ;; a way to discover if an HTTPChannel is closed on the remote endpoint ;; TODO a short ping-timeout could be a problem if an ;; env has a long running eval ;; this could reuse the eval timeout (ping-thread *connections* fwsid {:interval 15000 :ping-timeout 2000})) (let [conn (get @*connections* fwsid)] (if fwinit (do (respond (json-response (naming-response conn))) (swap! *connections* assoc-in [fwsid :created-at] (System/currentTimeMillis))) (do (long-poll-capture-respond (::comm-atom conn) respond) (swap! *connections* assoc-in [fwsid ::alive-at] (System/currentTimeMillis)))))))) (defn http-long-polling-endpoint [ring-request send raise] (condp = (:request-method ring-request) :get (http-long-polling-connect ring-request send raise) :post (do (receive-message! (slurp (:body ring-request))) (send {:status 200 :headers {"Content-Type" "text/html"} :body "Received"})))) (defn asyc-http-polling-middleware [handler path connections] (fn [ring-request send raise] (swap! scratch assoc :async-request ring-request) (if-not (.startsWith (:uri ring-request) path) (handler ring-request send raise) (binding [*connections* connections] (try (http-long-polling-endpoint ring-request send raise) (catch Throwable e (raise e))))))) ;; --------------------------------------------------- ;; ReplEnv implmentation ;; --------------------------------------------------- (defn open-connections [] (filter (fn [{:keys [is-open-fn] :as conn}] (try (or (nil? is-open-fn) (is-open-fn conn)) (catch Throwable t false))) (vals @*connections*))) (defn connections-available [repl-env] (sort-by :created-at > (filter (or (some-> repl-env :connection-filter) identity) (open-connections)))) (defn wait-for-connection [repl-env] (loop [] (when (empty? (connections-available repl-env)) (Thread/sleep 500) (recur)))) (defn send-for-eval [{:keys [focus-session-name ;; just here for consideration broadcast] :as repl-env} connections js] (if broadcast (broadcast-for-response connections {:op :eval :code js}) (send-for-response connections {:op :eval :code js}))) (defn eval-connections [{:keys [focus-session-name] :as repl-env}] (let [connections (connections-available repl-env) ;; session focus connections (if-let [focus-conn (and @focus-session-name (first (filter (fn [{:keys [session-name]}] (= @focus-session-name session-name)) connections)))] [focus-conn] (do (reset! focus-session-name nil) connections))] connections)) (defn trim-last-newline [args] (if-let [args (not-empty (filter string? args))] (conj (vec (butlast args)) (string/trim-newline (last args))) args)) (defn print-to-stream [stream args] (condp = stream :out (apply println args) :err (binding [*out* *err*] (apply println args)))) (defn repl-env-print [repl-env stream args] (when-let [args (not-empty (filter string? args))] (when (and (:out-print-fn repl-env) (= :out stream)) (apply (:out-print-fn repl-env) args)) (when (and (:err-print-fn repl-env) (= :err stream)) (apply (:err-print-fn repl-env) args)) (let [args (trim-last-newline args)] (when (:print-to-output-streams repl-env) (if-let [bprinter @(:bound-printer repl-env)] (bprinter stream args) (print-to-stream stream args)))))) (let [timeout-val (Object.)] (defn evaluate [{:keys [focus-session-name ;; just here for consideration repl-eval-timeout broadcast] :as repl-env} js] (reset! (:bound-printer repl-env) (bound-fn [stream args] (print-to-stream stream args))) (wait-for-connection repl-env) (let [ev-connections (eval-connections repl-env) result (let [v (deref (send-for-eval repl-env ev-connections js) (or repl-eval-timeout 8000) timeout-val)] (cond (= timeout-val v) (do (when @focus-session-name (reset! focus-session-name nil)) {:status :exception :value "Eval timed out!" :stacktrace "No stacktrace available."}) (::no-connection-made (meta v)) (do (when @focus-session-name (reset! focus-session-name nil)) v) :else v))] (when-let [out (:out result)] (when (not (string/blank? out)) (repl-env-print repl-env :out [(string/trim-newline out)]))) result))) (defn require-resolve [symbol-str] (let [sym (symbol symbol-str)] (when-let [ns (namespace sym)] (try (require (symbol ns)) (resolve sym) (catch Throwable e nil))))) #_(require-resolve 'figwheel.server.jetty-websocket/run-server) ;; TODO more precise error when loaded but fn doesn't exist (defn dynload [ns-sym-str] (let [resolved (require-resolve ns-sym-str)] (if resolved resolved (throw (ex-info (str "Figwheel: Unable to dynamicly load " ns-sym-str) {:not-loaded ns-sym-str}))))) ;; taken from ring server (defn try-port "Try running a server under one port or a list of ports. If a list of ports is supplied, try each port until it succeeds or runs out of ports." [port server-fn] (if-not (sequential? port) (server-fn port) (try (server-fn (first port)) (catch java.net.BindException ex (if-let [port (next port)] (try-port port server-fn) (throw ex)))))) (defn run-default-server* [options connections] ;; require and run figwheel server (let [server-fn (dynload (get options :ring-server 'figwheel.server.jetty-websocket/run-server)) figwheel-connect-path (get options :figwheel-connect-path "/figwheel-connect")] (server-fn ((dynload (get options :ring-stack 'figwheel.server.ring/default-stack)) (:ring-handler options) ;; TODO this should only work for the default target of browser (cond-> (:ring-stack-options options) (and (contains? #{nil :browser} (:target options)) (:output-to options) (not (get-in (:ring-stack-options options) [:figwheel.server.ring/dev :figwheel.server.ring/system-app-handler]))) (assoc-in [:figwheel.server.ring/dev :figwheel.server.ring/system-app-handler] #(figwheel.server.ring/default-index-html % (figwheel.server.ring/index-html (select-keys options [:output-to])))))) (assoc (get options :ring-server-options) :async-handlers {figwheel-connect-path (-> (fn [ring-request send raise] (send {:status 404 :headers {"Content-Type" "text/html"} :body "Not found: figwheel http-async-polling"})) (asyc-http-polling-middleware figwheel-connect-path connections) (figwheel.server.ring/wrap-async-cors :access-control-allow-origin #".*" :access-control-allow-methods [:head :options :get :put :post :delete :patch]))} ::abstract-websocket-connections {figwheel-connect-path (abstract-websocket-connection connections)})))) (defn run-default-server [options connections] (run-default-server* (update options :ring-server-options #(merge (select-keys options [:host :port]) %)) connections)) (defn fill-server-url-template [url-str {:keys [host port]}] (-> url-str (string/replace "[[server-hostname]]" (or host "localhost")) (string/replace "[[server-port]]" (str port)))) (defn launch-js-helper [script repl-env {:keys [output-to output-dir target open-url output-log-file] :as data}] (let [output-log-file (or (and output-log-file (io/file output-log-file)) (io/file (or output-dir "out") "js-environment.log")) input-data (dissoc data :output-dir :target)] (if (or (symbol? script) (var? script) (fn? script)) ;; TODO consider logging here or let script fn handle it (let [v (if (symbol? script) (dynload script) script)] (doto (Thread. (fn [] (v input-data))) (.setDaemon true) (.start))) (let [shell-command-vector (cond (coll? script) (mapv (fn [x] (if (keyword? x) (get input-data x "") x)) script) (string? script) [script (if (= target :nodejs) output-to open-url)])] (.start (cond-> (ProcessBuilder. (into-array shell-command-vector)) output-log-file (.redirectError (io/file output-log-file)) output-log-file (.redirectOutput (io/file output-log-file)))))))) (defn launch-js [script repl-env {:keys [output-dir] :or {output-dir "out"} :as opts}] (let [output-log-file (str (io/file output-dir "js-environment.log"))] (println "Launching Javascript environment with script: " (pr-str script)) (reset! (:node-proc repl-env) (launch-js-helper script repl-env (assoc opts :output-log-file output-log-file))) (when (not (symbol? script)) (println "Environment output being logged to:" output-log-file)))) (defn launch-node [opts repl-env input-path & [output-log-file]] (let [xs (cond-> [(get repl-env :node-command "node")] (:inspect-node repl-env true) (conj "--inspect") input-path (conj input-path)) proc (cond-> (ProcessBuilder. (into-array xs)) output-log-file (.redirectError (io/file output-log-file)) output-log-file (.redirectOutput (io/file output-log-file)))] (.start proc))) ;; when doing a port search ;; - what needs to know the port afterwards? ;; - auto open the browser, this is easy enough. ;; - the connect-url needs to know, but it can use browser port ;; - the default index.html needs to find the main.js (it can inline it) ;; XXX refactor as we need to breakdown these actions and allow ;; the consumer to inject this behavior via a :setup-fn (defn setup [repl-env opts] (when (and (or (not (bound? #'*server*)) (nil? *server*)) (nil? @(:server repl-env))) (let [server (run-default-server (merge (select-keys repl-env [:port :host :target :output-to :ring-handler :ring-server :ring-server-options :ring-stack :ring-stack-options]) (select-keys opts [:target :output-to])) *connections*)] (reset! (:server repl-env) server))) ;; printing (when-not @(:printing-listener repl-env) (let [print-listener (bound-fn [{:keys [session-id session-name uuid response] :as msg}] (when (and session-id (not uuid) (get response :output)) (let [session-ids (set (map :session-id (eval-connections repl-env)))] (when (session-ids session-id) (let [{:keys [stream args]} response] (when (and stream (not-empty args)) ;; when printing a result from several sessions mark it (let [args (if-not (= 1 (count session-ids)) (cons (str "[Session:-----:" session-name "]\n") args) args)] (repl-env-print repl-env stream args))))))))] (reset! (:printing-listener repl-env) print-listener) (add-listener print-listener))) (let [{:keys [target output-to output-dir]} (apply merge (map #(select-keys % [:target :output-to :output-dir]) [repl-env opts])) open-url (and (:open-url repl-env) (fill-server-url-template (:open-url repl-env) (merge (select-keys repl-env [:host :port]) (select-keys (:ring-server-options repl-env) [:host :port]))))] (cond (:launch-js repl-env) (launch-js (:launch-js repl-env) repl-env {:output-to output-to :open-url open-url :output-dir output-dir :target target}) ;; Node REPL (and (= :nodejs target) (:launch-node repl-env true) output-to) (let [output-file (io/file output-dir "node.log")] (println "Starting node ... ") (reset! (:node-proc repl-env) (launch-node opts repl-env output-to output-file)) (println "Node output being logged to:" (str output-file)) (when (:inspect-node repl-env true) (println "For a better development experience:") (println " 1. Open chrome://inspect/#devices ... (in Chrome)") (println " 2. Click \"Open dedicated DevTools for Node\""))) ;; open a url (and (not (= :nodejs target)) open-url) (if-let [open (:open-url-fn repl-env)] (open open-url) (do (println "Opening URL" open-url) (try (browse/browse-url open-url) (catch Throwable t (println "Failed to open browser:" (.getMessage t)))))) (and (nil? target) (not (:launch-js repl-env)) (false? open-url)) (println "JavaScript environment will not launch automatically when :open-url is false") (and (= :nodejs target) (not (:launch-js repl-env)) (false? (:launch-node repl-env))) (println "JavaScript environment will not launch automatically when :launch-node is false") :else nil))) (defn tear-down-server [{:keys [server]}] (when-let [svr @server] (reset! server nil) (.stop svr))) (defn tear-down-everything-but-server [{:keys [printing-listener node-proc]}] (when-let [proc @node-proc] (if (instance? Thread proc) (.stop proc) (.destroy proc)) #_(.waitFor proc) ;; ? ) (when-let [listener @printing-listener] (remove-listener listener))) (defrecord FigwheelReplEnv [] cljs.repl/IJavaScriptEnv (-setup [this opts] (setup this opts) #_(wait-for-connection this)) (-evaluate [this _ _ js] ;; print where eval occurs (evaluate this js)) (-load [this provides url] ;; load a file into all the appropriate envs (when-let [js-content (try (slurp url) (catch Throwable t))] (evaluate this js-content))) (-tear-down [repl-env] (when-not (:prevent-server-tear-down repl-env) (tear-down-server repl-env)) (tear-down-everything-but-server repl-env)) cljs.repl/IReplEnvOptions (-repl-options [this] (let [main-fn (resolve 'figwheel.main/default-main)] (cond-> {;:browser-repl true :preloads '[[figwheel.repl.preload]] :cljs.cli/commands {:groups {::repl {:desc "Figwheel REPL options"}} :init {["-H" "--host"] {:group ::repl :fn #(assoc-in %1 [:repl-env-options :host] %2) :arg "address" :doc "Address to bind"} ["-p" "--port"] {:group ::repl :fn #(assoc-in %1 [:repl-env-options :port] (Integer/parseInt %2)) :arg "number" :doc "Port to bind"} ["-rh" "--ring-handler"] {:group ::repl :fn #(assoc-in %1 [:repl-env-options :ring-handler] (when %2 (dynload %2))) :arg "string" :doc "Ring Handler for default REPL server EX. \"example.server/handler\" "}}}} main-fn (assoc :cljs.cli/main @main-fn)))) cljs.repl/IParseStacktrace (-parse-stacktrace [this st err opts] (cljs.stacktrace/parse-stacktrace this st err opts))) (defn repl-env* [{:keys [port open-url connection-filter] :or {connection-filter identity open-url "http://[[server-hostname]]:[[server-port]]" port default-port} :as opts}] (merge (FigwheelReplEnv.) ;; TODO move to one atom {:server (atom nil) :printing-listener (atom nil) :bound-printer (atom nil) :open-url open-url ;; helpful for nrepl so you can easily ;; translate output into messages :out-print-fn nil :err-print-fn nil :node-proc (atom nil) :print-to-output-streams true :connection-filter connection-filter :focus-session-name (atom nil) :broadcast false :port port} opts)) ;; ------------------------------------------------------ ;; Connection management ;; ------------------------------------------------------ ;; mostly for use from the REPL (defn list-connections [] (let [conns (connections-available cljs.repl/*repl-env*) longest-name (apply max (cons (count "Session Name") (map (comp count :session-name) conns)))] (println (format (str "%-" longest-name "s %7s %s") "Session Name" "Age" "URL")) (doseq [{:keys [session-name uri query-string created-at]} conns] (println (format (str "%-" longest-name "s %6sm %s") session-name (Math/round (/ (- (System/currentTimeMillis) created-at) 60000.0)) uri))))) (defn will-eval-on [] (if-let [n @(:focus-session-name cljs.repl/*repl-env*)] (println "Focused On: " n) (println "Will Eval On: " (->> (connections-available cljs.repl/*repl-env*) first :session-name)))) (defn conns* [] (will-eval-on) (list-connections)) (defmacro conns [] (conns*)) (defn focus* [session-name] (let [names (map :session-name (connections-available cljs.repl/*repl-env*)) session-name (name session-name)] (if ((set names) session-name) (str "Focused On: " (reset! (:focus-session-name cljs.repl/*repl-env*) session-name)) (str "Error: " session-name " not in " (pr-str names))))) (defmacro focus [session-name] (focus* session-name)) ;; TODOS ;; - try https setup ;; - make work on node and other platforms ;; - find open port ;; - repl args from main ;; TODO exponential backoff for websocket should max out at 20 or lower ;; TODO figwheel-repl-core package ;; TODO figwheel-repl package that includes default server ;; TODO NPE that occurs in open-connections when websocket isn't cleared ;; happens on eval (comment (def serve (run-default-server {:ring-handler (fn [r] (throw (ex-info "Testing" {})) #_{:status 404 :headers {"Content-Type" "text/html"} :body "Yeppers now"}) :port 9500} *connections*)) (.stop serve) scratch (do (cljs.repl/-tear-down re) (def re (repl-env* {:output-to "dev-resources/public/out/main.js"})) (cljs.repl/-setup re {})) (connections-available re) (open-connections) (evaluate (assoc re :broadcast true) "88") (evaluate re "setTimeout(function() {cljs.core.prn(\"hey hey\")}, 1000);") (= (mapv #(:value (evaluate re (str %))) (range 100)) (range 100)) (def x (ping (first (vals @*connections*)))) (negotiate-id (:ring-request @scratch) @*connections*) (def channel (:body (:async-request @scratch))) (.isReady channel) (ping ( (vals @*connections*)) ) (swap! *connections* dissoc "99785176-1793-4814-938a-93bf071acd2f") (swap! scratch dissoc :print-msg) scratch *connections* (deref ) (swap! *connections* dissoc "d9ffc9ac-b2ec-4660-93c1-812afd1cb032") (parse-query-string (:query-string (:ring-request @scratch))) (negotiate-name (:ring-request @scratch) @*connections*) (reset! *connections* (atom {})) (binding [cljs.repl/*repl-env* re] (conns*) #_(focus* 'Judson)) ) (def name-list (set (map str '[Sal Julietta Dodie Janina Krista Freeman Angila Cathy Brant Porter Marty Jerrell Stephan Glenn Palmer Carmelina Monroe Eufemia Ciara Thu Stevie Dee Shamika Jazmin Doyle Roselle Lucien Laveta Marshall Rosy Hilde Yoshiko Nicola Elmo Tana Odelia Gigi Mac Tanner Johnson Roselia Gilberto Marcos Shelia Kittie Bruno Leeanne Elicia Miyoko Lilliana Tatiana Steven Vashti Rolando Korey Selene Emilio Fred Marvin Eduardo Jolie Lorine Epifania Jeramy Eloy Melodee Lilian Kim Cory Daniel Grayce Darin Russ Vanita Yan Quyen Kenda Iris Mable Hong Francisco Abdul Judson Boyce Bridget Cecil Dirk Janetta Kelle Shawn Rema Rosie Nakesha Dominick Jerald Shawnda Enrique Jose Vince]))) #_(defonce ^:private message-loop (doto (Thread. #(let [x (.take messageq) listeners @listener-set] (doseq [f listeners] (try (f x) (catch Throwable ex))) (recur)) (str ::message-loop)) (.setDaemon true) (.start))) ))
33877
(ns figwheel.repl (:require [clojure.string :as string] #?@(:cljs [[goog.object :as gobj] [goog.storage.mechanism.mechanismfactory :as storage-factory] [goog.Uri :as guri] [goog.string :as gstring] [goog.net.jsloader :as loader] [goog.net.XhrIo :as xhrio] [goog.log :as glog] [goog.array :as garray] [goog.json :as gjson] [goog.html.legacyconversions :as conv] [goog.userAgent.product :as product]] :clj [[clojure.data.json :as json] [clojure.set :as set] [clojure.edn :as edn] [clojure.java.browse :as browse] [cljs.repl] [cljs.stacktrace] [clojure.java.io :as io] [clojure.string :as string] [figwheel.server.ring]])) (:import #?@(:cljs [goog.net.WebSocket goog.debug.Console [goog.Uri QueryData] [goog Promise] [goog.storage.mechanism HTML5SessionStorage]] :clj [java.util.concurrent.ArrayBlockingQueue java.net.URLDecoder [java.lang ProcessBuilder Process]]))) (def default-port 9500) #?(:cljs (do ;; TODO dev only ;; -------------------------------------------------- ;; Logging ;; -------------------------------------------------- ;; ;; Levels ;; goog.debug.Logger.Level.(SEVERE WARNING INFO CONFIG FINE FINER FINEST) ;; ;; set level (.setLevel logger goog.debug.Logger.Level.INFO) ;; disable (.setCapturing log-console false) (defonce logger (glog/getLogger "Figwheel REPL")) (defn ^:export console-logging [] (when-not (gobj/get goog.debug.Console "instance") (let [c (goog.debug.Console.)] ;; don't display time (doto (.getFormatter c) (gobj/set "showAbsoluteTime" false) (gobj/set "showRelativeTime" false)) (gobj/set goog.debug.Console "instance" c) c)) (when-let [console-instance (gobj/get goog.debug.Console "instance")] (.setCapturing console-instance true) true)) (defonce log-console (console-logging)) (defn debug [msg] (glog/log logger goog.debug.Logger.Level.FINEST msg)) ;; TODO dev #_(.setLevel logger goog.debug.Logger.Level.FINEST) ;; -------------------------------------------------------------- ;; Bootstrap goog require reloading ;; -------------------------------------------------------------- (declare queued-file-reload) (defn unprovide! [ns] (let [path (gobj/get js/goog.dependencies_.nameToPath ns)] (gobj/remove js/goog.dependencies_.visited path) (gobj/remove js/goog.dependencies_.written path) (gobj/remove js/goog.dependencies_.written (str js/goog.basePath path)))) ;; this will not work unless bootstrap has been called (defn figwheel-require [src reload] ;; require is going to be called (set! (.-require js/goog) figwheel-require) (when (= reload "reload-all") (set! (.-cljsReloadAll_ js/goog) true)) (when (or reload (.-cljsReloadAll_ js/goog)) (unprovide! src)) (let [res (.require_figwheel_backup_ js/goog src)] (when (= reload "reload-all") (set! (.-cljsReloadAll_ js/goog) false)) res)) (defn bootstrap-goog-base "Reusable browser REPL bootstrapping. Patches the essential functions in goog.base to support re-loading of namespaces after page load." [] ;; The biggest problem here is that clojure.browser.repl might have ;; patched this or might patch this afterward (when-not js/COMPILED (when-not (.-require_figwheel_backup_ js/goog) (set! (.-require_figwheel_backup_ js/goog) (or js/goog.require__ js/goog.require))) (set! (.-isProvided_ js/goog) (fn [name] false)) (when-not (and (exists? js/cljs) (exists? js/cljs.user)) (goog/constructNamespace_ "cljs.user")) (set! (.-CLOSURE_IMPORT_SCRIPT goog/global) queued-file-reload) (set! (.-require js/goog) figwheel-require))) (defn patch-goog-base [] (defonce bootstrapped-cljs (do (bootstrap-goog-base) true))) ;; -------------------------------------------------------------- ;; File reloading on different platforms ;; -------------------------------------------------------------- ;; this assumes no query string on url (defn add-cache-buster [url] (.makeUnique (guri/parse url))) (def gloader (cond (exists? loader/safeLoad) #(loader/safeLoad (conv/trustedResourceUrlFromString (str %1)) %2) (exists? loader/load) #(loader/load (str %1) %2) :else (throw (ex-info "No remote script loading function found." {})))) (defn reload-file-in-html-env [request-url callback] {:pre [(string? request-url) (not (nil? callback))]} (doto (gloader (add-cache-buster request-url) #js {:cleanupWhenDone true}) (.addCallback #(apply callback [true])) (.addErrback #(apply callback [false])))) (def ^:export write-script-tag-import reload-file-in-html-env) (defn ^:export worker-import-script [request-url callback] {:pre [(string? request-url) (not (nil? callback))]} (callback (try (do (.importScripts js/self (add-cache-buster request-url)) true) (catch js/Error e (glog/error logger (str "Figwheel: Error loading file " request-url)) (glog/error logger e) false)))) (defn ^:export create-node-script-import-fn [] (let [node-path-lib (js/require "path") ;; just finding a file that is in the cache so we can ;; figure out where we are util-pattern (str (.-sep node-path-lib) (.join node-path-lib "goog" "bootstrap" "nodejs.js")) util-path (gobj/findKey js/require.cache (fn [v k o] (gstring/endsWith k util-pattern))) parts (-> (string/split util-path #"[/\\]") pop pop) root-path (string/join (.-sep node-path-lib) parts)] (fn [request-url callback] (assert (string? request-url) (not (nil? callback))) (let [cache-path (.resolve node-path-lib root-path request-url)] (gobj/remove (.-cache js/require) cache-path) (callback (try (js/require cache-path) (catch js/Error e (glog/error logger (str "Figwheel: Error loading file " cache-path)) (glog/error logger e) false))))))) (def host-env (cond (not (nil? goog/nodeGlobalRequire)) :node (not (nil? goog/global.document)) :html (and (exists? goog/global.navigator) (= goog/global.navigator.product "ReactNative")) :react-native (and (nil? goog/global.document) (exists? js/self) (exists? (.-importScripts js/self))) :worker)) (def reload-file* (condp = host-env :node (create-node-script-import-fn) :html write-script-tag-import :worker worker-import-script (fn [a b] (throw "Reload not defined for this platform")))) ;; TODO Should just leverage the import script here somehow (defn reload-file [{:keys [request-url] :as file-msg} callback] {:pre [(string? request-url) (not (nil? callback))]} (glog/fine logger (str "Attempting to load " request-url)) ((or (gobj/get goog.global "FIGWHEEL_IMPORT_SCRIPT") reload-file*) request-url (fn [success?] (if success? (do (glog/fine logger (str "Successfully loaded " request-url)) (apply callback [(assoc file-msg :loaded-file true)])) (do (glog/error logger (str "Error loading file " request-url)) (apply callback [file-msg])))))) ;; for goog.require consumption (defonce reload-promise-chain (atom (Promise. #(%1 true)))) (defn queued-file-reload ([url] (queued-file-reload url nil)) ([url opt-source-text] (when-let [next-promise-fn (cond opt-source-text #(.then % (fn [_] (Promise. (fn [r _] (try (js/eval opt-source-text) (catch js/Error e (glog/error logger e))) (r true))))) url #(.then % (fn [_] (Promise. (fn [r _] (reload-file {:request-url url} (fn [file-msg] (r true))))))))] (swap! reload-promise-chain next-promise-fn)))) (defn ^:export after-reloads [f] (swap! reload-promise-chain #(.then % f))) ;; -------------------------------------------------------------- ;; REPL print forwarding ;; -------------------------------------------------------------- (goog-define print-output "console,repl") (defn print-receivers [outputs] (->> (string/split outputs #",") (map string/trim) (filter (complement string/blank?)) (map keyword) set)) (defmulti out-print (fn [k args] k)) (defmethod out-print :console [_ args] (.apply (.-log js/console) js/console (garray/clone (to-array args)))) (defmulti err-print (fn [k args] k)) (defmethod err-print :console [_ args] (.apply (.-error js/console) js/console (garray/clone (to-array args)))) (defn setup-printing! [] (let [printers (print-receivers print-output)] (set-print-fn! (fn [& args] (doseq [p printers] (out-print p args)))) (set-print-err-fn! (fn [& args] (doseq [p printers] (err-print p args)))))) #_ (printing-receivers "console,repl") ;; -------------------------------------------------------------- ;; Websocket REPL ;; -------------------------------------------------------------- (goog-define connect-url "ws://[[client-hostname]]:[[client-port]]/figwheel-connect") (def state (atom {})) ;; returns nil if not available (def storage (storage-factory/createHTML5SessionStorage "figwheel.repl")) (defn set-state [k v] (swap! state assoc k v) (when storage (.set storage (str k) v))) (defn get-state [k] (if storage (.get storage (str k)) (get @state k))) (defn ^:export session-name [] (get-state ::session-name)) (defn ^:export session-id [] (get-state ::session-id)) (defn response-for [{:keys [uuid]} response-body] (cond-> {:session-id (session-id) :session-name (session-name) :response response-body} uuid (assoc :uuid uuid))) ;; this is a fire and forget POST (def http-post (condp = host-env :node (let [http (js/require "http")] (fn [url post-data] (let [data (volatile! "") uri (guri/parse (str url))] (-> (.request http #js {:host (.getDomain uri) :port (.getPort uri) :path (str (.getPath uri) (when-let [q (.getQuery uri)] (str "?" q))) :method "POST" :headers #js {"Content-Length" (js/Buffer.byteLength post-data)}} (fn [x])) (.on "error" #(js/console.error %)) (doto (.write post-data) (.end)))))) (fn [url response] (xhrio/send url (fn [e] (debug "Response Posted")) "POST" response)))) (defn respond-to [{:keys [websocket http-url] :as old-msg} response-body] (let [response (response-for old-msg response-body)] (cond websocket (.send websocket (pr-str response)) http-url (http-post http-url (pr-str response))))) (defn respond-to-connection [response-body] (respond-to (:connection @state) response-body)) (defmulti message :op) (defmethod message "naming" [msg] (when-let [sn (:session-name msg)] (set-state ::session-name sn)) (when-let [sid (:session-id msg)] (set-state ::session-id sid)) (glog/info logger (str "Session ID: " (session-id))) (glog/info logger (str "Session Name: " (session-name)))) (defmethod message "ping" [msg] (respond-to msg {:pong true})) (defn get-ua-product [] (cond (not (nil? goog/nodeGlobalRequire)) :chrome product/SAFARI :safari product/CHROME :chrome product/FIREFOX :firefox product/IE :ie)) (let [print-to-console? ((print-receivers print-output) :console)] (defn eval-javascript** [code] (let [ua-product (get-ua-product)] (try (let [sb (js/goog.string.StringBuffer.)] ;; TODO capture err as well? (binding [cljs.core/*print-newline* true cljs.core/*print-fn* (fn [x] (.append sb x))] (let [result-value (js/eval code) ;; the result needs to be readable result-value (if-not (string? result-value) (try (pr-str result-value) (catch js/Error e nil)) result-value) output-str (str sb)] (when (and print-to-console? (not (zero? (.getLength sb)))) (js/setTimeout #(out-print :console [output-str]) 0)) {:status :success :out output-str :ua-product ua-product :value result-value}))) (catch js/Error e ;; logging errors to console helpful (when (and (exists? js/console) (exists? js/console.error)) (js/console.error "REPL eval error" e)) {:status :exception :value (pr-str e) :ua-product ua-product :stacktrace (.-stack e)}) (catch :default e {:status :exception :ua-product ua-product :value (pr-str e) :stacktrace "No stacktrace available."}))))) (defmethod message "eval" [{:keys [code] :as msg}] (let [result (eval-javascript** code)] (respond-to msg result))) (defmethod message "messages" [{:keys [messages http-url]}] (doseq [msg messages] (message (cond-> (js->clj msg :keywordize-keys true) http-url (assoc :http-url http-url))))) (defn fill-url-template [connect-url'] (if (= host-env :html) (-> connect-url' (string/replace "[[client-hostname]]" js/location.hostname) (string/replace "[[client-port]]" js/location.port)) connect-url')) (defn make-url [connect-url'] (let [uri (guri/parse (fill-url-template (or connect-url' connect-url)))] (cond-> (.add (.getQueryData uri) "fwsid" (or (session-id) (random-uuid))) (session-name) (.add "fwsname" (session-name))) uri)) (defn exponential-backoff [attempt] (* 1000 (min (js/Math.pow 2 attempt) 20))) (defn hook-repl-printing-output! [respond-msg] (defmethod out-print :repl [_ args] (respond-to respond-msg {:output true :stream :out :args (mapv #(if (string? %) % (gjson/serialize %)) args)})) (defmethod err-print :repl [_ args] (respond-to respond-msg {:output true :stream :err :args (mapv #(if (string? %) % (gjson/serialize %)) args)})) (setup-printing!)) (defn connection-established! [url] (when (= host-env :html) (let [target (.. goog.global -document -body)] (.dispatchEvent target (doto (js/Event. "figwheel.repl.connected" target) (gobj/add "data" {:url url})))))) (defn connection-closed! [url] (when (= host-env :html) (let [target (.. goog.global -document -body)] (.dispatchEvent target (doto (js/Event. "figwheel.repl.disconnected" target) (gobj/add "data" {:url url})))))) (defn get-websocket-class [] (or (gobj/get goog.global "WebSocket") (gobj/get goog.global "FIGWHEEL_WEBSOCKET_CLASS") (and (= host-env :node) (try (js/require "ws") (catch js/Error e nil))) (and (= host-env :worker) (gobj/get js/self "WebSocket")))) (defn ensure-websocket [thunk] (if (gobj/get goog.global "WebSocket") (thunk) (if-let [websocket-class (get-websocket-class)] (do (gobj/set goog.global "WebSocket" websocket-class) (thunk) (gobj/set goog.global "WebSocket" nil)) (do (glog/error logger (if (= host-env :node) "Can't connect!! Please make sure ws is installed\n do -> 'npm install ws'" "Can't connect!! This client doesn't support WebSockets")))))) (defn ws-connect [& [websocket-url']] (ensure-websocket #(let [websocket (goog.net.WebSocket.) url (str (make-url websocket-url'))] (try (doto websocket (.addEventListener goog.net.WebSocket.EventType.MESSAGE (fn [e] (when-let [msg (gobj/get e "message")] (try (debug msg) (message (assoc (js->clj (js/JSON.parse msg) :keywordize-keys true) :websocket websocket)) (catch js/Error e (glog/error logger e)))))) (.addEventListener goog.net.WebSocket.EventType.OPENED (fn [e] (connection-established! url) (swap! state assoc :connection {:websocket websocket}) (hook-repl-printing-output! {:websocket websocket}))) (.addEventListener goog.net.WebSocket.EventType.CLOSED (fn [e] (connection-closed! url))) (.open url)))))) ;; ----------------------------------------------------------- ;; HTTP simple and long polling ;; ----------------------------------------------------------- (def http-get (condp = host-env :node (let [http (js/require "http")] (fn [url] (Promise. (fn [succ err] (let [data (volatile! "")] (-> (.get http (str url) (fn [response] (.on response "data" (fn [chunk] (vswap! data str chunk))) (.on response "end" #(succ (try (js/JSON.parse @data) (catch js/Error e (js/console.error e) (err e))))))) (.on "error" err))))))) (fn [url] (Promise. (fn [succ err] (xhrio/send url (fn [e] (let [xhr (gobj/get e "target")] (if (.isSuccess xhr) (succ (.getResponseJson xhr)) (err xhr)))))))))) (declare http-connect http-connect*) (defn poll [msg-fn connect-url'] (.then (http-get (make-url connect-url')) (fn [msg] (msg-fn msg) (js/setTimeout #(poll msg-fn connect-url') 500)) (fn [e] ;; lost connection (connection-closed! connect-url') (http-connect connect-url')))) (defn long-poll [msg-fn connect-url'] (.then (http-get (make-url connect-url')) (fn [msg] (msg-fn msg) (long-poll msg-fn connect-url')) (fn [e] ;; lost connection (connection-closed! connect-url') (http-connect connect-url')))) (defn http-connect* [attempt connect-url'] (let [url (make-url connect-url') surl (str url) msg-fn (fn [msg] (try (debug (pr-str msg)) (message (assoc (js->clj msg :keywordize-keys true) :http-url surl)) (catch js/Error e (glog/error logger e))))] (doto (.getQueryData url) (.add "fwinit" "true")) (.then (http-get url) (fn [msg] (let [typ (gobj/get msg "connection-type")] (glog/info logger (str "Connected: " typ)) (msg-fn msg) (connection-established! url) ;; after connecting setup printing redirects (swap! state assoc :connection {:http-url surl}) (hook-repl-printing-output! {:http-url surl}) (if (= typ "http-long-polling") (long-poll msg-fn connect-url') (poll msg-fn connect-url')))) (fn [e];; didn't connect (when (instance? js/Error e) (glog/error logger e)) (when (and (instance? goog.net.XhrIo e) (.getResponseBody e)) (debug (.getResponseBody e))) (let [wait-time (exponential-backoff attempt)] (glog/info logger (str "HTTP Connection Error: next connection attempt in " (/ wait-time 1000) " seconds")) (js/setTimeout #(http-connect* (inc attempt) connect-url') wait-time)))))) (defn http-connect [& [connect-url']] (http-connect* 0 connect-url')) (defn switch-to-http? [url] (if (or (gstring/startsWith url "http") (get-websocket-class)) url (do (glog/warning logger (str "No WebSocket implementation found! Falling back to http-long-polling" (when (= host-env :node) ":\n For a more efficient connection ensure that \"ws\" is installed :: do -> 'npm install ws'"))) (-> (guri/parse url) (.setScheme "http") str)))) (goog-define client-log-level "info") (def log-levels (into {} (map (juxt string/lower-case #(gobj/get goog.debug.Logger.Level %)) (map str '(SEVERE WARNING INFO CONFIG FINE FINER FINEST))))) (defn set-log-level [logger' level] (if-let [lvl (get log-levels level)] (do (.setLevel logger' lvl) (debug (str "setting log level to " level))) (glog/warn (str "Log level " (pr-str level) " doesn't exist must be one of " (pr-str '("severe" "warning" "info" "config" "fine" "finer" "finest")))))) (defn init-log-level! [] (doseq [logger' (cond-> [logger] (exists? js/figwheel.core) (conj js/figwheel.core.logger))] (set-log-level logger' client-log-level))) (defn connect* [connect-url'] (init-log-level!) (patch-goog-base) (let [url (switch-to-http? (string/trim (or connect-url' connect-url)))] (cond (gstring/startsWith url "ws") (ws-connect url) (gstring/startsWith url "http") (http-connect url)))) (defn connect [& [connect-url']] (defonce connected (do (connect* connect-url') true)))) ) ;; end :cljs #?(:clj (do (defonce ^:private listener-set (atom {})) (defn add-listener ([f] (add-listener f f)) ([k f] (swap! listener-set assoc k f) nil)) (defn remove-listener [k] (swap! listener-set dissoc k) nil) (defn clear-listeners [] (reset! listener-set {})) (declare name-list) (defn log [& args] (spit "server.log" (apply prn-str args) :append true)) (defonce scratch (atom {})) (def ^:dynamic *server* nil) (defn parse-query-string [qs] (when (string? qs) (into {} (for [[_ k v] (re-seq #"([^&=]+)=([^&]+)" qs)] [(keyword k) (java.net.URLDecoder/decode v)])))) ;; ------------------------------------------------------------------ ;; Connection management ;; ------------------------------------------------------------------ (defonce ^:dynamic *connections* (atom {})) (defn taken-names [connections] (set (mapv :session-name (vals connections)))) (defn available-names [connections] (set/difference name-list (taken-names connections))) (defn negotiate-id [ring-request connections] (let [query (parse-query-string (:query-string ring-request)) sid (:fwsid query (str (java.util.UUID/randomUUID))) sname (or (some-> connections (get sid) :session-name) (when-let [chosen-name (:fwsname query)] (when-not ((taken-names connections) chosen-name) chosen-name)) (rand-nth (seq (available-names connections))))] [sid sname])) (defn create-connection! [ring-request options] (let [[sess-id sess-name] (negotiate-id ring-request @*connections*) conn (merge (select-keys ring-request [:server-port :scheme :uri :server-name :query-string :request-method]) (cond-> {:session-name sess-name :session-id sess-id ::alive-at (System/currentTimeMillis) :created-at (System/currentTimeMillis)} (:query-string ring-request) (assoc :query (parse-query-string (:query-string ring-request)))) options)] (swap! *connections* assoc sess-id conn) conn)) (defn remove-connection! [{:keys [session-id] :as conn}] (swap! *connections* dissoc session-id)) (defn receive-message! [data] (when-let [data (try (edn/read-string data) (catch Throwable t (binding [*out* *err*] (clojure.pprint/pprint (Throwable->map t)))))] (doseq [[_ f] @listener-set] (try (f data) (catch Throwable ex))))) (defn naming-response [{:keys [session-name session-id type] :as conn}] (json/write-str {:op :naming :session-name session-name :session-id session-id :connection-type type})) ;; ------------------------------------------------------------------ ;; Websocket behavior ;; ------------------------------------------------------------------ (defn abstract-websocket-connection [connections] (let [conn (volatile! nil)] {:on-connect (fn [{:keys [request send-fn close-fn is-open-fn] :as connect-data}] ;; TODO remove dev only (swap! scratch assoc :ring-request request) (binding [*connections* connections] (let [conn' (create-connection! request {:type :websocket :is-open-fn is-open-fn :close-fn close-fn :send-fn (fn [_ data] (send-fn data))})] (vreset! conn conn') (send-fn (naming-response conn'))))) :on-close (fn [status] (binding [*connections* connections] (remove-connection! @conn))) :on-receive (fn [data] (binding [*connections* connections] (receive-message! data)))})) ;; ------------------------------------------------------------------ ;; http polling ;; ------------------------------------------------------------------ (defn json-response [json-body] {:status 200 :headers {"Content-Type" "application/json"} :body json-body}) (defn http-polling-send [conn data] (swap! (::comm-atom conn) update :messages (fnil conj []) data)) (defn http-polling-connect [ring-request] (let [{:keys [fwsid fwinit]} (-> ring-request :query-string parse-query-string)] ;; new connection create the connection (cond (not (get @*connections* fwsid)) (let [conn (create-connection! ring-request {:type :http-polling ::comm-atom (atom {}) :is-open-fn (fn [conn] (< (- (System/currentTimeMillis) (::alive-at conn)) 3000)) :send-fn http-polling-send})] (json-response (naming-response conn))) fwinit (let [conn (get @*connections* fwsid)] (swap! *connections* assoc-in [fwsid :created-at] (System/currentTimeMillis)) (json-response (naming-response conn))) :else ;; otherwise we are polling (let [messages (volatile! []) comm-atom (get-in @*connections* [fwsid ::comm-atom])] (swap! *connections* assoc-in [fwsid ::alive-at] (System/currentTimeMillis)) (swap! comm-atom update :messages (fn [msgs] (vreset! messages (or msgs [])) [])) (json-response (json/write-str {:op :messages :messages (mapv json/read-json @messages) :connection-type :http-polling})))))) (defn http-polling-endpoint [ring-request] (condp = (:request-method ring-request) :get (http-polling-connect ring-request) :post (do (receive-message! (slurp (:body ring-request))) {:status 200 :headers {"Content-Type" "text/html"} :body "Received"}))) ;; simple http polling can be included in any ring middleware stack (defn http-polling-middleware [handler path connections] (fn [ring-request] (if-not (.startsWith (:uri ring-request) path) (handler ring-request) (binding [*connections* connections] (http-polling-endpoint ring-request))))) ;; ------------------------------------------------------------------ ;; http async polling - long polling ;; ------------------------------------------------------------------ ;; long polling is a bit complex - but this currently appears to work ;; as well as websockets in terms of connectivity, it is slower and heavier ;; overall and much harder to determine when it is closed (declare send-for-response) (defn ping [conn] (send-for-response [conn] {:op :ping})) ;; could make no-response behavior configurable (defn ping-thread [connections fwsid {:keys [interval ping-timeout] :or {interval 15000 ping-timeout 2000}}] (doto (Thread. (fn [] (loop [] (Thread/sleep interval) (when-let [conn (get @connections fwsid)] (if-not (try ;; TODO consider re-trying a couple times on failure (deref (ping conn) ping-timeout false) (catch Throwable e false)) (swap! connections dissoc fwsid) (recur)))))) (.setDaemon true) (.start))) ;; agents would be easier but heavier and agent clean up is harder (defn long-poll-send [comm-atom msg] (let [data (volatile! nil) add-message #(if-not msg % (update % :messages (fnil conj []) msg))] (swap! comm-atom (fn [{:keys [respond messages] :as comm}] (if (and respond (or (not-empty messages) msg)) (do (vreset! data (add-message comm)) {}) (add-message comm)))) (when-let [{:keys [respond messages]} @data] ;; when this fails? (respond (json-response (json/write-str {:op :messages :messages (mapv json/read-json messages) :connection-type :http-long-polling})))))) (defn long-poll-capture-respond [comm-atom respond] (let [has-messages (volatile! false)] (swap! comm-atom (fn [{:keys [messages] :as comm}] (vreset! has-messages (not (empty? messages))) (assoc comm :respond respond))) (when @has-messages (long-poll-send comm-atom nil)))) ;; may turn this into a multi method (defn connection-send [{:keys [send-fn] :as conn} data] (send-fn conn data)) (defn send-for-response* [prom conn msg] (let [uuid (str (java.util.UUID/randomUUID)) listener (fn listen [msg] (when (= uuid (:uuid msg)) (when-let [result (:response msg)] (deliver prom (if (instance? clojure.lang.IMeta result) (vary-meta result assoc ::message msg) result))) (remove-listener listen)))] (add-listener listener) (try (connection-send conn (json/write-str (-> (select-keys conn [:session-id :session-name]) (merge msg) (assoc :uuid uuid)))) (catch Throwable t (remove-listener listener) (throw t))))) (def no-connection-result (vary-meta {:status :exception :value "Expected REPL Connections Evaporated!" :stacktrace "No stacktrace available."} assoc ::no-connection-made true)) (defn broadcast-for-response [connections msg] (let [prom (promise) cnt (->> connections (mapv #(try (send-for-response* prom % msg) true (catch Throwable t nil))) (filter some?) count)] (when (zero? cnt) (deliver prom no-connection-result)) prom)) (defn send-for-response [connections msg] (let [prom (promise) sent (loop [[conn & xc] connections] (when conn (if-not (try (send-for-response* prom conn msg) true (catch Throwable t false)) (recur xc) true)))] (when-not sent (deliver prom no-connection-result)) prom)) (defn http-long-polling-connect [ring-request respond raise] (let [{:keys [fwsid fwinit]} (-> ring-request :query-string parse-query-string)] (if (not (get @*connections* fwsid)) (let [conn (create-connection! ring-request {:type :http-long-polling ::comm-atom (atom {:messages []}) :is-open-fn (fn [conn] (not (> (- (System/currentTimeMillis) (::alive-at conn)) 20000))) :send-fn (fn [conn msg] (long-poll-send (::comm-atom conn) msg))})] (respond (json-response (naming-response conn))) ;; keep alive with ping thread ;; This behavior is much more subtle that it appears, it is far better ;; than webserver triggered async timeout because it doesn't ;; leave behind an orphaned respond-fn ;; also it helps us remove lost connections, as I haven't found ;; a way to discover if an HTTPChannel is closed on the remote endpoint ;; TODO a short ping-timeout could be a problem if an ;; env has a long running eval ;; this could reuse the eval timeout (ping-thread *connections* fwsid {:interval 15000 :ping-timeout 2000})) (let [conn (get @*connections* fwsid)] (if fwinit (do (respond (json-response (naming-response conn))) (swap! *connections* assoc-in [fwsid :created-at] (System/currentTimeMillis))) (do (long-poll-capture-respond (::comm-atom conn) respond) (swap! *connections* assoc-in [fwsid ::alive-at] (System/currentTimeMillis)))))))) (defn http-long-polling-endpoint [ring-request send raise] (condp = (:request-method ring-request) :get (http-long-polling-connect ring-request send raise) :post (do (receive-message! (slurp (:body ring-request))) (send {:status 200 :headers {"Content-Type" "text/html"} :body "Received"})))) (defn asyc-http-polling-middleware [handler path connections] (fn [ring-request send raise] (swap! scratch assoc :async-request ring-request) (if-not (.startsWith (:uri ring-request) path) (handler ring-request send raise) (binding [*connections* connections] (try (http-long-polling-endpoint ring-request send raise) (catch Throwable e (raise e))))))) ;; --------------------------------------------------- ;; ReplEnv implmentation ;; --------------------------------------------------- (defn open-connections [] (filter (fn [{:keys [is-open-fn] :as conn}] (try (or (nil? is-open-fn) (is-open-fn conn)) (catch Throwable t false))) (vals @*connections*))) (defn connections-available [repl-env] (sort-by :created-at > (filter (or (some-> repl-env :connection-filter) identity) (open-connections)))) (defn wait-for-connection [repl-env] (loop [] (when (empty? (connections-available repl-env)) (Thread/sleep 500) (recur)))) (defn send-for-eval [{:keys [focus-session-name ;; just here for consideration broadcast] :as repl-env} connections js] (if broadcast (broadcast-for-response connections {:op :eval :code js}) (send-for-response connections {:op :eval :code js}))) (defn eval-connections [{:keys [focus-session-name] :as repl-env}] (let [connections (connections-available repl-env) ;; session focus connections (if-let [focus-conn (and @focus-session-name (first (filter (fn [{:keys [session-name]}] (= @focus-session-name session-name)) connections)))] [focus-conn] (do (reset! focus-session-name nil) connections))] connections)) (defn trim-last-newline [args] (if-let [args (not-empty (filter string? args))] (conj (vec (butlast args)) (string/trim-newline (last args))) args)) (defn print-to-stream [stream args] (condp = stream :out (apply println args) :err (binding [*out* *err*] (apply println args)))) (defn repl-env-print [repl-env stream args] (when-let [args (not-empty (filter string? args))] (when (and (:out-print-fn repl-env) (= :out stream)) (apply (:out-print-fn repl-env) args)) (when (and (:err-print-fn repl-env) (= :err stream)) (apply (:err-print-fn repl-env) args)) (let [args (trim-last-newline args)] (when (:print-to-output-streams repl-env) (if-let [bprinter @(:bound-printer repl-env)] (bprinter stream args) (print-to-stream stream args)))))) (let [timeout-val (Object.)] (defn evaluate [{:keys [focus-session-name ;; just here for consideration repl-eval-timeout broadcast] :as repl-env} js] (reset! (:bound-printer repl-env) (bound-fn [stream args] (print-to-stream stream args))) (wait-for-connection repl-env) (let [ev-connections (eval-connections repl-env) result (let [v (deref (send-for-eval repl-env ev-connections js) (or repl-eval-timeout 8000) timeout-val)] (cond (= timeout-val v) (do (when @focus-session-name (reset! focus-session-name nil)) {:status :exception :value "Eval timed out!" :stacktrace "No stacktrace available."}) (::no-connection-made (meta v)) (do (when @focus-session-name (reset! focus-session-name nil)) v) :else v))] (when-let [out (:out result)] (when (not (string/blank? out)) (repl-env-print repl-env :out [(string/trim-newline out)]))) result))) (defn require-resolve [symbol-str] (let [sym (symbol symbol-str)] (when-let [ns (namespace sym)] (try (require (symbol ns)) (resolve sym) (catch Throwable e nil))))) #_(require-resolve 'figwheel.server.jetty-websocket/run-server) ;; TODO more precise error when loaded but fn doesn't exist (defn dynload [ns-sym-str] (let [resolved (require-resolve ns-sym-str)] (if resolved resolved (throw (ex-info (str "Figwheel: Unable to dynamicly load " ns-sym-str) {:not-loaded ns-sym-str}))))) ;; taken from ring server (defn try-port "Try running a server under one port or a list of ports. If a list of ports is supplied, try each port until it succeeds or runs out of ports." [port server-fn] (if-not (sequential? port) (server-fn port) (try (server-fn (first port)) (catch java.net.BindException ex (if-let [port (next port)] (try-port port server-fn) (throw ex)))))) (defn run-default-server* [options connections] ;; require and run figwheel server (let [server-fn (dynload (get options :ring-server 'figwheel.server.jetty-websocket/run-server)) figwheel-connect-path (get options :figwheel-connect-path "/figwheel-connect")] (server-fn ((dynload (get options :ring-stack 'figwheel.server.ring/default-stack)) (:ring-handler options) ;; TODO this should only work for the default target of browser (cond-> (:ring-stack-options options) (and (contains? #{nil :browser} (:target options)) (:output-to options) (not (get-in (:ring-stack-options options) [:figwheel.server.ring/dev :figwheel.server.ring/system-app-handler]))) (assoc-in [:figwheel.server.ring/dev :figwheel.server.ring/system-app-handler] #(figwheel.server.ring/default-index-html % (figwheel.server.ring/index-html (select-keys options [:output-to])))))) (assoc (get options :ring-server-options) :async-handlers {figwheel-connect-path (-> (fn [ring-request send raise] (send {:status 404 :headers {"Content-Type" "text/html"} :body "Not found: figwheel http-async-polling"})) (asyc-http-polling-middleware figwheel-connect-path connections) (figwheel.server.ring/wrap-async-cors :access-control-allow-origin #".*" :access-control-allow-methods [:head :options :get :put :post :delete :patch]))} ::abstract-websocket-connections {figwheel-connect-path (abstract-websocket-connection connections)})))) (defn run-default-server [options connections] (run-default-server* (update options :ring-server-options #(merge (select-keys options [:host :port]) %)) connections)) (defn fill-server-url-template [url-str {:keys [host port]}] (-> url-str (string/replace "[[server-hostname]]" (or host "localhost")) (string/replace "[[server-port]]" (str port)))) (defn launch-js-helper [script repl-env {:keys [output-to output-dir target open-url output-log-file] :as data}] (let [output-log-file (or (and output-log-file (io/file output-log-file)) (io/file (or output-dir "out") "js-environment.log")) input-data (dissoc data :output-dir :target)] (if (or (symbol? script) (var? script) (fn? script)) ;; TODO consider logging here or let script fn handle it (let [v (if (symbol? script) (dynload script) script)] (doto (Thread. (fn [] (v input-data))) (.setDaemon true) (.start))) (let [shell-command-vector (cond (coll? script) (mapv (fn [x] (if (keyword? x) (get input-data x "") x)) script) (string? script) [script (if (= target :nodejs) output-to open-url)])] (.start (cond-> (ProcessBuilder. (into-array shell-command-vector)) output-log-file (.redirectError (io/file output-log-file)) output-log-file (.redirectOutput (io/file output-log-file)))))))) (defn launch-js [script repl-env {:keys [output-dir] :or {output-dir "out"} :as opts}] (let [output-log-file (str (io/file output-dir "js-environment.log"))] (println "Launching Javascript environment with script: " (pr-str script)) (reset! (:node-proc repl-env) (launch-js-helper script repl-env (assoc opts :output-log-file output-log-file))) (when (not (symbol? script)) (println "Environment output being logged to:" output-log-file)))) (defn launch-node [opts repl-env input-path & [output-log-file]] (let [xs (cond-> [(get repl-env :node-command "node")] (:inspect-node repl-env true) (conj "--inspect") input-path (conj input-path)) proc (cond-> (ProcessBuilder. (into-array xs)) output-log-file (.redirectError (io/file output-log-file)) output-log-file (.redirectOutput (io/file output-log-file)))] (.start proc))) ;; when doing a port search ;; - what needs to know the port afterwards? ;; - auto open the browser, this is easy enough. ;; - the connect-url needs to know, but it can use browser port ;; - the default index.html needs to find the main.js (it can inline it) ;; XXX refactor as we need to breakdown these actions and allow ;; the consumer to inject this behavior via a :setup-fn (defn setup [repl-env opts] (when (and (or (not (bound? #'*server*)) (nil? *server*)) (nil? @(:server repl-env))) (let [server (run-default-server (merge (select-keys repl-env [:port :host :target :output-to :ring-handler :ring-server :ring-server-options :ring-stack :ring-stack-options]) (select-keys opts [:target :output-to])) *connections*)] (reset! (:server repl-env) server))) ;; printing (when-not @(:printing-listener repl-env) (let [print-listener (bound-fn [{:keys [session-id session-name uuid response] :as msg}] (when (and session-id (not uuid) (get response :output)) (let [session-ids (set (map :session-id (eval-connections repl-env)))] (when (session-ids session-id) (let [{:keys [stream args]} response] (when (and stream (not-empty args)) ;; when printing a result from several sessions mark it (let [args (if-not (= 1 (count session-ids)) (cons (str "[Session:-----:" session-name "]\n") args) args)] (repl-env-print repl-env stream args))))))))] (reset! (:printing-listener repl-env) print-listener) (add-listener print-listener))) (let [{:keys [target output-to output-dir]} (apply merge (map #(select-keys % [:target :output-to :output-dir]) [repl-env opts])) open-url (and (:open-url repl-env) (fill-server-url-template (:open-url repl-env) (merge (select-keys repl-env [:host :port]) (select-keys (:ring-server-options repl-env) [:host :port]))))] (cond (:launch-js repl-env) (launch-js (:launch-js repl-env) repl-env {:output-to output-to :open-url open-url :output-dir output-dir :target target}) ;; Node REPL (and (= :nodejs target) (:launch-node repl-env true) output-to) (let [output-file (io/file output-dir "node.log")] (println "Starting node ... ") (reset! (:node-proc repl-env) (launch-node opts repl-env output-to output-file)) (println "Node output being logged to:" (str output-file)) (when (:inspect-node repl-env true) (println "For a better development experience:") (println " 1. Open chrome://inspect/#devices ... (in Chrome)") (println " 2. Click \"Open dedicated DevTools for Node\""))) ;; open a url (and (not (= :nodejs target)) open-url) (if-let [open (:open-url-fn repl-env)] (open open-url) (do (println "Opening URL" open-url) (try (browse/browse-url open-url) (catch Throwable t (println "Failed to open browser:" (.getMessage t)))))) (and (nil? target) (not (:launch-js repl-env)) (false? open-url)) (println "JavaScript environment will not launch automatically when :open-url is false") (and (= :nodejs target) (not (:launch-js repl-env)) (false? (:launch-node repl-env))) (println "JavaScript environment will not launch automatically when :launch-node is false") :else nil))) (defn tear-down-server [{:keys [server]}] (when-let [svr @server] (reset! server nil) (.stop svr))) (defn tear-down-everything-but-server [{:keys [printing-listener node-proc]}] (when-let [proc @node-proc] (if (instance? Thread proc) (.stop proc) (.destroy proc)) #_(.waitFor proc) ;; ? ) (when-let [listener @printing-listener] (remove-listener listener))) (defrecord FigwheelReplEnv [] cljs.repl/IJavaScriptEnv (-setup [this opts] (setup this opts) #_(wait-for-connection this)) (-evaluate [this _ _ js] ;; print where eval occurs (evaluate this js)) (-load [this provides url] ;; load a file into all the appropriate envs (when-let [js-content (try (slurp url) (catch Throwable t))] (evaluate this js-content))) (-tear-down [repl-env] (when-not (:prevent-server-tear-down repl-env) (tear-down-server repl-env)) (tear-down-everything-but-server repl-env)) cljs.repl/IReplEnvOptions (-repl-options [this] (let [main-fn (resolve 'figwheel.main/default-main)] (cond-> {;:browser-repl true :preloads '[[figwheel.repl.preload]] :cljs.cli/commands {:groups {::repl {:desc "Figwheel REPL options"}} :init {["-H" "--host"] {:group ::repl :fn #(assoc-in %1 [:repl-env-options :host] %2) :arg "address" :doc "Address to bind"} ["-p" "--port"] {:group ::repl :fn #(assoc-in %1 [:repl-env-options :port] (Integer/parseInt %2)) :arg "number" :doc "Port to bind"} ["-rh" "--ring-handler"] {:group ::repl :fn #(assoc-in %1 [:repl-env-options :ring-handler] (when %2 (dynload %2))) :arg "string" :doc "Ring Handler for default REPL server EX. \"example.server/handler\" "}}}} main-fn (assoc :cljs.cli/main @main-fn)))) cljs.repl/IParseStacktrace (-parse-stacktrace [this st err opts] (cljs.stacktrace/parse-stacktrace this st err opts))) (defn repl-env* [{:keys [port open-url connection-filter] :or {connection-filter identity open-url "http://[[server-hostname]]:[[server-port]]" port default-port} :as opts}] (merge (FigwheelReplEnv.) ;; TODO move to one atom {:server (atom nil) :printing-listener (atom nil) :bound-printer (atom nil) :open-url open-url ;; helpful for nrepl so you can easily ;; translate output into messages :out-print-fn nil :err-print-fn nil :node-proc (atom nil) :print-to-output-streams true :connection-filter connection-filter :focus-session-name (atom nil) :broadcast false :port port} opts)) ;; ------------------------------------------------------ ;; Connection management ;; ------------------------------------------------------ ;; mostly for use from the REPL (defn list-connections [] (let [conns (connections-available cljs.repl/*repl-env*) longest-name (apply max (cons (count "Session Name") (map (comp count :session-name) conns)))] (println (format (str "%-" longest-name "s %7s %s") "Session Name" "Age" "URL")) (doseq [{:keys [session-name uri query-string created-at]} conns] (println (format (str "%-" longest-name "s %6sm %s") session-name (Math/round (/ (- (System/currentTimeMillis) created-at) 60000.0)) uri))))) (defn will-eval-on [] (if-let [n @(:focus-session-name cljs.repl/*repl-env*)] (println "Focused On: " n) (println "Will Eval On: " (->> (connections-available cljs.repl/*repl-env*) first :session-name)))) (defn conns* [] (will-eval-on) (list-connections)) (defmacro conns [] (conns*)) (defn focus* [session-name] (let [names (map :session-name (connections-available cljs.repl/*repl-env*)) session-name (name session-name)] (if ((set names) session-name) (str "Focused On: " (reset! (:focus-session-name cljs.repl/*repl-env*) session-name)) (str "Error: " session-name " not in " (pr-str names))))) (defmacro focus [session-name] (focus* session-name)) ;; TODOS ;; - try https setup ;; - make work on node and other platforms ;; - find open port ;; - repl args from main ;; TODO exponential backoff for websocket should max out at 20 or lower ;; TODO figwheel-repl-core package ;; TODO figwheel-repl package that includes default server ;; TODO NPE that occurs in open-connections when websocket isn't cleared ;; happens on eval (comment (def serve (run-default-server {:ring-handler (fn [r] (throw (ex-info "Testing" {})) #_{:status 404 :headers {"Content-Type" "text/html"} :body "Yeppers now"}) :port 9500} *connections*)) (.stop serve) scratch (do (cljs.repl/-tear-down re) (def re (repl-env* {:output-to "dev-resources/public/out/main.js"})) (cljs.repl/-setup re {})) (connections-available re) (open-connections) (evaluate (assoc re :broadcast true) "88") (evaluate re "setTimeout(function() {cljs.core.prn(\"hey hey\")}, 1000);") (= (mapv #(:value (evaluate re (str %))) (range 100)) (range 100)) (def x (ping (first (vals @*connections*)))) (negotiate-id (:ring-request @scratch) @*connections*) (def channel (:body (:async-request @scratch))) (.isReady channel) (ping ( (vals @*connections*)) ) (swap! *connections* dissoc "99785176-1793-4814-938a-93bf071acd2f") (swap! scratch dissoc :print-msg) scratch *connections* (deref ) (swap! *connections* dissoc "d9ffc9ac-b2ec-4660-93c1-812afd1cb032") (parse-query-string (:query-string (:ring-request @scratch))) (negotiate-name (:ring-request @scratch) @*connections*) (reset! *connections* (atom {})) (binding [cljs.repl/*repl-env* re] (conns*) #_(focus* 'Judson)) ) (def name-list (set (map str '[<NAME> <NAME> <NAME> <NAME>]))) #_(defonce ^:private message-loop (doto (Thread. #(let [x (.take messageq) listeners @listener-set] (doseq [f listeners] (try (f x) (catch Throwable ex))) (recur)) (str ::message-loop)) (.setDaemon true) (.start))) ))
true
(ns figwheel.repl (:require [clojure.string :as string] #?@(:cljs [[goog.object :as gobj] [goog.storage.mechanism.mechanismfactory :as storage-factory] [goog.Uri :as guri] [goog.string :as gstring] [goog.net.jsloader :as loader] [goog.net.XhrIo :as xhrio] [goog.log :as glog] [goog.array :as garray] [goog.json :as gjson] [goog.html.legacyconversions :as conv] [goog.userAgent.product :as product]] :clj [[clojure.data.json :as json] [clojure.set :as set] [clojure.edn :as edn] [clojure.java.browse :as browse] [cljs.repl] [cljs.stacktrace] [clojure.java.io :as io] [clojure.string :as string] [figwheel.server.ring]])) (:import #?@(:cljs [goog.net.WebSocket goog.debug.Console [goog.Uri QueryData] [goog Promise] [goog.storage.mechanism HTML5SessionStorage]] :clj [java.util.concurrent.ArrayBlockingQueue java.net.URLDecoder [java.lang ProcessBuilder Process]]))) (def default-port 9500) #?(:cljs (do ;; TODO dev only ;; -------------------------------------------------- ;; Logging ;; -------------------------------------------------- ;; ;; Levels ;; goog.debug.Logger.Level.(SEVERE WARNING INFO CONFIG FINE FINER FINEST) ;; ;; set level (.setLevel logger goog.debug.Logger.Level.INFO) ;; disable (.setCapturing log-console false) (defonce logger (glog/getLogger "Figwheel REPL")) (defn ^:export console-logging [] (when-not (gobj/get goog.debug.Console "instance") (let [c (goog.debug.Console.)] ;; don't display time (doto (.getFormatter c) (gobj/set "showAbsoluteTime" false) (gobj/set "showRelativeTime" false)) (gobj/set goog.debug.Console "instance" c) c)) (when-let [console-instance (gobj/get goog.debug.Console "instance")] (.setCapturing console-instance true) true)) (defonce log-console (console-logging)) (defn debug [msg] (glog/log logger goog.debug.Logger.Level.FINEST msg)) ;; TODO dev #_(.setLevel logger goog.debug.Logger.Level.FINEST) ;; -------------------------------------------------------------- ;; Bootstrap goog require reloading ;; -------------------------------------------------------------- (declare queued-file-reload) (defn unprovide! [ns] (let [path (gobj/get js/goog.dependencies_.nameToPath ns)] (gobj/remove js/goog.dependencies_.visited path) (gobj/remove js/goog.dependencies_.written path) (gobj/remove js/goog.dependencies_.written (str js/goog.basePath path)))) ;; this will not work unless bootstrap has been called (defn figwheel-require [src reload] ;; require is going to be called (set! (.-require js/goog) figwheel-require) (when (= reload "reload-all") (set! (.-cljsReloadAll_ js/goog) true)) (when (or reload (.-cljsReloadAll_ js/goog)) (unprovide! src)) (let [res (.require_figwheel_backup_ js/goog src)] (when (= reload "reload-all") (set! (.-cljsReloadAll_ js/goog) false)) res)) (defn bootstrap-goog-base "Reusable browser REPL bootstrapping. Patches the essential functions in goog.base to support re-loading of namespaces after page load." [] ;; The biggest problem here is that clojure.browser.repl might have ;; patched this or might patch this afterward (when-not js/COMPILED (when-not (.-require_figwheel_backup_ js/goog) (set! (.-require_figwheel_backup_ js/goog) (or js/goog.require__ js/goog.require))) (set! (.-isProvided_ js/goog) (fn [name] false)) (when-not (and (exists? js/cljs) (exists? js/cljs.user)) (goog/constructNamespace_ "cljs.user")) (set! (.-CLOSURE_IMPORT_SCRIPT goog/global) queued-file-reload) (set! (.-require js/goog) figwheel-require))) (defn patch-goog-base [] (defonce bootstrapped-cljs (do (bootstrap-goog-base) true))) ;; -------------------------------------------------------------- ;; File reloading on different platforms ;; -------------------------------------------------------------- ;; this assumes no query string on url (defn add-cache-buster [url] (.makeUnique (guri/parse url))) (def gloader (cond (exists? loader/safeLoad) #(loader/safeLoad (conv/trustedResourceUrlFromString (str %1)) %2) (exists? loader/load) #(loader/load (str %1) %2) :else (throw (ex-info "No remote script loading function found." {})))) (defn reload-file-in-html-env [request-url callback] {:pre [(string? request-url) (not (nil? callback))]} (doto (gloader (add-cache-buster request-url) #js {:cleanupWhenDone true}) (.addCallback #(apply callback [true])) (.addErrback #(apply callback [false])))) (def ^:export write-script-tag-import reload-file-in-html-env) (defn ^:export worker-import-script [request-url callback] {:pre [(string? request-url) (not (nil? callback))]} (callback (try (do (.importScripts js/self (add-cache-buster request-url)) true) (catch js/Error e (glog/error logger (str "Figwheel: Error loading file " request-url)) (glog/error logger e) false)))) (defn ^:export create-node-script-import-fn [] (let [node-path-lib (js/require "path") ;; just finding a file that is in the cache so we can ;; figure out where we are util-pattern (str (.-sep node-path-lib) (.join node-path-lib "goog" "bootstrap" "nodejs.js")) util-path (gobj/findKey js/require.cache (fn [v k o] (gstring/endsWith k util-pattern))) parts (-> (string/split util-path #"[/\\]") pop pop) root-path (string/join (.-sep node-path-lib) parts)] (fn [request-url callback] (assert (string? request-url) (not (nil? callback))) (let [cache-path (.resolve node-path-lib root-path request-url)] (gobj/remove (.-cache js/require) cache-path) (callback (try (js/require cache-path) (catch js/Error e (glog/error logger (str "Figwheel: Error loading file " cache-path)) (glog/error logger e) false))))))) (def host-env (cond (not (nil? goog/nodeGlobalRequire)) :node (not (nil? goog/global.document)) :html (and (exists? goog/global.navigator) (= goog/global.navigator.product "ReactNative")) :react-native (and (nil? goog/global.document) (exists? js/self) (exists? (.-importScripts js/self))) :worker)) (def reload-file* (condp = host-env :node (create-node-script-import-fn) :html write-script-tag-import :worker worker-import-script (fn [a b] (throw "Reload not defined for this platform")))) ;; TODO Should just leverage the import script here somehow (defn reload-file [{:keys [request-url] :as file-msg} callback] {:pre [(string? request-url) (not (nil? callback))]} (glog/fine logger (str "Attempting to load " request-url)) ((or (gobj/get goog.global "FIGWHEEL_IMPORT_SCRIPT") reload-file*) request-url (fn [success?] (if success? (do (glog/fine logger (str "Successfully loaded " request-url)) (apply callback [(assoc file-msg :loaded-file true)])) (do (glog/error logger (str "Error loading file " request-url)) (apply callback [file-msg])))))) ;; for goog.require consumption (defonce reload-promise-chain (atom (Promise. #(%1 true)))) (defn queued-file-reload ([url] (queued-file-reload url nil)) ([url opt-source-text] (when-let [next-promise-fn (cond opt-source-text #(.then % (fn [_] (Promise. (fn [r _] (try (js/eval opt-source-text) (catch js/Error e (glog/error logger e))) (r true))))) url #(.then % (fn [_] (Promise. (fn [r _] (reload-file {:request-url url} (fn [file-msg] (r true))))))))] (swap! reload-promise-chain next-promise-fn)))) (defn ^:export after-reloads [f] (swap! reload-promise-chain #(.then % f))) ;; -------------------------------------------------------------- ;; REPL print forwarding ;; -------------------------------------------------------------- (goog-define print-output "console,repl") (defn print-receivers [outputs] (->> (string/split outputs #",") (map string/trim) (filter (complement string/blank?)) (map keyword) set)) (defmulti out-print (fn [k args] k)) (defmethod out-print :console [_ args] (.apply (.-log js/console) js/console (garray/clone (to-array args)))) (defmulti err-print (fn [k args] k)) (defmethod err-print :console [_ args] (.apply (.-error js/console) js/console (garray/clone (to-array args)))) (defn setup-printing! [] (let [printers (print-receivers print-output)] (set-print-fn! (fn [& args] (doseq [p printers] (out-print p args)))) (set-print-err-fn! (fn [& args] (doseq [p printers] (err-print p args)))))) #_ (printing-receivers "console,repl") ;; -------------------------------------------------------------- ;; Websocket REPL ;; -------------------------------------------------------------- (goog-define connect-url "ws://[[client-hostname]]:[[client-port]]/figwheel-connect") (def state (atom {})) ;; returns nil if not available (def storage (storage-factory/createHTML5SessionStorage "figwheel.repl")) (defn set-state [k v] (swap! state assoc k v) (when storage (.set storage (str k) v))) (defn get-state [k] (if storage (.get storage (str k)) (get @state k))) (defn ^:export session-name [] (get-state ::session-name)) (defn ^:export session-id [] (get-state ::session-id)) (defn response-for [{:keys [uuid]} response-body] (cond-> {:session-id (session-id) :session-name (session-name) :response response-body} uuid (assoc :uuid uuid))) ;; this is a fire and forget POST (def http-post (condp = host-env :node (let [http (js/require "http")] (fn [url post-data] (let [data (volatile! "") uri (guri/parse (str url))] (-> (.request http #js {:host (.getDomain uri) :port (.getPort uri) :path (str (.getPath uri) (when-let [q (.getQuery uri)] (str "?" q))) :method "POST" :headers #js {"Content-Length" (js/Buffer.byteLength post-data)}} (fn [x])) (.on "error" #(js/console.error %)) (doto (.write post-data) (.end)))))) (fn [url response] (xhrio/send url (fn [e] (debug "Response Posted")) "POST" response)))) (defn respond-to [{:keys [websocket http-url] :as old-msg} response-body] (let [response (response-for old-msg response-body)] (cond websocket (.send websocket (pr-str response)) http-url (http-post http-url (pr-str response))))) (defn respond-to-connection [response-body] (respond-to (:connection @state) response-body)) (defmulti message :op) (defmethod message "naming" [msg] (when-let [sn (:session-name msg)] (set-state ::session-name sn)) (when-let [sid (:session-id msg)] (set-state ::session-id sid)) (glog/info logger (str "Session ID: " (session-id))) (glog/info logger (str "Session Name: " (session-name)))) (defmethod message "ping" [msg] (respond-to msg {:pong true})) (defn get-ua-product [] (cond (not (nil? goog/nodeGlobalRequire)) :chrome product/SAFARI :safari product/CHROME :chrome product/FIREFOX :firefox product/IE :ie)) (let [print-to-console? ((print-receivers print-output) :console)] (defn eval-javascript** [code] (let [ua-product (get-ua-product)] (try (let [sb (js/goog.string.StringBuffer.)] ;; TODO capture err as well? (binding [cljs.core/*print-newline* true cljs.core/*print-fn* (fn [x] (.append sb x))] (let [result-value (js/eval code) ;; the result needs to be readable result-value (if-not (string? result-value) (try (pr-str result-value) (catch js/Error e nil)) result-value) output-str (str sb)] (when (and print-to-console? (not (zero? (.getLength sb)))) (js/setTimeout #(out-print :console [output-str]) 0)) {:status :success :out output-str :ua-product ua-product :value result-value}))) (catch js/Error e ;; logging errors to console helpful (when (and (exists? js/console) (exists? js/console.error)) (js/console.error "REPL eval error" e)) {:status :exception :value (pr-str e) :ua-product ua-product :stacktrace (.-stack e)}) (catch :default e {:status :exception :ua-product ua-product :value (pr-str e) :stacktrace "No stacktrace available."}))))) (defmethod message "eval" [{:keys [code] :as msg}] (let [result (eval-javascript** code)] (respond-to msg result))) (defmethod message "messages" [{:keys [messages http-url]}] (doseq [msg messages] (message (cond-> (js->clj msg :keywordize-keys true) http-url (assoc :http-url http-url))))) (defn fill-url-template [connect-url'] (if (= host-env :html) (-> connect-url' (string/replace "[[client-hostname]]" js/location.hostname) (string/replace "[[client-port]]" js/location.port)) connect-url')) (defn make-url [connect-url'] (let [uri (guri/parse (fill-url-template (or connect-url' connect-url)))] (cond-> (.add (.getQueryData uri) "fwsid" (or (session-id) (random-uuid))) (session-name) (.add "fwsname" (session-name))) uri)) (defn exponential-backoff [attempt] (* 1000 (min (js/Math.pow 2 attempt) 20))) (defn hook-repl-printing-output! [respond-msg] (defmethod out-print :repl [_ args] (respond-to respond-msg {:output true :stream :out :args (mapv #(if (string? %) % (gjson/serialize %)) args)})) (defmethod err-print :repl [_ args] (respond-to respond-msg {:output true :stream :err :args (mapv #(if (string? %) % (gjson/serialize %)) args)})) (setup-printing!)) (defn connection-established! [url] (when (= host-env :html) (let [target (.. goog.global -document -body)] (.dispatchEvent target (doto (js/Event. "figwheel.repl.connected" target) (gobj/add "data" {:url url})))))) (defn connection-closed! [url] (when (= host-env :html) (let [target (.. goog.global -document -body)] (.dispatchEvent target (doto (js/Event. "figwheel.repl.disconnected" target) (gobj/add "data" {:url url})))))) (defn get-websocket-class [] (or (gobj/get goog.global "WebSocket") (gobj/get goog.global "FIGWHEEL_WEBSOCKET_CLASS") (and (= host-env :node) (try (js/require "ws") (catch js/Error e nil))) (and (= host-env :worker) (gobj/get js/self "WebSocket")))) (defn ensure-websocket [thunk] (if (gobj/get goog.global "WebSocket") (thunk) (if-let [websocket-class (get-websocket-class)] (do (gobj/set goog.global "WebSocket" websocket-class) (thunk) (gobj/set goog.global "WebSocket" nil)) (do (glog/error logger (if (= host-env :node) "Can't connect!! Please make sure ws is installed\n do -> 'npm install ws'" "Can't connect!! This client doesn't support WebSockets")))))) (defn ws-connect [& [websocket-url']] (ensure-websocket #(let [websocket (goog.net.WebSocket.) url (str (make-url websocket-url'))] (try (doto websocket (.addEventListener goog.net.WebSocket.EventType.MESSAGE (fn [e] (when-let [msg (gobj/get e "message")] (try (debug msg) (message (assoc (js->clj (js/JSON.parse msg) :keywordize-keys true) :websocket websocket)) (catch js/Error e (glog/error logger e)))))) (.addEventListener goog.net.WebSocket.EventType.OPENED (fn [e] (connection-established! url) (swap! state assoc :connection {:websocket websocket}) (hook-repl-printing-output! {:websocket websocket}))) (.addEventListener goog.net.WebSocket.EventType.CLOSED (fn [e] (connection-closed! url))) (.open url)))))) ;; ----------------------------------------------------------- ;; HTTP simple and long polling ;; ----------------------------------------------------------- (def http-get (condp = host-env :node (let [http (js/require "http")] (fn [url] (Promise. (fn [succ err] (let [data (volatile! "")] (-> (.get http (str url) (fn [response] (.on response "data" (fn [chunk] (vswap! data str chunk))) (.on response "end" #(succ (try (js/JSON.parse @data) (catch js/Error e (js/console.error e) (err e))))))) (.on "error" err))))))) (fn [url] (Promise. (fn [succ err] (xhrio/send url (fn [e] (let [xhr (gobj/get e "target")] (if (.isSuccess xhr) (succ (.getResponseJson xhr)) (err xhr)))))))))) (declare http-connect http-connect*) (defn poll [msg-fn connect-url'] (.then (http-get (make-url connect-url')) (fn [msg] (msg-fn msg) (js/setTimeout #(poll msg-fn connect-url') 500)) (fn [e] ;; lost connection (connection-closed! connect-url') (http-connect connect-url')))) (defn long-poll [msg-fn connect-url'] (.then (http-get (make-url connect-url')) (fn [msg] (msg-fn msg) (long-poll msg-fn connect-url')) (fn [e] ;; lost connection (connection-closed! connect-url') (http-connect connect-url')))) (defn http-connect* [attempt connect-url'] (let [url (make-url connect-url') surl (str url) msg-fn (fn [msg] (try (debug (pr-str msg)) (message (assoc (js->clj msg :keywordize-keys true) :http-url surl)) (catch js/Error e (glog/error logger e))))] (doto (.getQueryData url) (.add "fwinit" "true")) (.then (http-get url) (fn [msg] (let [typ (gobj/get msg "connection-type")] (glog/info logger (str "Connected: " typ)) (msg-fn msg) (connection-established! url) ;; after connecting setup printing redirects (swap! state assoc :connection {:http-url surl}) (hook-repl-printing-output! {:http-url surl}) (if (= typ "http-long-polling") (long-poll msg-fn connect-url') (poll msg-fn connect-url')))) (fn [e];; didn't connect (when (instance? js/Error e) (glog/error logger e)) (when (and (instance? goog.net.XhrIo e) (.getResponseBody e)) (debug (.getResponseBody e))) (let [wait-time (exponential-backoff attempt)] (glog/info logger (str "HTTP Connection Error: next connection attempt in " (/ wait-time 1000) " seconds")) (js/setTimeout #(http-connect* (inc attempt) connect-url') wait-time)))))) (defn http-connect [& [connect-url']] (http-connect* 0 connect-url')) (defn switch-to-http? [url] (if (or (gstring/startsWith url "http") (get-websocket-class)) url (do (glog/warning logger (str "No WebSocket implementation found! Falling back to http-long-polling" (when (= host-env :node) ":\n For a more efficient connection ensure that \"ws\" is installed :: do -> 'npm install ws'"))) (-> (guri/parse url) (.setScheme "http") str)))) (goog-define client-log-level "info") (def log-levels (into {} (map (juxt string/lower-case #(gobj/get goog.debug.Logger.Level %)) (map str '(SEVERE WARNING INFO CONFIG FINE FINER FINEST))))) (defn set-log-level [logger' level] (if-let [lvl (get log-levels level)] (do (.setLevel logger' lvl) (debug (str "setting log level to " level))) (glog/warn (str "Log level " (pr-str level) " doesn't exist must be one of " (pr-str '("severe" "warning" "info" "config" "fine" "finer" "finest")))))) (defn init-log-level! [] (doseq [logger' (cond-> [logger] (exists? js/figwheel.core) (conj js/figwheel.core.logger))] (set-log-level logger' client-log-level))) (defn connect* [connect-url'] (init-log-level!) (patch-goog-base) (let [url (switch-to-http? (string/trim (or connect-url' connect-url)))] (cond (gstring/startsWith url "ws") (ws-connect url) (gstring/startsWith url "http") (http-connect url)))) (defn connect [& [connect-url']] (defonce connected (do (connect* connect-url') true)))) ) ;; end :cljs #?(:clj (do (defonce ^:private listener-set (atom {})) (defn add-listener ([f] (add-listener f f)) ([k f] (swap! listener-set assoc k f) nil)) (defn remove-listener [k] (swap! listener-set dissoc k) nil) (defn clear-listeners [] (reset! listener-set {})) (declare name-list) (defn log [& args] (spit "server.log" (apply prn-str args) :append true)) (defonce scratch (atom {})) (def ^:dynamic *server* nil) (defn parse-query-string [qs] (when (string? qs) (into {} (for [[_ k v] (re-seq #"([^&=]+)=([^&]+)" qs)] [(keyword k) (java.net.URLDecoder/decode v)])))) ;; ------------------------------------------------------------------ ;; Connection management ;; ------------------------------------------------------------------ (defonce ^:dynamic *connections* (atom {})) (defn taken-names [connections] (set (mapv :session-name (vals connections)))) (defn available-names [connections] (set/difference name-list (taken-names connections))) (defn negotiate-id [ring-request connections] (let [query (parse-query-string (:query-string ring-request)) sid (:fwsid query (str (java.util.UUID/randomUUID))) sname (or (some-> connections (get sid) :session-name) (when-let [chosen-name (:fwsname query)] (when-not ((taken-names connections) chosen-name) chosen-name)) (rand-nth (seq (available-names connections))))] [sid sname])) (defn create-connection! [ring-request options] (let [[sess-id sess-name] (negotiate-id ring-request @*connections*) conn (merge (select-keys ring-request [:server-port :scheme :uri :server-name :query-string :request-method]) (cond-> {:session-name sess-name :session-id sess-id ::alive-at (System/currentTimeMillis) :created-at (System/currentTimeMillis)} (:query-string ring-request) (assoc :query (parse-query-string (:query-string ring-request)))) options)] (swap! *connections* assoc sess-id conn) conn)) (defn remove-connection! [{:keys [session-id] :as conn}] (swap! *connections* dissoc session-id)) (defn receive-message! [data] (when-let [data (try (edn/read-string data) (catch Throwable t (binding [*out* *err*] (clojure.pprint/pprint (Throwable->map t)))))] (doseq [[_ f] @listener-set] (try (f data) (catch Throwable ex))))) (defn naming-response [{:keys [session-name session-id type] :as conn}] (json/write-str {:op :naming :session-name session-name :session-id session-id :connection-type type})) ;; ------------------------------------------------------------------ ;; Websocket behavior ;; ------------------------------------------------------------------ (defn abstract-websocket-connection [connections] (let [conn (volatile! nil)] {:on-connect (fn [{:keys [request send-fn close-fn is-open-fn] :as connect-data}] ;; TODO remove dev only (swap! scratch assoc :ring-request request) (binding [*connections* connections] (let [conn' (create-connection! request {:type :websocket :is-open-fn is-open-fn :close-fn close-fn :send-fn (fn [_ data] (send-fn data))})] (vreset! conn conn') (send-fn (naming-response conn'))))) :on-close (fn [status] (binding [*connections* connections] (remove-connection! @conn))) :on-receive (fn [data] (binding [*connections* connections] (receive-message! data)))})) ;; ------------------------------------------------------------------ ;; http polling ;; ------------------------------------------------------------------ (defn json-response [json-body] {:status 200 :headers {"Content-Type" "application/json"} :body json-body}) (defn http-polling-send [conn data] (swap! (::comm-atom conn) update :messages (fnil conj []) data)) (defn http-polling-connect [ring-request] (let [{:keys [fwsid fwinit]} (-> ring-request :query-string parse-query-string)] ;; new connection create the connection (cond (not (get @*connections* fwsid)) (let [conn (create-connection! ring-request {:type :http-polling ::comm-atom (atom {}) :is-open-fn (fn [conn] (< (- (System/currentTimeMillis) (::alive-at conn)) 3000)) :send-fn http-polling-send})] (json-response (naming-response conn))) fwinit (let [conn (get @*connections* fwsid)] (swap! *connections* assoc-in [fwsid :created-at] (System/currentTimeMillis)) (json-response (naming-response conn))) :else ;; otherwise we are polling (let [messages (volatile! []) comm-atom (get-in @*connections* [fwsid ::comm-atom])] (swap! *connections* assoc-in [fwsid ::alive-at] (System/currentTimeMillis)) (swap! comm-atom update :messages (fn [msgs] (vreset! messages (or msgs [])) [])) (json-response (json/write-str {:op :messages :messages (mapv json/read-json @messages) :connection-type :http-polling})))))) (defn http-polling-endpoint [ring-request] (condp = (:request-method ring-request) :get (http-polling-connect ring-request) :post (do (receive-message! (slurp (:body ring-request))) {:status 200 :headers {"Content-Type" "text/html"} :body "Received"}))) ;; simple http polling can be included in any ring middleware stack (defn http-polling-middleware [handler path connections] (fn [ring-request] (if-not (.startsWith (:uri ring-request) path) (handler ring-request) (binding [*connections* connections] (http-polling-endpoint ring-request))))) ;; ------------------------------------------------------------------ ;; http async polling - long polling ;; ------------------------------------------------------------------ ;; long polling is a bit complex - but this currently appears to work ;; as well as websockets in terms of connectivity, it is slower and heavier ;; overall and much harder to determine when it is closed (declare send-for-response) (defn ping [conn] (send-for-response [conn] {:op :ping})) ;; could make no-response behavior configurable (defn ping-thread [connections fwsid {:keys [interval ping-timeout] :or {interval 15000 ping-timeout 2000}}] (doto (Thread. (fn [] (loop [] (Thread/sleep interval) (when-let [conn (get @connections fwsid)] (if-not (try ;; TODO consider re-trying a couple times on failure (deref (ping conn) ping-timeout false) (catch Throwable e false)) (swap! connections dissoc fwsid) (recur)))))) (.setDaemon true) (.start))) ;; agents would be easier but heavier and agent clean up is harder (defn long-poll-send [comm-atom msg] (let [data (volatile! nil) add-message #(if-not msg % (update % :messages (fnil conj []) msg))] (swap! comm-atom (fn [{:keys [respond messages] :as comm}] (if (and respond (or (not-empty messages) msg)) (do (vreset! data (add-message comm)) {}) (add-message comm)))) (when-let [{:keys [respond messages]} @data] ;; when this fails? (respond (json-response (json/write-str {:op :messages :messages (mapv json/read-json messages) :connection-type :http-long-polling})))))) (defn long-poll-capture-respond [comm-atom respond] (let [has-messages (volatile! false)] (swap! comm-atom (fn [{:keys [messages] :as comm}] (vreset! has-messages (not (empty? messages))) (assoc comm :respond respond))) (when @has-messages (long-poll-send comm-atom nil)))) ;; may turn this into a multi method (defn connection-send [{:keys [send-fn] :as conn} data] (send-fn conn data)) (defn send-for-response* [prom conn msg] (let [uuid (str (java.util.UUID/randomUUID)) listener (fn listen [msg] (when (= uuid (:uuid msg)) (when-let [result (:response msg)] (deliver prom (if (instance? clojure.lang.IMeta result) (vary-meta result assoc ::message msg) result))) (remove-listener listen)))] (add-listener listener) (try (connection-send conn (json/write-str (-> (select-keys conn [:session-id :session-name]) (merge msg) (assoc :uuid uuid)))) (catch Throwable t (remove-listener listener) (throw t))))) (def no-connection-result (vary-meta {:status :exception :value "Expected REPL Connections Evaporated!" :stacktrace "No stacktrace available."} assoc ::no-connection-made true)) (defn broadcast-for-response [connections msg] (let [prom (promise) cnt (->> connections (mapv #(try (send-for-response* prom % msg) true (catch Throwable t nil))) (filter some?) count)] (when (zero? cnt) (deliver prom no-connection-result)) prom)) (defn send-for-response [connections msg] (let [prom (promise) sent (loop [[conn & xc] connections] (when conn (if-not (try (send-for-response* prom conn msg) true (catch Throwable t false)) (recur xc) true)))] (when-not sent (deliver prom no-connection-result)) prom)) (defn http-long-polling-connect [ring-request respond raise] (let [{:keys [fwsid fwinit]} (-> ring-request :query-string parse-query-string)] (if (not (get @*connections* fwsid)) (let [conn (create-connection! ring-request {:type :http-long-polling ::comm-atom (atom {:messages []}) :is-open-fn (fn [conn] (not (> (- (System/currentTimeMillis) (::alive-at conn)) 20000))) :send-fn (fn [conn msg] (long-poll-send (::comm-atom conn) msg))})] (respond (json-response (naming-response conn))) ;; keep alive with ping thread ;; This behavior is much more subtle that it appears, it is far better ;; than webserver triggered async timeout because it doesn't ;; leave behind an orphaned respond-fn ;; also it helps us remove lost connections, as I haven't found ;; a way to discover if an HTTPChannel is closed on the remote endpoint ;; TODO a short ping-timeout could be a problem if an ;; env has a long running eval ;; this could reuse the eval timeout (ping-thread *connections* fwsid {:interval 15000 :ping-timeout 2000})) (let [conn (get @*connections* fwsid)] (if fwinit (do (respond (json-response (naming-response conn))) (swap! *connections* assoc-in [fwsid :created-at] (System/currentTimeMillis))) (do (long-poll-capture-respond (::comm-atom conn) respond) (swap! *connections* assoc-in [fwsid ::alive-at] (System/currentTimeMillis)))))))) (defn http-long-polling-endpoint [ring-request send raise] (condp = (:request-method ring-request) :get (http-long-polling-connect ring-request send raise) :post (do (receive-message! (slurp (:body ring-request))) (send {:status 200 :headers {"Content-Type" "text/html"} :body "Received"})))) (defn asyc-http-polling-middleware [handler path connections] (fn [ring-request send raise] (swap! scratch assoc :async-request ring-request) (if-not (.startsWith (:uri ring-request) path) (handler ring-request send raise) (binding [*connections* connections] (try (http-long-polling-endpoint ring-request send raise) (catch Throwable e (raise e))))))) ;; --------------------------------------------------- ;; ReplEnv implmentation ;; --------------------------------------------------- (defn open-connections [] (filter (fn [{:keys [is-open-fn] :as conn}] (try (or (nil? is-open-fn) (is-open-fn conn)) (catch Throwable t false))) (vals @*connections*))) (defn connections-available [repl-env] (sort-by :created-at > (filter (or (some-> repl-env :connection-filter) identity) (open-connections)))) (defn wait-for-connection [repl-env] (loop [] (when (empty? (connections-available repl-env)) (Thread/sleep 500) (recur)))) (defn send-for-eval [{:keys [focus-session-name ;; just here for consideration broadcast] :as repl-env} connections js] (if broadcast (broadcast-for-response connections {:op :eval :code js}) (send-for-response connections {:op :eval :code js}))) (defn eval-connections [{:keys [focus-session-name] :as repl-env}] (let [connections (connections-available repl-env) ;; session focus connections (if-let [focus-conn (and @focus-session-name (first (filter (fn [{:keys [session-name]}] (= @focus-session-name session-name)) connections)))] [focus-conn] (do (reset! focus-session-name nil) connections))] connections)) (defn trim-last-newline [args] (if-let [args (not-empty (filter string? args))] (conj (vec (butlast args)) (string/trim-newline (last args))) args)) (defn print-to-stream [stream args] (condp = stream :out (apply println args) :err (binding [*out* *err*] (apply println args)))) (defn repl-env-print [repl-env stream args] (when-let [args (not-empty (filter string? args))] (when (and (:out-print-fn repl-env) (= :out stream)) (apply (:out-print-fn repl-env) args)) (when (and (:err-print-fn repl-env) (= :err stream)) (apply (:err-print-fn repl-env) args)) (let [args (trim-last-newline args)] (when (:print-to-output-streams repl-env) (if-let [bprinter @(:bound-printer repl-env)] (bprinter stream args) (print-to-stream stream args)))))) (let [timeout-val (Object.)] (defn evaluate [{:keys [focus-session-name ;; just here for consideration repl-eval-timeout broadcast] :as repl-env} js] (reset! (:bound-printer repl-env) (bound-fn [stream args] (print-to-stream stream args))) (wait-for-connection repl-env) (let [ev-connections (eval-connections repl-env) result (let [v (deref (send-for-eval repl-env ev-connections js) (or repl-eval-timeout 8000) timeout-val)] (cond (= timeout-val v) (do (when @focus-session-name (reset! focus-session-name nil)) {:status :exception :value "Eval timed out!" :stacktrace "No stacktrace available."}) (::no-connection-made (meta v)) (do (when @focus-session-name (reset! focus-session-name nil)) v) :else v))] (when-let [out (:out result)] (when (not (string/blank? out)) (repl-env-print repl-env :out [(string/trim-newline out)]))) result))) (defn require-resolve [symbol-str] (let [sym (symbol symbol-str)] (when-let [ns (namespace sym)] (try (require (symbol ns)) (resolve sym) (catch Throwable e nil))))) #_(require-resolve 'figwheel.server.jetty-websocket/run-server) ;; TODO more precise error when loaded but fn doesn't exist (defn dynload [ns-sym-str] (let [resolved (require-resolve ns-sym-str)] (if resolved resolved (throw (ex-info (str "Figwheel: Unable to dynamicly load " ns-sym-str) {:not-loaded ns-sym-str}))))) ;; taken from ring server (defn try-port "Try running a server under one port or a list of ports. If a list of ports is supplied, try each port until it succeeds or runs out of ports." [port server-fn] (if-not (sequential? port) (server-fn port) (try (server-fn (first port)) (catch java.net.BindException ex (if-let [port (next port)] (try-port port server-fn) (throw ex)))))) (defn run-default-server* [options connections] ;; require and run figwheel server (let [server-fn (dynload (get options :ring-server 'figwheel.server.jetty-websocket/run-server)) figwheel-connect-path (get options :figwheel-connect-path "/figwheel-connect")] (server-fn ((dynload (get options :ring-stack 'figwheel.server.ring/default-stack)) (:ring-handler options) ;; TODO this should only work for the default target of browser (cond-> (:ring-stack-options options) (and (contains? #{nil :browser} (:target options)) (:output-to options) (not (get-in (:ring-stack-options options) [:figwheel.server.ring/dev :figwheel.server.ring/system-app-handler]))) (assoc-in [:figwheel.server.ring/dev :figwheel.server.ring/system-app-handler] #(figwheel.server.ring/default-index-html % (figwheel.server.ring/index-html (select-keys options [:output-to])))))) (assoc (get options :ring-server-options) :async-handlers {figwheel-connect-path (-> (fn [ring-request send raise] (send {:status 404 :headers {"Content-Type" "text/html"} :body "Not found: figwheel http-async-polling"})) (asyc-http-polling-middleware figwheel-connect-path connections) (figwheel.server.ring/wrap-async-cors :access-control-allow-origin #".*" :access-control-allow-methods [:head :options :get :put :post :delete :patch]))} ::abstract-websocket-connections {figwheel-connect-path (abstract-websocket-connection connections)})))) (defn run-default-server [options connections] (run-default-server* (update options :ring-server-options #(merge (select-keys options [:host :port]) %)) connections)) (defn fill-server-url-template [url-str {:keys [host port]}] (-> url-str (string/replace "[[server-hostname]]" (or host "localhost")) (string/replace "[[server-port]]" (str port)))) (defn launch-js-helper [script repl-env {:keys [output-to output-dir target open-url output-log-file] :as data}] (let [output-log-file (or (and output-log-file (io/file output-log-file)) (io/file (or output-dir "out") "js-environment.log")) input-data (dissoc data :output-dir :target)] (if (or (symbol? script) (var? script) (fn? script)) ;; TODO consider logging here or let script fn handle it (let [v (if (symbol? script) (dynload script) script)] (doto (Thread. (fn [] (v input-data))) (.setDaemon true) (.start))) (let [shell-command-vector (cond (coll? script) (mapv (fn [x] (if (keyword? x) (get input-data x "") x)) script) (string? script) [script (if (= target :nodejs) output-to open-url)])] (.start (cond-> (ProcessBuilder. (into-array shell-command-vector)) output-log-file (.redirectError (io/file output-log-file)) output-log-file (.redirectOutput (io/file output-log-file)))))))) (defn launch-js [script repl-env {:keys [output-dir] :or {output-dir "out"} :as opts}] (let [output-log-file (str (io/file output-dir "js-environment.log"))] (println "Launching Javascript environment with script: " (pr-str script)) (reset! (:node-proc repl-env) (launch-js-helper script repl-env (assoc opts :output-log-file output-log-file))) (when (not (symbol? script)) (println "Environment output being logged to:" output-log-file)))) (defn launch-node [opts repl-env input-path & [output-log-file]] (let [xs (cond-> [(get repl-env :node-command "node")] (:inspect-node repl-env true) (conj "--inspect") input-path (conj input-path)) proc (cond-> (ProcessBuilder. (into-array xs)) output-log-file (.redirectError (io/file output-log-file)) output-log-file (.redirectOutput (io/file output-log-file)))] (.start proc))) ;; when doing a port search ;; - what needs to know the port afterwards? ;; - auto open the browser, this is easy enough. ;; - the connect-url needs to know, but it can use browser port ;; - the default index.html needs to find the main.js (it can inline it) ;; XXX refactor as we need to breakdown these actions and allow ;; the consumer to inject this behavior via a :setup-fn (defn setup [repl-env opts] (when (and (or (not (bound? #'*server*)) (nil? *server*)) (nil? @(:server repl-env))) (let [server (run-default-server (merge (select-keys repl-env [:port :host :target :output-to :ring-handler :ring-server :ring-server-options :ring-stack :ring-stack-options]) (select-keys opts [:target :output-to])) *connections*)] (reset! (:server repl-env) server))) ;; printing (when-not @(:printing-listener repl-env) (let [print-listener (bound-fn [{:keys [session-id session-name uuid response] :as msg}] (when (and session-id (not uuid) (get response :output)) (let [session-ids (set (map :session-id (eval-connections repl-env)))] (when (session-ids session-id) (let [{:keys [stream args]} response] (when (and stream (not-empty args)) ;; when printing a result from several sessions mark it (let [args (if-not (= 1 (count session-ids)) (cons (str "[Session:-----:" session-name "]\n") args) args)] (repl-env-print repl-env stream args))))))))] (reset! (:printing-listener repl-env) print-listener) (add-listener print-listener))) (let [{:keys [target output-to output-dir]} (apply merge (map #(select-keys % [:target :output-to :output-dir]) [repl-env opts])) open-url (and (:open-url repl-env) (fill-server-url-template (:open-url repl-env) (merge (select-keys repl-env [:host :port]) (select-keys (:ring-server-options repl-env) [:host :port]))))] (cond (:launch-js repl-env) (launch-js (:launch-js repl-env) repl-env {:output-to output-to :open-url open-url :output-dir output-dir :target target}) ;; Node REPL (and (= :nodejs target) (:launch-node repl-env true) output-to) (let [output-file (io/file output-dir "node.log")] (println "Starting node ... ") (reset! (:node-proc repl-env) (launch-node opts repl-env output-to output-file)) (println "Node output being logged to:" (str output-file)) (when (:inspect-node repl-env true) (println "For a better development experience:") (println " 1. Open chrome://inspect/#devices ... (in Chrome)") (println " 2. Click \"Open dedicated DevTools for Node\""))) ;; open a url (and (not (= :nodejs target)) open-url) (if-let [open (:open-url-fn repl-env)] (open open-url) (do (println "Opening URL" open-url) (try (browse/browse-url open-url) (catch Throwable t (println "Failed to open browser:" (.getMessage t)))))) (and (nil? target) (not (:launch-js repl-env)) (false? open-url)) (println "JavaScript environment will not launch automatically when :open-url is false") (and (= :nodejs target) (not (:launch-js repl-env)) (false? (:launch-node repl-env))) (println "JavaScript environment will not launch automatically when :launch-node is false") :else nil))) (defn tear-down-server [{:keys [server]}] (when-let [svr @server] (reset! server nil) (.stop svr))) (defn tear-down-everything-but-server [{:keys [printing-listener node-proc]}] (when-let [proc @node-proc] (if (instance? Thread proc) (.stop proc) (.destroy proc)) #_(.waitFor proc) ;; ? ) (when-let [listener @printing-listener] (remove-listener listener))) (defrecord FigwheelReplEnv [] cljs.repl/IJavaScriptEnv (-setup [this opts] (setup this opts) #_(wait-for-connection this)) (-evaluate [this _ _ js] ;; print where eval occurs (evaluate this js)) (-load [this provides url] ;; load a file into all the appropriate envs (when-let [js-content (try (slurp url) (catch Throwable t))] (evaluate this js-content))) (-tear-down [repl-env] (when-not (:prevent-server-tear-down repl-env) (tear-down-server repl-env)) (tear-down-everything-but-server repl-env)) cljs.repl/IReplEnvOptions (-repl-options [this] (let [main-fn (resolve 'figwheel.main/default-main)] (cond-> {;:browser-repl true :preloads '[[figwheel.repl.preload]] :cljs.cli/commands {:groups {::repl {:desc "Figwheel REPL options"}} :init {["-H" "--host"] {:group ::repl :fn #(assoc-in %1 [:repl-env-options :host] %2) :arg "address" :doc "Address to bind"} ["-p" "--port"] {:group ::repl :fn #(assoc-in %1 [:repl-env-options :port] (Integer/parseInt %2)) :arg "number" :doc "Port to bind"} ["-rh" "--ring-handler"] {:group ::repl :fn #(assoc-in %1 [:repl-env-options :ring-handler] (when %2 (dynload %2))) :arg "string" :doc "Ring Handler for default REPL server EX. \"example.server/handler\" "}}}} main-fn (assoc :cljs.cli/main @main-fn)))) cljs.repl/IParseStacktrace (-parse-stacktrace [this st err opts] (cljs.stacktrace/parse-stacktrace this st err opts))) (defn repl-env* [{:keys [port open-url connection-filter] :or {connection-filter identity open-url "http://[[server-hostname]]:[[server-port]]" port default-port} :as opts}] (merge (FigwheelReplEnv.) ;; TODO move to one atom {:server (atom nil) :printing-listener (atom nil) :bound-printer (atom nil) :open-url open-url ;; helpful for nrepl so you can easily ;; translate output into messages :out-print-fn nil :err-print-fn nil :node-proc (atom nil) :print-to-output-streams true :connection-filter connection-filter :focus-session-name (atom nil) :broadcast false :port port} opts)) ;; ------------------------------------------------------ ;; Connection management ;; ------------------------------------------------------ ;; mostly for use from the REPL (defn list-connections [] (let [conns (connections-available cljs.repl/*repl-env*) longest-name (apply max (cons (count "Session Name") (map (comp count :session-name) conns)))] (println (format (str "%-" longest-name "s %7s %s") "Session Name" "Age" "URL")) (doseq [{:keys [session-name uri query-string created-at]} conns] (println (format (str "%-" longest-name "s %6sm %s") session-name (Math/round (/ (- (System/currentTimeMillis) created-at) 60000.0)) uri))))) (defn will-eval-on [] (if-let [n @(:focus-session-name cljs.repl/*repl-env*)] (println "Focused On: " n) (println "Will Eval On: " (->> (connections-available cljs.repl/*repl-env*) first :session-name)))) (defn conns* [] (will-eval-on) (list-connections)) (defmacro conns [] (conns*)) (defn focus* [session-name] (let [names (map :session-name (connections-available cljs.repl/*repl-env*)) session-name (name session-name)] (if ((set names) session-name) (str "Focused On: " (reset! (:focus-session-name cljs.repl/*repl-env*) session-name)) (str "Error: " session-name " not in " (pr-str names))))) (defmacro focus [session-name] (focus* session-name)) ;; TODOS ;; - try https setup ;; - make work on node and other platforms ;; - find open port ;; - repl args from main ;; TODO exponential backoff for websocket should max out at 20 or lower ;; TODO figwheel-repl-core package ;; TODO figwheel-repl package that includes default server ;; TODO NPE that occurs in open-connections when websocket isn't cleared ;; happens on eval (comment (def serve (run-default-server {:ring-handler (fn [r] (throw (ex-info "Testing" {})) #_{:status 404 :headers {"Content-Type" "text/html"} :body "Yeppers now"}) :port 9500} *connections*)) (.stop serve) scratch (do (cljs.repl/-tear-down re) (def re (repl-env* {:output-to "dev-resources/public/out/main.js"})) (cljs.repl/-setup re {})) (connections-available re) (open-connections) (evaluate (assoc re :broadcast true) "88") (evaluate re "setTimeout(function() {cljs.core.prn(\"hey hey\")}, 1000);") (= (mapv #(:value (evaluate re (str %))) (range 100)) (range 100)) (def x (ping (first (vals @*connections*)))) (negotiate-id (:ring-request @scratch) @*connections*) (def channel (:body (:async-request @scratch))) (.isReady channel) (ping ( (vals @*connections*)) ) (swap! *connections* dissoc "99785176-1793-4814-938a-93bf071acd2f") (swap! scratch dissoc :print-msg) scratch *connections* (deref ) (swap! *connections* dissoc "d9ffc9ac-b2ec-4660-93c1-812afd1cb032") (parse-query-string (:query-string (:ring-request @scratch))) (negotiate-name (:ring-request @scratch) @*connections*) (reset! *connections* (atom {})) (binding [cljs.repl/*repl-env* re] (conns*) #_(focus* 'Judson)) ) (def name-list (set (map str '[PI:NAME:<NAME>END_PI PI:NAME:<NAME>END_PI PI:NAME:<NAME>END_PI PI:NAME:<NAME>END_PI]))) #_(defonce ^:private message-loop (doto (Thread. #(let [x (.take messageq) listeners @listener-set] (doseq [f listeners] (try (f x) (catch Throwable ex))) (recur)) (str ::message-loop)) (.setDaemon true) (.start))) ))
[ { "context": ";; Copyright (c) Stuart Sierra, 2012. All rights reserved. The use\n;; and distr", "end": 30, "score": 0.9999011754989624, "start": 17, "tag": "NAME", "value": "Stuart Sierra" }, { "context": "software.\n\n;; Modified to run under ClojureCLR by David Miller\n;; Changes are\n;; Copyright (c) David Miller, 20", "end": 520, "score": 0.9047667980194092, "start": 508, "tag": "NAME", "value": "David Miller" }, { "context": "R by David Miller\n;; Changes are\n;; Copyright (c) David Miller, 2013. All rights reserved. The use\n;; and distr", "end": 566, "score": 0.9998682141304016, "start": 554, "tag": "NAME", "value": "David Miller" }, { "context": "re commented more substantially.\n\n\n(ns ^{:author \"Stuart Sierra, modifed for ClojureCLR by David Miller\"\n :doc", "end": 1505, "score": 0.9998948574066162, "start": 1492, "tag": "NAME", "value": "Stuart Sierra" }, { "context": "{:author \"Stuart Sierra, modifed for ClojureCLR by David Miller\"\n :doc \"JavaScript Object Notation (JSON) pars", "end": 1545, "score": 0.9718047976493835, "start": 1533, "tag": "NAME", "value": "David Miller" }, { "context": "ring\n\n;;; JSON PRETTY-PRINTER\n\n;; Based on code by Tom Faulhaber\n\n(defn- pprint-array [s] \n((pprint/formatter-out ", "end": 22938, "score": 0.9998083114624023, "start": 22925, "tag": "NAME", "value": "Tom Faulhaber" } ]
SurveyCenter/json.clj
migueladanrm/PL.P2
0
;; Copyright (c) Stuart Sierra, 2012. All rights reserved. The use ;; and distribution terms for this software are covered by the Eclipse ;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ;; which can be found in the file epl-v10.html at the root of this ;; distribution. By using this software in any fashion, you are ;; agreeing to be bound by the terms of this license. You must not ;; remove this notice, or any other, from this software. ;; Modified to run under ClojureCLR by David Miller ;; Changes are ;; Copyright (c) David Miller, 2013. All rights reserved. The use ;; and distribution terms for this software are covered by the Eclipse ;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ;; which can be found in the file epl-v10.html at the root of this ;; distribution. By using this software in any fashion, you are ;; agreeing to be bound by the terms of this license. You must not ;; remove this notice, or any other, from this software. ;; Changes to Stuart Sierra's code are clearly marked. ;; An end-of-line comment start with ;DM: indicates a change on that line. ;; The commented material indicates what was in the original code or indicates a new line inserted. ;; For example, a comment such as the following ;; (defn- read-array [^PushbackTextReader stream] ;DM: ^PushbackReader ;; indicates that the type hint needed to be replaced ;; More substantial changes are commented more substantially. (ns ^{:author "Stuart Sierra, modifed for ClojureCLR by David Miller" :doc "JavaScript Object Notation (JSON) parser/generator. See http://www.json.org/"} clojure.data.json (:refer-clojure :exclude (read)) (:require [clojure.pprint :as pprint]) ;DM: (:import (java.io PrintWriter PushbackReader StringWriter ;DM: StringReader Reader EOFException))) (:import (System.IO EndOfStreamException StreamWriter StringReader ;DM: Added StringWriter TextWriter) ;DM: Added (clojure.lang PushbackTextReader) ;DM: Added (System.Globalization NumberStyles StringInfo) ;DM: Added )) ;DM: Added (set! *warn-on-reflection* true) ;;; JSON READER (def ^:dynamic ^:private *bigdec*) (def ^:dynamic ^:private *key-fn*) (def ^:dynamic ^:private *value-fn*) (defn- default-write-key-fn [x] (cond (instance? clojure.lang.Named x) (name x) (nil? x) (throw (Exception. "JSON object properties may not be nil")) :else (str x))) (defn- default-value-fn [k v] v) (declare -read) (defmacro ^:private codepoint [c] (int c)) (defn- codepoint-clause [[test result]] (cond (list? test) [(map int test) result] (= test :whitespace) ['(9 10 13 32) result] (= test :simple-ascii) [(remove #{(codepoint \") (codepoint \\) (codepoint \/)} (range 32 127)) result] :else [(int test) result])) (defmacro ^:private codepoint-case [e & clauses] `(case ~e ~@(mapcat codepoint-clause (partition 2 clauses)) ~@(when (odd? (count clauses)) [(last clauses)]))) (defn- read-array [^PushbackTextReader stream] ;DM: ^PushbackReader ;; Expects to be called with the head of the stream AFTER the ;; opening bracket. (loop [result (transient [])] (let [c (.Read stream)] ;DM: .read (when (neg? c) (throw (EndOfStreamException. "JSON error (end-of-file inside array)"))) ;DM: EOFException. (codepoint-case c :whitespace (recur result) \, (recur result) \] (persistent! result) (do (.Unread stream c) ;DM: .unread (let [element (-read stream true nil)] (recur (conj! result element)))))))) (defn- read-object [^PushbackTextReader stream] ;DM: ^PushbackReader ;; Expects to be called with the head of the stream AFTER the ;; opening bracket. (loop [key nil, result (transient {})] (let [c (.Read stream)] ;DM: .read (when (neg? c) (throw (EndOfStreamException. "JSON error (end-of-file inside object)"))) ;DM: EOFException. (codepoint-case c :whitespace (recur key result) \, (recur nil result) \: (recur key result) \} (if (nil? key) (persistent! result) (throw (Exception. "JSON error (key missing value in object)"))) (do (.Unread stream c) ;DM: .unread (let [element (-read stream true nil)] (if (nil? key) (if (string? element) (recur element result) ;DM: .read (throw (Exception. "JSON error (non-string key in object)"))) (recur nil (let [out-key (*key-fn* key) out-value (*value-fn* out-key element)] (if (= *value-fn* out-value) result (assoc! result out-key out-value))))))))))) (defn- read-hex-char [^PushbackTextReader stream] ;DM: ^PushbackReader ;; Expects to be called with the head of the stream AFTER the ;; initial "\u". Reads the next four characters from the stream. (let [a (.Read stream) ;DM: .read b (.Read stream) ;DM: .read c (.Read stream) ;DM: .read d (.Read stream)] ;DM: .read (when (or (neg? a) (neg? b) (neg? c) (neg? d)) (throw (EndOfStreamException. ;DM: EOFException. "JSON error (end-of-file inside Unicode character escape)"))) (let [s (str (char a) (char b) (char c) (char d))] (char (Int32/Parse s NumberStyles/HexNumber))))) ;DM: (Integer/parseInt s 16) (defn- read-escaped-char [^PushbackTextReader stream] ;DM: ^PushbackReader ;; Expects to be called with the head of the stream AFTER the ;; initial backslash. (let [c (.Read stream)] ;DM: .read (codepoint-case c (\" \\ \/) (char c) \b \backspace \f \formfeed \n \newline \r \return \t \tab \u (read-hex-char stream)))) (defn- read-quoted-string [^PushbackTextReader stream] ;DM: ^PushbackReader ;; Expects to be called with the head of the stream AFTER the ;; opening quotation mark. (let [buffer (StringBuilder.)] (loop [] (let [c (.Read stream)] ;DM: .read (when (neg? c) (throw (EndOfStreamException. "JSON error (end-of-file inside string)"))) ;DM: EOFException. (codepoint-case c \" (str buffer) \\ (do (.Append buffer (read-escaped-char stream)) ;DM: .append (recur)) (do (.Append buffer (char c)) ;DM: .append (recur))))))) (defn- read-integer [^String string] (if (< (count string) 18) ; definitely fits in a Long (Int64/Parse string) ;DM: Long/valueOf (or (try (Int64/Parse string) ;DM: Long/valueOf (catch OverflowException e nil) ;DM: Added (catch FormatException e nil)) ;DM: NumberFormatException (clojure.lang.BigInteger/Parse string)))) ;DM: (bigint string) TODO: Fix when we have a BigInteger c-tor that takes a string (defn- read-decimal [^String string] (if *bigdec* (clojure.lang.BigDecimal/Parse string) ;DM: (bigdec string) -- TODO: we can change this back when we fix BigDecimal (Double/Parse string))) ;DM: Double/valueOf (defn- read-number [^PushbackTextReader stream] ;DM: ^PushbackReader (let [buffer (StringBuilder.) decimal? (loop [decimal? false] (let [c (.Read stream)] ;DM: .read (codepoint-case c (\- \+ \0 \1 \2 \3 \4 \5 \6 \7 \8 \9) (do (.Append buffer (char c)) ;DM: .append (recur decimal?)) (\e \E \.) (do (.Append buffer (char c)) ;DM: .append (recur true)) (do (.Unread stream c) ;DM: .unread decimal?))))] (if decimal? (read-decimal (str buffer)) (read-integer (str buffer))))) (defn- -read [^PushbackTextReader stream eof-error? eof-value] ;DM: ^PushbackReader (loop [] (let [c (.Read stream)] ;DM: .read (if (neg? c) ;; Handle end-of-stream (if eof-error? (throw (EndOfStreamException. "JSON error (end-of-file)")) ;DM: EOFException. eof-value) (codepoint-case c :whitespace (recur) ;; Read numbers (\- \0 \1 \2 \3 \4 \5 \6 \7 \8 \9) (do (.Unread stream c) ;DM: .unread (read-number stream)) ;; Read strings \" (read-quoted-string stream) ;; Read null as nil \n (if (and (= (codepoint \u) (.Read stream)) ;DM: .read (= (codepoint \l) (.Read stream)) ;DM: .read (= (codepoint \l) (.Read stream))) ;DM: .read nil (throw (Exception. "JSON error (expected null)"))) ;; Read true \t (if (and (= (codepoint \r) (.Read stream)) ;DM: .read (= (codepoint \u) (.Read stream)) ;DM: .read (= (codepoint \e) (.Read stream))) ;DM: .read true (throw (Exception. "JSON error (expected true)"))) ;; Read false \f (if (and (= (codepoint \a) (.Read stream)) ;DM: .read (= (codepoint \l) (.Read stream)) ;DM: .read (= (codepoint \s) (.Read stream)) ;DM: .read (= (codepoint \e) (.Read stream))) ;DM: .read false (throw (Exception. "JSON error (expected false)"))) ;; Read JSON objects \{ (read-object stream) ;; Read JSON arrays \[ (read-array stream) (throw (Exception. (str "JSON error (unexpected character): " (char c))))))))) (defn read "Reads a single item of JSON data from a java.io.Reader. Options are key-value pairs, valid options are: :eof-error? boolean If true (default) will throw exception if the stream is empty. :eof-value Object Object to return if the stream is empty and eof-error? is false. Default is nil. :bigdec boolean If true use BigDecimal for decimal numbers instead of Double. Default is false. :key-fn function Single-argument function called on JSON property names; return value will replace the property names in the output. Default is clojure.core/identity, use clojure.core/keyword to get keyword properties. :value-fn function Function to transform values in the output. For each JSON property, value-fn is called with two arguments: the property name (transformed by key-fn) and the value. The return value of value-fn will replace the value in the output. If value-fn returns itself, the property will be omitted from the output. The default value-fn returns the value unchanged." [reader & options] (let [{:keys [eof-error? eof-value bigdec key-fn value-fn] :or {bigdec false eof-error? true key-fn identity value-fn default-value-fn}} options] (binding [*bigdec* bigdec *key-fn* key-fn *value-fn* value-fn] (-read (PushbackTextReader. reader) eof-error? eof-value)))) ;DM: PushbackReader. (defn read-str "Reads one JSON value from input String. Options are the same as for read." [string & options] (apply read (StringReader. string) options)) ;;; JSON WRITER (def ^:dynamic ^:private *escape-unicode*) (def ^:dynamic ^:private *escape-slash*) (defprotocol JSONWriter (-write [object out] "Print object to PrintWriter out as JSON")) (defn- write-string [^String s ^TextWriter out] ;DM: ^CharSequence ^PrintWriter (let [sb (StringBuilder. (count s))] (.Append sb \") ;DM: .append (dotimes [i (count s)] (let [cp (int (.get_Chars s i))] ;DM: (Character/codePointAt s i) (codepoint-case cp ;; Printable JSON escapes \" (.Append sb "\\\"") ;DM: .append \\ (.Append sb "\\\\") ;DM: .append \/ (.Append sb (if *escape-slash* "\\/" "/")) ;DM: .append ;; Simple ASCII characters :simple-ascii (.Append sb (.get_Chars s i)) ;DM: .append .charAt ;; JSON escapes \backspace (.Append sb "\\b") ;DM: .append \formfeed (.Append sb "\\f") ;DM: .append \newline (.Append sb "\\n") ;DM: .append \return (.Append sb "\\r") ;DM: .append \tab (.Append sb "\\t") ;DM: .append ;; Any other character is Unicode (if *escape-unicode* (.Append sb (format "\\u%04x" cp)) ; Hexadecimal-escaped ;DM: .append (.Append sb (.get_Chars s i)))))) ;DM: (.appendCodePoint sb cp) (.Append sb \") ;DM: .append (.Write out (str sb)))) ;DM: .print (defn- write-object [m ^TextWriter out] ;DM: ^PrintWriter (.Write out \{) ;DM: .print (loop [x m] (when (seq m) (let [[k v] (first x) out-key (*key-fn* k) out-value (*value-fn* k v)] (when-not (string? out-key) (throw (Exception. "JSON object keys must be strings"))) (when-not (= *value-fn* out-value) (write-string out-key out) (.Write out \:) ;DM: .print (-write out-value out))) (let [nxt (next x)] (when (seq nxt) (.Write out \,) ;DM: .print (recur nxt))))) (.Write out \})) ;DM: .print (defn- write-array [s ^TextWriter out] ;DM: ^PrintWriter (.Write out \[) ;DM: .print (loop [x s] (when (seq x) (let [fst (first x) nxt (next x)] (-write fst out) (when (seq nxt) (.Write out \,) ;DM: .print (recur nxt))))) (.Write out \])) ;DM: .print (defn- write-bignum [x ^TextWriter out] ;DM: ^PrintWriter (.Write out (str x))) ;DM: .print (defn- write-plain [x ^TextWriter out] ;DM: ^PrintWriter (.Write out x)) ;DM: .print (defn- write-null [x ^TextWriter out] ;DM: ^PrintWriter (.Write out "null")) ;DM: .print (defn- write-named [x out] (write-string (name x) out)) (defn- write-generic [x out] (if (.IsArray (class x)) ;DM: isArray (-write (seq x) out) (throw (Exception. (str "Don't know how to write JSON of " (class x)))))) (defn- write-ratio [x out] (-write (double x) out)) ;;DM: Added write-float (defn- write-float [x ^TextWriter out] (.Write out (fp-str x))) ;DM: ;; nil, true, false ;DM: (extend nil JSONWriter {:-write write-null}) ;DM: (extend java.lang.Boolean JSONWriter {:-write write-plain}) ;DM: ;DM: ;; Numbers ;DM: (extend java.lang.Number JSONWriter {:-write write-plain}) ;DM: (extend clojure.lang.Ratio JSONWriter {:-write write-ratio}) ;DM: (extend clojure.lang.BigInt JSONWriter {:-write write-bignum}) ;DM: (extend java.math.BigInteger JSONWriter {:-write write-bignum}) ;DM: (extend java.math.BigDecimal JSONWriter {:-write write-bignum}) ;DM: ;DM: ;; Symbols, Keywords, and Strings ;DM: (extend clojure.lang.Named JSONWriter {:-write write-named}) ;DM: (extend java.lang.CharSequence JSONWriter {:-write write-string}) ;DM: ;DM: ;; Collections ;DM: (extend java.util.Map JSONWriter {:-write write-object}) ;DM: (extend java.util.Collection JSONWriter {:-write write-array}) ;DM: ;DM: ;; Maybe a Java array, otherwise fail ;DM: (extend java.lang.Object JSONWriter {:-write write-generic}) ;;DM: Following added ;; nil, true, false (extend nil JSONWriter {:-write write-null}) (extend clojure.lang.Named JSONWriter {:-write write-named}) (extend System.Boolean JSONWriter {:-write write-plain}) ;; Numbers ;; no equivalent to java.lang.Number. Sigh. (extend System.Byte JSONWriter {:-write write-plain}) (extend System.SByte JSONWriter {:-write write-plain}) (extend System.Int16 JSONWriter {:-write write-plain}) (extend System.Int32 JSONWriter {:-write write-plain}) (extend System.Int64 JSONWriter {:-write write-plain}) (extend System.UInt16 JSONWriter {:-write write-plain}) (extend System.UInt32 JSONWriter {:-write write-plain}) (extend System.UInt64 JSONWriter {:-write write-plain}) (extend System.Double JSONWriter {:-write write-float}) (extend System.Single JSONWriter {:-write write-float}) (extend System.Decimal JSONWriter {:-write write-plain}) (extend clojure.lang.Ratio JSONWriter {:-write write-ratio}) (extend clojure.lang.BigInt JSONWriter {:-write write-bignum}) (extend clojure.lang.BigInteger JSONWriter {:-write write-bignum}) (extend clojure.lang.BigDecimal JSONWriter {:-write write-bignum}) ;; Symbols, Keywords, and Strings (extend clojure.lang.Named JSONWriter {:-write write-named}) (extend System.String JSONWriter {:-write write-string}) ;; Collections (extend clojure.lang.IPersistentMap JSONWriter {:-write write-object}) (extend System.Collections.IDictionary JSONWriter {:-write write-object}) ;; Cannot handle generic types!!!! (extend System.Collections.ICollection JSONWriter {:-write write-array}) (extend clojure.lang.ISeq JSONWriter {:-write write-array}) ;; Maybe a Java array, otherwise fail (extend System.Object JSONWriter {:-write write-generic}) ;;DM: End addition (defn write "Write JSON-formatted output to a java.io.Writer. Options are key-value pairs, valid options are: :escape-unicode boolean If true (default) non-ASCII characters are escaped as \\uXXXX :escape-slash boolean If true (default) the slash / is escaped as \\/ :key-fn function Single-argument function called on map keys; return value will replace the property names in the output. Must return a string. Default calls clojure.core/name on symbols and keywords and clojure.core/str on everything else. :value-fn function Function to transform values before writing. For each key-value pair in the input, called with two arguments: the key (BEFORE transformation by key-fn) and the value. The return value of value-fn will replace the value in the output. If the return value is a number, boolean, string, or nil it will be included literally in the output. If the return value is a non-map collection, it will be processed recursively. If the return value is a map, it will be processed recursively, calling value-fn again on its key-value pairs. If value-fn returns itself, the key-value pair will be omitted from the output." [x writer & options] ; ^Writer -- can't do. we might get a TextWriter or a Stream (let [{:keys [escape-unicode escape-slash key-fn value-fn] :or {escape-unicode true escape-slash true key-fn default-write-key-fn value-fn default-value-fn}} options] (binding [*escape-unicode* escape-unicode *escape-slash* escape-slash *key-fn* key-fn *value-fn* value-fn] (-write x (if (instance? TextWriter writer) writer (StreamWriter. writer)))))) ;DM: (-write x(PrintWriter. writer)) (defn write-str "Converts x to a JSON-formatted string. Options are the same as write." [x & options] (let [sw (StringWriter.)] (apply write x sw options) (.ToString sw))) ;DM: .toString ;;; JSON PRETTY-PRINTER ;; Based on code by Tom Faulhaber (defn- pprint-array [s] ((pprint/formatter-out "~<[~;~@{~w~^, ~:_~}~;]~:>") s)) (defn- pprint-object [m] ((pprint/formatter-out "~<{~;~@{~<~w:~_~w~:>~^, ~_~}~;}~:>") (for [[k v] m] [(*key-fn* k) v]))) (defn- pprint-generic [x] (if (.IsArray (class x)) ;DM: isArray (pprint-array (seq x)) ;; pprint proxies Writer, so we can't just wrap it (print (with-out-str (-write x (if (instance? TextWriter *out*) *out* (StreamWriter. *out*))))))) ; DM: PrintWriter (defn- pprint-dispatch [x] (cond (nil? x) (print "null") (true? x) (print "true") ;DM: Added (false? x) (print "false") ;DM: Added (instance? System.Collections.IDictionary x) (pprint-object x) ;DM: java.util.Map (instance? System.Collections.ICollection x) (pprint-array x) ;DM: java.util.Collection (instance? clojure.lang.ISeq x) (pprint-array x) :else (pprint-generic x))) (defn pprint "Pretty-prints JSON representation of x to *out*. Options are the same as for write except :value-fn, which is not supported." [x & options] (let [{:keys [escape-unicode escape-slash key-fn] :or {escape-unicode true escape-slash true key-fn default-write-key-fn}} options] (binding [*escape-unicode* escape-unicode *escape-slash* escape-slash *key-fn* key-fn] (pprint/write x :dispatch pprint-dispatch)))) ;; Local Variables: ;; mode: clojure ;; eval: (define-clojure-indent (codepoint-case (quote defun))) ;; End:
72336
;; Copyright (c) <NAME>, 2012. All rights reserved. The use ;; and distribution terms for this software are covered by the Eclipse ;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ;; which can be found in the file epl-v10.html at the root of this ;; distribution. By using this software in any fashion, you are ;; agreeing to be bound by the terms of this license. You must not ;; remove this notice, or any other, from this software. ;; Modified to run under ClojureCLR by <NAME> ;; Changes are ;; Copyright (c) <NAME>, 2013. All rights reserved. The use ;; and distribution terms for this software are covered by the Eclipse ;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ;; which can be found in the file epl-v10.html at the root of this ;; distribution. By using this software in any fashion, you are ;; agreeing to be bound by the terms of this license. You must not ;; remove this notice, or any other, from this software. ;; Changes to Stuart Sierra's code are clearly marked. ;; An end-of-line comment start with ;DM: indicates a change on that line. ;; The commented material indicates what was in the original code or indicates a new line inserted. ;; For example, a comment such as the following ;; (defn- read-array [^PushbackTextReader stream] ;DM: ^PushbackReader ;; indicates that the type hint needed to be replaced ;; More substantial changes are commented more substantially. (ns ^{:author "<NAME>, modifed for ClojureCLR by <NAME>" :doc "JavaScript Object Notation (JSON) parser/generator. See http://www.json.org/"} clojure.data.json (:refer-clojure :exclude (read)) (:require [clojure.pprint :as pprint]) ;DM: (:import (java.io PrintWriter PushbackReader StringWriter ;DM: StringReader Reader EOFException))) (:import (System.IO EndOfStreamException StreamWriter StringReader ;DM: Added StringWriter TextWriter) ;DM: Added (clojure.lang PushbackTextReader) ;DM: Added (System.Globalization NumberStyles StringInfo) ;DM: Added )) ;DM: Added (set! *warn-on-reflection* true) ;;; JSON READER (def ^:dynamic ^:private *bigdec*) (def ^:dynamic ^:private *key-fn*) (def ^:dynamic ^:private *value-fn*) (defn- default-write-key-fn [x] (cond (instance? clojure.lang.Named x) (name x) (nil? x) (throw (Exception. "JSON object properties may not be nil")) :else (str x))) (defn- default-value-fn [k v] v) (declare -read) (defmacro ^:private codepoint [c] (int c)) (defn- codepoint-clause [[test result]] (cond (list? test) [(map int test) result] (= test :whitespace) ['(9 10 13 32) result] (= test :simple-ascii) [(remove #{(codepoint \") (codepoint \\) (codepoint \/)} (range 32 127)) result] :else [(int test) result])) (defmacro ^:private codepoint-case [e & clauses] `(case ~e ~@(mapcat codepoint-clause (partition 2 clauses)) ~@(when (odd? (count clauses)) [(last clauses)]))) (defn- read-array [^PushbackTextReader stream] ;DM: ^PushbackReader ;; Expects to be called with the head of the stream AFTER the ;; opening bracket. (loop [result (transient [])] (let [c (.Read stream)] ;DM: .read (when (neg? c) (throw (EndOfStreamException. "JSON error (end-of-file inside array)"))) ;DM: EOFException. (codepoint-case c :whitespace (recur result) \, (recur result) \] (persistent! result) (do (.Unread stream c) ;DM: .unread (let [element (-read stream true nil)] (recur (conj! result element)))))))) (defn- read-object [^PushbackTextReader stream] ;DM: ^PushbackReader ;; Expects to be called with the head of the stream AFTER the ;; opening bracket. (loop [key nil, result (transient {})] (let [c (.Read stream)] ;DM: .read (when (neg? c) (throw (EndOfStreamException. "JSON error (end-of-file inside object)"))) ;DM: EOFException. (codepoint-case c :whitespace (recur key result) \, (recur nil result) \: (recur key result) \} (if (nil? key) (persistent! result) (throw (Exception. "JSON error (key missing value in object)"))) (do (.Unread stream c) ;DM: .unread (let [element (-read stream true nil)] (if (nil? key) (if (string? element) (recur element result) ;DM: .read (throw (Exception. "JSON error (non-string key in object)"))) (recur nil (let [out-key (*key-fn* key) out-value (*value-fn* out-key element)] (if (= *value-fn* out-value) result (assoc! result out-key out-value))))))))))) (defn- read-hex-char [^PushbackTextReader stream] ;DM: ^PushbackReader ;; Expects to be called with the head of the stream AFTER the ;; initial "\u". Reads the next four characters from the stream. (let [a (.Read stream) ;DM: .read b (.Read stream) ;DM: .read c (.Read stream) ;DM: .read d (.Read stream)] ;DM: .read (when (or (neg? a) (neg? b) (neg? c) (neg? d)) (throw (EndOfStreamException. ;DM: EOFException. "JSON error (end-of-file inside Unicode character escape)"))) (let [s (str (char a) (char b) (char c) (char d))] (char (Int32/Parse s NumberStyles/HexNumber))))) ;DM: (Integer/parseInt s 16) (defn- read-escaped-char [^PushbackTextReader stream] ;DM: ^PushbackReader ;; Expects to be called with the head of the stream AFTER the ;; initial backslash. (let [c (.Read stream)] ;DM: .read (codepoint-case c (\" \\ \/) (char c) \b \backspace \f \formfeed \n \newline \r \return \t \tab \u (read-hex-char stream)))) (defn- read-quoted-string [^PushbackTextReader stream] ;DM: ^PushbackReader ;; Expects to be called with the head of the stream AFTER the ;; opening quotation mark. (let [buffer (StringBuilder.)] (loop [] (let [c (.Read stream)] ;DM: .read (when (neg? c) (throw (EndOfStreamException. "JSON error (end-of-file inside string)"))) ;DM: EOFException. (codepoint-case c \" (str buffer) \\ (do (.Append buffer (read-escaped-char stream)) ;DM: .append (recur)) (do (.Append buffer (char c)) ;DM: .append (recur))))))) (defn- read-integer [^String string] (if (< (count string) 18) ; definitely fits in a Long (Int64/Parse string) ;DM: Long/valueOf (or (try (Int64/Parse string) ;DM: Long/valueOf (catch OverflowException e nil) ;DM: Added (catch FormatException e nil)) ;DM: NumberFormatException (clojure.lang.BigInteger/Parse string)))) ;DM: (bigint string) TODO: Fix when we have a BigInteger c-tor that takes a string (defn- read-decimal [^String string] (if *bigdec* (clojure.lang.BigDecimal/Parse string) ;DM: (bigdec string) -- TODO: we can change this back when we fix BigDecimal (Double/Parse string))) ;DM: Double/valueOf (defn- read-number [^PushbackTextReader stream] ;DM: ^PushbackReader (let [buffer (StringBuilder.) decimal? (loop [decimal? false] (let [c (.Read stream)] ;DM: .read (codepoint-case c (\- \+ \0 \1 \2 \3 \4 \5 \6 \7 \8 \9) (do (.Append buffer (char c)) ;DM: .append (recur decimal?)) (\e \E \.) (do (.Append buffer (char c)) ;DM: .append (recur true)) (do (.Unread stream c) ;DM: .unread decimal?))))] (if decimal? (read-decimal (str buffer)) (read-integer (str buffer))))) (defn- -read [^PushbackTextReader stream eof-error? eof-value] ;DM: ^PushbackReader (loop [] (let [c (.Read stream)] ;DM: .read (if (neg? c) ;; Handle end-of-stream (if eof-error? (throw (EndOfStreamException. "JSON error (end-of-file)")) ;DM: EOFException. eof-value) (codepoint-case c :whitespace (recur) ;; Read numbers (\- \0 \1 \2 \3 \4 \5 \6 \7 \8 \9) (do (.Unread stream c) ;DM: .unread (read-number stream)) ;; Read strings \" (read-quoted-string stream) ;; Read null as nil \n (if (and (= (codepoint \u) (.Read stream)) ;DM: .read (= (codepoint \l) (.Read stream)) ;DM: .read (= (codepoint \l) (.Read stream))) ;DM: .read nil (throw (Exception. "JSON error (expected null)"))) ;; Read true \t (if (and (= (codepoint \r) (.Read stream)) ;DM: .read (= (codepoint \u) (.Read stream)) ;DM: .read (= (codepoint \e) (.Read stream))) ;DM: .read true (throw (Exception. "JSON error (expected true)"))) ;; Read false \f (if (and (= (codepoint \a) (.Read stream)) ;DM: .read (= (codepoint \l) (.Read stream)) ;DM: .read (= (codepoint \s) (.Read stream)) ;DM: .read (= (codepoint \e) (.Read stream))) ;DM: .read false (throw (Exception. "JSON error (expected false)"))) ;; Read JSON objects \{ (read-object stream) ;; Read JSON arrays \[ (read-array stream) (throw (Exception. (str "JSON error (unexpected character): " (char c))))))))) (defn read "Reads a single item of JSON data from a java.io.Reader. Options are key-value pairs, valid options are: :eof-error? boolean If true (default) will throw exception if the stream is empty. :eof-value Object Object to return if the stream is empty and eof-error? is false. Default is nil. :bigdec boolean If true use BigDecimal for decimal numbers instead of Double. Default is false. :key-fn function Single-argument function called on JSON property names; return value will replace the property names in the output. Default is clojure.core/identity, use clojure.core/keyword to get keyword properties. :value-fn function Function to transform values in the output. For each JSON property, value-fn is called with two arguments: the property name (transformed by key-fn) and the value. The return value of value-fn will replace the value in the output. If value-fn returns itself, the property will be omitted from the output. The default value-fn returns the value unchanged." [reader & options] (let [{:keys [eof-error? eof-value bigdec key-fn value-fn] :or {bigdec false eof-error? true key-fn identity value-fn default-value-fn}} options] (binding [*bigdec* bigdec *key-fn* key-fn *value-fn* value-fn] (-read (PushbackTextReader. reader) eof-error? eof-value)))) ;DM: PushbackReader. (defn read-str "Reads one JSON value from input String. Options are the same as for read." [string & options] (apply read (StringReader. string) options)) ;;; JSON WRITER (def ^:dynamic ^:private *escape-unicode*) (def ^:dynamic ^:private *escape-slash*) (defprotocol JSONWriter (-write [object out] "Print object to PrintWriter out as JSON")) (defn- write-string [^String s ^TextWriter out] ;DM: ^CharSequence ^PrintWriter (let [sb (StringBuilder. (count s))] (.Append sb \") ;DM: .append (dotimes [i (count s)] (let [cp (int (.get_Chars s i))] ;DM: (Character/codePointAt s i) (codepoint-case cp ;; Printable JSON escapes \" (.Append sb "\\\"") ;DM: .append \\ (.Append sb "\\\\") ;DM: .append \/ (.Append sb (if *escape-slash* "\\/" "/")) ;DM: .append ;; Simple ASCII characters :simple-ascii (.Append sb (.get_Chars s i)) ;DM: .append .charAt ;; JSON escapes \backspace (.Append sb "\\b") ;DM: .append \formfeed (.Append sb "\\f") ;DM: .append \newline (.Append sb "\\n") ;DM: .append \return (.Append sb "\\r") ;DM: .append \tab (.Append sb "\\t") ;DM: .append ;; Any other character is Unicode (if *escape-unicode* (.Append sb (format "\\u%04x" cp)) ; Hexadecimal-escaped ;DM: .append (.Append sb (.get_Chars s i)))))) ;DM: (.appendCodePoint sb cp) (.Append sb \") ;DM: .append (.Write out (str sb)))) ;DM: .print (defn- write-object [m ^TextWriter out] ;DM: ^PrintWriter (.Write out \{) ;DM: .print (loop [x m] (when (seq m) (let [[k v] (first x) out-key (*key-fn* k) out-value (*value-fn* k v)] (when-not (string? out-key) (throw (Exception. "JSON object keys must be strings"))) (when-not (= *value-fn* out-value) (write-string out-key out) (.Write out \:) ;DM: .print (-write out-value out))) (let [nxt (next x)] (when (seq nxt) (.Write out \,) ;DM: .print (recur nxt))))) (.Write out \})) ;DM: .print (defn- write-array [s ^TextWriter out] ;DM: ^PrintWriter (.Write out \[) ;DM: .print (loop [x s] (when (seq x) (let [fst (first x) nxt (next x)] (-write fst out) (when (seq nxt) (.Write out \,) ;DM: .print (recur nxt))))) (.Write out \])) ;DM: .print (defn- write-bignum [x ^TextWriter out] ;DM: ^PrintWriter (.Write out (str x))) ;DM: .print (defn- write-plain [x ^TextWriter out] ;DM: ^PrintWriter (.Write out x)) ;DM: .print (defn- write-null [x ^TextWriter out] ;DM: ^PrintWriter (.Write out "null")) ;DM: .print (defn- write-named [x out] (write-string (name x) out)) (defn- write-generic [x out] (if (.IsArray (class x)) ;DM: isArray (-write (seq x) out) (throw (Exception. (str "Don't know how to write JSON of " (class x)))))) (defn- write-ratio [x out] (-write (double x) out)) ;;DM: Added write-float (defn- write-float [x ^TextWriter out] (.Write out (fp-str x))) ;DM: ;; nil, true, false ;DM: (extend nil JSONWriter {:-write write-null}) ;DM: (extend java.lang.Boolean JSONWriter {:-write write-plain}) ;DM: ;DM: ;; Numbers ;DM: (extend java.lang.Number JSONWriter {:-write write-plain}) ;DM: (extend clojure.lang.Ratio JSONWriter {:-write write-ratio}) ;DM: (extend clojure.lang.BigInt JSONWriter {:-write write-bignum}) ;DM: (extend java.math.BigInteger JSONWriter {:-write write-bignum}) ;DM: (extend java.math.BigDecimal JSONWriter {:-write write-bignum}) ;DM: ;DM: ;; Symbols, Keywords, and Strings ;DM: (extend clojure.lang.Named JSONWriter {:-write write-named}) ;DM: (extend java.lang.CharSequence JSONWriter {:-write write-string}) ;DM: ;DM: ;; Collections ;DM: (extend java.util.Map JSONWriter {:-write write-object}) ;DM: (extend java.util.Collection JSONWriter {:-write write-array}) ;DM: ;DM: ;; Maybe a Java array, otherwise fail ;DM: (extend java.lang.Object JSONWriter {:-write write-generic}) ;;DM: Following added ;; nil, true, false (extend nil JSONWriter {:-write write-null}) (extend clojure.lang.Named JSONWriter {:-write write-named}) (extend System.Boolean JSONWriter {:-write write-plain}) ;; Numbers ;; no equivalent to java.lang.Number. Sigh. (extend System.Byte JSONWriter {:-write write-plain}) (extend System.SByte JSONWriter {:-write write-plain}) (extend System.Int16 JSONWriter {:-write write-plain}) (extend System.Int32 JSONWriter {:-write write-plain}) (extend System.Int64 JSONWriter {:-write write-plain}) (extend System.UInt16 JSONWriter {:-write write-plain}) (extend System.UInt32 JSONWriter {:-write write-plain}) (extend System.UInt64 JSONWriter {:-write write-plain}) (extend System.Double JSONWriter {:-write write-float}) (extend System.Single JSONWriter {:-write write-float}) (extend System.Decimal JSONWriter {:-write write-plain}) (extend clojure.lang.Ratio JSONWriter {:-write write-ratio}) (extend clojure.lang.BigInt JSONWriter {:-write write-bignum}) (extend clojure.lang.BigInteger JSONWriter {:-write write-bignum}) (extend clojure.lang.BigDecimal JSONWriter {:-write write-bignum}) ;; Symbols, Keywords, and Strings (extend clojure.lang.Named JSONWriter {:-write write-named}) (extend System.String JSONWriter {:-write write-string}) ;; Collections (extend clojure.lang.IPersistentMap JSONWriter {:-write write-object}) (extend System.Collections.IDictionary JSONWriter {:-write write-object}) ;; Cannot handle generic types!!!! (extend System.Collections.ICollection JSONWriter {:-write write-array}) (extend clojure.lang.ISeq JSONWriter {:-write write-array}) ;; Maybe a Java array, otherwise fail (extend System.Object JSONWriter {:-write write-generic}) ;;DM: End addition (defn write "Write JSON-formatted output to a java.io.Writer. Options are key-value pairs, valid options are: :escape-unicode boolean If true (default) non-ASCII characters are escaped as \\uXXXX :escape-slash boolean If true (default) the slash / is escaped as \\/ :key-fn function Single-argument function called on map keys; return value will replace the property names in the output. Must return a string. Default calls clojure.core/name on symbols and keywords and clojure.core/str on everything else. :value-fn function Function to transform values before writing. For each key-value pair in the input, called with two arguments: the key (BEFORE transformation by key-fn) and the value. The return value of value-fn will replace the value in the output. If the return value is a number, boolean, string, or nil it will be included literally in the output. If the return value is a non-map collection, it will be processed recursively. If the return value is a map, it will be processed recursively, calling value-fn again on its key-value pairs. If value-fn returns itself, the key-value pair will be omitted from the output." [x writer & options] ; ^Writer -- can't do. we might get a TextWriter or a Stream (let [{:keys [escape-unicode escape-slash key-fn value-fn] :or {escape-unicode true escape-slash true key-fn default-write-key-fn value-fn default-value-fn}} options] (binding [*escape-unicode* escape-unicode *escape-slash* escape-slash *key-fn* key-fn *value-fn* value-fn] (-write x (if (instance? TextWriter writer) writer (StreamWriter. writer)))))) ;DM: (-write x(PrintWriter. writer)) (defn write-str "Converts x to a JSON-formatted string. Options are the same as write." [x & options] (let [sw (StringWriter.)] (apply write x sw options) (.ToString sw))) ;DM: .toString ;;; JSON PRETTY-PRINTER ;; Based on code by <NAME> (defn- pprint-array [s] ((pprint/formatter-out "~<[~;~@{~w~^, ~:_~}~;]~:>") s)) (defn- pprint-object [m] ((pprint/formatter-out "~<{~;~@{~<~w:~_~w~:>~^, ~_~}~;}~:>") (for [[k v] m] [(*key-fn* k) v]))) (defn- pprint-generic [x] (if (.IsArray (class x)) ;DM: isArray (pprint-array (seq x)) ;; pprint proxies Writer, so we can't just wrap it (print (with-out-str (-write x (if (instance? TextWriter *out*) *out* (StreamWriter. *out*))))))) ; DM: PrintWriter (defn- pprint-dispatch [x] (cond (nil? x) (print "null") (true? x) (print "true") ;DM: Added (false? x) (print "false") ;DM: Added (instance? System.Collections.IDictionary x) (pprint-object x) ;DM: java.util.Map (instance? System.Collections.ICollection x) (pprint-array x) ;DM: java.util.Collection (instance? clojure.lang.ISeq x) (pprint-array x) :else (pprint-generic x))) (defn pprint "Pretty-prints JSON representation of x to *out*. Options are the same as for write except :value-fn, which is not supported." [x & options] (let [{:keys [escape-unicode escape-slash key-fn] :or {escape-unicode true escape-slash true key-fn default-write-key-fn}} options] (binding [*escape-unicode* escape-unicode *escape-slash* escape-slash *key-fn* key-fn] (pprint/write x :dispatch pprint-dispatch)))) ;; Local Variables: ;; mode: clojure ;; eval: (define-clojure-indent (codepoint-case (quote defun))) ;; End:
true
;; Copyright (c) PI:NAME:<NAME>END_PI, 2012. All rights reserved. The use ;; and distribution terms for this software are covered by the Eclipse ;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ;; which can be found in the file epl-v10.html at the root of this ;; distribution. By using this software in any fashion, you are ;; agreeing to be bound by the terms of this license. You must not ;; remove this notice, or any other, from this software. ;; Modified to run under ClojureCLR by PI:NAME:<NAME>END_PI ;; Changes are ;; Copyright (c) PI:NAME:<NAME>END_PI, 2013. All rights reserved. The use ;; and distribution terms for this software are covered by the Eclipse ;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ;; which can be found in the file epl-v10.html at the root of this ;; distribution. By using this software in any fashion, you are ;; agreeing to be bound by the terms of this license. You must not ;; remove this notice, or any other, from this software. ;; Changes to Stuart Sierra's code are clearly marked. ;; An end-of-line comment start with ;DM: indicates a change on that line. ;; The commented material indicates what was in the original code or indicates a new line inserted. ;; For example, a comment such as the following ;; (defn- read-array [^PushbackTextReader stream] ;DM: ^PushbackReader ;; indicates that the type hint needed to be replaced ;; More substantial changes are commented more substantially. (ns ^{:author "PI:NAME:<NAME>END_PI, modifed for ClojureCLR by PI:NAME:<NAME>END_PI" :doc "JavaScript Object Notation (JSON) parser/generator. See http://www.json.org/"} clojure.data.json (:refer-clojure :exclude (read)) (:require [clojure.pprint :as pprint]) ;DM: (:import (java.io PrintWriter PushbackReader StringWriter ;DM: StringReader Reader EOFException))) (:import (System.IO EndOfStreamException StreamWriter StringReader ;DM: Added StringWriter TextWriter) ;DM: Added (clojure.lang PushbackTextReader) ;DM: Added (System.Globalization NumberStyles StringInfo) ;DM: Added )) ;DM: Added (set! *warn-on-reflection* true) ;;; JSON READER (def ^:dynamic ^:private *bigdec*) (def ^:dynamic ^:private *key-fn*) (def ^:dynamic ^:private *value-fn*) (defn- default-write-key-fn [x] (cond (instance? clojure.lang.Named x) (name x) (nil? x) (throw (Exception. "JSON object properties may not be nil")) :else (str x))) (defn- default-value-fn [k v] v) (declare -read) (defmacro ^:private codepoint [c] (int c)) (defn- codepoint-clause [[test result]] (cond (list? test) [(map int test) result] (= test :whitespace) ['(9 10 13 32) result] (= test :simple-ascii) [(remove #{(codepoint \") (codepoint \\) (codepoint \/)} (range 32 127)) result] :else [(int test) result])) (defmacro ^:private codepoint-case [e & clauses] `(case ~e ~@(mapcat codepoint-clause (partition 2 clauses)) ~@(when (odd? (count clauses)) [(last clauses)]))) (defn- read-array [^PushbackTextReader stream] ;DM: ^PushbackReader ;; Expects to be called with the head of the stream AFTER the ;; opening bracket. (loop [result (transient [])] (let [c (.Read stream)] ;DM: .read (when (neg? c) (throw (EndOfStreamException. "JSON error (end-of-file inside array)"))) ;DM: EOFException. (codepoint-case c :whitespace (recur result) \, (recur result) \] (persistent! result) (do (.Unread stream c) ;DM: .unread (let [element (-read stream true nil)] (recur (conj! result element)))))))) (defn- read-object [^PushbackTextReader stream] ;DM: ^PushbackReader ;; Expects to be called with the head of the stream AFTER the ;; opening bracket. (loop [key nil, result (transient {})] (let [c (.Read stream)] ;DM: .read (when (neg? c) (throw (EndOfStreamException. "JSON error (end-of-file inside object)"))) ;DM: EOFException. (codepoint-case c :whitespace (recur key result) \, (recur nil result) \: (recur key result) \} (if (nil? key) (persistent! result) (throw (Exception. "JSON error (key missing value in object)"))) (do (.Unread stream c) ;DM: .unread (let [element (-read stream true nil)] (if (nil? key) (if (string? element) (recur element result) ;DM: .read (throw (Exception. "JSON error (non-string key in object)"))) (recur nil (let [out-key (*key-fn* key) out-value (*value-fn* out-key element)] (if (= *value-fn* out-value) result (assoc! result out-key out-value))))))))))) (defn- read-hex-char [^PushbackTextReader stream] ;DM: ^PushbackReader ;; Expects to be called with the head of the stream AFTER the ;; initial "\u". Reads the next four characters from the stream. (let [a (.Read stream) ;DM: .read b (.Read stream) ;DM: .read c (.Read stream) ;DM: .read d (.Read stream)] ;DM: .read (when (or (neg? a) (neg? b) (neg? c) (neg? d)) (throw (EndOfStreamException. ;DM: EOFException. "JSON error (end-of-file inside Unicode character escape)"))) (let [s (str (char a) (char b) (char c) (char d))] (char (Int32/Parse s NumberStyles/HexNumber))))) ;DM: (Integer/parseInt s 16) (defn- read-escaped-char [^PushbackTextReader stream] ;DM: ^PushbackReader ;; Expects to be called with the head of the stream AFTER the ;; initial backslash. (let [c (.Read stream)] ;DM: .read (codepoint-case c (\" \\ \/) (char c) \b \backspace \f \formfeed \n \newline \r \return \t \tab \u (read-hex-char stream)))) (defn- read-quoted-string [^PushbackTextReader stream] ;DM: ^PushbackReader ;; Expects to be called with the head of the stream AFTER the ;; opening quotation mark. (let [buffer (StringBuilder.)] (loop [] (let [c (.Read stream)] ;DM: .read (when (neg? c) (throw (EndOfStreamException. "JSON error (end-of-file inside string)"))) ;DM: EOFException. (codepoint-case c \" (str buffer) \\ (do (.Append buffer (read-escaped-char stream)) ;DM: .append (recur)) (do (.Append buffer (char c)) ;DM: .append (recur))))))) (defn- read-integer [^String string] (if (< (count string) 18) ; definitely fits in a Long (Int64/Parse string) ;DM: Long/valueOf (or (try (Int64/Parse string) ;DM: Long/valueOf (catch OverflowException e nil) ;DM: Added (catch FormatException e nil)) ;DM: NumberFormatException (clojure.lang.BigInteger/Parse string)))) ;DM: (bigint string) TODO: Fix when we have a BigInteger c-tor that takes a string (defn- read-decimal [^String string] (if *bigdec* (clojure.lang.BigDecimal/Parse string) ;DM: (bigdec string) -- TODO: we can change this back when we fix BigDecimal (Double/Parse string))) ;DM: Double/valueOf (defn- read-number [^PushbackTextReader stream] ;DM: ^PushbackReader (let [buffer (StringBuilder.) decimal? (loop [decimal? false] (let [c (.Read stream)] ;DM: .read (codepoint-case c (\- \+ \0 \1 \2 \3 \4 \5 \6 \7 \8 \9) (do (.Append buffer (char c)) ;DM: .append (recur decimal?)) (\e \E \.) (do (.Append buffer (char c)) ;DM: .append (recur true)) (do (.Unread stream c) ;DM: .unread decimal?))))] (if decimal? (read-decimal (str buffer)) (read-integer (str buffer))))) (defn- -read [^PushbackTextReader stream eof-error? eof-value] ;DM: ^PushbackReader (loop [] (let [c (.Read stream)] ;DM: .read (if (neg? c) ;; Handle end-of-stream (if eof-error? (throw (EndOfStreamException. "JSON error (end-of-file)")) ;DM: EOFException. eof-value) (codepoint-case c :whitespace (recur) ;; Read numbers (\- \0 \1 \2 \3 \4 \5 \6 \7 \8 \9) (do (.Unread stream c) ;DM: .unread (read-number stream)) ;; Read strings \" (read-quoted-string stream) ;; Read null as nil \n (if (and (= (codepoint \u) (.Read stream)) ;DM: .read (= (codepoint \l) (.Read stream)) ;DM: .read (= (codepoint \l) (.Read stream))) ;DM: .read nil (throw (Exception. "JSON error (expected null)"))) ;; Read true \t (if (and (= (codepoint \r) (.Read stream)) ;DM: .read (= (codepoint \u) (.Read stream)) ;DM: .read (= (codepoint \e) (.Read stream))) ;DM: .read true (throw (Exception. "JSON error (expected true)"))) ;; Read false \f (if (and (= (codepoint \a) (.Read stream)) ;DM: .read (= (codepoint \l) (.Read stream)) ;DM: .read (= (codepoint \s) (.Read stream)) ;DM: .read (= (codepoint \e) (.Read stream))) ;DM: .read false (throw (Exception. "JSON error (expected false)"))) ;; Read JSON objects \{ (read-object stream) ;; Read JSON arrays \[ (read-array stream) (throw (Exception. (str "JSON error (unexpected character): " (char c))))))))) (defn read "Reads a single item of JSON data from a java.io.Reader. Options are key-value pairs, valid options are: :eof-error? boolean If true (default) will throw exception if the stream is empty. :eof-value Object Object to return if the stream is empty and eof-error? is false. Default is nil. :bigdec boolean If true use BigDecimal for decimal numbers instead of Double. Default is false. :key-fn function Single-argument function called on JSON property names; return value will replace the property names in the output. Default is clojure.core/identity, use clojure.core/keyword to get keyword properties. :value-fn function Function to transform values in the output. For each JSON property, value-fn is called with two arguments: the property name (transformed by key-fn) and the value. The return value of value-fn will replace the value in the output. If value-fn returns itself, the property will be omitted from the output. The default value-fn returns the value unchanged." [reader & options] (let [{:keys [eof-error? eof-value bigdec key-fn value-fn] :or {bigdec false eof-error? true key-fn identity value-fn default-value-fn}} options] (binding [*bigdec* bigdec *key-fn* key-fn *value-fn* value-fn] (-read (PushbackTextReader. reader) eof-error? eof-value)))) ;DM: PushbackReader. (defn read-str "Reads one JSON value from input String. Options are the same as for read." [string & options] (apply read (StringReader. string) options)) ;;; JSON WRITER (def ^:dynamic ^:private *escape-unicode*) (def ^:dynamic ^:private *escape-slash*) (defprotocol JSONWriter (-write [object out] "Print object to PrintWriter out as JSON")) (defn- write-string [^String s ^TextWriter out] ;DM: ^CharSequence ^PrintWriter (let [sb (StringBuilder. (count s))] (.Append sb \") ;DM: .append (dotimes [i (count s)] (let [cp (int (.get_Chars s i))] ;DM: (Character/codePointAt s i) (codepoint-case cp ;; Printable JSON escapes \" (.Append sb "\\\"") ;DM: .append \\ (.Append sb "\\\\") ;DM: .append \/ (.Append sb (if *escape-slash* "\\/" "/")) ;DM: .append ;; Simple ASCII characters :simple-ascii (.Append sb (.get_Chars s i)) ;DM: .append .charAt ;; JSON escapes \backspace (.Append sb "\\b") ;DM: .append \formfeed (.Append sb "\\f") ;DM: .append \newline (.Append sb "\\n") ;DM: .append \return (.Append sb "\\r") ;DM: .append \tab (.Append sb "\\t") ;DM: .append ;; Any other character is Unicode (if *escape-unicode* (.Append sb (format "\\u%04x" cp)) ; Hexadecimal-escaped ;DM: .append (.Append sb (.get_Chars s i)))))) ;DM: (.appendCodePoint sb cp) (.Append sb \") ;DM: .append (.Write out (str sb)))) ;DM: .print (defn- write-object [m ^TextWriter out] ;DM: ^PrintWriter (.Write out \{) ;DM: .print (loop [x m] (when (seq m) (let [[k v] (first x) out-key (*key-fn* k) out-value (*value-fn* k v)] (when-not (string? out-key) (throw (Exception. "JSON object keys must be strings"))) (when-not (= *value-fn* out-value) (write-string out-key out) (.Write out \:) ;DM: .print (-write out-value out))) (let [nxt (next x)] (when (seq nxt) (.Write out \,) ;DM: .print (recur nxt))))) (.Write out \})) ;DM: .print (defn- write-array [s ^TextWriter out] ;DM: ^PrintWriter (.Write out \[) ;DM: .print (loop [x s] (when (seq x) (let [fst (first x) nxt (next x)] (-write fst out) (when (seq nxt) (.Write out \,) ;DM: .print (recur nxt))))) (.Write out \])) ;DM: .print (defn- write-bignum [x ^TextWriter out] ;DM: ^PrintWriter (.Write out (str x))) ;DM: .print (defn- write-plain [x ^TextWriter out] ;DM: ^PrintWriter (.Write out x)) ;DM: .print (defn- write-null [x ^TextWriter out] ;DM: ^PrintWriter (.Write out "null")) ;DM: .print (defn- write-named [x out] (write-string (name x) out)) (defn- write-generic [x out] (if (.IsArray (class x)) ;DM: isArray (-write (seq x) out) (throw (Exception. (str "Don't know how to write JSON of " (class x)))))) (defn- write-ratio [x out] (-write (double x) out)) ;;DM: Added write-float (defn- write-float [x ^TextWriter out] (.Write out (fp-str x))) ;DM: ;; nil, true, false ;DM: (extend nil JSONWriter {:-write write-null}) ;DM: (extend java.lang.Boolean JSONWriter {:-write write-plain}) ;DM: ;DM: ;; Numbers ;DM: (extend java.lang.Number JSONWriter {:-write write-plain}) ;DM: (extend clojure.lang.Ratio JSONWriter {:-write write-ratio}) ;DM: (extend clojure.lang.BigInt JSONWriter {:-write write-bignum}) ;DM: (extend java.math.BigInteger JSONWriter {:-write write-bignum}) ;DM: (extend java.math.BigDecimal JSONWriter {:-write write-bignum}) ;DM: ;DM: ;; Symbols, Keywords, and Strings ;DM: (extend clojure.lang.Named JSONWriter {:-write write-named}) ;DM: (extend java.lang.CharSequence JSONWriter {:-write write-string}) ;DM: ;DM: ;; Collections ;DM: (extend java.util.Map JSONWriter {:-write write-object}) ;DM: (extend java.util.Collection JSONWriter {:-write write-array}) ;DM: ;DM: ;; Maybe a Java array, otherwise fail ;DM: (extend java.lang.Object JSONWriter {:-write write-generic}) ;;DM: Following added ;; nil, true, false (extend nil JSONWriter {:-write write-null}) (extend clojure.lang.Named JSONWriter {:-write write-named}) (extend System.Boolean JSONWriter {:-write write-plain}) ;; Numbers ;; no equivalent to java.lang.Number. Sigh. (extend System.Byte JSONWriter {:-write write-plain}) (extend System.SByte JSONWriter {:-write write-plain}) (extend System.Int16 JSONWriter {:-write write-plain}) (extend System.Int32 JSONWriter {:-write write-plain}) (extend System.Int64 JSONWriter {:-write write-plain}) (extend System.UInt16 JSONWriter {:-write write-plain}) (extend System.UInt32 JSONWriter {:-write write-plain}) (extend System.UInt64 JSONWriter {:-write write-plain}) (extend System.Double JSONWriter {:-write write-float}) (extend System.Single JSONWriter {:-write write-float}) (extend System.Decimal JSONWriter {:-write write-plain}) (extend clojure.lang.Ratio JSONWriter {:-write write-ratio}) (extend clojure.lang.BigInt JSONWriter {:-write write-bignum}) (extend clojure.lang.BigInteger JSONWriter {:-write write-bignum}) (extend clojure.lang.BigDecimal JSONWriter {:-write write-bignum}) ;; Symbols, Keywords, and Strings (extend clojure.lang.Named JSONWriter {:-write write-named}) (extend System.String JSONWriter {:-write write-string}) ;; Collections (extend clojure.lang.IPersistentMap JSONWriter {:-write write-object}) (extend System.Collections.IDictionary JSONWriter {:-write write-object}) ;; Cannot handle generic types!!!! (extend System.Collections.ICollection JSONWriter {:-write write-array}) (extend clojure.lang.ISeq JSONWriter {:-write write-array}) ;; Maybe a Java array, otherwise fail (extend System.Object JSONWriter {:-write write-generic}) ;;DM: End addition (defn write "Write JSON-formatted output to a java.io.Writer. Options are key-value pairs, valid options are: :escape-unicode boolean If true (default) non-ASCII characters are escaped as \\uXXXX :escape-slash boolean If true (default) the slash / is escaped as \\/ :key-fn function Single-argument function called on map keys; return value will replace the property names in the output. Must return a string. Default calls clojure.core/name on symbols and keywords and clojure.core/str on everything else. :value-fn function Function to transform values before writing. For each key-value pair in the input, called with two arguments: the key (BEFORE transformation by key-fn) and the value. The return value of value-fn will replace the value in the output. If the return value is a number, boolean, string, or nil it will be included literally in the output. If the return value is a non-map collection, it will be processed recursively. If the return value is a map, it will be processed recursively, calling value-fn again on its key-value pairs. If value-fn returns itself, the key-value pair will be omitted from the output." [x writer & options] ; ^Writer -- can't do. we might get a TextWriter or a Stream (let [{:keys [escape-unicode escape-slash key-fn value-fn] :or {escape-unicode true escape-slash true key-fn default-write-key-fn value-fn default-value-fn}} options] (binding [*escape-unicode* escape-unicode *escape-slash* escape-slash *key-fn* key-fn *value-fn* value-fn] (-write x (if (instance? TextWriter writer) writer (StreamWriter. writer)))))) ;DM: (-write x(PrintWriter. writer)) (defn write-str "Converts x to a JSON-formatted string. Options are the same as write." [x & options] (let [sw (StringWriter.)] (apply write x sw options) (.ToString sw))) ;DM: .toString ;;; JSON PRETTY-PRINTER ;; Based on code by PI:NAME:<NAME>END_PI (defn- pprint-array [s] ((pprint/formatter-out "~<[~;~@{~w~^, ~:_~}~;]~:>") s)) (defn- pprint-object [m] ((pprint/formatter-out "~<{~;~@{~<~w:~_~w~:>~^, ~_~}~;}~:>") (for [[k v] m] [(*key-fn* k) v]))) (defn- pprint-generic [x] (if (.IsArray (class x)) ;DM: isArray (pprint-array (seq x)) ;; pprint proxies Writer, so we can't just wrap it (print (with-out-str (-write x (if (instance? TextWriter *out*) *out* (StreamWriter. *out*))))))) ; DM: PrintWriter (defn- pprint-dispatch [x] (cond (nil? x) (print "null") (true? x) (print "true") ;DM: Added (false? x) (print "false") ;DM: Added (instance? System.Collections.IDictionary x) (pprint-object x) ;DM: java.util.Map (instance? System.Collections.ICollection x) (pprint-array x) ;DM: java.util.Collection (instance? clojure.lang.ISeq x) (pprint-array x) :else (pprint-generic x))) (defn pprint "Pretty-prints JSON representation of x to *out*. Options are the same as for write except :value-fn, which is not supported." [x & options] (let [{:keys [escape-unicode escape-slash key-fn] :or {escape-unicode true escape-slash true key-fn default-write-key-fn}} options] (binding [*escape-unicode* escape-unicode *escape-slash* escape-slash *key-fn* key-fn] (pprint/write x :dispatch pprint-dispatch)))) ;; Local Variables: ;; mode: clojure ;; eval: (define-clojure-indent (codepoint-case (quote defun))) ;; End:
[ { "context": "\n (Employee. \"Craig\" \"Redmond\" 123456) \n ", "end": 381, "score": 0.9998154044151306, "start": 376, "tag": "NAME", "value": "Craig" }, { "context": " (Employee. \"Craig\" \"Redmond\" 123456) \n [(", "end": 391, "score": 0.9995636940002441, "start": 384, "tag": "NAME", "value": "Redmond" }, { "context": " [(Employee. \"Erik\" \"Utrecht\" 12345) \n ", "end": 456, "score": 0.9998278617858887, "start": 452, "tag": "NAME", "value": "Erik" }, { "context": " [(Employee. \"Erik\" \"Utrecht\" 12345) \n (E", "end": 466, "score": 0.9997226595878601, "start": 459, "tag": "NAME", "value": "Utrecht" }, { "context": " (Employee. \"Ralf\" \"Koblenz\" 1234)]\n ", "end": 530, "score": 0.9998272061347961, "start": 526, "tag": "NAME", "value": "Ralf" }, { "context": " (Employee. \"Ralf\" \"Koblenz\" 1234)]\n []))", "end": 540, "score": 0.9997111558914185, "start": 533, "tag": "NAME", "value": "Koblenz" }, { "context": "\n (Employee. \"Ray\" \"Redmond\" 234567)\n ", "end": 731, "score": 0.9998373985290527, "start": 728, "tag": "NAME", "value": "Ray" }, { "context": " (Employee. \"Ray\" \"Redmond\" 234567)\n []\n", "end": 741, "score": 0.9991961717605591, "start": 734, "tag": "NAME", "value": "Redmond" }, { "context": " (Employee. \"Klaus\" \"Boston\" 23456)\n ", "end": 950, "score": 0.999786376953125, "start": 945, "tag": "NAME", "value": "Klaus" }, { "context": " (Employee. \"Klaus\" \"Boston\" 23456)\n ", "end": 959, "score": 0.9979166984558105, "start": 953, "tag": "NAME", "value": "Boston" }, { "context": " (Employee. \"Karl\" \"Riga\" 2345)\n ", "end": 1151, "score": 0.9997804164886475, "start": 1147, "tag": "NAME", "value": "Karl" }, { "context": " (Employee. \"Karl\" \"Riga\" 2345)\n ", "end": 1158, "score": 0.9981650114059448, "start": 1154, "tag": "NAME", "value": "Riga" }, { "context": " [(Employee. \"Joe\" \"Wifi City\" 2344)]\n ", "end": 1235, "score": 0.9997550249099731, "start": 1232, "tag": "NAME", "value": "Joe" }, { "context": " [(Employee. \"Joe\" \"Wifi City\" 2344)]\n ", "end": 1247, "score": 0.8913402557373047, "start": 1243, "tag": "NAME", "value": "City" } ]
contributions/clojureRefs/src/org/softlang/meganalysis.clj
A-Kastner/101repo
15
(ns org.softlang.meganalysis (:require org.softlang.company) (:use org.softlang.scenarios) (:import (org.softlang.company Dept Company Employee))) ;; sample company (def meganalysis (ref (Company. "meganalysis" [(ref (Dept. "Research" (Employee. "Craig" "Redmond" 123456) [(Employee. "Erik" "Utrecht" 12345) (Employee. "Ralf" "Koblenz" 1234)] [])) (ref (Dept. "Development" (Employee. "Ray" "Redmond" 234567) [] [(ref (Dept. "Dev1" (Employee. "Klaus" "Boston" 23456) [] [(ref (Dept. "Dev11" (Employee. "Karl" "Riga" 2345) [(Employee. "Joe" "Wifi City" 2344)] []))]))]))])))
35195
(ns org.softlang.meganalysis (:require org.softlang.company) (:use org.softlang.scenarios) (:import (org.softlang.company Dept Company Employee))) ;; sample company (def meganalysis (ref (Company. "meganalysis" [(ref (Dept. "Research" (Employee. "<NAME>" "<NAME>" 123456) [(Employee. "<NAME>" "<NAME>" 12345) (Employee. "<NAME>" "<NAME>" 1234)] [])) (ref (Dept. "Development" (Employee. "<NAME>" "<NAME>" 234567) [] [(ref (Dept. "Dev1" (Employee. "<NAME>" "<NAME>" 23456) [] [(ref (Dept. "Dev11" (Employee. "<NAME>" "<NAME>" 2345) [(Employee. "<NAME>" "Wifi <NAME>" 2344)] []))]))]))])))
true
(ns org.softlang.meganalysis (:require org.softlang.company) (:use org.softlang.scenarios) (:import (org.softlang.company Dept Company Employee))) ;; sample company (def meganalysis (ref (Company. "meganalysis" [(ref (Dept. "Research" (Employee. "PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI" 123456) [(Employee. "PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI" 12345) (Employee. "PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI" 1234)] [])) (ref (Dept. "Development" (Employee. "PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI" 234567) [] [(ref (Dept. "Dev1" (Employee. "PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI" 23456) [] [(ref (Dept. "Dev11" (Employee. "PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI" 2345) [(Employee. "PI:NAME:<NAME>END_PI" "Wifi PI:NAME:<NAME>END_PI" 2344)] []))]))]))])))
[ { "context": " (input-control password-field \"password\" \"Password\" nil true (:password errors))\n (input-", "end": 1111, "score": 0.743720531463623, "start": 1103, "tag": "PASSWORD", "value": "Password" } ]
src/sample/views/auth.clj
princerachit/clojure-web-application
13
(ns sample.views.auth (:require [hiccup.page :refer [html5 include-css]] [hiccup.element :refer :all] [hiccup.form :refer :all] [sample.models.user :as db] [sample.helpers :refer :all] [struct.core :as st] [ring.util.anti-forgery :refer [anti-forgery-field]])) (defn login-page [& [email errors]] [:div.login-form [:h1 "Login with existing account"] (form-to [:post "/login"] (anti-forgery-field) (input-control text-field "email" "Email" email true (:email errors)) (input-control password-field "password" "Password" nil true) (submit-button {:class "btn btn-success"} "Login"))]) (defn registration-page [& [name email errors]] [:div.registration-form [:h1 "Let's create an account"] (form-to [:post "/register"] (anti-forgery-field) (input-control text-field "name" "Name" name true (:name errors)) (input-control text-field "email" "Email" email true (:email errors)) (input-control password-field "password" "Password" nil true (:password errors)) (input-control password-field "password-confirmation" "Repeat password" nil true (:password-confirmation errors)) (submit-button {:class "btn btn-success"} "Create account"))])
119125
(ns sample.views.auth (:require [hiccup.page :refer [html5 include-css]] [hiccup.element :refer :all] [hiccup.form :refer :all] [sample.models.user :as db] [sample.helpers :refer :all] [struct.core :as st] [ring.util.anti-forgery :refer [anti-forgery-field]])) (defn login-page [& [email errors]] [:div.login-form [:h1 "Login with existing account"] (form-to [:post "/login"] (anti-forgery-field) (input-control text-field "email" "Email" email true (:email errors)) (input-control password-field "password" "Password" nil true) (submit-button {:class "btn btn-success"} "Login"))]) (defn registration-page [& [name email errors]] [:div.registration-form [:h1 "Let's create an account"] (form-to [:post "/register"] (anti-forgery-field) (input-control text-field "name" "Name" name true (:name errors)) (input-control text-field "email" "Email" email true (:email errors)) (input-control password-field "password" "<PASSWORD>" nil true (:password errors)) (input-control password-field "password-confirmation" "Repeat password" nil true (:password-confirmation errors)) (submit-button {:class "btn btn-success"} "Create account"))])
true
(ns sample.views.auth (:require [hiccup.page :refer [html5 include-css]] [hiccup.element :refer :all] [hiccup.form :refer :all] [sample.models.user :as db] [sample.helpers :refer :all] [struct.core :as st] [ring.util.anti-forgery :refer [anti-forgery-field]])) (defn login-page [& [email errors]] [:div.login-form [:h1 "Login with existing account"] (form-to [:post "/login"] (anti-forgery-field) (input-control text-field "email" "Email" email true (:email errors)) (input-control password-field "password" "Password" nil true) (submit-button {:class "btn btn-success"} "Login"))]) (defn registration-page [& [name email errors]] [:div.registration-form [:h1 "Let's create an account"] (form-to [:post "/register"] (anti-forgery-field) (input-control text-field "name" "Name" name true (:name errors)) (input-control text-field "email" "Email" email true (:email errors)) (input-control password-field "password" "PI:PASSWORD:<PASSWORD>END_PI" nil true (:password errors)) (input-control password-field "password-confirmation" "Repeat password" nil true (:password-confirmation errors)) (submit-button {:class "btn btn-success"} "Create account"))])
[ { "context": "eavily on examples and the ezd3 library written by Hitesh Jasani\"]\n [ezd3/d3svg {:width 400 :height 375 :on-rend", "end": 4566, "score": 0.9999003410339355, "start": 4553, "tag": "NAME", "value": "Hitesh Jasani" } ]
examples/barchart/src/barchart/core.cljs
mzrieker/ata-proj-bargraph
0
(ns barchart.core (:require-macros [cljs.core.async.macros :refer [go]]) (:require [cljs.reader :as reader] [reagent.core :as reagent :refer [atom]] [cljsjs/d3] [ezd3.core :as ezd3] [cljs-http.client :as http] [cljs.core.async :refer [<!]] )) (enable-console-print!) (defn make-remote-call [site] (go (let [response (<! (http/get site {:with-credentials? false }))] ;;(prn (map :country (:body response))) ;;(prn (map :gdp (:body response))) ;;(prn (:body response)) (def data (:body response) ) ) ) ) (make-remote-call "https://api.myjson.com/bins/69dqi") (defn d3-render [svg] (js/console.log "d3-render") ;;(make-remote-call "https://api.myjson.com/bins/11ga4a") (let [width (reader/read-string (.attr svg "width")) height (reader/read-string (.attr svg "height")) array-len (count data) max-value (.max js/d3 (into-array data) (fn [d] (get d :gdp ))) x-axis-len 200 y-axis-len 60 y-scale (-> js/d3 (.scaleLinear) (.domain #js [0 max-value]) (.range #js [0 y-axis-len])) tooltip (-> js/d3 (.select "body") (.append "div") (ezd3/styles {"position" "absolute" "padding" "2px 5px" "background-color" "white" "opacity" "0.8" "font-family" "'Open Sans', sans-serif" "font-size" "12px" "z-index" "10" "visibility" "hidden"}))] (js/console.log "width" width) (js/console.log "height" height) (js/console.log "array-len" array-len) (js/console.log "max-value" max-value) ;; draw bars (-> svg (.selectAll "rect") (.data (into-array data)) (.enter) (.append "rect") (ezd3/attrs {:x (fn [d i] (+ (* i (/ x-axis-len array-len)) 100)) :y (fn [d] (- height (y-scale (get d :gdp)) 75)) :width (dec (/ x-axis-len array-len)) :height (fn [d] (y-scale (get d :gdp))) :fill "red"}) (.on "mouseover" (fn [d] (-> tooltip (.style "visibility" "visible") (.text (str (get d :country) ": " (get d :gdp)))))) (.on "mousemove" (fn [d] (let [y (.. js/d3 -event -pageY) x (.. js/d3 -event -pageX)] (-> tooltip (.style "top" (str (- y 10) "px")) (.style "left" (str (+ x 10) "px")) (.text (str (get d :country) ": " (get d :gdp))))))) (.on "mouseout" (fn [d] (.style tooltip "visibility" "hidden"))) ) ;; manually draw y-axis (not optimal, but builds character) (-> svg (.append "line") (ezd3/attrs {:x1 100 :y1 50 :x2 100 :y2 300 :stroke-width 2 :stroke "black"})) ;; manually draw x-axis (not optimal, but builds character) (-> svg (.append "line") (ezd3/attrs {:x1 100 :y1 300 :x2 350 :y2 300 :stroke-width 2 :stroke "black"})) ;; x-axis label(s) (-> svg (.append "text") (ezd3/attrs {:class "x label" :text-anchor "end" :font-family "'Open Sans', sans-serif" :font-size "18px" }) (.text "Countries") (.attr :transform (ezd3/transform 230 325 0)) ) ;; y-axis label (-> svg (.append "text") (ezd3/attrs {:class "y label" :text-anchor "end" :font-family "'Open Sans', sans-serif" :font-size "18px" }) (.text "GDP in Trillions") (.attr :transform (ezd3/transform 75 150 -90))) )) (defn hello-world [] [:div [:h1 "ATA Mini-Project Bar Graph Example"] [:p "Based heavily on examples and the ezd3 library written by Hitesh Jasani"] [ezd3/d3svg {:width 400 :height 375 :on-render d3-render }] [:p "See https://github.com/hiteshjasani/cljs-ezd3 for the source."] ]) (reagent/render-component [hello-world] (. js/document (getElementById "app"))) (defn on-js-reload [] ;; optionally touch your app-state to force rerendering depending on ;; your application ;; (swap! app-state update-in [:__figwheel_counter] inc) )
102124
(ns barchart.core (:require-macros [cljs.core.async.macros :refer [go]]) (:require [cljs.reader :as reader] [reagent.core :as reagent :refer [atom]] [cljsjs/d3] [ezd3.core :as ezd3] [cljs-http.client :as http] [cljs.core.async :refer [<!]] )) (enable-console-print!) (defn make-remote-call [site] (go (let [response (<! (http/get site {:with-credentials? false }))] ;;(prn (map :country (:body response))) ;;(prn (map :gdp (:body response))) ;;(prn (:body response)) (def data (:body response) ) ) ) ) (make-remote-call "https://api.myjson.com/bins/69dqi") (defn d3-render [svg] (js/console.log "d3-render") ;;(make-remote-call "https://api.myjson.com/bins/11ga4a") (let [width (reader/read-string (.attr svg "width")) height (reader/read-string (.attr svg "height")) array-len (count data) max-value (.max js/d3 (into-array data) (fn [d] (get d :gdp ))) x-axis-len 200 y-axis-len 60 y-scale (-> js/d3 (.scaleLinear) (.domain #js [0 max-value]) (.range #js [0 y-axis-len])) tooltip (-> js/d3 (.select "body") (.append "div") (ezd3/styles {"position" "absolute" "padding" "2px 5px" "background-color" "white" "opacity" "0.8" "font-family" "'Open Sans', sans-serif" "font-size" "12px" "z-index" "10" "visibility" "hidden"}))] (js/console.log "width" width) (js/console.log "height" height) (js/console.log "array-len" array-len) (js/console.log "max-value" max-value) ;; draw bars (-> svg (.selectAll "rect") (.data (into-array data)) (.enter) (.append "rect") (ezd3/attrs {:x (fn [d i] (+ (* i (/ x-axis-len array-len)) 100)) :y (fn [d] (- height (y-scale (get d :gdp)) 75)) :width (dec (/ x-axis-len array-len)) :height (fn [d] (y-scale (get d :gdp))) :fill "red"}) (.on "mouseover" (fn [d] (-> tooltip (.style "visibility" "visible") (.text (str (get d :country) ": " (get d :gdp)))))) (.on "mousemove" (fn [d] (let [y (.. js/d3 -event -pageY) x (.. js/d3 -event -pageX)] (-> tooltip (.style "top" (str (- y 10) "px")) (.style "left" (str (+ x 10) "px")) (.text (str (get d :country) ": " (get d :gdp))))))) (.on "mouseout" (fn [d] (.style tooltip "visibility" "hidden"))) ) ;; manually draw y-axis (not optimal, but builds character) (-> svg (.append "line") (ezd3/attrs {:x1 100 :y1 50 :x2 100 :y2 300 :stroke-width 2 :stroke "black"})) ;; manually draw x-axis (not optimal, but builds character) (-> svg (.append "line") (ezd3/attrs {:x1 100 :y1 300 :x2 350 :y2 300 :stroke-width 2 :stroke "black"})) ;; x-axis label(s) (-> svg (.append "text") (ezd3/attrs {:class "x label" :text-anchor "end" :font-family "'Open Sans', sans-serif" :font-size "18px" }) (.text "Countries") (.attr :transform (ezd3/transform 230 325 0)) ) ;; y-axis label (-> svg (.append "text") (ezd3/attrs {:class "y label" :text-anchor "end" :font-family "'Open Sans', sans-serif" :font-size "18px" }) (.text "GDP in Trillions") (.attr :transform (ezd3/transform 75 150 -90))) )) (defn hello-world [] [:div [:h1 "ATA Mini-Project Bar Graph Example"] [:p "Based heavily on examples and the ezd3 library written by <NAME>"] [ezd3/d3svg {:width 400 :height 375 :on-render d3-render }] [:p "See https://github.com/hiteshjasani/cljs-ezd3 for the source."] ]) (reagent/render-component [hello-world] (. js/document (getElementById "app"))) (defn on-js-reload [] ;; optionally touch your app-state to force rerendering depending on ;; your application ;; (swap! app-state update-in [:__figwheel_counter] inc) )
true
(ns barchart.core (:require-macros [cljs.core.async.macros :refer [go]]) (:require [cljs.reader :as reader] [reagent.core :as reagent :refer [atom]] [cljsjs/d3] [ezd3.core :as ezd3] [cljs-http.client :as http] [cljs.core.async :refer [<!]] )) (enable-console-print!) (defn make-remote-call [site] (go (let [response (<! (http/get site {:with-credentials? false }))] ;;(prn (map :country (:body response))) ;;(prn (map :gdp (:body response))) ;;(prn (:body response)) (def data (:body response) ) ) ) ) (make-remote-call "https://api.myjson.com/bins/69dqi") (defn d3-render [svg] (js/console.log "d3-render") ;;(make-remote-call "https://api.myjson.com/bins/11ga4a") (let [width (reader/read-string (.attr svg "width")) height (reader/read-string (.attr svg "height")) array-len (count data) max-value (.max js/d3 (into-array data) (fn [d] (get d :gdp ))) x-axis-len 200 y-axis-len 60 y-scale (-> js/d3 (.scaleLinear) (.domain #js [0 max-value]) (.range #js [0 y-axis-len])) tooltip (-> js/d3 (.select "body") (.append "div") (ezd3/styles {"position" "absolute" "padding" "2px 5px" "background-color" "white" "opacity" "0.8" "font-family" "'Open Sans', sans-serif" "font-size" "12px" "z-index" "10" "visibility" "hidden"}))] (js/console.log "width" width) (js/console.log "height" height) (js/console.log "array-len" array-len) (js/console.log "max-value" max-value) ;; draw bars (-> svg (.selectAll "rect") (.data (into-array data)) (.enter) (.append "rect") (ezd3/attrs {:x (fn [d i] (+ (* i (/ x-axis-len array-len)) 100)) :y (fn [d] (- height (y-scale (get d :gdp)) 75)) :width (dec (/ x-axis-len array-len)) :height (fn [d] (y-scale (get d :gdp))) :fill "red"}) (.on "mouseover" (fn [d] (-> tooltip (.style "visibility" "visible") (.text (str (get d :country) ": " (get d :gdp)))))) (.on "mousemove" (fn [d] (let [y (.. js/d3 -event -pageY) x (.. js/d3 -event -pageX)] (-> tooltip (.style "top" (str (- y 10) "px")) (.style "left" (str (+ x 10) "px")) (.text (str (get d :country) ": " (get d :gdp))))))) (.on "mouseout" (fn [d] (.style tooltip "visibility" "hidden"))) ) ;; manually draw y-axis (not optimal, but builds character) (-> svg (.append "line") (ezd3/attrs {:x1 100 :y1 50 :x2 100 :y2 300 :stroke-width 2 :stroke "black"})) ;; manually draw x-axis (not optimal, but builds character) (-> svg (.append "line") (ezd3/attrs {:x1 100 :y1 300 :x2 350 :y2 300 :stroke-width 2 :stroke "black"})) ;; x-axis label(s) (-> svg (.append "text") (ezd3/attrs {:class "x label" :text-anchor "end" :font-family "'Open Sans', sans-serif" :font-size "18px" }) (.text "Countries") (.attr :transform (ezd3/transform 230 325 0)) ) ;; y-axis label (-> svg (.append "text") (ezd3/attrs {:class "y label" :text-anchor "end" :font-family "'Open Sans', sans-serif" :font-size "18px" }) (.text "GDP in Trillions") (.attr :transform (ezd3/transform 75 150 -90))) )) (defn hello-world [] [:div [:h1 "ATA Mini-Project Bar Graph Example"] [:p "Based heavily on examples and the ezd3 library written by PI:NAME:<NAME>END_PI"] [ezd3/d3svg {:width 400 :height 375 :on-render d3-render }] [:p "See https://github.com/hiteshjasani/cljs-ezd3 for the source."] ]) (reagent/render-component [hello-world] (. js/document (getElementById "app"))) (defn on-js-reload [] ;; optionally touch your app-state to force rerendering depending on ;; your application ;; (swap! app-state update-in [:__figwheel_counter] inc) )
[ { "context": " \"Set Collection\"}),\n :name \"Hra o Truny Pobocnik krale\",\n :com.board", "end": 5517, "score": 0.6898214817047119, "start": 5514, "tag": "NAME", "value": "Hra" }, { "context": " \"Set Collection\"}),\n :name \"Hra o Truny Pobocnik krale\",\n :com.boardgamegeek", "end": 5525, "score": 0.6066040992736816, "start": 5522, "tag": "NAME", "value": "uny" }, { "context": " Collection\"}),\n :name \"Hra o Truny Pobocnik krale\",\n :com.boardgamegeek.boardgame/cate", "end": 5540, "score": 0.6111550331115723, "start": 5527, "tag": "NAME", "value": "obocnik krale" }, { "context": " :name \"Rondel\"}),\n :name \"Antike Duellum\",\n :com.boardgamegeek.boardgame/cate", "end": 30823, "score": 0.9993147850036621, "start": 30809, "tag": "NAME", "value": "Antike Duellum" }, { "context": "uages (list \"de\" \"en\"),\n :game/name \"Antike Duellum\",\n :com.boardgamegeek.boardgame/thum", "end": 31641, "score": 0.8834503889083862, "start": 31627, "tag": "NAME", "value": "Antike Duellum" }, { "context": "f01a-377d-82c8-e903e801973b\"\n {:name \"Barracuda\",\n :game/id #uuid \"d8ebf6a0-f01a-377", "end": 57607, "score": 0.9249703288078308, "start": 57598, "tag": "NAME", "value": "Barracuda" }, { "context": " :name \"Voting\"}),\n :name \"Billionaire Banshee\",\n :com.boardgamegeek.boardgame/cate", "end": 74566, "score": 0.984268307685852, "start": 74547, "tag": "NAME", "value": "Billionaire Banshee" }, { "context": " \"Tile Placement\"}),\n :name \"Carcassonne\",\n :com.boardgamegeek.boardgame/cate", "end": 98382, "score": 0.8404902219772339, "start": 98371, "tag": "NAME", "value": "Carcassonne" }, { "context": " {:languages (list \"cz\"),\n :name \"Carovny Klobouk\",\n :game/id #uuid \"8ec8175e-8c92-3f6", "end": 103318, "score": 0.9996655583381653, "start": 103303, "tag": "NAME", "value": "Carovny Klobouk" }, { "context": "f65-a885-97c16ca93454\",\n :game/name \"Carovny Klobouk\"},\n #uuid \"59ccf897-4368-3ab7", "end": 103423, "score": 0.9413959383964539, "start": 103416, "tag": "NAME", "value": "Carovny" }, { "context": "97c16ca93454\",\n :game/name \"Carovny Klobouk\"},\n #uuid \"59ccf897-4368-3ab7-ae8e", "end": 103428, "score": 0.7362852692604065, "start": 103425, "tag": "NAME", "value": "lob" }, { "context": "cement with Dice Workers\"}),\n :name \"Cavern Tavern\",\n :com.boardgamegeek.boardgame/cate", "end": 108504, "score": 0.9998267292976379, "start": 108491, "tag": "NAME", "value": "Cavern Tavern" }, { "context": " \"Pattern Recognition\"}),\n :name \"Cha Dango\",\n :com.boardgamegeek.boardgame/cate", "end": 111517, "score": 0.9915589690208435, "start": 111508, "tag": "NAME", "value": "Cha Dango" }, { "context": " \"Set Collection\"}),\n :name \"Chupacabra\",\n :com.boardgamegeek.boardgam", "end": 125628, "score": 0.6219298839569092, "start": 125624, "tag": "NAME", "value": "Chup" }, { "context": " \"Set Collection\"}),\n :name \"Chupacabra\",\n :com.boardgamegeek.boardgame/ca", "end": 125632, "score": 0.5378281474113464, "start": 125630, "tag": "NAME", "value": "ab" }, { "context": " :name \"Square Grid\"}),\n :name \"Clue\",\n :com.boardgamegeek.boardgame/ca", "end": 130430, "score": 0.9630483984947205, "start": 130428, "tag": "NAME", "value": "Cl" }, { "context": " \"Push Your Luck\"}),\n :name \"Krycí Jména: Duet\",\n :com.boardgamegeek.boardgam", "end": 134643, "score": 0.999840259552002, "start": 134632, "tag": "NAME", "value": "Krycí Jména" }, { "context": " {:languages (list \"en\"),\n :name \"Commissioner Victor\",\n :game/id #uuid \"d", "end": 144938, "score": 0.9364548325538635, "start": 144935, "tag": "NAME", "value": "Com" }, { "context": "uages (list \"en\"),\n :name \"Commissioner Victor\",\n :game/id #uuid \"d0c13971-6", "end": 144947, "score": 0.6240814924240112, "start": 144945, "tag": "NAME", "value": "er" }, { "context": "ges (list \"en\"),\n :name \"Commissioner Victor\",\n :game/id #uuid \"d0c13971-6116-34f", "end": 144954, "score": 0.8478562235832214, "start": 144948, "tag": "NAME", "value": "Victor" }, { "context": "eek.boardgame/min-players 3,\n :name \"Knatsel\",\n :com.boardgamegeek.boardgame/cate", "end": 177250, "score": 0.80654376745224, "start": 177243, "tag": "NAME", "value": "Knatsel" }, { "context": " \"Storytelling\"}),\n :name \"Farben\",\n :com.boardgamegeek.boardgame/cate", "end": 222883, "score": 0.7245680689811707, "start": 222877, "tag": "NAME", "value": "Farben" }, { "context": " \"Variable Player Powers\"}),\n :name \"Hra o Truny Zelezny Trun\",\n :com.boardgamegeek.boardgame/cate", "end": 245348, "score": 0.9980817437171936, "start": 245324, "tag": "NAME", "value": "Hra o Truny Zelezny Trun" }, { "context": " \"Hand Management\"}),\n :name \"Germania Magna\",\n :com.boardgamegeek.boardgame/cate", "end": 250543, "score": 0.9998428225517273, "start": 250529, "tag": "NAME", "value": "Germania Magna" }, { "context": " \"Pattern Building\"}),\n :name \"Hura Zmrzlina\",\n :com.boardgamegeek.boardgame/cate", "end": 261497, "score": 0.9998542070388794, "start": 261484, "tag": "NAME", "value": "Hura Zmrzlina" }, { "context": " \"Trick-taking\"}),\n :name \"Gorus Maximus\",\n :com.boardgamegeek.boardgame/cate", "end": 272241, "score": 0.9951574206352234, "start": 272228, "tag": "NAME", "value": "Gorus Maximus" }, { "context": ":languages (list \"en\"),\n :game/name \"Gorus Maximus\",\n :com.boardgamegeek.bo", "end": 272728, "score": 0.6777995824813843, "start": 272727, "tag": "NAME", "value": "G" }, { "context": "nguages (list \"en\"),\n :game/name \"Gorus Maximus\",\n :com.boardgamegeek.boardgame/thum", "end": 272740, "score": 0.5746156573295593, "start": 272730, "tag": "NAME", "value": "us Maximus" }, { "context": " \"Roll / Spin and Move\"}),\n :name \"Halali\",\n :com.boardgamegeek.boardgame/c", "end": 287543, "score": 0.5225090980529785, "start": 287540, "tag": "NAME", "value": "Hal" }, { "context": " \"Set Collection\"}),\n :name \"Hanabi\",\n :com.boardgamegeek.boardgame/cate", "end": 289461, "score": 0.9962682723999023, "start": 289455, "tag": "NAME", "value": "Hanabi" }, { "context": "taneous Action Selection\"}),\n :name \"Haru ichiban\",\n :com.boardgamegeek.boardgame/cate", "end": 294516, "score": 0.9997235536575317, "start": 294504, "tag": "NAME", "value": "Haru ichiban" }, { "context": ":languages (list \"en\"),\n :game/name \"Haru Ichiban\",\n :com.boardgamegeek.boardgame/thum", "end": 295320, "score": 0.9360746741294861, "start": 295308, "tag": "NAME", "value": "Haru Ichiban" }, { "context": "}),\n :new true,\n :name \"Hey Yo\",\n :com.boardgamegeek.boardgame/cate", "end": 297616, "score": 0.999263346195221, "start": 297610, "tag": "NAME", "value": "Hey Yo" }, { "context": ":languages (list \"en\"),\n :game/name \"Hey Yo\",\n :com.boardgamegeek.boardgame/thum", "end": 298109, "score": 0.9928814768791199, "start": 298103, "tag": "NAME", "value": "Hey Yo" }, { "context": " :game/name \"Holding On: The Troubled Life of Billy Kerr\",\n :com.boardgamegeek.boardgame", "end": 306122, "score": 0.7374224662780762, "start": 306117, "tag": "NAME", "value": "Billy" }, { "context": "ame/name \"Holding On: The Troubled Life of Billy Kerr\",\n :com.boardgamegeek.boardgame/thum", "end": 306127, "score": 0.6538326740264893, "start": 306124, "tag": "NAME", "value": "err" }, { "context": " {:languages (list \"cz\"),\n :name \"Hravé kroužky\",\n :game/id #uuid \"0d600bac-e4d6-322", "end": 314033, "score": 0.9998697638511658, "start": 314020, "tag": "NAME", "value": "Hravé kroužky" }, { "context": " \"Roll / Spin and Move\"}),\n :name \"Hugo\",\n :com.boardgamegeek.boardgame/cate", "end": 314600, "score": 0.9996549487113953, "start": 314596, "tag": "NAME", "value": "Hugo" }, { "context": " \"Set Collection\"}),\n :name \"Jaipur\",\n :com.boardgamegeek.boardgame/cate", "end": 334074, "score": 0.9699621796607971, "start": 334068, "tag": "NAME", "value": "Jaipur" }, { "context": "taneous Action Selection\"}),\n :name \"Joking Hazard\",\n :com.boardgamegeek.boardgame/cate", "end": 337817, "score": 0.91092848777771, "start": 337804, "tag": "NAME", "value": "Joking Hazard" }, { "context": " \"Variable Player Powers\"}),\n :name \"Judge Dredd: Helter Skelter\",\n :com.boardgamegee", "end": 340369, "score": 0.9992109537124634, "start": 340358, "tag": "NAME", "value": "Judge Dredd" }, { "context": "layer Powers\"}),\n :name \"Judge Dredd: Helter Skelter\",\n :com.boardgamegeek.boardgame/cate", "end": 340385, "score": 0.9895837903022766, "start": 340371, "tag": "NAME", "value": "Helter Skelter" }, { "context": ":languages (list \"en\"),\n :game/name \"Judge Dredd: Helter Skelter\",\n :com.boardgamegee", "end": 341194, "score": 0.9993349313735962, "start": 341183, "tag": "NAME", "value": "Judge Dredd" }, { "context": "list \"en\"),\n :game/name \"Judge Dredd: Helter Skelter\",\n :com.boardgamegeek.boardgame/t", "end": 341207, "score": 0.6607152223587036, "start": 341196, "tag": "NAME", "value": "Helter Skel" }, { "context": "e2a0-3e46-b9ba-4358004dc75f\"\n {:name \"Kaleva\",\n :game/id #uuid \"83f7cd22-e2a0-3e4", "end": 350185, "score": 0.8941331505775452, "start": 350179, "tag": "NAME", "value": "Kaleva" }, { "context": " \"Variable Player Powers\"}),\n :name \"Kharnage\",\n :com.boardgamegeek.boardgame/cate", "end": 359591, "score": 0.9930188059806824, "start": 359583, "tag": "NAME", "value": "Kharnage" }, { "context": " {:languages (list \"en\"),\n :name \"Koba yakawa\",\n :game/id #uuid \"a673ace7-74a3-384", "end": 376330, "score": 0.895047664642334, "start": 376319, "tag": "NAME", "value": "Koba yakawa" }, { "context": " {:languages (list \"cz\"),\n :name \"Kocka Karla\",\n :game/id #uuid \"f0343033-f91c-3c5", "end": 376571, "score": 0.8743899464607239, "start": 376560, "tag": "NAME", "value": "Kocka Karla" }, { "context": " {:languages (list \"cz\"),\n :name \"Kohouti namluvy\",\n :game/id #uuid \"938351d5-c89e-32e", "end": 378524, "score": 0.9315764904022217, "start": 378509, "tag": "NAME", "value": "Kohouti namluvy" }, { "context": " {:languages (list \"ru\"),\n :name \"Kosta Pyaha\",\n :game/id #uuid \"4d4c8a3", "end": 378759, "score": 0.5457131862640381, "start": 378758, "tag": "NAME", "value": "K" }, { "context": "nguages (list \"ru\"),\n :name \"Kosta Pyaha\",\n :game/id #uuid \"4d4c8a37-4103-35e", "end": 378769, "score": 0.6142097115516663, "start": 378766, "tag": "NAME", "value": "aha" }, { "context": "\"Point to Point Movement\"}),\n :name \"Kung Fu\",\n :com.boardgamegeek.boardgame/cate", "end": 379529, "score": 0.9982092380523682, "start": 379522, "tag": "NAME", "value": "Kung Fu" }, { "context": "dgame/id \"17442\",\n :game/name \"Kung Fu\",\n :com.boardgamegeek.boardgame/thum", "end": 379918, "score": 0.6974033117294312, "start": 379917, "tag": "NAME", "value": "u" }, { "context": "}),\n :new true,\n :name \"Kyoto\",\n :com.boardgamegeek.boardgame/max-", "end": 380787, "score": 0.997098445892334, "start": 380782, "tag": "NAME", "value": "Kyoto" }, { "context": " :name \"Memory\"}),\n :name \"Lady Alice\",\n :com.boardgamegeek.boardgame/cate", "end": 387695, "score": 0.9993967413902283, "start": 387685, "tag": "NAME", "value": "Lady Alice" }, { "context": "uages (list \"en\" \"fr\"),\n :game/name \"Lady Alice\",\n :com.boardgamegeek.boardgame/thum", "end": 388322, "score": 0.9967791438102722, "start": 388312, "tag": "NAME", "value": "Lady Alice" }, { "context": " \"Random Production\"}),\n :name \"Machi Koro\",\n :com.boardgamegeek.boardgame/cate", "end": 415987, "score": 0.9759396314620972, "start": 415977, "tag": "NAME", "value": "Machi Koro" }, { "context": " :name \"Trading\"}),\n :name \"Marco Polo\",\n :com.boardgamegeek.boardgame/cate", "end": 429057, "score": 0.9998509883880615, "start": 429047, "tag": "NAME", "value": "Marco Polo" }, { "context": ":languages (list \"cz\"),\n :game/name \"Marco Polo\",\n :com.boardgamegeek.boardgame/thum", "end": 430112, "score": 0.9845327138900757, "start": 430102, "tag": "NAME", "value": "Marco Polo" }, { "context": ":languages (list \"cz\" \"en\"),\n :name \"McJohnnys\",\n :game/id #uuid \"12fd071d-60ce-314", "end": 433803, "score": 0.9757457971572876, "start": 433794, "tag": "NAME", "value": "McJohnnys" }, { "context": " :name \"Voting\"}),\n :name \"Mea Culpa\",\n :com.boardgamegeek.boardgame/cate", "end": 435372, "score": 0.8936818838119507, "start": 435363, "tag": "NAME", "value": "Mea Culpa" }, { "context": " \"Team-Based Game\"}),\n :name \"MikroMakro Město zločinu\",\n :com.boardgamegeek.boardgame/cate", "end": 445903, "score": 0.9996752142906189, "start": 445879, "tag": "NAME", "value": "MikroMakro Město zločinu" }, { "context": " \"Team-Based Game\"}),\n :name \"Mille Bornes\",\n :com.boardgamegeek.boardgame/cate", "end": 449073, "score": 0.9997984170913696, "start": 449061, "tag": "NAME", "value": "Mille Bornes" }, { "context": ":languages (list \"en\"),\n :game/name \"Mille Bornes\",\n :com.boardgamegeek.boardgame/thum", "end": 449692, "score": 0.9263949394226074, "start": 449680, "tag": "NAME", "value": "Mille Bornes" }, { "context": " \"Tile Placement\"}),\n :name \"Mozaika\",\n :com.boardgamegeek.boardgame/cate", "end": 479974, "score": 0.9678905606269836, "start": 479967, "tag": "NAME", "value": "Mozaika" }, { "context": " \"Modular Board\"}),\n :name \"Mr Jack Pocket\",\n :com.boardgamegeek.boardgame/cate", "end": 482632, "score": 0.7963738441467285, "start": 482618, "tag": "NAME", "value": "Mr Jack Pocket" }, { "context": "es (list \"en\" \"fr\"),\n :game/name \"Mr. Jack Pocket\",\n :com.boardgamegeek.boardgame/thum", "end": 483626, "score": 0.9852951169013977, "start": 483615, "tag": "NAME", "value": "Jack Pocket" }, { "context": " \"Variable Player Powers\"}),\n :name \"Munchkin\",\n :com.boardgamegeek.boardgame/cate", "end": 484609, "score": 0.7512032389640808, "start": 484601, "tag": "NAME", "value": "Munchkin" }, { "context": " :name \"Take That\"}),\n :name \"Pechvogel\",\n :com.boardgamegeek.boardga", "end": 549217, "score": 0.7593920826911926, "start": 549215, "tag": "NAME", "value": "Pe" }, { "context": " \"Set Collection\"}),\n :name \"Penk\",\n :com.boardgamegeek.boardgame/cate", "end": 551054, "score": 0.9420033693313599, "start": 551050, "tag": "NAME", "value": "Penk" }, { "context": " \"Set Collection\"}),\n :name \"Piratske Kostky\",\n :com.boardgamegeek.boardgame/cate", "end": 556243, "score": 0.7545547485351562, "start": 556228, "tag": "NAME", "value": "Piratske Kostky" }, { "context": " \"Roll / Spin and Move\"}),\n :name \"Robinson Crusoe\",\n :com.boardgamegeek.boardgame/cate", "end": 586678, "score": 0.9998745322227478, "start": 586663, "tag": "NAME", "value": "Robinson Crusoe" }, { "context": ":languages (list \"cz\"),\n :game/name \"Robinson Crusoe\",\n :com.boardgamegeek.boardgame/thum", "end": 587362, "score": 0.9998614192008972, "start": 587347, "tag": "NAME", "value": "Robinson Crusoe" }, { "context": " \"Trick-taking\"}),\n :name \"Sarkophag\",\n :com.boardgamegeek.boardgame/cate", "end": 606250, "score": 0.9987454414367676, "start": 606241, "tag": "NAME", "value": "Sarkophag" }, { "context": " {:languages (list \"en\"),\n :name \"Sh*t Happens\",\n :game/id #uuid \"2d623ec2-", "end": 625040, "score": 0.536407470703125, "start": 625039, "tag": "NAME", "value": "t" }, { "context": "languages (list \"en\"),\n :name \"Sh*t Happens\",\n :game/id #uuid \"2d623ec2-8bcc-30b", "end": 625048, "score": 0.6146997213363647, "start": 625042, "tag": "NAME", "value": "appens" }, { "context": " \"Set Collection\"}),\n :name \"Sheriff of Nottingham\",\n :com.boardgamegeek.boardgame/cate", "end": 629685, "score": 0.9980398416519165, "start": 629664, "tag": "NAME", "value": "Sheriff of Nottingham" }, { "context": ":languages (list \"en\"),\n :game/name \"Sheriff of Nottingham\",\n :com.boardgamegeek.boardgame/thum", "end": 630953, "score": 0.9901079535484314, "start": 630932, "tag": "NAME", "value": "Sheriff of Nottingham" }, { "context": " 2,\n :new true,\n :name \"Sherlock 13\",\n :com.boardgamegeek.boardgame/cate", "end": 631411, "score": 0.919606626033783, "start": 631400, "tag": "NAME", "value": "Sherlock 13" }, { "context": " {:languages (list \"en\"),\n :name \"Sherlock holmes consulting detective\",\n :game", "end": 632505, "score": 0.9014696478843689, "start": 632497, "tag": "NAME", "value": "Sherlock" }, { "context": "uages (list \"en\"),\n :name \"Sherlock holmes consulting detective\",\n :game/id ", "end": 632509, "score": 0.5920195579528809, "start": 632507, "tag": "NAME", "value": "ol" }, { "context": " \"Worker Placement\"}),\n :name \"Silk\",\n :com.boardgamegeek.boardgame/cat", "end": 637296, "score": 0.7299142479896545, "start": 637293, "tag": "NAME", "value": "Sil" }, { "context": " \"Set Collection\"}),\n :name \"Sly Dice\",\n :com.boardgamegeek.boardgame/cate", "end": 640176, "score": 0.9804365634918213, "start": 640168, "tag": "NAME", "value": "Sly Dice" }, { "context": " :name \"Take That\"}),\n :name \"Tri mala prasatka\",\n :com.boardgamegeek.bo", "end": 710763, "score": 0.6262224912643433, "start": 710762, "tag": "NAME", "value": "m" }, { "context": ":name \"Take That\"}),\n :name \"Tri mala prasatka\",\n :com.boardgamegeek.boardgam", "end": 710769, "score": 0.5283616781234741, "start": 710767, "tag": "NAME", "value": "pr" }, { "context": "rdgame/min-players 3,\n :name \"To je Otázka!\",\n :com.boardgamegeek.boardgame", "end": 730041, "score": 0.5214840173721313, "start": 730040, "tag": "NAME", "value": "t" }, { "context": " \"Trick-taking\"}),\n :name \"Odysea Společne k devate planetě\",\n :com.boardgamege", "end": 737270, "score": 0.9568597674369812, "start": 737255, "tag": "NAME", "value": "Odysea Společne" }, { "context": " \"Trick-taking\"}),\n :name \"Liška Podšitá Duet\",\n :com.boardgamegee", "end": 743993, "score": 0.545356035232544, "start": 743991, "tag": "NAME", "value": "Li" }, { "context": " \"Trick-taking\"}),\n :name \"Liška Podšitá Duet\",\n :com.boardgamegeek.boardg", "end": 744001, "score": 0.5382588505744934, "start": 744000, "tag": "NAME", "value": "š" }, { "context": "am-Based Game\"}),\n :name \"Time’s Up – Rodina\",\n :com.boardgamegeek.boardgame/cate", "end": 768535, "score": 0.9923255443572998, "start": 768529, "tag": "NAME", "value": "Rodina" }, { "context": " \"Worker Placement\"}),\n :name \"Malá Velká Království\",\n :com.boardgameg", "end": 772396, "score": 0.6890002489089966, "start": 772393, "tag": "NAME", "value": "Mal" }, { "context": "er Placement\"}),\n :name \"Malá Velká Království\",\n :com.boardgamegeek.boardga", "end": 772407, "score": 0.5141245126724243, "start": 772405, "tag": "NAME", "value": "rá" }, { "context": " {:languages (list \"cz\"),\n :name \"T’zolkin\",\n :game/id #uuid \"bbf3c83b-9", "end": 797273, "score": 0.5061357021331787, "start": 797272, "tag": "NAME", "value": "T" }, { "context": " \"Solo / Solitaire Game\"}),\n :name \"Na Křídlech\",\n :com.boardgamegeek.boardgame/cate", "end": 849412, "score": 0.9980341792106628, "start": 849401, "tag": "NAME", "value": "Na Křídlech" }, { "context": "guages (list \"en\"),\n :game/name \"Wordsy\",\n :com.boardgamegeek.boardgame/thum", "end": 855257, "score": 0.6125590205192566, "start": 855255, "tag": "NAME", "value": "sy" }, { "context": " \"Set Collection\"}),\n :name \"Wurfel Bohnanza\",\n :com.boardgamegeek.boardgame/cate", "end": 856060, "score": 0.9998340606689453, "start": 856045, "tag": "NAME", "value": "Wurfel Bohnanza" }, { "context": ":languages (list \"de\"),\n :game/name \"Würfel Bohnanza\",\n :com.boardgamegeek.boardgame/thum", "end": 856681, "score": 0.9787998199462891, "start": 856666, "tag": "NAME", "value": "Würfel Bohnanza" }, { "context": " {:languages (list \"cz\"),\n :name \"Zámky\",\n :game/id #uuid \"fab76503-1b94", "end": 870550, "score": 0.5839915871620178, "start": 870549, "tag": "NAME", "value": "Z" } ]
web/src/app/data.cljs
nenadalm/bbb-game-list
0
(ns app.data) (def game-data #:game-list{:games {#uuid "49b5473d-32f5-382b-943a-dda4a1491daf" {:game/id #uuid "49b5473d-32f5-382b-943a-dda4a1491daf", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"}), :name "10' to Kill", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "174476", :languages (list "en"), :game/name "10' to Kill", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Qfxg7YCYBilmNvI7fi87Tg__thumb/img/cPxvlb5JSWowWHwXSpRmUj-tr8s=/fit-in/200x150/filters:strip_icc()/pic3723481.jpg"}, #uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" {:languages (list "cz"), :name "1989", :game/id #uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5", :game/name "1989"}, #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" {:languages (list "en"), :name "5 Seconds Rule", :game/id #uuid "64581d49-5b7a-3952-b129-c64b56c406ed", :game/name "5 Seconds Rule"}, #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" {:languages (list "cz"), :name "7 Divu sveta duel [7 wonders duel]", :game/id #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76", :game/name "7 Divu sveta duel [7 wonders duel]"}, #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" {:game/id #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2839, :name "Action Retrieval"} #:com.boardgamegeek.mechanic{:id 2850, :name "Events"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "A castle for all seasons", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "38386", :languages (list "en"), :game/name "A Castle for All Seasons", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HEHduHVfdLULQHoWLu-Sqw__thumb/img/HnBxzNEHY0vivRABnTIRmBR_aPU=/fit-in/200x150/filters:strip_icc()/pic400762.jpg"}, #uuid "f8283731-6cf2-3086-8140-494037314bf5" {:game/id #uuid "f8283731-6cf2-3086-8140-494037314bf5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Hra o Truny Pobocnik krale", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "205610", :languages (list "cz"), :game/name "A Game of Thrones: Hand of the King", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eKmDyXnsFmnzF5cuv32hjA__thumb/img/bugAzct3L9TIYkuie8jbj49rT7g=/fit-in/200x150/filters:strip_icc()/pic3122395.jpg"}, #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" {:languages (list "cz"), :name "AZ Quiz", :game/id #uuid "6d8aa71d-1531-3019-ac35-ea2463485268", :game/name "AZ Quiz"}, #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" {:languages (list "en"), :name "Abraca what", :game/id #uuid "780cd613-d706-3945-8ef3-6d59c16c2312", :game/name "Abraca what"}, #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" {:game/id #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2910, :name "Investment"} #:com.boardgamegeek.mechanic{:id 2900, :name "Market"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2874, :name "Victory Points as a Resource"}), :name "Acquire", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "5", :languages (list "en"), :game/name "Acquire", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/3C--kJRhi6kTPHsr9dNaWw__thumb/img/EQqszaHS3n6XplVVGQfTZtGc8fE=/fit-in/200x150/filters:strip_icc()/pic3299296.jpg"}, #uuid "d496a066-c36e-3570-99d1-9eedec118dee" {:game/id #uuid "d496a066-c36e-3570-99d1-9eedec118dee", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Across Africa", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1094, :name "Educational"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "183472", :languages (list "en"), :game/name "Across Africa", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/vGWn49wquxCTXEgHxCvdcA__thumb/img/naI1UxX_PLFhzMoeW8aTQN2Ajug=/fit-in/200x150/filters:strip_icc()/pic2659340.jpg"}, #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" {:game/id #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2871, :name "Kill Steal"}), :name "Adrenaline", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1101, :name "Video Game Theme"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "202408", :languages (list "en"), :game/name "Adrenaline", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/TiNI7bUCR2RPFMlvKEC9TQ__thumb/img/nnWEA6jjVsxPSuEC_Ooph9kzO_g=/fit-in/200x150/filters:strip_icc()/pic3476604.jpg"}, #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" {:game/id #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2847, :name "Advantage Token"} #:com.boardgamegeek.mechanic{:id 2903, :name "Automatic Resource Growth"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2914, :name "Increase Value of Unchosen Resources"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2829, :name "Turn Order: Claim Action"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Agricola", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "31260", :languages (list "cz"), :game/name "Agricola", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/dDDo2Hexl80ucK1IlqTk-g__thumb/img/GHGdnCfeysoP_34gLnofJcNivW8=/fit-in/200x150/filters:strip_icc()/pic831744.jpg"}, #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" {:game/id #uuid "1d4dffda-8368-3060-a077-e7937437d6f7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :new true, :name "Critters at War: Land, Sea, and Air", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "342857", :languages (list "en"), :game/name "Air, Land, and Sea: Critters at War", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/sAOWDzYp6CDTzo2EHozkEw__thumb/img/XIGKrZEmkqKyrN24WXf7dIXq5ag=/fit-in/200x150/filters:strip_icc()/pic6293166.jpg"}, #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" {:game/id #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2910, :name "Investment"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"}), :name "Airlines Europe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 2650, :name "Aviation / Flight"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "90419", :languages (list "cz" "de"), :game/name "Airlines Europe", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/MWSJ6c001o3HAk00qek9Rw__thumb/img/ZgcRUnCdSNZZyCnpBBs1ST5ESwE=/fit-in/200x150/filters:strip_icc()/pic975416.jpg"}, #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" {:game/id #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Alias", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "3818", :languages (list "en"), :game/name "Alias", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/b5ku0ffAvzeBydiOUDVELw__thumb/img/hG6aNU1hiiXwopQ6XexCM_q9aRI=/fit-in/200x150/filters:strip_icc()/pic451300.jpg"}, #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" {:game/id #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Alenčina zahrádka", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1093, :name "Novel-based"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "298635", :languages (list "cz"), :game/name "Alice's Garden", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JhLSvQu1cOBg4Dg5l3BgHw__thumb/img/vCrs7JWz87NWlMnaYGRfr9PsVAY=/fit-in/200x150/filters:strip_icc()/pic5177326.jpg"}, #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" {:game/id #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2018, :name "Campaign / Battle Card Driven"}), :name "Allies Realm of Wonder", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "182172", :game/name "Allies: Realm of Wonder", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bGm33oVfySVB-XraX-eO4Q__thumb/img/xofGdDpiE2Ll-bnaiOxWunMK5uE=/fit-in/200x150/filters:strip_icc()/pic2728113.jpg"}, #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" {:languages (list "cz"), :name "Andor", :game/id #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae", :game/name "Andor"}, #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" {:game/id #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2906, :name "I Cut, You Choose"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Animals on Board", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "191572", :languages (list "cz" "en"), :game/name "Animals on Board", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NLgUgFH88DJogE-16PPFsw__thumb/img/CuInp1YTUxTZlrIi3TMTcUwQcKs=/fit-in/200x150/filters:strip_icc()/pic2845593.jpg"}, #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" {:game/id #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"}), :name "Animal suspect", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "156461", :languages (list "en" "fr"), :game/name "Animotion", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5UkysjBRLOEA8FZU7JsmVg__thumb/img/ZYdEgotZnh66KU12sTfn4bQh1l8=/fit-in/200x150/filters:strip_icc()/pic6573339.jpg"}, #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" {:game/id #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2991, :name "Speed Matching"}), :name "Anomia", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "67877", :languages (list "en"), :game/name "Anomia", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/OvOpd-Lhl7t3h9fF_qi6lQ__thumb/img/002NO49Pl3-9dPUj43StWt0SS2c=/fit-in/200x150/filters:strip_icc()/pic2527529.jpg"}, #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" {:game/id #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2813, :name "Rondel"}), :name "Antike Duellum", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "104955", :languages (list "de" "en"), :game/name "Antike Duellum", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/zwhI40_3em8zJjrmbT6TLQ__thumb/img/Tzl4gVEbeokaDg0MlJQw_9tHvB0=/fit-in/200x150/filters:strip_icc()/pic1282841.jpg"}, #uuid "ac19727b-672c-352f-b393-c52a81b055cb" {:game/id #uuid "ac19727b-672c-352f-b393-c52a81b055cb", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2865, :name "Player Judge"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Apples to Apples", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "74", :languages (list "en"), :game/name "Apples to Apples", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S5GzB_f2Re3kEDoSxqG5Ew__thumb/img/kJ1JQ_d9xEZ00sJ1dLvwyQYiQUA=/fit-in/200x150/filters:strip_icc()/pic213515.jpg"}, #uuid "109a021a-56f4-3223-ae04-902a1f40db16" {:game/id #uuid "109a021a-56f4-3223-ae04-902a1f40db16", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Archmage", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 360, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 360, :com.boardgamegeek.boardgame/id "63072", :languages (list "en"), :game/name "ArchMage", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/COo1f6uDP89xUU2s94Onqg__thumb/img/l0kYMdxShODYCnewDFYljQGtp20=/fit-in/200x150/filters:strip_icc()/pic616853.jpg"}, #uuid "492b7750-c3e8-3055-a93b-6745391300a6" {:game/id #uuid "492b7750-c3e8-3055-a93b-6745391300a6", :com.boardgamegeek.boardgame/min-players 2, :name "Aristocracy", :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "104423", :languages (list "en"), :game/name "Aristocracy"}, #uuid "28e54304-62fc-38c9-9b76-058878323d57" {:game/id #uuid "28e54304-62fc-38c9-9b76-058878323d57", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Arkham Horror", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 180, :com.boardgamegeek.boardgame/id "34", :languages (list "cz"), :game/name "Arkham Horror", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/AhS53CO05pBagyr9EfRazg__thumb/img/vkAI2JcO2v2Y_pO1Fi5shUGzCxc=/fit-in/200x150/filters:strip_icc()/pic5747491.jpg"}, #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" {:game/id #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"}), :name "Around the world in 80 days", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1093, :name "Novel-based"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "414", :languages (list "en"), :game/name "Around the World in 80 Days", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/mXes1H5HlEcb0VRFObYcJQ__thumb/img/yUatX2NYK46nUosAvEyjdb9xjEo=/fit-in/200x150/filters:strip_icc()/pic664642.jpg"}, #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" {:game/id #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Article 27", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1001, :name "Political"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "113293", :languages (list "en"), :game/name "Article 27: The UN Security Council Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kyB2tDm5oTwjXzG_H0UW6g__thumb/img/1xOJs8f92Rvn_y00wPfhq8JeiXI=/fit-in/200x150/filters:strip_icc()/pic1309420.jpg"}, #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" {:game/id #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Articulate", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "6541", :languages (list "en"), :game/name "Articulate!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BOvTyp_E-3UXcWpD9bVYog__thumb/img/CqwJb6xbDjdfVlIrNK3PjRXEn3A=/fit-in/200x150/filters:strip_icc()/pic5885634.jpg"}, #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" {:game/id #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Artifact stack", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "236556", :languages (list "en"), :game/name "Artifact Stack", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0q6H2VDztoXvH5H7nBQAnQ__thumb/img/PN2vWRy9uhQc1FAxFPMF4OXzruM=/fit-in/200x150/filters:strip_icc()/pic3769855.jpg"}, #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" {:languages (list "en"), :name "Ashes Rise of the Pheonixborn", :game/id #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288", :game/name "Ashes Rise of the Pheonixborn"}, #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" {:game/id #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Awkward Guests", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "188866", :languages (list "en"), :game/name "Awkward Guests", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Awopfw5_5Qyh-7YcSbtudA__thumb/img/HHn3So0Mum6VZliDmEnB2LwfeQ0=/fit-in/200x150/filters:strip_icc()/pic4870482.jpg"}, #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" {:languages (list "en"), :name "Axis and Allies", :game/id #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b", :game/name "Axis and Allies"}, #uuid "582d2648-b634-3370-a31e-bef979dab3f3" {:game/id #uuid "582d2648-b634-3370-a31e-bef979dab3f3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2829, :name "Turn Order: Claim Action"}), :name "Azul", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1070, :name "Renaissance"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "230802", :game/name "Azul", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/tz19PfklMdAdjxV9WArraA__thumb/img/debo694HgBaIBeNGyxu1ELUbQGA=/fit-in/200x150/filters:strip_icc()/pic3718275.jpg"}, #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" {:game/id #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Bang: The Dice Game", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1055, :name "American West"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "143741", :languages (list "cz"), :game/name "BANG! The Dice Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BLTFau1Ue-gjX6geQdYrjQ__thumb/img/IijBpyOQC760F6XIw34WT0ePqe4=/fit-in/200x150/filters:strip_icc()/pic2909713.jpg"}, #uuid "2e89598e-c81e-39d5-bae2-aee451063265" {:game/id #uuid "2e89598e-c81e-39d5-bae2-aee451063265", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2847, :name "Advantage Token"} #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"}), :name "Backgammon", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2397", :game/name "Backgammon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/_6HVCuGni6NunlrSje0ySQ__thumb/img/FS7YID4DgqMBppP0nhyG52MP7Xk=/fit-in/200x150/filters:strip_icc()/pic1361122.jpg"}, #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" {:game/id #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :new true, :name "Bag of Butts", :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "337833", :languages (list "de" "en"), :game/name "Bag of Butts", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/_LGpE_T3Ey8kAJsZBCcl2Q__thumb/img/0jLl-V-h2xmkWDjjf5SzxELA3eY=/fit-in/200x150/filters:strip_icc()/pic6253322.png"}, #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" {:game/id #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Bananagrams", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "27225", :languages (list "en"), :game/name "Bananagrams", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1QjYPI4bXx4OUMJPlrsNBA__thumb/img/nC_gG-4CYy7VBfYez2qSfTkU2ik=/fit-in/200x150/filters:strip_icc()/pic2463443.jpg"}, #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" {:languages (list "cz"), :name "Bang", :game/id #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c", :game/name "Bang"}, #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" {:languages (list "cz"), :name "Bang Duel", :game/id #uuid "24380876-a0ae-3b46-a8c6-a092619bef37", :game/name "Bang Duel"}, #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" {:languages (list "cz"), :name "Bang Mesto Duchu", :game/id #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8", :game/name "Bang Mesto Duchu", :com.boardgamegeek.boardgame/id "147918"}, #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" {:name "Barracuda", :game/id #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b", :game/name "Barracuda", :com.boardgamegeek.boardgame/id "47307", :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ByH9-4VoBOrYHrZ6on8IKQ__thumb/img/6CauS6bPub0en7IPxfYY3P38Jso=/fit-in/200x150/filters:strip_icc()/pic512503.jpg", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"})}, #uuid "a0969dfc-5294-3b41-82bf-220e859197db" {:game/id #uuid "a0969dfc-5294-3b41-82bf-220e859197db", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Bears vs. Babies", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "211534", :languages (list "en"), :game/name "Bears vs Babies", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iJpO2VOezeMXuclGqR_mXg__thumb/img/GrVBkH_kUoL5lszRkFTOZFMCEVg=/fit-in/200x150/filters:strip_icc()/pic3231155.png"}, #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" {:game/id #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Beasty Bar", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "165950", :languages (list "cz" "en"), :game/name "Beasty Bar", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7_y1dbU5GCYhIRBCO0q7rg__thumb/img/WiuNMDiiM38EHOAdW5MB1ldlEJM=/fit-in/200x150/filters:strip_icc()/pic2241067.jpg"}, #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" {:game/id #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Beasty Bar 3: Born to be Wild", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "286657", :game/name "Beasty Bar 3: Born to Be Wild", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/e_en-vwHgXusEclcKWS4bg__thumb/img/x3iJI8QoTkK7Ptp_N_tq3-bpb5E=/fit-in/200x150/filters:strip_icc()/pic4909349.jpg"}, #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" {:game/id #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Beasty Bar New Beasts in Town", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "181617", :languages (list "cz" "en"), :game/name "Beasty Bar: New Beasts in Town", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/fKOPzIhkT_wVhZWvq267sQ__thumb/img/ULXgCaaXwTKJDhHncpI1acXOQLk=/fit-in/200x150/filters:strip_icc()/pic2672397.jpg"}, #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" {:game/id #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0", :com.boardgamegeek.boardgame/min-players 2, :name "Bed Bugs", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "8486", :languages (list "en"), :game/name "Bed Bugs", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Z1xhttA6vW5rvCK5I32OKg__thumb/img/xBSbnbvzTDYqOwgt-l1hklMax6A=/fit-in/200x150/filters:strip_icc()/pic35248.jpg"}, #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" {:game/id #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Belle of the Ball", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "139897", :languages (list "en"), :game/name "Belle of the Ball", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JMVcMUrZC-K3DjeuHFXhjw__thumb/img/uPIXh-8lRCEdmN6Np3Ze_XbW86I=/fit-in/200x150/filters:strip_icc()/pic4593784.jpg"}, #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" {:game/id #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2959, :name "Map Addition"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Betrayal at House on the Hill", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "10547", :languages (list "en"), :game/name "Betrayal at House on the Hill", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/lqmt2Oti_qJS65XqHcB8AA__thumb/img/EDOmDbRhLy4za2PHkJ5IbhNxZmk=/fit-in/200x150/filters:strip_icc()/pic5146864.png"}, #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" {:languages (list "en"), :name "Between 2 Cities", :game/id #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410", :game/name "Between 2 Cities"}, #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" {:game/id #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2919, :name "Auction: Turn Order Until Pass"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :new true, :name "Biblios", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1115, :name "Religious"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "34219", :languages (list "en"), :game/name "Biblios", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/w9pHmbMbHEFYtuOUcWcruA__thumb/img/BYid-ptJy9xNI_kK3IDWOGLWJVM=/fit-in/200x150/filters:strip_icc()/pic759154.jpg"}, #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" {:game/id #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Billionaire Banshee", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1101, :name "Video Game Theme"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 15, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "158564", :languages (list "en"), :game/name "Billionaire Banshee", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Pe8iAvlyTOzVINQRdFdcig__thumb/img/iXmFA-7_cNegyHs8nKD4rTv2O1k=/fit-in/200x150/filters:strip_icc()/pic2729693.png"}, #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" {:languages (list "cz"), :name "Blafuj / Cockroach Poker", :game/id #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774", :game/name "Blafuj / Cockroach Poker"}, #uuid "897ee373-c9e4-32f9-a323-fe188494520b" {:game/id #uuid "897ee373-c9e4-32f9-a323-fe188494520b", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 3007, :name "Matching"}), :new true, :name "Blaze", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "332317", :languages (list "de" "en"), :game/name "Blaze", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ejlad9HzsFX0xCPWqTGFmw__thumb/img/0RVKdSi4BxCTFPFBoCsuJMKl_W0=/fit-in/200x150/filters:strip_icc()/pic6006816.jpg"}, #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" {:game/id #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Blood Rage", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "170216", :languages (list "cz"), :game/name "Blood Rage", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HkZSJfQnZ3EpS214xtuplg__thumb/img/NLhVdU8xazrgS5dA6nVCYmN2DNI=/fit-in/200x150/filters:strip_icc()/pic2439223.jpg"}, #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" {:game/id #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :new true, :name "Bloom Town", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "284291", :languages (list "en"), :game/name "Bloom Town", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/9YgdR9F66ti_0fcoPDtwhw__thumb/img/d5mPk0UMMXf-_3-0Xpvr1EK-JNQ=/fit-in/200x150/filters:strip_icc()/pic4852758.png"}, #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" {:game/id #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "BluePrints", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "140933", :languages (list "en"), :game/name "Blueprints", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/yj0dJI3pFauW-EU9Vg6OZw__thumb/img/TVG6p598iOhPeDZuVWy6QCTzOi4=/fit-in/200x150/filters:strip_icc()/pic1877243.jpg"}, #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" {:game/id #uuid "bf684d42-7071-39ee-809d-514bc5ca241a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Bomb Arena", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "208145", :languages (list "en"), :game/name "Bomb Arena", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JY8Q5GbG2aa4257QVuCQTw__thumb/img/IvRKbdnGi50C_HHIWu1VD0i3VYA=/fit-in/200x150/filters:strip_icc()/pic3175138.jpg"}, #uuid "557482bd-c397-30d7-af1b-afbb6c763124" {:game/id #uuid "557482bd-c397-30d7-af1b-afbb6c763124", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2944, :name "Three Dimensional Movement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Burgle Bros 2", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1059, :name "Maze"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 70, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "286537", :languages (list "en"), :game/name "Burgle Bros 2: The Casino Capers", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/YNcSJhDM_g-2av0pzNs4wQ__thumb/img/_3QhL_-pkBScdNFqOKxwj0zY-OA=/fit-in/200x150/filters:strip_icc()/pic6087472.png"}, #uuid "414bbf5b-1083-3275-9983-4133937db58b" {:game/id #uuid "414bbf5b-1083-3275-9983-4133937db58b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Kabo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "271321", :languages (list "cz"), :game/name "CABO (Second Edition)", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UXg5z353Vs3aI90_TfL4pQ__thumb/img/rDg9t7gP1iqNcy3NZxAWGVoWYok=/fit-in/200x150/filters:strip_icc()/pic4572408.jpg"}, #uuid "56c98771-eaf0-34fe-8f66-156041739594" {:languages (list "en"), :name "Caesar!: Sieze Rome in 20 minutes", :new true, :game/id #uuid "56c98771-eaf0-34fe-8f66-156041739594", :game/name "Caesar!: Sieze Rome in 20 minutes"}, #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" {:game/id #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :new true, :name "Calico", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "283155", :languages (list "en"), :game/name "Calico", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/t8bTlZmxz6PiskMSjcBHcw__thumb/img/TByBGUDO_jNVxDaOviRWOFtu9fk=/fit-in/200x150/filters:strip_icc()/pic4815033.jpg"}, #uuid "be01908f-633f-35da-be89-80701db8ed25" {:game/id #uuid "be01908f-633f-35da-be89-80701db8ed25", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Camel Up", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "153938", :languages (list "de" "en"), :game/name "Camel Up", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1ph2jVOD1MudR1fK1nkwwA__thumb/img/TVCsLhF3KMZkFs6oLJkS37njE_s=/fit-in/200x150/filters:strip_icc()/pic2031446.png"}, #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" {:game/id #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "Can’t stop", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "41", :languages (list "en"), :game/name "Can't Stop", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JZpo3AnyFH4TqxKWFSFKGQ__thumb/img/KxfmwuPAgmmNACBQkxIaYUxKdLI=/fit-in/200x150/filters:strip_icc()/pic1046518.jpg"}, #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" {:languages (list "en"), :name "Captain Dice", :game/id #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b", :game/name "Captain Dice"}, #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" {:game/id #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2967, :name "Hidden Movement"} #:com.boardgamegeek.mechanic{:id 2039, :name "Line Drawing"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Captain Sonar", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1008, :name "Nautical"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "171131", :languages (list "cz" "en"), :game/name "Captain Sonar", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eVy9IyAVtzzKv2VvPHFPbA__thumb/img/RavsPCF6el7VEaVR1OG5M2ZGCrk=/fit-in/200x150/filters:strip_icc()/pic3013621.png"}, #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" {:game/id #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2959, :name "Map Addition"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Carcassonne", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "822", :game/name "Carcassonne", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/okM0dq_bEXnbyQTOvHfwRA__thumb/img/88274KiOg94wziybVHyW8AeOiXg=/fit-in/200x150/filters:strip_icc()/pic6544250.png"}, #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" {:game/id #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2865, :name "Player Judge"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Cards against Humanity", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 30, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "50381", :languages (list "cz" "en"), :game/name "Cards Against Humanity", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nYLrPiI9gnvlrwOrKQ4_CA__thumb/img/fIhQLjWueNPYZhCZ_LzjAIhPm5U=/fit-in/200x150/filters:strip_icc()/pic2909692.jpg"}, #uuid "890488d0-a370-30a4-9788-a44754330b27" {:game/id #uuid "890488d0-a370-30a4-9788-a44754330b27", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Obludárium", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "231484", :languages (list "cz"), :game/name "Carnival of Monsters", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/epQCPLfMbtaKiXmz7uz4PA__thumb/img/b1rgSddValol8h1Ock8s_9peBPc=/fit-in/200x150/filters:strip_icc()/pic4856068.jpg"}, #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" {:languages (list "cz"), :name "Carovny Klobouk", :game/id #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454", :game/name "Carovny Klobouk"}, #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" {:game/id #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Kočíčí Klub", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "228504", :languages (list "cz"), :game/name "Cat Lady", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/tnx6ExxyUmIlga9tFSrR6g__thumb/img/jHvb__-N4QCSB8rhTKXzCxWOWcU=/fit-in/200x150/filters:strip_icc()/pic3864115.jpg"}, #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" {:game/id #uuid "48309f49-6981-3784-80f4-f8b7cff15c98", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2909, :name "Random Production"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Osadnici z Katanu", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "13", :languages (list "cz"), :game/name "Catan", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/W3Bsga_uLP9kO91gZ7H8yw__thumb/img/8a9HeqFydO7Uun_le9bXWPnidcA=/fit-in/200x150/filters:strip_icc()/pic2419375.jpg"}, #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" {:game/id #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"} #:com.boardgamegeek.mechanic{:id 2935, :name "Worker Placement with Dice Workers"}), :name "Cavern Tavern", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "189067", :languages (list "en"), :game/name "Cavern Tavern", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NdCwfRORG5oLaDBmQeOOaQ__thumb/img/jeGf0ItclxtK4YeTWrBlBCe8Qt4=/fit-in/200x150/filters:strip_icc()/pic3020188.png"}, #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" {:languages (list "cz"), :name "Caverna", :game/id #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2", :game/name "Caverna"}, #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" {:game/id #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Celestia", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "130853", :game/name "Celestia", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/npqKJbeLXejp0j2ECQ5huA__thumb/img/ur42OT9MelTa6X3lPbnwN5WG-iU=/fit-in/200x150/filters:strip_icc()/pic1475228.png"}, #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" {:game/id #uuid "595f5c4f-c267-303b-adf4-1333c70a9460", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "Cha Dango", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "181694", :languages (list "en"), :game/name "Cha dango", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1NJNf0z5guEZ2L713YNzPw__thumb/img/fMswkQDBdqiVpfiPOIAA6FY7PLo=/fit-in/200x150/filters:strip_icc()/pic4791211.jpg"}, #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" {:game/id #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Chameleon", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "4187", :languages (list "en"), :game/name "Chameleon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Mq4HaM5jARaNQ_jrTnGfnA__thumb/img/cRlXz4uT63-BkyRJIJX-0vKywKo=/fit-in/200x150/filters:strip_icc()/pic13110.jpg"}, #uuid "30c12229-f508-341c-9680-149dbdf88523" {:game/id #uuid "30c12229-f508-341c-9680-149dbdf88523", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2946, :name "Pattern Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2861, :name "Static Capture"}), :name "Checkers", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2083", :game/name "Checkers", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S4IBcWYhlbn51_5f0EIR4g__thumb/img/wxqQxa2--TclJY8n8hzMGXzk1sI=/fit-in/200x150/filters:strip_icc()/pic113720.jpg"}, #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" {:game/id #uuid "0727c24e-c484-3017-9850-a0e366a7dd42", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2946, :name "Pattern Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2861, :name "Static Capture"}), :name "Chess", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/id "171", :game/name "Chess", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0-DjGBOko6RV8zg5ejhYIg__thumb/img/kjtoinSrkYV0HZleXMxkJzZwS8k=/fit-in/200x150/filters:strip_icc()/pic260745.jpg"}, #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" {:game/id #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"}), :name "Kureci olympiada", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1045, :name "Memory"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "3570", :languages (list "cz" "de"), :game/name "Chicken Cha Cha Cha", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZxGfy7AR2mjrKVDiDVJoBw__thumb/img/8oLfdlwvjgqVlU4tZXSSnPyUwi0=/fit-in/200x150/filters:strip_icc()/pic406697.jpg"}, #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" {:game/id #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2829, :name "Turn Order: Claim Action"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"} #:com.boardgamegeek.mechanic{:id 2933, :name "Worker Placement, Different Worker Types"}), :name "Chimera Station", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "163642", :languages (list "de" "it"), :game/name "Chimera Station", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1CiJrEhD6UpRNFNIy-1R5g__thumb/img/ptY_o-lbmIVvqtbFRRERIODbetk=/fit-in/200x150/filters:strip_icc()/pic3160959.jpg"}, #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" {:game/id #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2910, :name "Investment"} #:com.boardgamegeek.mechanic{:id 2915, :name "Negotiation"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"} #:com.boardgamegeek.mechanic{:id 2874, :name "Victory Points as a Resource"}), :name "Chinatown", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "47", :languages (list "de" "en"), :game/name "Chinatown", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/QnIOe-1wb8_zuxglKjAwOQ__thumb/img/CyDOXyRu7MHfn2ZS9pb9XmOStv0=/fit-in/200x150/filters:strip_icc()/pic2037509.png"}, #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" {:game/id #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2823, :name "Score-and-Reset Game"}), :new true, :name "Chinchiller Dice", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "337834", :languages (list "de" "en"), :game/name "Chinchiller Dice", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7YduweUXo87k3FYx9dryRg__thumb/img/NNtQ16pzW--zfY3TG1nCiT7mz0A=/fit-in/200x150/filters:strip_icc()/pic6253330.png"}, #uuid "99102149-c730-3271-a928-b7549ce07a13" {:game/id #uuid "99102149-c730-3271-a928-b7549ce07a13", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Chupacabra", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "27738", :languages (list "en"), :game/name "Chupacabra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/i_thTasR2InYawFGKTyrQg__thumb/img/HtsO-YF_-I5ufs1CtfNF9DcJG7w=/fit-in/200x150/filters:strip_icc()/pic184563.jpg"}, #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" {:game/id #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2838, :name "Action Drafting"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2836, :name "Lose a Turn"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2833, :name "Turn Order: Role Order"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Citadela deluxe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "205398", :languages (list "cz"), :game/name "Citadels", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/sHd0jkZZLDgixHjAXtn7kA__thumb/img/HB0Z5D7uwBjf1lCCPjMck-5VP9A=/fit-in/200x150/filters:strip_icc()/pic3119514.jpg"}, #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" {:game/id #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "Clue", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "1294", :languages (list "en"), :game/name "Clue", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/owlmDA10KegcwPaapY5auw__thumb/img/73FO0H7pORdum5ZexMXyrjLhpVU=/fit-in/200x150/filters:strip_icc()/pic5146918.png"}, #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" {:game/id #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Codenames", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "178900", :game/name "Codenames", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/F_KDEu0GjdClml8N7c8Imw__thumb/img/yl8iXxSNwguMeg3KkmfFO9SMVVc=/fit-in/200x150/filters:strip_icc()/pic2582929.jpg"}, #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" {:game/id #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "Krycí Jména: Duet", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "224037", :languages (list "cz"), :game/name "Codenames: Duet", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0d1EaMVmAiIBROI2QstFSQ__thumb/img/J-thZd7Pbbh1CE8QHcvEE4w8FBE=/fit-in/200x150/filters:strip_icc()/pic3596681.jpg"}, #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" {:game/id #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Codenames Pictures", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "198773", :languages (list "cz" "en"), :game/name "Codenames: Pictures", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Q2u-Nk68Wb1iLjxh_dfsIg__thumb/img/6-1EOESE196KVKw4xOJ5rge56j0=/fit-in/200x150/filters:strip_icc()/pic3476592.jpg"}, #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" {:languages (list "en"), :name "Cohort", :game/id #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105", :game/name "Cohort"}, #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" {:game/id #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2018, :name "Campaign / Battle Card Driven"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Colonialism", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 2710, :name "Post-Napoleonic"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "67917", :languages (list "en"), :game/name "Colonialism", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7L38HEji9NCO7l8vJGPNpA__thumb/img/Bil3fnBYfH2sksgWXG6w7-MmRuk=/fit-in/200x150/filters:strip_icc()/pic1613797.jpg"}, #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" {:game/id #uuid "08cddb57-6c00-3836-9593-a0b04fd84141", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Coloretto", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "5782", :languages (list "cz" "de" "en"), :game/name "Coloretto", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Z_C3ujE0BcRpbQjDd1Vatg__thumb/img/40jfO9cNXB20z1fm6FfSkGf5qVQ=/fit-in/200x150/filters:strip_icc()/pic149765.jpg"}, #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" {:game/id #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Colors of Paris", :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "269160", :languages (list "en" "ne"), :game/name "Colors of Paris", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/j16Xrf08-toGYZ04HqLoNw__thumb/img/xaIYrg5FuSjX6VRLLd3yL2fcyz4=/fit-in/200x150/filters:strip_icc()/pic4804321.jpg"}, #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" {:game/id #uuid "935b4085-0cd3-3875-abe0-2996fb99980b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Color Brain", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "223742", :languages (list "en"), :game/name "Colour Brain", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/M3KJfjJVOGA6x0LuMgfVWA__thumb/img/BXLhWVUfFkVhEV6BbEa18JOA_a8=/fit-in/200x150/filters:strip_icc()/pic4219953.jpg"}, #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" {:languages (list "en"), :name "Commissioner Victor", :game/id #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130", :game/name "Commissioner Victor"}, #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" {:game/id #uuid "9353a118-c201-398a-83cc-6d58ccb38f02", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2839, :name "Action Retrieval"} #:com.boardgamegeek.mechanic{:id 2847, :name "Advantage Token"} #:com.boardgamegeek.mechanic{:id 2924, :name "Auction: Dutch"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Concordia", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1008, :name "Nautical"}), :com.boardgamegeek.boardgame/max-play-time 100, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 100, :com.boardgamegeek.boardgame/id "124361", :game/name "Concordia", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CzwSm8i7tkLz6cBnrILZBg__thumb/img/ESPSltYYSFK-aJw6jOTdQrJGpOc=/fit-in/200x150/filters:strip_icc()/pic3453267.jpg"}, #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" {:name "Connect 4 / Quattro", :game/id #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6", :game/name "Connect 4 / Quattro"}, #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" {:game/id #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Container", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"}), :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/id "23463", :game/name "Container", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ci0_OdQ-189r4QjQ_ylWcg__thumb/img/IrzG3AhYwSIeoahynhIV1Ou3ucA=/fit-in/200x150/filters:strip_icc()/pic4821859.jpg"}, #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" {:name "Cortex", :game/id #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83", :game/name "Cortex"}, #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" {:game/id #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb", :com.boardgamegeek.boardgame/min-players 2, :name "Cortex Geo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "203266", :game/name "Cortex Challenge GEO", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/29gZEF3-jNTJ90wSSAATGw__thumb/img/t2UqBSLQXpKNhyoOvpNPE97d51Q=/fit-in/200x150/filters:strip_icc()/pic3190835.jpg"}, #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" {:languages (list "en"), :name "Cosmic Enounter", :game/id #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9", :game/name "Cosmic Enounter"}, #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" {:game/id #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2965, :name "Multiple Maps"} #:com.boardgamegeek.mechanic{:id 2953, :name "Programmed Movement"} #:com.boardgamegeek.mechanic{:id 2948, :name "Resource to Move"} #:com.boardgamegeek.mechanic{:id 2003, :name "Rock-Paper-Scissors"} #:com.boardgamegeek.mechanic{:id 2892, :name "Roles with Asymmetric Information"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "crazy karts", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "195518", :game/name "Crazy Karts", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/tuz1paociIFCwki_tfN5pg__thumb/img/ZDIypgSQtMDsqbZVCKf3dcDT8sI=/fit-in/200x150/filters:strip_icc()/pic2935361.jpg"}, #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" {:game/id #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01", :com.boardgamegeek.boardgame/min-players 2, :name "Crazy Turf", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "209258", :game/name "Crazy Turf", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BJ7g-5ZBaOcdTg2Uv3T08A__thumb/img/f84XeqVja0Y7bZDoA4G69MY1ooA=/fit-in/200x150/filters:strip_icc()/pic3186921.jpg"}, #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" {:game/id #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Crooks", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1033, :name "Mafia"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "111172", :game/name "Crooks", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ddg1cTH9VaLE4aErYjrr0Q__thumb/img/4WGwUngVtEleBc8MuqU4y6mv6kw=/fit-in/200x150/filters:strip_icc()/pic2844726.jpg"}, #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" {:game/id #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Cubirds", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "245476", :languages (list "en"), :game/name "CuBirds", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Q7gnq4qbG73YRprMOicBEQ__thumb/img/-wmmOu7yKFsC89jw5VKqF79AuAw=/fit-in/200x150/filters:strip_icc()/pic4261952.png"}, #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" {:game/id #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Bluff You", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "201842", :languages (list "en"), :game/name "Cup of Bluff", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6sE8yku7XsFyQyb8felYxQ__thumb/img/NhYaVD4IDB4mHOfwnkJEH7xaLBc=/fit-in/200x150/filters:strip_icc()/pic3051680.jpg"}, #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" {:game/id #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Dany", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "265381", :languages (list "en" "fr"), :game/name "DANY", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/15ZfT3y5Wndrg7Cxp8BAYg__thumb/img/kJTC0OB3o0_4WwrTPCIFuycpULw=/fit-in/200x150/filters:strip_icc()/pic4465422.jpg"}, #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" {:game/id #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2850, :name "Events"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2888, :name "Tug of War"}), :new true, :name "Days of Ire: Budapest 1956", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1102, :name "Civil War"} #:com.boardgamegeek.category{:id 1069, :name "Modern Warfare"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "192802", :languages (list "en"), :game/name "Days of Ire: Budapest 1956", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ny0ORoE9a1Nnr9G8W1BvTw__thumb/img/-0GedxaygiIzJ1RrVozYA15W61M=/fit-in/200x150/filters:strip_icc()/pic6327791.png"}, #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" {:game/id #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066", :com.boardgamegeek.boardgame/min-players 2, :name "Decrypto", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "65952", :languages (list "en"), :game/name "Decrypto", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/WVGtlwI8Sp0HH4OGozuenA__thumb/img/5Q1OYKZK7_KgwaMZP6eeCUBuwWI=/fit-in/200x150/filters:strip_icc()/pic802013.jpg"}, #uuid "054f1270-bf79-32f9-825a-96880e800c9f" {:game/id #uuid "054f1270-bf79-32f9-825a-96880e800c9f", :com.boardgamegeek.boardgame/min-players 2, :name "The Endless River", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "165797", :game/name "Der unendliche Fluss", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/fZdfrPgGqjK-Brsrq7B_hg__thumb/img/OaZhWO7VcHKOg6h8xYOrMagcm7c=/fit-in/200x150/filters:strip_icc()/pic2238168.png"}, #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" {:game/id #uuid "86f0bb77-105e-3136-98ae-4837a11ed606", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Detective: City of Angels", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "218074", :languages (list "en"), :game/name "Detective: City of Angels", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/xWdK1lL-2ZTdzBZGYjjqkw__thumb/img/wl_YxOhd-S6QbpyHAQZGhV109rw=/fit-in/200x150/filters:strip_icc()/pic3469246.jpg"}, #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" {:game/id #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2823, :name "Score-and-Reset Game"} #:com.boardgamegeek.mechanic{:id 2991, :name "Speed Matching"}), :new true, :name "Dexterity Jane", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 9, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "300527", :languages (list "en"), :game/name "Dexterity Jane", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/XTP7QH9YqI4W5d2OIUBR1g__thumb/img/2-oJqLeYpC-P2CccMm7P2eiuOCw=/fit-in/200x150/filters:strip_icc()/pic6100741.png"}, #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" {:game/id #uuid "ef81a392-af64-3668-81ff-2c3b7736919f", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Osadnici z Katanu Junior", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "27766", :languages (list "cz"), :game/name "Die Siedler von Catan: Junior", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/-wW5iAnqudxpqGmT4YIQ7g__thumb/img/9qS-yi0nySdtOqGzy5a_jsGxEp4=/fit-in/200x150/filters:strip_icc()/pic266168.jpg"}, #uuid "096f6d71-6864-3882-898c-00b9142932e7" {:game/id #uuid "096f6d71-6864-3882-898c-00b9142932e7", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2953, :name "Programmed Movement"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Dive", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "304324", :languages (list "en"), :game/name "Dive", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iOla7B7sqs4IsGQcS4ghgA__thumb/img/oStmPCcaE3-Ncs6-EyRZDQfFVnE=/fit-in/200x150/filters:strip_icc()/pic5733939.png"}, #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" {:game/id #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2866, :name "Targeted Clues"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Dixit", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "39856", :game/name "Dixit", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/uSgzS-SClISqDkYRCdUq6g__thumb/img/iLgQV17c4xezI4ZeN_hmue_jh40=/fit-in/200x150/filters:strip_icc()/pic3483909.jpg"}, #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" {:game/id #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Dog Lover", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "344839", :languages (list "en"), :game/name "Dog Lover", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/k5vsit8aU1_PnrqTwum2YQ__thumb/img/Cxs0YbafjQeBS3Kqgf6CtOUPxu8=/fit-in/200x150/filters:strip_icc()/pic6503210.jpg"}, #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" {:game/id #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406", :com.boardgamegeek.boardgame/min-players 3, :name "Knatsel", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "172164", :languages (list "de"), :game/name "Dohdles!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/IXkDic7NjvYnhnb1rgSEIw__thumb/img/pNZbuy9ya2IDGgGPmVKuE2Y_dCQ=/fit-in/200x150/filters:strip_icc()/pic2606161.jpg"}, #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" {:game/id #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2901, :name "Delayed Purchase"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Dominion", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "36218", :languages (list "cz" "en"), :game/name "Dominion", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/j6iQpZ4XkemZP07HNCODBA__thumb/img/B2u2ghwlmI_qsUtCwuvcbnBcIqU=/fit-in/200x150/filters:strip_icc()/pic394356.jpg"}, #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" {:game/id #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Don’t Drop the Soap", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "32687", :languages (list "en"), :game/name "Don't Drop the Soap", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/LESe-G9vSHtXgFJ5XdJh9w__thumb/img/-0kHTzUikTs-oNfj-JP-RtCesPs=/fit-in/200x150/filters:strip_icc()/pic294901.jpg"}, #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" {:game/id #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"}), :name "Doppelgänger", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "162777", :languages (list "en"), :game/name "Doppelgänger", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/VUP_YfIMAMRbTqW7Az_z7w__thumb/img/yag9GSN6xhlvxKtphyYsJpmK_Go=/fit-in/200x150/filters:strip_icc()/pic3893983.jpg"}, #uuid "12218694-0010-31cc-a245-a502b7ed4b19" {:game/id #uuid "12218694-0010-31cc-a245-a502b7ed4b19", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2958, :name "Moving Multiple Units"} #:com.boardgamegeek.mechanic{:id 3006, :name "Predictive Bid"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Rivalove", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1031, :name "Racing"} #:com.boardgamegeek.category{:id 1038, :name "Sports"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "215311", :languages (list "cz"), :game/name "Downforce", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/c74C-NVJHuMVxt6A_j2TsA__thumb/img/OUdT3uFyqBBzN7q9ZDFN6WBiecU=/fit-in/200x150/filters:strip_icc()/pic3432548.png"}, #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" {:game/id #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4", :com.boardgamegeek.boardgame/min-players 2, :name "Drop it", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "244916", :languages (list "cz"), :game/name "Drop It", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kkF3MJrPU-byzAlFbxGYew__thumb/img/y0YSRjiGXFEawazsYFmVVoD3Q94=/fit-in/200x150/filters:strip_icc()/pic3958813.jpg"}, #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" {:languages (list "en"), :name "Dude and More Dude", :game/id #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c", :game/name "Dude and More Dude"}, #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" {:game/id #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2906, :name "I Cut, You Choose"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Duelosaur Island", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "247236", :languages (list "en"), :game/name "Duelosaur Island", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/paSj18K2b6r2pH-ax37mNA__thumb/img/EpqB5JtMfimf3pZNDc93Tbk8IXo=/fit-in/200x150/filters:strip_icc()/pic4194135.png"}, #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" {:game/id #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Priserky z podzemí", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "97207", :languages (list "cz"), :game/name "Dungeon Petz", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7JjAm9RM8E2pbu5KCCbsTQ__thumb/img/vySdmxWBad2T5Xrylxv-jYukFmU=/fit-in/200x150/filters:strip_icc()/pic1103979.jpg"}, #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" {:game/id #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :new true, :name "Durian", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 7, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "307963", :languages (list "en"), :game/name "Durian", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/QBwnHLJy8DRV2Mx-ZkB1_A__thumb/img/Pk2dokqgJ9hxgHHvZSadh4wKNog=/fit-in/200x150/filters:strip_icc()/pic5783560.png"}, #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" {:game/id #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Dust", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "29109", :game/name "Dust", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qvQEYh6nblN0xGi7J1qYkw__thumb/img/BYCvJ8YyMoMM1QtCn64nMs5-HYM=/fit-in/200x150/filters:strip_icc()/pic280668.jpg"}, #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" {:game/id #uuid "bf515360-5eca-32d5-ac9d-fb620b905619", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2924, :name "Auction: Dutch"} #:com.boardgamegeek.mechanic{:id 2932, :name "Auction: Dutch Priority"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Eight minute empire", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 8, :com.boardgamegeek.boardgame/id "131366", :languages (list "cz"), :game/name "Eight-Minute Empire", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HKj7MIw-zV-AmQ7PfoltRg__thumb/img/W0WHf_M-Dq-xO3yfzVA4USbjcgY=/fit-in/200x150/filters:strip_icc()/pic1443212.jpg"}, #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" {:game/id #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"}), :name "El capitan", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "178937", :game/name "El Capitan", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/06VFwFZb99qkd_2yFy480w__thumb/img/xN-XYFKDwdHSpOXRVcasm7H3iWE=/fit-in/200x150/filters:strip_icc()/pic3488237.jpg"}, #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" {:game/id #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2843, :name "Follow"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"}), :new true, :name "Eminent Domain", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "68425", :languages (list "en"), :game/name "Eminent Domain", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Dn3gJBq-k8Zww4a5yCzgOQ__thumb/img/IuAN5frtRpuyA5ZyueUdG3_DMxs=/fit-in/200x150/filters:strip_icc()/pic1160506.jpg"}, #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" {:game/id #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Enigma", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "9607", :game/name "Enigma", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6Yy5wNTGLy6o3GyGHSaCog__thumb/img/eO5w9imJtJVe0T2XiYbQZkw3JNo=/fit-in/200x150/filters:strip_icc()/pic39888.jpg"}, #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" {:game/id #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Epic Spell Wars: Panic at the Pleasure Palace", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "248075", :languages (list "en"), :game/name "Epic Spell Wars of the Battle Wizards: Panic at the Pleasure Palace", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nu23MbouJDmxGBPPKTHuqA__thumb/img/Y_0D4-J2-Kfds6ML28Oowo-pLnQ=/fit-in/200x150/filters:strip_icc()/pic4025218.jpg"}, #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" {:languages (list "en"), :name "Epic Spell Wars: Duel at Mt. Skullzfyre", :game/id #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5", :game/name "Epic Spell Wars: Duel at Mt. Skullzfyre"}, #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" {:game/id #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"}), :name "Once there was", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "61664", :game/name "Erzähl doch mal...", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5MaIJSDiE8jPkem-IVTonw__thumb/img/7guypUB7sZml3stBxx7UlOLiJ4Y=/fit-in/200x150/filters:strip_icc()/pic706519.jpg"}, #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" {:game/id #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2055, :name "Paper-and-Pencil"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"}), :name "Escape the Dark Castle", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1024, :name "Horror"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "227456", :languages (list "en"), :game/name "Escape the Dark Castle", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/d4MkgAvJOaJPVjxr6R9rKQ__thumb/img/fbbmrfibmcgPqNDbruBOE4-uTkc=/fit-in/200x150/filters:strip_icc()/pic5004159.jpg"}, #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" {:game/id #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Evolution", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1036, :name "Prehistoric"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "1080", :game/name "Evolution", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/L3BZMXWaOX9zZXyGedHDyQ__thumb/img/3bQoh-EJxL03Qq6wA0dbVAQrhSQ=/fit-in/200x150/filters:strip_icc()/pic279884.jpg"}, #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" {:game/id #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"}), :name "Evolution the beginning", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 1084, :name "Environmental"} #:com.boardgamegeek.category{:id 1036, :name "Prehistoric"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "201248", :languages (list "en"), :game/name "Evolution: The Beginning", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1rvefz1PSj1c3wC1UIGgnQ__thumb/img/hEcG7RPDUc5M7VsZcOqUMJQaNhM=/fit-in/200x150/filters:strip_icc()/pic3042047.jpg"}, #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" {:game/id #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2900, :name "Market"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"}), :new true, :name "Excavation Earth", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "292126", :languages (list "en"), :game/name "Excavation Earth", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wMXOMmbO9ktgHYhEQSrDlg__thumb/img/-W5iM9fVpNFalBSsBKimlXV_vUI=/fit-in/200x150/filters:strip_icc()/pic5012390.jpg"}, #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" {:languages (list "en"), :name "Exit: The abandoned cabin", :game/id #uuid "55ce9281-0034-3261-81ee-695fd1879fe7", :game/name "Exit: The abandoned cabin"}, #uuid "165261a9-0183-3e53-be82-ccc197c354b8" {:game/id #uuid "165261a9-0183-3e53-be82-ccc197c354b8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 3000, :name "Hot Potato"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Exploding Kittens", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "172225", :languages (list "en"), :game/name "Exploding Kittens", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/N8bL53-pRU7zaXDTrEaYrw__thumb/img/3tH4pIc1Udzkd0tXc6MgVQ59BC0=/fit-in/200x150/filters:strip_icc()/pic2691976.png"}, #uuid "a389677b-6118-3815-84fe-c1e75f38984c" {:game/id #uuid "a389677b-6118-3815-84fe-c1e75f38984c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Exploding Kittens NSFW", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "172242", :languages (list "en"), :game/name "Exploding Kittens: NSFW Deck", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/q1fHQMYtU-aajQKTYDlx7w__thumb/img/Az8jEnRuHEbXSn2TWVO4i2rE6ZQ=/fit-in/200x150/filters:strip_icc()/pic2815278.jpg"}, #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" {:game/id #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Fantastic Park", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "218576", :languages (list "en"), :game/name "Fantastic Park", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JWcDDlku6rMkVBPIzfM2xw__thumb/img/8fkElPvZEiOI0jqNOTarXybAQhQ=/fit-in/200x150/filters:strip_icc()/pic3375149.png"}, #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" {:game/id #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Fantasy realms", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "223040", :languages (list "en"), :game/name "Fantasy Realms", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/A7IOpPt-lHrMYsbRmxXWdQ__thumb/img/XoD3fXgApfY7-dfYyFeE6FVkbfY=/fit-in/200x150/filters:strip_icc()/pic6177962.jpg"}, #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" {:game/id #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"}), :name "Farben", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "259005", :languages (list "de" "en"), :game/name "Farben", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bdtFnbOHc1TpBYtBq3gLGg__thumb/img/G4IZYxp25z-N9UklBdLsA1sQQiw=/fit-in/200x150/filters:strip_icc()/pic4319287.jpg"}, #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" {:game/id #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "Fast Flip", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "194088", :game/name "Fast Flip", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6YTV87TX0uU8gEcQr0p9aw__thumb/img/scLBO4mhJF2lrx9tEEBjcpOzsII=/fit-in/200x150/filters:strip_icc()/pic2904691.jpg"}, #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" {:game/id #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Faulpelz", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "153388", :game/name "Faulpelz", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/h-Fzhf0SGeicPwTtS6wRcA__thumb/img/eTDFdl4FA791dm3zSWAFOyeS9iU=/fit-in/200x150/filters:strip_icc()/pic1892559.jpg"}, #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" {:name "Fifty Shades of Grey", :game/id #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498", :game/name "Fifty Shades of Grey"}, #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" {:game/id #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"}), :name "Find the Animals", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "40837", :game/name "Finde die Tiere!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZsLp6eTL2-jnuAR8VjXp2w__thumb/img/DeFarGFET0ejB6QhmkExlJjmWeA=/fit-in/200x150/filters:strip_icc()/pic445108.jpg"}, #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" {:game/id #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"}), :new true, :name "Five Points: Gangs of New York", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1001, :name "Political"}), :com.boardgamegeek.boardgame/max-play-time 108, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "93540", :languages (list "en"), :game/name "Five Points: Gangs of New York", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qDZFKVCL-kOor061tkIUWA__thumb/img/aSllMoOcTQ5cwhPn5p1TL36Y9Vo=/fit-in/200x150/filters:strip_icc()/pic1541090.jpg"}, #uuid "91a5169d-5877-3642-9a52-54c4f01655da" {:game/id #uuid "91a5169d-5877-3642-9a52-54c4f01655da", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Fleets the pleiad conflict", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 120, :com.boardgamegeek.boardgame/id "156750", :languages (list "en"), :game/name "Fleets: The Pleiad Conflict", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pRAsGuQyvNiRSbIS5v_jqQ__thumb/img/sC8Tdln7ubDVsd6YBvmZpDL26oQ=/fit-in/200x150/filters:strip_icc()/pic2263070.jpg"}, #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" {:game/id #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Fools Gold", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "132758", :languages (list "en"), :game/name "Fool's Gold", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6hx-Td6GomNJL7J-Czd0Kg__thumb/img/FIF2g8gPLHOYRNeC8Vz-g5i7YDE=/fit-in/200x150/filters:strip_icc()/pic1800625.jpg"}, #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" {:game/id #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2960, :name "Map Reduction"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Forbidden Island", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "65244", :languages (list "en"), :game/name "Forbidden Island", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JgAkEBUaiHOsOS94iRMs2w__thumb/img/5aPR8-KMbgucI_XkPE2PJaMQQsg=/fit-in/200x150/filters:strip_icc()/pic646458.jpg"}, #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" {:languages (list "en"), :name "Fox in the Forest", :game/id #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb", :game/name "Fox in the Forest"}, #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" {:game/id #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"}), :name "Frankenstein", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "19030", :languages (list "en"), :game/name "Frankenstein", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/TFT3zgvVAx8U4BcDY9P5iA__thumb/img/waFGtDnsbNDB5_zgFBH6VSpG-eM=/fit-in/200x150/filters:strip_icc()/pic302246.jpg"}, #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" {:game/id #uuid "34946d54-6d22-3af0-afdb-e795b8de802b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2967, :name "Hidden Movement"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"}), :name "Fugitive", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1098, :name "Number"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "197443", :languages (list "en"), :game/name "Fugitive", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Jeukp3NUs-u6i3SuF-yE4A__thumb/img/1cw7pZbdLk2bBFh-tjkwzZXwgmw=/fit-in/200x150/filters:strip_icc()/pic3481216.png"}, #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" {:game/id #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Fuji flush", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "203430", :game/name "Fuji Flush", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/mobPzHA7UwgwiGzr2EVW9g__thumb/img/rQmbjRFo3DZhq7ufK3K1UwDI0x0=/fit-in/200x150/filters:strip_icc()/pic3086849.jpg"}, #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" {:game/id #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a", :com.boardgamegeek.boardgame/min-players 2, :name "Full Moon", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "136523", :languages (list "en"), :game/name "Full Moon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/QX1mkUrYWBeih3nfeP36sg__thumb/img/3gDOQSXQBBKWcyu5Bl4MQVpGLkw=/fit-in/200x150/filters:strip_icc()/pic1534029.jpg"}, #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" {:languages (list "de" "en"), :name "Fungi / morells", :game/id #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9", :game/name "Fungi / morells"}, #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" {:game/id #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Game of Thrones: Oathbreaker", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1001, :name "Political"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "275530", :languages (list "en"), :game/name "Game of Thrones: Oathbreaker", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/C3gHLeIl8333KBy1OOEyzw__thumb/img/4tQdfs8vggC32L-ZnbqfpC4-XD4=/fit-in/200x150/filters:strip_icc()/pic4635232.jpg"}, #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" {:game/id #uuid "9ecf0011-c0af-37eb-a590-f247005f0399", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2915, :name "Negotiation"} #:com.boardgamegeek.mechanic{:id 2858, :name "Prisoner's Dilemma"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Hra o Truny Zelezny Trun", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "204837", :languages (list "cz"), :game/name "Game of Thrones: The Iron Throne", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/t9LtCL9_aSDliHPxHFNNeg__thumb/img/9EF6xEaV7AuEB9YCPC3FiSBpL1E=/fit-in/200x150/filters:strip_icc()/pic3109099.jpg"}, #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" {:game/id #uuid "af89834e-3251-3aa9-a464-74b8d24a5091", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Game of Trains", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1034, :name "Trains"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "180602", :languages (list "de" "en"), :game/name "Game of Trains", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CawgoeUEMFS4f14Iix9Exg__thumb/img/OYsku3__TTw8fiFYEWlhUBT7nIU=/fit-in/200x150/filters:strip_icc()/pic2608713.png"}, #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" {:game/id #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2913, :name "Bribery"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Gentleman’s deal", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 9, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "205776", :languages (list "en"), :game/name "Gentleman's Deal", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HJQGrFfsjbbCKykXE8brrA__thumb/img/LpJQFC8s55wuwWpAbogSUQxELck=/fit-in/200x150/filters:strip_icc()/pic3160826.jpg"}, #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" {:game/id #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Germania Magna", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "182050", :languages (list "en"), :game/name "Germania Magna: Border in Flames", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Oer5u8dNIo9y2ncEMIljGQ__thumb/img/sN9Px7o3oogpKe_1qe4glWujOv0=/fit-in/200x150/filters:strip_icc()/pic3130233.png"}, #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" {:game/id #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4", :com.boardgamegeek.boardgame/min-players 1, :new true, :name "Ghost Adventure", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "275032", :languages (list "en"), :game/name "Ghost Adventure", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/KX4vbo56H0zH55HJo0ZU3Q__thumb/img/7OkM6156VruWDxM7CoTFFDe310A=/fit-in/200x150/filters:strip_icc()/pic5636008.jpg"}, #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" {:game/id #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Giraffun", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "213358", :game/name "Giraf'Fun", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/22l0MMlmBatAMaxsIwZ-ew__thumb/img/KfT4gfFaMBqkLUeNd-grasK1fCo=/fit-in/200x150/filters:strip_icc()/pic3304372.jpg"}, #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" {:game/id #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2038, :name "Singing"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Glimpse", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 99, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "201595", :languages (list "en"), :game/name "Glimpse", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Oo_huFZJtGQVBkhOOeYr1Q__thumb/img/fPW0sy9y9Q7qdntQTeaMdqFFhpg=/fit-in/200x150/filters:strip_icc()/pic3192493.jpg"}, #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" {:game/id #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Globe twister", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1097, :name "Travel"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "257924", :languages (list "cz" "de" "en" "fr"), :game/name "Globe Twister", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/sFcxNCKHiiqjQdBSo4O1Hg__thumb/img/LJpave2uTNe9UgAaehNAD3gK71Q=/fit-in/200x150/filters:strip_icc()/pic4261553.jpg"}, #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" {:game/id #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 3001, :name "Layering"} #:com.boardgamegeek.mechanic{:id 2836, :name "Lose a Turn"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Gloom", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "12692", :languages (list "en"), :game/name "Gloom", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/jD7_Ir8gL_9AXC-wjnqjHg__thumb/img/wWqmoercFrbIFjS1FloZFTZddcE=/fit-in/200x150/filters:strip_icc()/pic2080481.jpg"}, #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" {:languages (list "lagoonies"), :name "Glupsch geister", :game/id #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8", :game/name "Glupsch geister"}, #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" {:game/id #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "Go", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "188", :game/name "Go", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6qAiZwWxSSKP2kFcA80cZg__thumb/img/COT5I3D_0dKWrSRHChb-SnQl3Zc=/fit-in/200x150/filters:strip_icc()/pic1728832.jpg"}, #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" {:game/id #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Hura Zmrzlina", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "217553", :languages (list "cz"), :game/name "Go Go Gelato!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/970IA1qF--JQB4C-SAiX-w__thumb/img/WiZooxvVjFDpelW4XsliMXTl8OM=/fit-in/200x150/filters:strip_icc()/pic3363675.jpg"}, #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" {:game/id #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"}), :name "Gobbit", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "132620", :languages (list "cz" "fr"), :game/name "Gobbit", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bMWoFNQFesjs64shTr-ObA__thumb/img/0EsCUEryLNYdObPJzB2SRNUo0yQ=/fit-in/200x150/filters:strip_icc()/pic4819194.png"}, #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" {:game/id #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Goblins inc.", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "110524", :languages (list "en"), :game/name "Goblins, Inc.", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/y-7XKqyWHh3sE5N86EBUfA__thumb/img/UtLa49EALZ2DVwSgsR9Ku5hE6hU=/fit-in/200x150/filters:strip_icc()/pic1415862.jpg"}, #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" {:languages (list "cz"), :name "Goblíci jedlíci / Gobblet Gobblers", :game/id #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287", :game/name "Goblíci jedlíci / Gobblet Gobblers"}, #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" {:game/id #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"}), :name "Going Postal", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "292795", :languages (list "en"), :game/name "Going Postal", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Q8xKywi0R2rvrsXgS1Ay0Q__thumb/img/a-VLo5gnnZdBt3cgrsowjnqsSUM=/fit-in/200x150/filters:strip_icc()/pic5080591.jpg"}, #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" {:game/id #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2930, :name "Auction: Dexterity"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Going going gone", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "144761", :languages (list "en"), :game/name "Going, Going, GONE!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/LSWJQZ4t6_Re_iz3SMv2-w__thumb/img/vrodOnKIbdD7T5oJdV5AsrRuhHk=/fit-in/200x150/filters:strip_icc()/pic1742682.jpg"}, #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" {:game/id #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Goosebumps the board game", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 35, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "189657", :languages (list "en"), :game/name "Goosebumps: The Board Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/j082xJe0y4t_diBc8InuXw__thumb/img/5QrDwoPafDRBrrRhY5Y2WzitOjY=/fit-in/200x150/filters:strip_icc()/pic2809741.jpg"}, #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" {:game/id #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "Gorus Maximus", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "253756", :languages (list "en"), :game/name "Gorus Maximus", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gXQ4IAIpBejz3N1LPpreMg__thumb/img/gVozjy2zCuvg2EHYkJxxUDfm8BY=/fit-in/200x150/filters:strip_icc()/pic4146552.jpg"}, #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" {:game/id #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2911, :name "Ownership"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2813, :name "Rondel"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Great western trail", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1055, :name "American West"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "193738", :languages (list "cz" "en"), :game/name "Great Western Trail", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/u1l0gH7sb_vnvDvoO_QHqA__thumb/img/9lxFidyDb8j6D1vobx4e3UwZ-FI=/fit-in/200x150/filters:strip_icc()/pic4887376.jpg"}, #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" {:game/id #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :new true, :name "Greedy Kingdoms", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "57201", :languages (list "en"), :game/name "Greedy Kingdoms", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pY-YcQyPuTkhoojWrrAR3A__thumb/img/zqDTc4anPBGjYWMvojNtKh9Y96w=/fit-in/200x150/filters:strip_icc()/pic565301.jpg"}, #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" {:game/id #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Gretchinz", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1031, :name "Racing"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "239951", :languages (list "en"), :game/name "Gretchinz!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Dv7p-wFsyKbRwlWo8FObwQ__thumb/img/Tl69LY5QGCOVt7Ygg9pJ1aacaEg=/fit-in/200x150/filters:strip_icc()/pic3856833.jpg"}, #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" {:game/id #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4", :com.boardgamegeek.boardgame/min-players 3, :name "Guess What", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "142103", :game/name "Guess What!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kMaXgIDf-AQzYEM9Roo8jw__thumb/img/axTBuQdbroN7PMk4HQtGaxLDw6I=/fit-in/200x150/filters:strip_icc()/pic1699333.png"}, #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" {:game/id #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Hunger the show", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "219670", :languages (list "en"), :game/name "HUNGER: The Show", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0PlLZN729gkNyyYB7M264Q__thumb/img/OjtXDO3gita_jOZkYdj62C-rH70=/fit-in/200x150/filters:strip_icc()/pic3532789.jpg"}, #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" {:game/id #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Hadara", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "269144", :languages (list "cz"), :game/name "Hadara", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/17wJNXSBYuVmKryV9lEKsQ__thumb/img/nVMvEWrTFCoOE9Y3tqFLelkjYWw=/fit-in/200x150/filters:strip_icc()/pic5099398.jpg"}, #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" {:game/id #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Hail Hydra", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "256877", :languages (list "en"), :game/name "Hail Hydra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/vqVPJtDgFGrU4UUpygn19w__thumb/img/HlRZwWhjdliHGnxY2x7-pkj-1I8=/fit-in/200x150/filters:strip_icc()/pic4233915.jpg"}, #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" {:game/id #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Halali", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "1130", :game/name "Halali", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/DB9K9asuaH7Na3AKH2G5dg__thumb/img/kQGmAAkgT5J7ZLgUAxldNxeA1vg=/fit-in/200x150/filters:strip_icc()/pic14240.jpg"}, #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" {:game/id #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Hanabi", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1045, :name "Memory"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "98778", :game/name "Hanabi", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JDVksMwfcqoem1k_xtZrOA__thumb/img/amCeCcEKhYGbVtDvpvIMnu3qTg0=/fit-in/200x150/filters:strip_icc()/pic2007286.jpg"}, #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" {:game/id #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Happy pigs", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "156138", :languages (list "en"), :game/name "Happy Pigs", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gbUdxyfnt-P2i2fmPixN_Q__thumb/img/iIQwlVdbR6VMj5R6-Wi25LKTI0c=/fit-in/200x150/filters:strip_icc()/pic2830958.jpg"}, #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" {:game/id #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Šťastný candát", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 2, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 2, :com.boardgamegeek.boardgame/id "194626", :languages (list "cz"), :game/name "Happy Salmon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/m0fTHQRSHztlpHsCzR9iAw__thumb/img/EA1AyifbIZB00-p569p0p7cBi5U=/fit-in/200x150/filters:strip_icc()/pic2913980.png"}, #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" {:game/id #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Haru ichiban", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "165662", :languages (list "en"), :game/name "Haru Ichiban", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/sOwpuouKdVSYmpz9oIJv_g__thumb/img/nwsGruWd-5XPmYPY3RG72-MsQ6g=/fit-in/200x150/filters:strip_icc()/pic2678962.jpg"}, #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" {:game/id #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Hat trick", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "11153", :game/name "Hat Trick", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ur5TMXRKUNod-fjT6GoWWg__thumb/img/vNtveDGyNhKtuvZaDrfGXftu-SA=/fit-in/200x150/filters:strip_icc()/pic46136.jpg"}, #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" {:game/id #uuid "cdd0afaf-944b-3605-ab9e-990704f79409", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :new true, :name "Hey Yo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "324467", :languages (list "en"), :game/name "Hey Yo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gdL3oocd-YZdV-eov01mzQ__thumb/img/MzaD_ZISvY6hH-Mht-YA5UiOq_g=/fit-in/200x150/filters:strip_icc()/pic6388848.png"}, #uuid "826863b8-1605-33a8-9169-91ebcb89712b" {:game/id #uuid "826863b8-1605-33a8-9169-91ebcb89712b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2960, :name "Map Reduction"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "Hey that’s my fish", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "8203", :game/name "Hey, That's My Fish!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CR2jXsbmCdhDYo2zI6cJFQ__thumb/img/6jjUgJWbOMUZ4JIEqJF0MzP6tO8=/fit-in/200x150/filters:strip_icc()/pic1004115.jpg"}, #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" {:game/id #uuid "75466a84-a8e4-3539-bad7-a8f56097c633", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2930, :name "Auction: Dexterity"} #:com.boardgamegeek.mechanic{:id 2920, :name "Auction: Sealed Bid"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :new true, :name "Hibachi", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "313718", :languages (list "en"), :game/name "Hibachi", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wXeBFmXw3QrNJBz05tbF4g__thumb/img/AXT-WLek_ayeFVWarBzcCvL6Dhg=/fit-in/200x150/filters:strip_icc()/pic5517561.jpg"}, #uuid "434338bc-9501-334b-adbf-2b3752e9e231" {:game/id #uuid "434338bc-9501-334b-adbf-2b3752e9e231", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2964, :name "Pieces as Map"} #:com.boardgamegeek.mechanic{:id 3005, :name "Slide/Push"} #:com.boardgamegeek.mechanic{:id 2944, :name "Three Dimensional Movement"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Hive Pocket", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "154597", :languages (list "de" "en"), :game/name "Hive Pocket", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/4DffKExiPihIf9T_AqkPCQ__thumb/img/0EuD6uQ0lLAb2jtY6YC0EduW7Gw=/fit-in/200x150/filters:strip_icc()/pic1299877.png"}, #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" {:game/id #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Holding on", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 2145, :name "Medical"} #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "245444", :languages (list "en"), :game/name "Holding On: The Troubled Life of Billy Kerr", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/lKHrfnNpblE-ZoqiAt8RUw__thumb/img/mg863nmqfO4wjGxV1EqqaxhLzOg=/fit-in/200x150/filters:strip_icc()/pic4177569.jpg"}, #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" {:game/id #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Holmes Sherlock and Mycroft", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "174078", :languages (list "en"), :game/name "Holmes: Sherlock & Mycroft", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/EAUE93YGXVFJW1FwftPRgw__thumb/img/4ByVnF3DSfQTxwsUMPRmDMQrWFA=/fit-in/200x150/filters:strip_icc()/pic2431481.jpg"}, #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" {:languages (list "en"), :name "Home Stretch", :game/id #uuid "0d22fe23-de11-3728-9634-4b0114313a9f", :game/name "Home Stretch"}, #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" {:game/id #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Honba za Pokladem", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1084, :name "Environmental"} #:com.boardgamegeek.category{:id 1098, :name "Number"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "131414", :languages (list "cz"), :game/name "Honba za pokladem", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/u0c2qcKFO-CZXW7mTA7k1Q__thumb/img/1OWhhlIs8NwGCbW4NUkjkSgIi34=/fit-in/200x150/filters:strip_icc()/pic1436457.jpg"}, #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" {:game/id #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Hospital Rush", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 2145, :name "Medical"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "119265", :languages (list "en"), :game/name "Hospital Rush", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rVWdEN9wzXzz2goU5xeXkQ__thumb/img/sC7xAly_TzGn1l7kNuYQvEpoVqw=/fit-in/200x150/filters:strip_icc()/pic2218972.jpg"}, #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" {:languages (list "cz"), :name "Hospodský kvíz", :game/id #uuid "d803129a-da52-3403-b88a-1331f9bf89b1", :game/name "Hospodský kvíz"}, #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" {:game/id #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Hound", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "255632", :languages (list "en"), :game/name "Hound", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7zHXxwcHjq2Yp2woQkk2DA__thumb/img/keVJuY3uTOGRPtKIs8R66mXQcJ4=/fit-in/200x150/filters:strip_icc()/pic4334234.jpg"}, #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" {:languages (list "cz"), :name "Hravé kroužky", :game/id #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6", :game/name "Hravé kroužky"}, #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" {:game/id #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Hugo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "23435", :game/name "Hugo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ERhkAfrYHD-jpsBf1L9mTQ__thumb/img/flSO_ro1ATTQw5EaCkeaSqa8UvE=/fit-in/200x150/filters:strip_icc()/pic165694.jpg"}, #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" {:game/id #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Hvezdokupy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "187538", :languages (list "cz"), :game/name "Hvězdokupy: Hra plná hvězd", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/dpuO8gjLSm0R6EJRpCaF3w__thumb/img/E2XFve6QnxBMsib3rraDVxuPvKw=/fit-in/200x150/filters:strip_icc()/pic2740107.jpg"}, #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" {:game/id #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Hypergrid", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "209206", :game/name "Hypergrid", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wDAL9LJQ1GoiRXeGQ9fnaw__thumb/img/ro9Zk2Fj6Ou8JR_S3uDmkVwELi8=/fit-in/200x150/filters:strip_icc()/pic3184914.jpg"}, #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" {:languages (list "cz"), :name "I Know: Hit list", :game/id #uuid "c693b4c3-9720-303a-836a-8f25b4da698a", :game/name "I Know: Hit list"}, #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" {:game/id #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2860, :name "Flicking"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Ice Cool", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "177524", :game/name "ICECOOL", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/xVx8ex1fjO9C7W8rRvWdVQ__thumb/img/7ZeCdaJWigksF5wUHTGGXmmfP6Y=/fit-in/200x150/filters:strip_icc()/pic3320017.png"}, #uuid "b4991e13-f466-39b4-be16-56909272f1cc" {:game/id #uuid "b4991e13-f466-39b4-be16-56909272f1cc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Illuminati", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "28", :languages (list "en"), :game/name "Illuminati", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ea8y04WKGgdQkFy1Pbw9tA__thumb/img/eph2ZknTAhhs-A8ij76DJbhzjrs=/fit-in/200x150/filters:strip_icc()/pic1320091.jpg"}, #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" {:game/id #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Imperial Settlers", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "154203", :languages (list "en"), :game/name "Imperial Settlers", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pRwsvyfsRJ-lWWwVJCdXNg__thumb/img/-b7sYBaUVxdZ_a33QRfvJY2ccAk=/fit-in/200x150/filters:strip_icc()/pic2871265.jpg"}, #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" {:languages (list "en"), :name "Isle of Skye", :game/id #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434", :game/name "Isle of Skye"}, #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" {:game/id #uuid "0ef8f876-d62a-3535-ae28-410454e3634b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Istanbul", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "148949", :languages (list "cz"), :game/name "Istanbul", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/PHH9Mreen2sBcxV6ZsE3ew__thumb/img/Vzpg3sdeAbCy0IxSAoh1aH9nvDE=/fit-in/200x150/filters:strip_icc()/pic1885326.jpg"}, #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" {:game/id #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "It dies with me", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "246709", :languages (list "en"), :game/name "It Dies With Me", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/DWMT6FxLomGvgYzfKJTuKw__thumb/img/C6-AyY0PP5fFzG1eDyVcWCwHd1g=/fit-in/200x150/filters:strip_icc()/pic4466127.jpg"}, #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" {:game/id #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2883, :name "Connections"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"}), :new true, :name "It’s Obvious!", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "338747", :languages (list "en"), :game/name "It's Obvious", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/r4Av0cBw_qHPEM3IypNE4w__thumb/img/94t98GCbpq57IyMEbz9RUuLPdgw=/fit-in/200x150/filters:strip_icc()/pic6315328.jpg"}, #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" {:game/id #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Itchy Monkey", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "249404", :languages (list "en"), :game/name "Itchy Monkey", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZxA13WeYt4YN6UdzBg_R1Q__thumb/img/f1Dgcax5BCbGgSAX4FEWjNB-AhY=/fit-in/200x150/filters:strip_icc()/pic4275085.jpg"}, #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" {:game/id #uuid "e4b769db-2a42-392d-b311-b02c3545d07d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2987, :name "Hidden Victory Points"} #:com.boardgamegeek.mechanic{:id 2900, :name "Market"} #:com.boardgamegeek.mechanic{:id 2823, :name "Score-and-Reset Game"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Jaipur", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "54043", :languages (list "fr"), :game/name "Jaipur", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/_LTujSe_o16nvjDC-J0seA__thumb/img/82vhODfpxIT03BzW4NkisJ5Unzs=/fit-in/200x150/filters:strip_icc()/pic5100947.jpg"}, #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" {:game/id #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Jamaica", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1008, :name "Nautical"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "28023", :game/name "Jamaica", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/jZRfv3isrBG5waCzEx60Cw__thumb/img/6q5nirF5yn1d0qtjm2UEI5HV874=/fit-in/200x150/filters:strip_icc()/pic6434838.png"}, #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" {:game/id #uuid "647e229b-c07b-3419-a641-254ed8b96dbd", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2865, :name "Player Judge"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Joking Hazard", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "193621", :languages (list "en"), :game/name "Joking Hazard", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ohrUtQ0FGHPSFxfSX2Ltmg__thumb/img/r9PhVsbOjPDDLfVKBhwrPnqV4LI=/fit-in/200x150/filters:strip_icc()/pic6411897.png"}, #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" {:game/id #uuid "18594966-e721-3762-8ad4-b4cc663db0b9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2837, :name "Interrupts"} #:com.boardgamegeek.mechanic{:id 2871, :name "Kill Steal"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Judge Dredd: Helter Skelter", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "275034", :languages (list "en"), :game/name "Judge Dredd: Helter Skelter", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/voQGyVEKCWsh-EfbjdnDCA__thumb/img/YgMuh3DbFOp8k2FqPWNkxEbJ0SE=/fit-in/200x150/filters:strip_icc()/pic4973077.jpg"}, #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" {:game/id #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Jungle Brunch", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "130907", :game/name "Jungle Brunch", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/oRyH1goh93mCNr1m0bMLtA__thumb/img/WdokDmJ4wy1iQtfbVtSzaTVU_bo=/fit-in/200x150/filters:strip_icc()/pic1422658.jpg"}, #uuid "f18187e7-f398-32f0-b73e-625e848d8333" {:game/id #uuid "f18187e7-f398-32f0-b73e-625e848d8333", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Jungle race", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "14616", :languages (list "en"), :game/name "Jungle Race", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/WOx_B6WTWG9Pmn0S1-6bgQ__thumb/img/UfQc3KADnR_X34kclxhkAPafeQg=/fit-in/200x150/filters:strip_icc()/pic2105293.jpg"}, #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" {:game/id #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2999, :name "Bingo"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2906, :name "I Cut, You Choose"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2821, :name "Single Loser Game"} #:com.boardgamegeek.mechanic{:id 2988, :name "Stacking and Balancing"}), :name "Junk Art", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "193042", :languages (list "cz"), :game/name "Junk Art", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5VDnpX_3ykgCjTJSmHdfCA__thumb/img/LLHF9t1MxB0m-NBe_C9cxAyIslA=/fit-in/200x150/filters:strip_icc()/pic2884509.jpg"}, #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" {:game/id #uuid "e9e59065-5acd-3d1d-876b-8cb866541534", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"}), :name "Just One", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 7, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "254640", :languages (list "en"), :game/name "Just One", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qKcKjHpzAvLddwBhyindag__thumb/img/HhZu2qLp9wyX9PNgvmDE8_hCl-0=/fit-in/200x150/filters:strip_icc()/pic4268499.jpg"}, #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" {:game/id #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Kahuna", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "394", :game/name "Kahuna", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UdhhVlmQihMbvlNSvY1lUA__thumb/img/bc5NxkspfUfPskxlC30SxlwNyxs=/fit-in/200x150/filters:strip_icc()/pic2606165.jpg"}, #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" {:name "Kaleva", :game/id #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f", :game/name "Kaleva", :com.boardgamegeek.boardgame/id "182174", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/sdnIpVpAqsZyckQmnql0fg__thumb/img/5-NmFZcvHYLlSIpIVeEiE73_v4o=/fit-in/200x150/filters:strip_icc()/pic2634113.jpg", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"})}, #uuid "2293c663-d1bc-3701-9a53-009f457c6940" {:game/id #uuid "2293c663-d1bc-3701-9a53-009f457c6940", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2829, :name "Turn Order: Claim Action"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Kanagawa", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "200147", :languages (list "en"), :game/name "Kanagawa", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Rr2JrRztCFzzikJ9YL5-Dw__thumb/img/x9MtKEQlcQ_jS-5AVMeZ28NOC0s=/fit-in/200x150/filters:strip_icc()/pic3105168.jpg"}, #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" {:game/id #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"}), :name "Kashgar", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "143175", :languages (list "de"), :game/name "Kashgar: Merchants of the Silk Road", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wEcuixeJMR4e1Jj85qRvWA__thumb/img/262Z59cV9FNpYczcYBOaAIKmgFc=/fit-in/200x150/filters:strip_icc()/pic3697855.jpg"}, #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" {:game/id #uuid "abc5edec-2835-3550-b622-c491cdafdb5e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :new true, :name "Kemet", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "127023", :languages (list "en"), :game/name "Kemet", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/RmZjhy7_6REp8IaXh9Zqwg__thumb/img/930_NppLsnIGUDG_W6wkdOGgKR8=/fit-in/200x150/filters:strip_icc()/pic3979527.jpg"}, #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" {:game/id #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Kerala", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 3, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "31154", :languages (list "en"), :game/name "Kerala", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/XiiLyFXVcd8iDmXZbTssfw__thumb/img/ffJlDKp1rIRm9TDj4ApwpNYaqJk=/fit-in/200x150/filters:strip_icc()/pic1064029.png"}, #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" {:game/id #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Kharnage", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "194196", :languages (list "en"), :game/name "Kharnage", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Pp3N1Ai0QMzKcU7XVlLnEA__thumb/img/XNWruCF2upZHUFlcVL_88lnnPW4=/fit-in/200x150/filters:strip_icc()/pic3372416.jpg"}, #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" {:languages (list "en"), :name "Kill Dr. Lucky", :game/id #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1", :game/name "Kill Dr. Lucky"}, #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" {:game/id #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Kilt Castle", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "205826", :languages (list "en"), :game/name "Kilt Castle", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZwHGdOOym-ZlS8mR1oa9Vg__thumb/img/GUyr4p7NCEVWBB2O0Y5J0kr9JBw=/fit-in/200x150/filters:strip_icc()/pic3126011.jpg"}, #uuid "b1127074-659b-3102-907a-25a0473a3e98" {:game/id #uuid "b1127074-659b-3102-907a-25a0473a3e98", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Quibbit", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "209849", :game/name "King Frog", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CRNr-IjANGmnMly93P9_lw__thumb/img/C85uPMQ3exnB5lhL8JPZ4GWj5jc=/fit-in/200x150/filters:strip_icc()/pic3648641.png"}, #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" {:game/id #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2856, :name "Die Icon Resolution"} #:com.boardgamegeek.mechanic{:id 2886, :name "King of the Hill"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "King of New York", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "160499", :languages (list "en"), :game/name "King of New York", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/FGekxht_r5xqt8oSmQ9HZg__thumb/img/DBoMebkqbcyZWJVLC5MRbF-YbnU=/fit-in/200x150/filters:strip_icc()/pic2407103.jpg"}, #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" {:game/id #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2856, :name "Die Icon Resolution"} #:com.boardgamegeek.mechanic{:id 2886, :name "King of the Hill"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"}), :name "King of Tokyo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "70323", :languages (list "cz" "en"), :game/name "King of Tokyo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/m_RzXpHURC0_xLkvRSR_sw__thumb/img/OfgWmkGJj5BgOO0zFHEtP5CHfbU=/fit-in/200x150/filters:strip_icc()/pic3043734.jpg"}, #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" {:game/id #uuid "22b3df14-e100-33a6-a098-e396cb523d6a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2956, :name "Chaining"} #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Kingdom Builder", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "107529", :game/name "Kingdom Builder", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kJOP_BICVX-88sKqFRh9PQ__thumb/img/KwrWpSRncnCE0cEldldyVQ-0Cdk=/fit-in/200x150/filters:strip_icc()/pic1152359.jpg"}, #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" {:game/id #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2826, :name "Turn Order: Stat-Based"}), :name "Kingdomino", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "204583", :languages (list "cz"), :game/name "Kingdomino", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/3h9W8BfB_rltQ48EBmHliw__thumb/img/RGpbcY90eBcNLXbHLMBwLrr2uzo=/fit-in/200x150/filters:strip_icc()/pic3132685.png"}, #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" {:game/id #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "King’s struggle", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "253568", :languages (list "en"), :game/name "Kings' Struggle", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZQI6aR6IcK_EJHCufesE4A__thumb/img/gY4LOjIxf29hE5mceE0auAgR1Cg=/fit-in/200x150/filters:strip_icc()/pic4139916.jpg"}, #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" {:languages (list "cz"), :name "Kmotr / Godfather", :game/id #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f", :game/name "Kmotr / Godfather"}, #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" {:languages (list "en"), :name "Koba yakawa", :game/id #uuid "a673ace7-74a3-384d-823b-f8131295d6d1", :game/name "Koba yakawa"}, #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" {:languages (list "cz"), :name "Kocka Karla", :game/id #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f", :game/name "Kocka Karla"}, #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" {:game/id #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 3001, :name "Layering"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :new true, :name "Kodama: The Tree Spirits", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "181810", :languages (list "en"), :game/name "Kodama: The Tree Spirits", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/c5plwwXh0T5S3spJqFwxNQ__thumb/img/a3HWHogUfMBWon0jjJkJ6G2gr90=/fit-in/200x150/filters:strip_icc()/pic3291451.jpg"}, #uuid "938351d5-c89e-32e0-af3b-73d217217b14" {:languages (list "cz"), :name "Kohouti namluvy", :game/id #uuid "938351d5-c89e-32e0-af3b-73d217217b14", :game/name "Kohouti namluvy"}, #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" {:languages (list "ru"), :name "Kosta Pyaha", :game/id #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83", :game/name "Kosta Pyaha"}, #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" {:name "Kumo", :game/id #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b", :game/name "Kumo"}, #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" {:game/id #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"}), :name "Kung Fu", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/id "17442", :game/name "Kung Fu", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/f3Cn4GZRQ5q9JwBOVYUDlg__thumb/img/cwT18Dr8XcStsDfnILK29D_wOpI=/fit-in/200x150/filters:strip_icc()/pic75405.jpg"}, #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" {:game/id #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :new true, :name "Kyoto", :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "151453", :languages (list "en"), :game/name "Kyoto", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qwD4rxcmKsvIjjnGryG7jQ__thumb/img/UOybw4gDkgld6f4zZWvmZuOCZo4=/fit-in/200x150/filters:strip_icc()/pic5268028.png"}, #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" {:game/id #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "L.L.A.M.A.", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"} #:com.boardgamegeek.category{:id 1101, :name "Video Game Theme"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "18051", :languages (list "cz"), :game/name "L.L.A.M.A.", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/DIlvdiqrtsThyG-zrbcoaQ__thumb/img/PHwqvNIPyequuc8a1SBCiJ9cSdQ=/fit-in/200x150/filters:strip_icc()/pic385756.jpg"}, #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" {:game/id #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Left Center Right", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "3522", :languages (list "en"), :game/name "LCR", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wuS6NwGsDEThQlf12vVBxA__thumb/img/DQ99drs5cEMSyflPM7jV0dhZhjY=/fit-in/200x150/filters:strip_icc()/pic155138.jpg"}, #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" {:languages (list "en"), :name "LOTR card game", :game/id #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0", :game/name "LOTR card game"}, #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" {:game/id #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2961, :name "Map Deformation"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Labyrinth", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1059, :name "Maze"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "1219", :languages (list "de" "en" "fr"), :game/name "Labyrinth", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qpL225YNN5iKRPotB7Q7MA__thumb/img/JZR5MVC8xYrboBrYMsZmWtjJTu0=/fit-in/200x150/filters:strip_icc()/pic6173371.jpg"}, #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" {:game/id #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"}), :name "Lady Alice", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "126912", :languages (list "en" "fr"), :game/name "Lady Alice", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6FMrU00_0KHRoVw1hA8eog__thumb/img/LJTPIpdTnlqOO8jH2GGMFBi9Upg=/fit-in/200x150/filters:strip_icc()/pic1431498.jpg"}, #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" {:game/id #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Le Fantome de l’Opera", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1054, :name "Music"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "145645", :languages (list "en" "fr"), :game/name "Le Fantôme de l'Opéra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/L4Of6W3yhhjYgmUjH2FDpQ__thumb/img/_evRWSRlE2VrjLu5XCxlayW0qmI=/fit-in/200x150/filters:strip_icc()/pic1726671.jpg"}, #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" {:name "Legendary Encounters", :game/id #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65", :game/name "Legendary Encounters"}, #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" {:game/id #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "Let’s Drink", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "261251", :languages (list "en"), :game/name "Let's Drink", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/A2uEWD8yMEdnNMih_DDRNQ__thumb/img/Ix5MpioQ4dnNkvYeu9yUVQwKDCw=/fit-in/200x150/filters:strip_icc()/pic5002036.jpg"}, #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" {:game/id #uuid "4921b8e8-521a-3a27-9aac-936218a067c7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"}), :name "Letter Jam", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "275467", :languages (list "en"), :game/name "Letter Jam", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kBZGJlIqir1I_EVCr2nDbg__thumb/img/mSl669ndQnGcsmKfe0Yppc1XvbI=/fit-in/200x150/filters:strip_icc()/pic4853794.jpg"}, #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" {:game/id #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2988, :name "Stacking and Balancing"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Bild it", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "132497", :languages (list "lift it"), :game/name "Lift it!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Q_R2gkpJwV-oKNey6eeIcQ__thumb/img/BbmMGq1NLQwWJXrsV-mNs98X3zY=/fit-in/200x150/filters:strip_icc()/pic2568580.jpg"}, #uuid "5a156002-5793-338e-9399-def9bfd7eca6" {:game/id #uuid "5a156002-5793-338e-9399-def9bfd7eca6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Ligretto", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "943", :game/name "Ligretto", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BQ6UyXXeivndO4F9Hu8CHw__thumb/img/2dXMh9HI7oiLw7ZGeLcrwfXLtjI=/fit-in/200x150/filters:strip_icc()/pic1306961.jpg"}, #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" {:languages (list "en"), :name "Little Monster who came to tea", :game/id #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3", :game/name "Little Monster who came to tea"}, #uuid "39af5c41-5927-3dde-8a75-10397211dcda" {:game/id #uuid "39af5c41-5927-3dde-8a75-10397211dcda", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Loch Ness", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "77076", :game/name "Loch Ness", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ircfsOW-o8JsIH32Rdb5dg__thumb/img/ZhX_r9YSxxQYWhZ8fnaRw_7EHUo=/fit-in/200x150/filters:strip_icc()/pic775371.jpg"}, #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" {:game/id #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :new true, :name "London", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "65781", :languages (list "en"), :game/name "London", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Wb9zwcnPNX-wSNvVcWYNjQ__thumb/img/XOY71ukn7QV-nwLSV3EmhuO46bM=/fit-in/200x150/filters:strip_icc()/pic770317.jpg"}, #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" {:game/id #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"}), :name "Longhorn", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1055, :name "American West"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1011, :name "Transportation"}), :com.boardgamegeek.boardgame/max-play-time 80, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 80, :com.boardgamegeek.boardgame/id "22460", :languages (list "en"), :game/name "Longhorn", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Eaudm6F4BQY8pXe06vle_A__thumb/img/leiaNCoFjDnW3S_1PSShVHu2xbM=/fit-in/200x150/filters:strip_icc()/pic117266.jpg"}, #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" {:languages (list "cz"), :name "Looney Quest", :game/id #uuid "b4f52f37-41db-379b-94e2-3b8911f49401", :game/name "Looney Quest"}, #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" {:game/id #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"}), :name "Looping Louie", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 2650, :name "Aviation / Flight"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1072, :name "Electronic"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "327", :languages (list "en"), :game/name "Loopin' Louie", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/e9CWevSJC03NzLybnCKEVQ__thumb/img/vQZYNWt9xSZez7NCoMB5Lz9yBdY=/fit-in/200x150/filters:strip_icc()/pic4025029.png"}, #uuid "423cb589-88be-336d-ada8-9817b5fe519e" {:game/id #uuid "423cb589-88be-336d-ada8-9817b5fe519e", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Lords of Hellas", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "222509", :languages (list "cz"), :game/name "Lords of Hellas", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iOqSO4vRZFp4MqEKXDXEIw__thumb/img/o7KVJlL45wZxunl0wwwJjqTPl3s=/fit-in/200x150/filters:strip_icc()/pic3592207.jpg"}, #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" {:game/id #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Lost cities board game", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "42487", :game/name "Lost Cities: The Board Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/d-LqrhWAEuIxdEL6DoR2Jg__thumb/img/rI67HKTBZTdqbKaKNiJiowWLWfo=/fit-in/200x150/filters:strip_icc()/pic4597093.jpg"}, #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" {:game/id #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"}), :name "Lost Temple", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "102835", :languages (list "en"), :game/name "Lost Temple", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/YNxToYNXkHIehCztt96sRA__thumb/img/SkLjpQ3lEdyJHuetTe30xED439c=/fit-in/200x150/filters:strip_icc()/pic1045956.jpg"}, #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" {:game/id #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"}), :name "Lux Aeterna", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 12, :com.boardgamegeek.boardgame/max-players 1, :com.boardgamegeek.boardgame/min-play-time 6, :com.boardgamegeek.boardgame/id "282439", :languages (list "en"), :game/name "Lux Aeterna", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/i99laJmQGeZVkKdznB2Ssw__thumb/img/Z24OVjsP3zP12wKHTvuBgfAklNM=/fit-in/200x150/filters:strip_icc()/pic6314128.jpg"}, #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" {:game/id #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"}), :name "Majesty", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "172893", :languages (list "cz"), :game/name "MAJESTY", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/QFUG6olcmjf1HuOuGGsYpw__thumb/img/NcluPj7hQTHfW-ZM404n-u6SGiI=/fit-in/200x150/filters:strip_icc()/pic2401712.png"}, #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" {:game/id #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"}), :name "Crunch", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "65204", :languages (list "en"), :game/name "MASU"}, #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" {:game/id #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2909, :name "Random Production"}), :name "Machi Koro", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "143884", :languages (list "cz" "de"), :game/name "Machi Koro", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/_lI2eUDHfesfe5SswJiFAg__thumb/img/tCTP0XMMmsAfNqzb0iYmp0b-YUc=/fit-in/200x150/filters:strip_icc()/pic4783831.png"}, #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" {:game/id #uuid "47a720fb-24ff-320b-99ab-77739da99a5a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2909, :name "Random Production"}), :name "Machi Koro Bright Lights, Big City", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "205494", :languages (list "en"), :game/name "Machi Koro: Bright Lights, Big City", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/e9Z1IOX7_HwspCzP54prPg__thumb/img/hw04Z1zdSvxIV7REA5pryXVqZas=/fit-in/200x150/filters:strip_icc()/pic3119592.png"}, #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" {:game/id #uuid "227fed4b-25cc-316a-b15e-6c9a064702db", :com.boardgamegeek.boardgame/min-players 6, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Mafia de cuba", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1033, :name "Mafia"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "176558", :languages (list "en"), :game/name "Mafia de Cuba", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nvdogXld5bIr8uXIq2M-uA__thumb/img/j82wTfCvi4Cjq3Pa3aJDLS1nuRw=/fit-in/200x150/filters:strip_icc()/pic2519675.jpg"}, #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" {:game/id #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2057, :name "Chit-Pull System"}), :name "Majority Rules", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1001, :name "Political"}), :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/id "41628", :languages (list "en"), :game/name "Majority Rules", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ynZ--2v9bdc4TIWpAs57_g__thumb/img/Fd32l5WNDYHUNrE6rJ5kSTbYZIo=/fit-in/200x150/filters:strip_icc()/pic4798299.jpg"}, #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" {:game/id #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Mandala", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2991", :languages (list "cz"), :game/name "Mandala", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/XpiNDZqHN4VCKt68223zDw__thumb/img/Ttt1ydAI_wBsVLITRZigSss9S5Q=/fit-in/200x150/filters:strip_icc()/pic372231.jpg"}, #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" {:game/id #uuid "43f3a349-eec8-3b6a-9947-777f90811c90", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Manno monster", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "144416", :languages (list "de"), :game/name "Manno Monster", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1F6vYgRF_j4Z07AbfwjwlQ__thumb/img/WIwHzTE61haoGpogRmYC2vRFaDE=/fit-in/200x150/filters:strip_icc()/pic1708405.jpg"}, #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" {:game/id #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2850, :name "Events"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2851, :name "Narrative Choice / Paragraph"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"} #:com.boardgamegeek.mechanic{:id 2884, :name "Sudden Death Ending"} #:com.boardgamegeek.mechanic{:id 2849, :name "Tech Trees / Tech Tracks"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Maracaibo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "276025", :languages (list "en"), :game/name "Maracaibo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rMNa0k05zMdKgSEp26Q3Tw__thumb/img/lVlnhYyxlZb3WuKZJHLoJcFHEjs=/fit-in/200x150/filters:strip_icc()/pic4917407.jpg"}, #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" {:game/id #uuid "3384a03c-665a-3116-a474-cf5d4406c85a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Marco Polo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1052, :name "Arabian"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1011, :name "Transportation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "2280", :languages (list "cz"), :game/name "Marco Polo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kphUeoUqMXHrVGbSgFEk0w__thumb/img/e8-7eDIBCZysiUW607XANuXfY6E=/fit-in/200x150/filters:strip_icc()/pic20540.jpg"}, #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" {:game/id #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Masquerade", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "8644", :languages (list "cz"), :game/name "Masquerade", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/p1qMG3b0Do2BXkahQhxQhQ__thumb/img/UId86MhgXlzheSSDUMXyYd5vp8I=/fit-in/200x150/filters:strip_icc()/pic1215445.jpg"}, #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" {:game/id #uuid "133c22e7-c259-3256-a323-5b88f0b6a645", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Mayday Mayday", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 2650, :name "Aviation / Flight"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "142924", :languages (list "en"), :game/name "Mayday!Mayday!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Souny15gpklxNkWsZiW9wA__thumb/img/G-dqBFDgzZHi6Oy2iQVP6nXeHOY=/fit-in/200x150/filters:strip_icc()/pic2243928.jpg"}, #uuid "12fd071d-60ce-3146-b555-655882920638" {:languages (list "cz" "en"), :name "McJohnnys", :game/id #uuid "12fd071d-60ce-3146-b555-655882920638", :game/name "McJohnnys"}, #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" {:game/id #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Mea Culpa", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1115, :name "Religious"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "203624", :languages (list "de" "en"), :game/name "Mea Culpa", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/yXU6z6pl-Kkn7KRUpiCKiw__thumb/img/rdeSRR98yXhlvfaprZbPjgTIQTE=/fit-in/200x150/filters:strip_icc()/pic3108106.jpg"}, #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" {:game/id #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Medium", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "242529", :languages (list "en"), :game/name "Medium", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gaiG9Iv8S3G6ppC5AKlNIQ__thumb/img/85q4rpTU8rQy3n0-agc3YUjda4o=/fit-in/200x150/filters:strip_icc()/pic4912833.png"}, #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" {:game/id #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Epix", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "165657", :game/name "Melee", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S4ru-E2eXhpaJBX1WQOxeQ__thumb/img/zLMYjsqpHZkWNtlOVuQlMeHZ48k=/fit-in/200x150/filters:strip_icc()/pic2564896.jpg"}, #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" {:game/id #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2989, :name "Physical Removal"} #:com.boardgamegeek.mechanic{:id 2988, :name "Stacking and Balancing"}), :name "Menara", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "244608", :languages (list "en"), :game/name "Menara", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qRwLtZZDhIT1wPD8qjCEUA__thumb/img/M7GGgc8cAX5AiTfdC8U4AieR6VQ=/fit-in/200x150/filters:strip_icc()/pic3944407.jpg"}, #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" {:game/id #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Mice and Mystics", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "124708", :languages (list "en"), :game/name "Mice and Mystics", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pZFrbWXBzrkxqOotg05D9Q__thumb/img/nrgg_ID3yq1r5dZ6iWe4de3GW6E=/fit-in/200x150/filters:strip_icc()/pic1312072.jpg"}, #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" {:game/id #uuid "79413bfc-7937-3c16-be95-e34d45589ec4", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "MikroMakro Město zločinu", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "318977", :languages (list "cz"), :game/name "MicroMacro: Crime City", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1M-1d6fr3U9t670MCVOTeg__thumb/img/aR9LNVhRr_hnIIoYwxFUTb8rPMk=/fit-in/200x150/filters:strip_icc()/pic5896816.jpg"}, #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" {:game/id #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2813, :name "Rondel"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "MileStones", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "117914", :game/name "Milestones", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/tP2C-DDjV10zGqZFDwXcxA__thumb/img/9Klfq9ORCU3904fVqh9DiJXHDRQ=/fit-in/200x150/filters:strip_icc()/pic1336176.jpg"}, #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" {:game/id #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Mille Bornes", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "590", :languages (list "en"), :game/name "Mille Bornes", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kzLZY_DHTh-hBcqXP34a5w__thumb/img/82b4hCqE8tTLkwexnLrp3ubGU_c=/fit-in/200x150/filters:strip_icc()/pic4330533.jpg"}, #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" {:game/id #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"}), :name "Mined Out", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-play-time 50, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "212348", :languages (list "en"), :game/name "Mined Out!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/k33VoKTDM-E5iIMwv6flxA__thumb/img/buyKl6WQgvzisWu_k7djrizjqew=/fit-in/200x150/filters:strip_icc()/pic3267967.jpg"}, #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" {:game/id #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "Mmm…", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "172507", :languages (list "cz"), :game/name "Mmm!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/V_nDKd8bFLwCu4ttyuWJrg__thumb/img/Djv6DavegF7YoX7YrwZlgHr1mgY=/fit-in/200x150/filters:strip_icc()/pic2498158.jpg"}, #uuid "5e04b28e-010d-366b-af9d-020474ee6392" {:game/id #uuid "5e04b28e-010d-366b-af9d-020474ee6392", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 3001, :name "Layering"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2826, :name "Turn Order: Stat-Based"}), :new true, :name "Mobile Markets", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"}), :com.boardgamegeek.boardgame/max-play-time 80, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "344768", :languages (list "en"), :game/name "Mobile Markets: A Smartphone Inc. Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/SW5qyUXKriiJ8ynLX0j6Aw__thumb/img/5nCK4Q83jNIS_oc_SV0mLE8U7z4=/fit-in/200x150/filters:strip_icc()/pic6364797.jpg"}, #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" {:game/id #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2910, :name "Investment"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"} #:com.boardgamegeek.mechanic{:id 2829, :name "Turn Order: Claim Action"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Mombasa", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "172386", :languages (list "cz"), :game/name "Mombasa", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/VceWk5QVkgIp6rWDl5qHKQ__thumb/img/_4ZkvkgZey9R2OJOw_TqF426Qew=/fit-in/200x150/filters:strip_icc()/pic2611318.jpg"}, #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" {:game/id #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2904, :name "Loans"} #:com.boardgamegeek.mechanic{:id 2836, :name "Lose a Turn"} #:com.boardgamegeek.mechanic{:id 2911, :name "Ownership"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Monopoly", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "1406", :game/name "Monopoly", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/9nGoBZ0MRbi6rdH47sj2Qg__thumb/img/ezXcyEsHhS9iRxmuGe8SmiLLXlM=/fit-in/200x150/filters:strip_icc()/pic5786795.jpg"}, #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" {:game/id #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Monopoly Cheaters Edition", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "254617", :game/name "Monopoly Cheaters Edition", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/78dZB2GPUrjMXQyOnqZ65Q__thumb/img/mOJbxy0j7TRHx4epykdoyKNDEOA=/fit-in/200x150/filters:strip_icc()/pic4187117.jpg"}, #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" {:name "Monopoly Here & Now World Edition", :game/id #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c", :game/name "Monopoly Here & Now World Edition"}, #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" {:game/id #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Monopoly Jackpot", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "201890", :game/name "Monopoly Jackpot", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/30x4ifcezQlEXStSK3vSRg__thumb/img/GmvSu2Qd5T1r6JZRj73DgBOQcsY=/fit-in/200x150/filters:strip_icc()/pic3262276.jpg"}, #uuid "f8049db2-d889-3677-984e-4e2ce41de578" {:game/id #uuid "f8049db2-d889-3677-984e-4e2ce41de578", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Monopoly 80th Anniversary Edition", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "173637", :game/name "Monopoly: 80th Anniversary Edition", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/IiL8FBqK_BcuikjRZKezIQ__thumb/img/Dy7RlFc6nDFo5Re95Rkci6-lfNI=/fit-in/200x150/filters:strip_icc()/pic2427080.jpg"}, #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" {:game/id #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Monopoly Limerick Edition", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 120, :com.boardgamegeek.boardgame/id "300801", :game/name "Monopoly: Limerick Edition", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/8ILfC2W174MxPrA2wfaifw__thumb/img/ZntaNB4_2mPPc6fibqDq2vhVaaY=/fit-in/200x150/filters:strip_icc()/pic5216777.jpg"}, #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" {:game/id #uuid "b17747c8-2344-37e0-af25-4c86481d8b35", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Monopoly Ultimate Banking", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1072, :name "Electronic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "207167", :game/name "Monopoly: Ultimate Banking", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/tCcB6q7RjB-LcszCG1TCfQ__thumb/img/Dw1stW35naEWBlMLHVG8h_P0HJU=/fit-in/200x150/filters:strip_icc()/pic3188674.jpg"}, #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" {:game/id #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2018, :name "Campaign / Battle Card Driven"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "Monstrous", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "164775", :languages (list "en"), :game/name "Monstrous", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eF724u6DJlXUFnc3hBKrGQ__thumb/img/y_SRAOIaniPmZBiQ59OYNRJYOec=/fit-in/200x150/filters:strip_icc()/pic3297444.jpg"}, #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" {:game/id #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Monstrum", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/id "127426", :languages (list "cz"), :game/name "Monstrum", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CV7xiLrZo8rHdjD8yBVbvw__thumb/img/z3I-welI7QeetRLaOzYAD90_YV4=/fit-in/200x150/filters:strip_icc()/pic1365924.jpg"}, #uuid "4578b280-9265-3868-8670-e39b70b610f9" {:game/id #uuid "4578b280-9265-3868-8670-e39b70b610f9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :new true, :name "Moon Adventure", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "330403", :languages (list "en"), :game/name "Moon Adventure", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NkIgyVpeeoKW7i1t5M6YlA__thumb/img/91dTtDOrH-b2bRvWthjQu8ioMiM=/fit-in/200x150/filters:strip_icc()/pic6388850.png"}, #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" {:game/id #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "MoonQuake Escape", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "175516", :languages (list "en"), :game/name "MoonQuake Escape", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S48n6sA2U93zwrKDdXKkfw__thumb/img/w1IrqbOXxzyjc99CRxea_dQCRfc=/fit-in/200x150/filters:strip_icc()/pic2829035.jpg"}, #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" {:game/id #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2915, :name "Negotiation"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Moral Dilemma", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 20, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "167715", :languages (list "en"), :game/name "Moral Dilemma", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Mooqmdf2jP38oavcfZ5RDg__thumb/img/AZfnJTdnFGCWh78YAUZdE_decKc=/fit-in/200x150/filters:strip_icc()/pic3262426.jpg"}, #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" {:game/id #uuid "3b726f01-748c-32b9-ac65-408fdb259e18", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Mozaika", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1050, :name "Ancient"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "25567", :languages (list "de" "en" "pl"), :game/name "Mozaika", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7VSlBiPWlFGBPm2niiWbCg__thumb/img/im70JKZmGxABdYDJdcATPg9axT4=/fit-in/200x150/filters:strip_icc()/pic344437.jpg"}, #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" {:game/id #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf", :com.boardgamegeek.boardgame/min-players 3, :name "Mr. Face", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "267945", :languages (list "de" "en" "fr" "it"), :game/name "Mr. Face", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/uBBBtbjmKDGJilb7bn9r8Q__thumb/img/pReg8AZr5HMH4uRg5SRjKrO30-w=/fit-in/200x150/filters:strip_icc()/pic5797033.png"}, #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" {:game/id #uuid "51c249b0-90c8-3a66-8732-f796a82e5382", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2967, :name "Hidden Movement"} #:com.boardgamegeek.mechanic{:id 2961, :name "Map Deformation"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "Mr Jack Pocket", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"} #:com.boardgamegeek.category{:id 2710, :name "Post-Napoleonic"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "72287", :languages (list "en" "fr"), :game/name "Mr. Jack Pocket", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nd44m6n6ykDCsHVt4wcEcQ__thumb/img/wpEJcfEdHyXDW1Kh3xbevgW2JuA=/fit-in/200x150/filters:strip_icc()/pic1519530.jpg"}, #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" {:game/id #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Munchkin", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "1927", :languages (list "cz" "en"), :game/name "Munchkin", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/J-ts3MW0UhDzs621TR6cog__thumb/img/8hVkpMC5pDLr6ARI_4gI4N3aF5M=/fit-in/200x150/filters:strip_icc()/pic1871016.jpg"}, #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" {:game/id #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2866, :name "Targeted Clues"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Muse", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "234396", :languages (list "cz"), :game/name "Muse", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6gDD73LSCMrr7ab1LHCXCg__thumb/img/YmT4zvKoAkhx62AGUdeylS7mQig=/fit-in/200x150/filters:strip_icc()/pic3719954.jpg"}, #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" {:game/id #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Musee", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "163056", :languages (list "en"), :game/name "Musée", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S6dzLYuwDsYvzreZ8UAapg__thumb/img/fjXBTIZGJYt1vCcuHjLjaB3GuLs=/fit-in/200x150/filters:strip_icc()/pic2088837.jpg"}, #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" {:game/id #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "My Booty", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "221083", :languages (list "en"), :game/name "My Booty!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/coC-QGCrRZgx-O73RwTnzQ__thumb/img/33WbZE6k9Ju-LfhygSRmw1JYMgw=/fit-in/200x150/filters:strip_icc()/pic3433568.jpg"}, #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" {:game/id #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2864, :name "Force Commitment"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "My little Scythe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1104, :name "Math"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "226320", :languages (list "en"), :game/name "My Little Scythe", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/EhXCpSR6ambdYuKbrej3UQ__thumb/img/3znFvjc6uN6rossizk5I5eOr4Rk=/fit-in/200x150/filters:strip_icc()/pic4134810.jpg"}, #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" {:game/id #uuid "df4c4520-3102-33f1-9a51-ee304c193f23", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Mystic scrolls", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "198455", :languages (list "en"), :game/name "Mystic ScROLLS", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/9cwjyRGj3SBDeJyO17p2Qw__thumb/img/IZBiEizOIxVgTnXkVbgaxg-wY1g=/fit-in/200x150/filters:strip_icc()/pic3174074.jpg"}, #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" {:game/id #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Mythotopia", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "133632", :languages (list "en"), :game/name "Mythotopia", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Pk-IBl84HBPZWZQgQWkCpQ__thumb/img/a3sfzRClZ7sfj4Jyq6SJ8TdCQto=/fit-in/200x150/filters:strip_icc()/pic2257592.jpg"}, #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" {:game/id #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "New Corp Order", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "232478", :languages (list "en"), :game/name "New Corp Order", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UJL9d_WpRk3jvdEWO5incA__thumb/img/E5cfhNNliCz4XpMXDejzmZ8llRE=/fit-in/200x150/filters:strip_icc()/pic4026118.jpg"}, #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" {:game/id #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2903, :name "Automatic Resource Growth"} #:com.boardgamegeek.mechanic{:id 2978, :name "Grid Coverage"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2813, :name "Rondel"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Zoo New York", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "300877", :languages (list "cz"), :game/name "New York Zoo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/8vqr1uYik715mqDqy0W9vg__thumb/img/Bu97VesRjdbQO2PxfuOrdC6icd8=/fit-in/200x150/filters:strip_icc()/pic5673404.jpg"}, #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" {:game/id #uuid "32c24411-f63e-3a04-8648-0361f80ef58c", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :new true, :name "Nights of Fire: Battle for Budapest", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1069, :name "Modern Warfare"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 3, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "236125", :languages (list "en"), :game/name "Nights of Fire: Battle for Budapest", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iIbtNT3HzZymSB-Sfw5ipw__thumb/img/Go7odgg002xxa3_PjBzGmkCte6g=/fit-in/200x150/filters:strip_icc()/pic3869601.jpg"}, #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" {:game/id #uuid "36f8c047-0a0d-34e8-920b-337b779969ab", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Noctiluca", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "269752", :languages (list "cz"), :game/name "Noctiluca", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qQGBX-BW4SOuQMdm7pjZQg__thumb/img/3Q3aYBEbblKxEUU8HutRqydWcLU=/fit-in/200x150/filters:strip_icc()/pic4766236.jpg"}, #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" {:game/id #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"}), :name "North American Railways", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1034, :name "Trains"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "191438", :languages (list "en"), :game/name "North American Railways", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/EhFHGbpihB7KBNEuDe0bJw__thumb/img/EydatDnC9as4K-Oiel7ujVS8oSk=/fit-in/200x150/filters:strip_icc()/pic3847804.png"}, #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" {:game/id #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Now Boarding", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 2650, :name "Aviation / Flight"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1011, :name "Transportation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "231567", :languages (list "en"), :game/name "Now Boarding", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/yI1Zxy5JAgk7xFWpSqYX7w__thumb/img/0b4G8p3lZJJhtWpLeOetrGDHWdI=/fit-in/200x150/filters:strip_icc()/pic3710609.jpg"}, #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" {:game/id #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "OMG", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "181245", :languages (list "en"), :game/name "OMG", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nLpk3zLehjGSiWo76Oo9Yg__thumb/img/jrztxp2Re5S7ouhTSGyBdxnhjIc=/fit-in/200x150/filters:strip_icc()/pic2605033.jpg"}, #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" {:game/id #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"}), :name "Obscenity", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 16, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "243671", :languages (list "en"), :game/name "Obscenity: A Shameless Adult Party Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ezwhC52nLtbLDWwUYZlSZw__thumb/img/0J0jjINFUJ09Zk6XK4G_mW8SGpA=/fit-in/200x150/filters:strip_icc()/pic4373949.jpg"}, #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" {:game/id #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Octorage", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "279016", :languages (list "de" "en" "fr"), :game/name "Octorage", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/2TESBkMZ8CC9IAjMMwTqtA__thumb/img/9wpesj7ruvzdenelqzrkmRAFS-A=/fit-in/200x150/filters:strip_icc()/pic4715194.png"}, #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" {:game/id #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Boží Zboží", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "183840", :game/name "Oh My Goods!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nYIjEKh_0nYX48uD_tLawA__thumb/img/MCnURatf0lFmNOVLYEjABfN_uVY=/fit-in/200x150/filters:strip_icc()/pic3032677.jpg"}, #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" {:game/id #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Oink", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "5693", :game/name "Oink!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rhYdI6Oimeyfxs3JIGrpYw__thumb/img/0m8qHIbPqKIgAlJuByP3D7vEBq8=/fit-in/200x150/filters:strip_icc()/pic870993.jpg"}, #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" {:game/id #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Okiya", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "125311", :game/name "Okiya", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/a86BdUaCSfIqygVvStXsGQ__thumb/img/jAV9bZYZln9N21DaKOXWRp0e8vA=/fit-in/200x150/filters:strip_icc()/pic3711392.png"}, #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" {:game/id #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Om nom nom", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "147305", :languages (list "en"), :game/name "Om Nom Nom", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/DckIF9e9le75ev9CRNS0_w__thumb/img/0qeLCHolAAG6LGvq9-V0MHrCtTs=/fit-in/200x150/filters:strip_icc()/pic1765949.png"}, #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" {:game/id #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "One Night Revolution", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "176361", :languages (list "en"), :game/name "One Night Revolution", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0SFLHa5hNmtdL0LpqCN2kA__thumb/img/DBscKuzoek17BGUcjPLVgQeoNTc=/fit-in/200x150/filters:strip_icc()/pic2513302.jpg"}, #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" {:game/id #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2892, :name "Roles with Asymmetric Information"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "One night ultimate werewolf", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "147949", :languages (list "en"), :game/name "One Night Ultimate Werewolf", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/KLDb0vR3w8mfaHgIGF0gHw__thumb/img/ZgQsHsvdxXZr4DbMGUBSTArBp3o=/fit-in/200x150/filters:strip_icc()/pic1809823.jpg"}, #uuid "189f9b13-158d-379b-9440-05b9bc24a356" {:game/id #uuid "189f9b13-158d-379b-9440-05b9bc24a356", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "One week ultimate werewolf", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 7, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "252197", :languages (list "en"), :game/name "One Week Ultimate Werewolf", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Aw0CZqg-LgYK5YjVE6HReg__thumb/img/JmdwqeYZC4n1RHpTRwSLJ9kx46c=/fit-in/200x150/filters:strip_icc()/pic4119482.jpg"}, #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" {:game/id #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2946, :name "Pattern Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2861, :name "Static Capture"}), :new true, :name "Onitama", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "160477", :languages (list "en"), :game/name "Onitama", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/FZdihu8SibqQYtwfo77BdQ__thumb/img/3fX3AN6UMOIASL3Qev3zsQ6Uxy8=/fit-in/200x150/filters:strip_icc()/pic5032361.jpg"}, #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" {:languages (list "cz"), :name "Opraski Scenski Historie", :game/id #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f", :game/name "Opraski Scenski Historie"}, #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" {:languages (list "cz"), :name "Original nebo Kopie?", :game/id #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb", :game/name "Original nebo Kopie?"}, #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" {:game/id #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2861, :name "Static Capture"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Clovece nezlob se", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2136", :languages (list "cz"), :game/name "Pachisi", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/45Nb6goQqvPHD9hOut0ntg__thumb/img/ZtUXrh9wko9BQ3QLCMw9mU9Fjpw=/fit-in/200x150/filters:strip_icc()/pic516869.jpg"}, #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" {:languages (list "en"), :name "Pan Am the game", :game/id #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f", :game/name "Pan Am the game"}, #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" {:game/id #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Pandemic", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 2145, :name "Medical"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "30549", :languages (list "cz"), :game/name "Pandemic", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S3ybV1LAp-8SnHIXLLjVqA__thumb/img/oqViRj6nVxK3m36NluTxU1PZkrk=/fit-in/200x150/filters:strip_icc()/pic1534148.jpg"}, #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" {:languages (list "en"), :name "Pandemic Cthulu", :game/id #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d", :game/name "Pandemic Cthulu"}, #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" {:game/id #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "Panic Lab", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "121073", :languages (list "cz"), :game/name "Panic Lab", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/LzsXWOG6ZA6x6TqB5H6F1g__thumb/img/1Mop0yzpQddJj3MF7Q_cC3y-P6Y=/fit-in/200x150/filters:strip_icc()/pic3488252.jpg"}, #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" {:languages (list "cz"), :name "Panic Mansion / Shaky Manor", :game/id #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a", :game/name "Panic Mansion / Shaky Manor"}, #uuid "44de8c27-9942-39ca-997c-57ff932fc882" {:game/id #uuid "44de8c27-9942-39ca-997c-57ff932fc882", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Party Alias", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1031, :name "Racing"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 24, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "43530", :languages (list "cz" "en"), :game/name "Party Alias", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/15IJm-xtFo5DlVC0I_KEVQ__thumb/img/OW1wylQIh-ly_SJY4mnF8TODfEQ=/fit-in/200x150/filters:strip_icc()/pic517373.jpg"}, #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" {:languages (list "en"), :name "Pass Ack Words", :game/id #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6", :game/name "Pass Ack Words"}, #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" {:game/id #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2948, :name "Resource to Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Passing through Petra", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "257966", :languages (list "en"), :game/name "Passing Through Petra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/q1cUKr4tuljXipsdemYUAw__thumb/img/Z1R49jE15RcqNQoUqHcBCg1s2aU=/fit-in/200x150/filters:strip_icc()/pic4257243.png"}, #uuid "33e20383-3807-3414-869c-7a3907d40b75" {:game/id #uuid "33e20383-3807-3414-869c-7a3907d40b75", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2914, :name "Increase Value of Unchosen Resources"} #:com.boardgamegeek.mechanic{:id 2900, :name "Market"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"}), :name "Pax Renaissance", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 2725, :name "Pike and Shot"} #:com.boardgamegeek.category{:id 1115, :name "Religious"} #:com.boardgamegeek.category{:id 1070, :name "Renaissance"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "198953", :languages (list "en"), :game/name "Pax Renaissance", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gIHITIenJOCIsO_vQNEE0w__thumb/img/68iODGupr7JuYEYiDofNJzxgEzM=/fit-in/200x150/filters:strip_icc()/pic3009233.jpg"}, #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" {:game/id #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2987, :name "Hidden Victory Points"} #:com.boardgamegeek.mechanic{:id 2900, :name "Market"} #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2884, :name "Sudden Death Ending"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Pax: Transhumanity", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "257732", :languages (list "en"), :game/name "Pax Transhumanity", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ByCgA7w4DMC1eKvUD-XajA__thumb/img/JflRs575_Lh-Tv1srmxKSrx91wU=/fit-in/200x150/filters:strip_icc()/pic6256870.png"}, #uuid "f750d160-d009-3c96-a630-eff035abfd6c" {:game/id #uuid "f750d160-d009-3c96-a630-eff035abfd6c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Peanut club", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "254846", :languages (list "en" "fr"), :game/name "Peanut Club", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/78_kYPImvhOVARKfNtEnSA__thumb/img/snNlushutBIx-VCwYt-zzQlHos8=/fit-in/200x150/filters:strip_icc()/pic4360500.jpg"}, #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" {:game/id #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Pechvogel", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "257074", :languages (list "de" "en"), :game/name "Pechvogel", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HhomgrTG2FJKqCy4AfRUhQ__thumb/img/N13b1u3XxFvTKu32m4bWtZQ87qQ=/fit-in/200x150/filters:strip_icc()/pic4242837.jpg"}, #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" {:languages (list "cz"), :name "Penguins", :game/id #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143", :game/name "Penguins"}, #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" {:game/id #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2055, :name "Paper-and-Pencil"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Penk", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "255697", :languages (list "en"), :game/name "Penk!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iIbjyUdVK00hELkxyeQDfg__thumb/img/P1ZoTqVtKDO3UIZKkPKyejTIyxs=/fit-in/200x150/filters:strip_icc()/pic4206098.png"}, #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" {:game/id #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Personally Incorrect", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "140840", :languages (list "en"), :game/name "Personally Incorrect", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/FBctEY9fJtIrk4hqbwhg2A__thumb/img/roixdL_YFGr5s0ati2grORqEagk=/fit-in/200x150/filters:strip_icc()/pic3206168.png"}, #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" {:languages (list "en"), :name "Pick & Pack", :game/id #uuid "edfa15bc-3235-3696-aaad-09e432fc6662", :game/name "Pick & Pack"}, #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" {:game/id #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2039, :name "Line Drawing"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Pictures", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "98026", :languages (list "en"), :game/name "Pictures", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/2ksVi_M5sLws57Y5dmZVOA__thumb/img/Ytcky0xrJF3bHzfIWmhZolI97RQ=/fit-in/200x150/filters:strip_icc()/pic991829.jpg"}, #uuid "f81386ae-7767-3f93-a560-c78df55109bb" {:game/id #uuid "f81386ae-7767-3f93-a560-c78df55109bb", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Piratske Kostky", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "117663", :languages (list "cz"), :game/name "Piraten kapern", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ASvNr8Z7n4uuXiIeKTCpjA__thumb/img/yFj9eUDNMh0UrCugHmxPouZoaM8=/fit-in/200x150/filters:strip_icc()/pic5755894.jpg"}, #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" {:game/id #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Pocket Madness", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1024, :name "Horror"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "201920", :languages (list "en"), :game/name "Pocket Madness", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6v8uO3HPOV1xMT9HlrUn6A__thumb/img/9ntOmLX333OuntfZ1uXoyyi8Co8=/fit-in/200x150/filters:strip_icc()/pic3171191.png"}, #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" {:game/id #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :new true, :name "Poetry for Neanderthals", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1036, :name "Prehistoric"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "312786", :languages (list "en"), :game/name "Poetry for Neanderthals", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CDlBjXSPT-3Zyrj8ENBkvQ__thumb/img/0ON18UcLepuwPLhwkRtRUjhvAZ8=/fit-in/200x150/filters:strip_icc()/pic5702797.jpg"}, #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" {:game/id #uuid "54b141a9-4bee-378e-b867-fd1d4729f014", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Zbodni Salát", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "274960", :languages (list "cz"), :game/name "Point Salad", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Xy0W9NtEpX0EVjwgxO3IEA__thumb/img/1gKeE2_50dXcL03gH3cEU-Ixj6c=/fit-in/200x150/filters:strip_icc()/pic4621571.png"}, #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" {:game/id #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Ponzi Scheme", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "180899", :languages (list "en"), :game/name "Ponzi Scheme", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/XrXpHvoeiA_cC1Caye1B7Q__thumb/img/z5CKVkv0-T3vFAikANagen7sjwE=/fit-in/200x150/filters:strip_icc()/pic5100985.jpg"}, #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" {:game/id #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "Port Royal", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "565", :languages (list "cz" "en"), :game/name "Port Royal", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/YieNLWVLKMERmrEosQsKOA__thumb/img/Vd8kb9AT204KNdE5GXBBK7JQL7g=/fit-in/200x150/filters:strip_icc()/pic248213.jpg"}, #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" {:languages (list "de" "en"), :name "PowerGrid", :new true, :game/id #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb", :game/name "PowerGrid"}, #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" {:languages (list "en"), :name "Profanity", :game/id #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069", :game/name "Profanity"}, #uuid "f7625727-1129-3703-96c0-442c8ac00dae" {:game/id #uuid "f7625727-1129-3703-96c0-442c8ac00dae", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2838, :name "Action Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2843, :name "Follow"} #:com.boardgamegeek.mechanic{:id 2987, :name "Hidden Victory Points"} #:com.boardgamegeek.mechanic{:id 2914, :name "Increase Value of Unchosen Resources"} #:com.boardgamegeek.mechanic{:id 2828, :name "Turn Order: Progressive"} #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"}), :name "Puerto Rico", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "3076", :languages (list "cz"), :game/name "Puerto Rico", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/QFiIRd2kimaMqTyWsX0aUg__thumb/img/5fLo89ChZH6Wzukk36bhZ-EpBS0=/fit-in/200x150/filters:strip_icc()/pic158548.jpg"}, #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" {:game/id #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"}), :name "QE", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "209136", :languages (list "en"), :game/name "Q.E.", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/taTddHmWN-n7BZbKWsmsKQ__thumb/img/V9sMeg-nlSiTMj4bFviRLBlY50E=/fit-in/200x150/filters:strip_icc()/pic4116760.jpg"}, #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" {:game/id #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "Quoridor", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1059, :name "Maze"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "624", :game/name "Quoridor", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/I1YNAhee09mryaqfEo8MwA__thumb/img/9TJaxgoMUkiMhAGSYM8-0o1ICpg=/fit-in/200x150/filters:strip_icc()/pic3488232.jpg"}, #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" {:name "Quorridor", :game/id #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311", :game/name "Quorridor"}, #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" {:game/id #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Qwirkle", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "25669", :game/name "Qwirkle", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/k7zHj8j_a6uUAtXUt5Fvuw__thumb/img/APPui4zwBuwAIHXSTW6UxYcY6Ow=/fit-in/200x150/filters:strip_icc()/pic309353.jpg"}, #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" {:languages (list "en"), :name "Railroad Ink", :game/id #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183", :game/name "Railroad Ink"}, #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" {:languages (list "en"), :name "Railroad ink", :game/id #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa", :game/name "Railroad ink"}, #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" {:game/id #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Pozvednete Cise", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "202732", :languages (list "cz"), :game/name "Raise Your Goblets", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/M-QMEFRd2LkfyiXt6YFbwg__thumb/img/p4xMVTX4wWReahsdAE7hMgeP6uk=/fit-in/200x150/filters:strip_icc()/pic3132188.jpg"}, #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" {:game/id #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Realm of Wonder", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "162580", :game/name "Realm of Wonder", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/e0pz2fI8Hr8DGKcDskSwbQ__thumb/img/v1T8ZkbbCbLw8o3KQXhNEaUxebY=/fit-in/200x150/filters:strip_icc()/pic2204281.jpg"}, #uuid "c64e760d-cd41-31b1-9626-a196593146fa" {:game/id #uuid "c64e760d-cd41-31b1-9626-a196593146fa", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Red 7", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "161417", :languages (list "cz"), :game/name "Red7", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7zH6Kt5ebWEixjDGmHweNA__thumb/img/PVkJyJhCtzo1ZwKO4iuRaqUyKJc=/fit-in/200x150/filters:strip_icc()/pic2247258.png"}, #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" {:game/id #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Hledá se Hrdina", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "135116", :languages (list "cz"), :game/name "Rent a Hero", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pnhx0DJsrkz1VfDU7c3Wtg__thumb/img/y1ksV-fuU5rQWuv4wzZEz_KolZs=/fit-in/200x150/filters:strip_icc()/pic2932852.jpg"}, #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" {:game/id #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :new true, :name "Rest in Peace", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "319680", :languages (list "en"), :game/name "Rest In Peace", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/jD77V4uV2mSG96tX8Ur0yQ__thumb/img/hOcvflu7DypGuySG4F_39c-NivE=/fit-in/200x150/filters:strip_icc()/pic5663592.jpg"}, #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" {:game/id #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2", :com.boardgamegeek.boardgame/min-players 2, :name "Revolution", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1069, :name "Modern Warfare"}), :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/id "38118", :languages (list "de"), :game/name "Revolution", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/piMBdZjr9l82WAJuRwmLHg__thumb/img/bBfNJcCvAJWnQPfP4hgbJSyo9xM=/fit-in/200x150/filters:strip_icc()/pic1448389.jpg"}, #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" {:languages (list "en"), :name "Rick & Morty: Totall Rickall", :game/id #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748", :game/name "Rick & Morty: Totall Rickall"}, #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" {:game/id #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Rick and Morty: The Ricks must be Crazy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "241731", :languages (list "en"), :game/name "Rick and Morty: The Ricks Must Be Crazy Multiverse Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/I1fNtBe8tCMt_6qcn6D-EA__thumb/img/WRQIfu_klm9X1XGOU3ssXnHA_fM=/fit-in/200x150/filters:strip_icc()/pic3880225.png"}, #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" {:game/id #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"}), :name "Risk: Game of Thrones", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 240, :com.boardgamegeek.boardgame/max-players 7, :com.boardgamegeek.boardgame/min-play-time 120, :com.boardgamegeek.boardgame/id "179719", :languages (list "en"), :game/name "Risk: Game of Thrones", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UNici3J_3qZIYeEapfaLpg__thumb/img/omzrXKLCEvYqZR8Kf0zeSZbRw3g=/fit-in/200x150/filters:strip_icc()/pic2568573.jpg"}, #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" {:game/id #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Robinson Crusoe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "51319", :languages (list "cz"), :game/name "Robinson Crusoe", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5i7RNi6o-1THM0zPKE3obg__thumb/img/vL7T-0G-KxMNZQg-uWTNEOOnPkE=/fit-in/200x150/filters:strip_icc()/pic528291.jpg"}, #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" {:languages (list "en"), :name "Rock, Paper, Wizard", :game/id #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf", :game/name "Rock, Paper, Wizard"}, #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" {:game/id #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"}), :name "Rolit", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "8243", :languages (list "en"), :game/name "Rolit", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wymI6qRpGHF-hD1Y34QbkA__thumb/img/6dj4-736Cf1IgqnR_PgTkvQTe5s=/fit-in/200x150/filters:strip_icc()/pic336560.jpg"}, #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" {:game/id #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2839, :name "Action Retrieval"} #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2843, :name "Follow"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Roll for the Galaxy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "132531", :languages (list "en"), :game/name "Roll for the Galaxy", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nhoyoLpYPC2b3UiJ5kJ0yg__thumb/img/KVmexHT6N_fquB1CQl9QRNYCvD0=/fit-in/200x150/filters:strip_icc()/pic1473629.jpg"}, #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" {:languages (list "en"), :name "Rome & Carthrage", :game/id #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f", :game/name "Rome & Carthrage"}, #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" {:game/id #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Royals", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "154495", :game/name "Royals", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6HtTciyZmT8d_RnDlIOlAg__thumb/img/0dDXrkV7wcVHdzbHuZtf-SC21NM=/fit-in/200x150/filters:strip_icc()/pic1917555.png"}, #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" {:game/id #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "Sabotage", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "1142", :languages (list "en"), :game/name "Sabotage", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/t0qDsOOT4Yb8XPBLI3c4TA__thumb/img/l-xrZRw-_tORXb9LfkeWLY4a_Z4=/fit-in/200x150/filters:strip_icc()/pic301507.jpg"}, #uuid "af817d47-9021-3806-800d-7ef8dab08024" {:game/id #uuid "af817d47-9021-3806-800d-7ef8dab08024", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2959, :name "Map Addition"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"}), :name "Saboteur", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "9220", :game/name "Saboteur", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0vJwP6NGa7GHPZKC3gplUw__thumb/img/B3j-is62fP09eHP34uFG_gsxNQs=/fit-in/200x150/filters:strip_icc()/pic3989824.jpg"}, #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" {:game/id #uuid "bb7745e6-fe51-351f-843c-5012bd13d334", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"}), :name "Saboteur: The Duel", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "168215", :languages (list "cz"), :game/name "Saboteur: The Duel", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/2HQMz_qehqPHAsn12h-o4w__thumb/img/BZJsX4-a803QfAn9_uvfx2mj4vE=/fit-in/200x150/filters:strip_icc()/pic3989510.png"}, #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" {:game/id #uuid "1fff84e0-9d09-3677-a846-84f01c21b161", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Salem 1692", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 35, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "175549", :languages (list "en"), :game/name "Salem 1692", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/xUurReSy2Amlx4hGj1fPvQ__thumb/img/IiiUFNDZKGNNDls_AhD0-DE7Ba0=/fit-in/200x150/filters:strip_icc()/pic4204062.jpg"}, #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" {:game/id #uuid "113e202b-52db-3631-b4c4-7027d1edccf5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2948, :name "Resource to Move"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Santiago de Cuba", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "104347", :languages (list "en"), :game/name "Santiago de Cuba", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/v4Rk-agCbbmMNo3vUQ1IcA__thumb/img/470q2hMMP1V-75tKqU7OBh6WzjU=/fit-in/200x150/filters:strip_icc()/pic1918128.jpg"}, #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" {:game/id #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2944, :name "Three Dimensional Movement"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Santorini", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 3, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "9963", :languages (list "en"), :game/name "Santorini", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZjP5gU9SCluEARbZnYtb_A__thumb/img/rEOJAzchz4LrBWvBkQILZQk7Mf4=/fit-in/200x150/filters:strip_icc()/pic42278.jpg"}, #uuid "20b16954-6c66-3536-b816-f13d464da44c" {:game/id #uuid "20b16954-6c66-3536-b816-f13d464da44c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "Sarkophag", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "181955", :languages (list "de"), :game/name "Sarkophag", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wBTmZnUA9cR1Cme1LePceg__thumb/img/7cYYnDb4nLN8EtBpOR9oMvrORyk=/fit-in/200x150/filters:strip_icc()/pic2617439.jpg"}, #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" {:game/id #uuid "abcdf625-6664-306b-88db-9848e46fc0e8", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Say What?", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1072, :name "Electronic"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "32196", :languages (list "en"), :game/name "Say What?", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/LYvG1qBhqJpTq0StWS5_JQ__thumb/img/Dkhr-ZHWQoWmet0EHaOSycgkWL0=/fit-in/200x150/filters:strip_icc()/pic296492.jpg"}, #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" {:game/id #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2055, :name "Paper-and-Pencil"}), :name "Scattergories", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2381", :languages (list "en"), :game/name "Scattergories", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eIL4hvMb7ZPgizc7BZOh-g__thumb/img/sx0XxYqv0FtsIp-RoW-5C42sLOc=/fit-in/200x150/filters:strip_icc()/pic4994410.jpg"}, #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" {:game/id #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Skol ty Skoty!", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "372", :languages (list "cz"), :game/name "Schotten Totten", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/69mwXe7c6HNYmT6S35Y4zg__thumb/img/97DW-2XWDrSSkgy3XnUJ7f7tLiQ=/fit-in/200x150/filters:strip_icc()/pic2932872.jpg"}, #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" {:game/id #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Scopa", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1045, :name "Memory"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "15889", :game/name "Scopa", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CGdqzoYIqmcWmVVnNtbrGw__thumb/img/k6VnPZink59LA3xjUdtZSTmjXzs=/fit-in/200x150/filters:strip_icc()/pic1517475.jpg"}, #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" {:game/id #uuid "645ab7f6-09eb-3401-988d-97cd930668c1", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2967, :name "Hidden Movement"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Scotland Yard", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1097, :name "Travel"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "438", :languages (list "en"), :game/name "Scotland Yard", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NbHZjHmQcA5_TenhVJtJ3w__thumb/img/BfD9cR1-u_qNUNNZ2i4Bg8XKYhg=/fit-in/200x150/filters:strip_icc()/pic4527702.jpg"}, #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" {:game/id #uuid "71e79ef8-0600-3398-990c-febe3b0b758d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"}), :new true, :name "Scout", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1059, :name "Maze"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "26681", :languages (list "en"), :game/name "Scout", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bpbkU9dPYc100p15Su36_g__thumb/img/LVogRviWw8cfogWcE0yJoOY05yg=/fit-in/200x150/filters:strip_icc()/pic200411.jpg"}, #uuid "77933845-adf8-3758-a686-a08ea46f015e" {:game/id #uuid "77933845-adf8-3758-a686-a08ea46f015e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Scrabble", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "320", :languages (list "en"), :game/name "Scrabble", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/mVmmntn2oQd0PfFrWBvwIQ__thumb/img/RUmuGCB40FQH0en0R2nrcsSO7DE=/fit-in/200x150/filters:strip_icc()/pic404651.jpg"}, #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" {:name "Scracker", :game/id #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9", :game/name "Scracker"}, #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" {:game/id #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2838, :name "Action Drafting"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2864, :name "Force Commitment"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2886, :name "King of the Hill"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2851, :name "Narrative Choice / Paragraph"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2849, :name "Tech Trees / Tech Tracks"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2874, :name "Victory Points as a Resource"}), :name "Scythe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 115, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "169786", :game/name "Scythe", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7k_nOxpO9OGIjhLq2BUZdA__thumb/img/eQ69OEDdjYjfKg6q5Navee87skU=/fit-in/200x150/filters:strip_icc()/pic3163924.jpg"}, #uuid "5b444b22-2047-3124-af08-48687f72a6b5" {:game/id #uuid "5b444b22-2047-3124-af08-48687f72a6b5", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Secret Hitler", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "188834", :game/name "Secret Hitler", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rAQ3hIXoH6xDcj41v9iqCg__thumb/img/xA2T7PiwN3Z8pwAksicoCOA1tf0=/fit-in/200x150/filters:strip_icc()/pic5164305.jpg"}, #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" {:name "Settlers of Catan", :game/id #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386", :game/name "Settlers of Catan"}, #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" {:name "Settlers of Catan Jr.", :game/id #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da", :game/name "Settlers of Catan Jr."}, #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" {:languages (list "en"), :name "Sh*t Happens", :game/id #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf", :game/name "Sh*t Happens"}, #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" {:game/id #uuid "7bd8e302-1270-3448-8815-58d1f6da0834", :com.boardgamegeek.boardgame/min-players 2, :name "Sheep dog", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "255609", :languages (list "en"), :game/name "Sheep Dog", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/klhlFwH-ZF6OUUBxXcQ5xQ__thumb/img/9INQR0kOX6NGHmDnVO1XTEEdm_o=/fit-in/200x150/filters:strip_icc()/pic4334235.jpg"}, #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" {:game/id #uuid "07a34867-4397-3448-a7e6-5b70ca021d45", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :new true, :name "Sheepy Time", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "324242", :languages (list "en"), :game/name "Sheepy Time", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eNpXmxU-DynH-5ZkMxwksQ__thumb/img/9RS4gNjaKvgrwXAQHE-iYtMz4sY=/fit-in/200x150/filters:strip_icc()/pic5777745.png"}, #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" {:game/id #uuid "01f7b705-9b33-3897-969b-343e8a6e682e", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2913, :name "Bribery"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2915, :name "Negotiation"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Sheriff of Nottingham", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "157969", :languages (list "en"), :game/name "Sheriff of Nottingham", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BBgLFKUzr6tcKtlIM2JSFw__thumb/img/JD5L_XrtkaKINUj8ILZqFMGcTsE=/fit-in/200x150/filters:strip_icc()/pic2075830.jpg"}, #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" {:game/id #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1", :com.boardgamegeek.boardgame/min-players 2, :new true, :name "Sherlock 13", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "149869", :languages (list "en"), :game/name "Sherlock 13", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qUqySSzXr8QXZbfg8k_M1Q__thumb/img/barvaBLDqZYe282NLmbo_Sg51A4=/fit-in/200x150/filters:strip_icc()/pic5857846.jpg"}, #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" {:languages (list "en"), :name "Sherlock holmes consulting detective", :game/id #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6", :game/name "Sherlock holmes consulting detective"}, #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" {:game/id #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2866, :name "Targeted Clues"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Shifty Eyed Spies", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "232830", :languages (list "en"), :game/name "Shifty Eyed Spies", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/J8GvDIigfMdxT9MoMHR01Q__thumb/img/EWVfiXLL6HFexzDlxXNU_Q386sI=/fit-in/200x150/filters:strip_icc()/pic4372703.jpg"}, #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" {:game/id #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Shuffle Heroes", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1024, :name "Horror"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "177542", :languages (list "en"), :game/name "Shuffle Heroes", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6hK_G51Chsas-ciJjHFLIQ__thumb/img/fUkHaTverNSEjaL3rVwjFXiLRMQ=/fit-in/200x150/filters:strip_icc()/pic2527161.png"}, #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" {:game/id #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Silk", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "255037", :languages (list "en"), :game/name "Silk", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/09W9RVgQH3iczXgNpc4t4A__thumb/img/7Gnu1fAzXwPA83uqNtMtd5fobvo=/fit-in/200x150/filters:strip_icc()/pic4232947.jpg"}, #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" {:game/id #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Skull", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1038, :name "Sports"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "67466", :languages (list "en"), :game/name "Skull", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/4FvrOFxgPqlGmO56WS08dg__thumb/img/-DGFjUF0NHZo-6U4lcmE46utf-E=/fit-in/200x150/filters:strip_icc()/pic744864.jpg"}, #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" {:game/id #uuid "b172271f-a27d-3300-9b46-7f9825f0727e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Sly Dice", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "180599", :languages (list "en"), :game/name "Sly Dice", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/IZb7Sf1s_auwNn3ayfVB2Q__thumb/img/LxewU81q9qZcteJPHyhuegZxgmo=/fit-in/200x150/filters:strip_icc()/pic2653414.png"}, #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" {:game/id #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2932, :name "Auction: Dutch Priority"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2987, :name "Hidden Victory Points"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"} #:com.boardgamegeek.mechanic{:id 2874, :name "Victory Points as a Resource"}), :name "Small world", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 80, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "40692", :languages (list "en"), :game/name "Small World", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/aoPM07XzoceB-RydLh08zA__thumb/img/o3Bw9heVDJRgPYlI_PksCvLAgnM=/fit-in/200x150/filters:strip_icc()/pic428828.jpg"}, #uuid "568da493-2833-3009-ad26-7108e0683081" {:game/id #uuid "568da493-2833-3009-ad26-7108e0683081", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "Desítka", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "241590", :languages (list "cz"), :game/name "Smart10", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pwa0lKfmlE4PvFo-YVxrLQ__thumb/img/4RXK5M7g8_GRW_2HjyLdTjS3_fw=/fit-in/200x150/filters:strip_icc()/pic4945756.jpg"}, #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" {:game/id #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 3004, :name "Deck Construction"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Smash-UP", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 2481, :name "Zombies"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "122522", :languages (list "en"), :game/name "Smash Up", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/c1DOHkXD35OcqfPoxoSXlA__thumb/img/kdzBzdj4prsoztFNEFZ6eWv1RVI=/fit-in/200x150/filters:strip_icc()/pic1269874.jpg"}, #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" {:game/id #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4", :com.boardgamegeek.boardgame/min-players 2, :name "Snake Oil", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/id "19285", :languages (list "en"), :game/name "Snake Oil", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BauWTfEUjkjxdpwtPHMLXQ__thumb/img/SfkJjYEvCG5AQ1tOeZZVFEVfSuA=/fit-in/200x150/filters:strip_icc()/pic88607.jpg"}, #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" {:languages (list "cz"), :name "Sneci Zavody", :game/id #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce", :game/name "Sneci Zavody"}, #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" {:name "Soq", :game/id #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20", :game/name "Soq"}, #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" {:game/id #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "Space Bowl", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 35, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "287580", :languages (list "en"), :game/name "Space Bowl", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/f_VqSLk0LsED8c53A0V6_w__thumb/img/lUi45L_gzordC8q1PAWncdYZSqc=/fit-in/200x150/filters:strip_icc()/pic4919382.jpg"}, #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" {:game/id #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2860, :name "Flicking"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2953, :name "Programmed Movement"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Space Cadets", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "123096", :languages (list "en"), :game/name "Space Cadets", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/YTPL0ZG_8Y4EQfiCXZzvrg__thumb/img/2gOYyhKR6WH8EuemztSCMQvqNbo=/fit-in/200x150/filters:strip_icc()/pic1362404.jpg"}, #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" {:game/id #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :new true, :name "Space Dragons", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "329084", :languages (list "en"), :game/name "Space Dragons", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/47A7oUEpu-qwO988YOTkBA__thumb/img/N6VULco9RdpHfMpXS2Nr9Tc89_4=/fit-in/200x150/filters:strip_icc()/pic5915757.jpg"}, #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" {:game/id #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Spaghetti", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 5, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "60794", :game/name "Spaghetti"}, #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" {:game/id #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2967, :name "Hidden Movement"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2846, :name "Once-Per-Game Abilities"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Specter ops", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "155624", :languages (list "en"), :game/name "Specter Ops", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/lVFArtZrwFEDo23sDcSMEg__thumb/img/pky3rb47HJv8jcNPjV3jbDB7o4c=/fit-in/200x150/filters:strip_icc()/pic2486481.jpg"}, #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" {:game/id #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"}), :name "Speculation", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "1036", :languages (list "en"), :game/name "Speculation", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/DIOqNWsW565yd3hPNun2UQ__thumb/img/8Bu2i8e03TSByVt95QUy4NoIxpQ=/fit-in/200x150/filters:strip_icc()/pic4029529.jpg"}, #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" {:game/id #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Speed Dice", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "191473", :game/name "Speed Dice", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ShmaBebkwhHnhMoi5favDg__thumb/img/o_ZrVDn3s01Pg50FuWNfjYHLkRM=/fit-in/200x150/filters:strip_icc()/pic2834183.jpg"}, #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" {:game/id #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :new true, :name "Spicy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "299169", :languages (list "en"), :game/name "Spicy", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eLJJ7f5I106enEFkSfxmnQ__thumb/img/nyTH5PgSWie1DZMZVJ7tnzEL-hk=/fit-in/200x150/filters:strip_icc()/pic5181748.png"}, #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" {:game/id #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2978, :name "Grid Coverage"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Spring Meadow", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "253684", :languages (list "en"), :game/name "Spring Meadow", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/RyoXSs5ukUtep7WbiWqTLg__thumb/img/Ev9hcbV_yI-PKaRqY8ZZSVLJpPY=/fit-in/200x150/filters:strip_icc()/pic4149719.jpg"}, #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" {:game/id #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Spy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "9201", :languages (list "en"), :game/name "Spy", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5fO7faqykFXDWbcuj0THZQ__thumb/img/mPXjz6iHNP3uyuYzCAA33AETHXo=/fit-in/200x150/filters:strip_icc()/pic38682.jpg"}, #uuid "dee45e08-5103-32ec-93b7-17d391b64576" {:game/id #uuid "dee45e08-5103-32ec-93b7-17d391b64576", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2892, :name "Roles with Asymmetric Information"} #:com.boardgamegeek.mechanic{:id 2866, :name "Targeted Clues"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Spyfall", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "166384", :languages (list "en"), :game/name "Spyfall", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ehx72XRdSeQHISVXcZVnHg__thumb/img/sPJVWjzGcEpiseZGdoD6HNR9nRI=/fit-in/200x150/filters:strip_icc()/pic2453926.jpg"}, #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" {:game/id #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2932, :name "Auction: Dutch Priority"} #:com.boardgamegeek.mechanic{:id 2850, :name "Events"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Spyrium", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "137269", :languages (list "en"), :game/name "Spyrium", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ze4QFonaGDFj9QTapBQYlg__thumb/img/opVobJGfklKTacqs512ty9kq5QE=/fit-in/200x150/filters:strip_icc()/pic1808509.jpg"}, #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" {:game/id #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"}), :name "Squadro", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "245222", :game/name "Squadro", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/WnpSuWccYdjrLDaAqaDCPw__thumb/img/eA6wQK1rtkYLUEk_9Viq940QGpM=/fit-in/200x150/filters:strip_icc()/pic4210130.jpg"}, #uuid "51817160-093d-3773-957a-662779bebec9" {:game/id #uuid "51817160-093d-3773-957a-662779bebec9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Squirrel rush", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "199690", :languages (list "en"), :game/name "Squirrel Rush", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rAh8TQNb6ZIelgmaonDPUQ__thumb/img/q7g0f8h4SWc9dLkbd5A9g7jLAcg=/fit-in/200x150/filters:strip_icc()/pic3018118.jpg"}, #uuid "56be7020-8ac5-312f-9c02-a912103646d9" {:game/id #uuid "56be7020-8ac5-312f-9c02-a912103646d9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Star Flux", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "102104", :languages (list "en"), :game/name "Star Fluxx", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/4rafBr5oDBZVSzN7ije3ZA__thumb/img/Pfr3nT9aYUJC6kEy0PArEeONLpM=/fit-in/200x150/filters:strip_icc()/pic1059779.jpg"}, #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" {:game/id #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Star Trek Fleet Captains", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "79127", :languages (list "en"), :game/name "Star Trek: Fleet Captains", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UqnetX2v84p9ZMpzB8GiDw__thumb/img/2MTCJvG13SbBcF92yo-4wuGuY10=/fit-in/200x150/filters:strip_icc()/pic1081488.jpg"}, #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" {:game/id #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Stay away", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "158392", :languages (list "en"), :game/name "Stay Away!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/oQjTzwZ07k7K32ix42v9vQ__thumb/img/craD998lI9Qp7TYfQS9TrOnif1k=/fit-in/200x150/filters:strip_icc()/pic3494983.png"}, #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" {:game/id #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "Stratego", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1051, :name "Napoleonic"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "1917", :languages (list "en"), :game/name "Stratego", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/O3JZyf9nB_2tGl4jpj8SPw__thumb/img/Yo80CtI2QTxVEXDWvjhkc6iYsMo=/fit-in/200x150/filters:strip_icc()/pic25644.jpg"}, #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" {:game/id #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Osadnici z Katanu Rychla karetni hra", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1029, :name "City Building"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "91534", :languages (list "cz"), :game/name "Struggle for Catan", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/odRECA_s_wJWJnFHovbb0g__thumb/img/CPhroaAPBNta7BCp1M69h8ArEKs=/fit-in/200x150/filters:strip_icc()/pic3063589.jpg"}, #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" {:game/id #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2959, :name "Map Addition"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Sub Terra", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1059, :name "Maze"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "204472", :languages (list "en"), :game/name "Sub Terra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/47Z9FcLD20NDHdRYUaF_XA__thumb/img/I6Uog8mnrK4MgjiQlIMGcrQ01r8=/fit-in/200x150/filters:strip_icc()/pic3904427.png"}, #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" {:languages (list "en"), :name "Subterra", :game/id #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f", :game/name "Subterra"}, #uuid "875b8289-de41-3672-8c92-95b6a689ff43" {:languages (list "en" "pl"), :name "Suits, the", :game/id #uuid "875b8289-de41-3672-8c92-95b6a689ff43", :game/name "Suits, the"}, #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" {:game/id #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Summoner Wars", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "58281", :languages (list "en"), :game/name "Summoner Wars", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/EWi-utp09EIJnwia_o_Taw__thumb/img/vEFkO1QccS2LQpL7fgX7-v1hZhg=/fit-in/200x150/filters:strip_icc()/pic5152378.png"}, #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" {:game/id #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Super Farmer: The Card Game", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "286147", :languages (list "en" "pl"), :game/name "Super Farmer: The Card Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/PAedUfUJ5gW0vtNfGHDVAg__thumb/img/mSf3m6Gb7F5mHCTUJghR52DVMhM=/fit-in/200x150/filters:strip_icc()/pic4966239.png"}, #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" {:languages (list "cz"), :name "SuperSpion / Spyfall", :game/id #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd", :game/name "SuperSpion / Spyfall"}, #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" {:game/id #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Supervillain this galaxy is mine", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "223573", :languages (list "en"), :game/name "Supervillain: This Galaxy Is Mine!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/m6WHe0nNunrTTKwvYJyyFg__thumb/img/ttRdI77V230dCPyC3AlxrNbI_Ms=/fit-in/200x150/filters:strip_icc()/pic3488140.jpg"}, #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" {:game/id #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Sushi Go!", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "133473", :game/name "Sushi Go!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/EPdI2KbLVtpGWLgL_eJLFg__thumb/img/6fDvIObIG-oxTDWNaf8l9mchWMk=/fit-in/200x150/filters:strip_icc()/pic5885690.jpg"}, #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" {:game/id #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Sweet Nose", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1098, :name "Number"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "179548", :languages (list "en"), :game/name "Sweet Nose", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Mxns4HExaB42Rdj0Rm9eag__thumb/img/zQ-ZXDJNtoRvd6FPu98KURcaEJ4=/fit-in/200x150/filters:strip_icc()/pic3052668.jpg"}, #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" {:game/id #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :new true, :name "Swipe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "16807", :languages (list "en"), :game/name "Swipe", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/YFn_ZUqa_ixHhmRCU0lqAQ__thumb/img/pGSfGur3zROciDXpzb-YADiUDlQ=/fit-in/200x150/filters:strip_icc()/pic3782673.png"}, #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" {:game/id #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2962, :name "Move Through Deck"} #:com.boardgamegeek.mechanic{:id 2851, :name "Narrative Choice / Paragraph"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Time Stories", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "146508", :languages (list "cz"), :game/name "T.I.M.E Stories", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/XmwCsjQ3C1Ul53ZN2o8Q-Q__thumb/img/tTU1YVtab-cN5gCdagINowvVA2g=/fit-in/200x150/filters:strip_icc()/pic2617634.png"}, #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" {:game/id #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Trails", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1084, :name "Environmental"} #:com.boardgamegeek.category{:id 1097, :name "Travel"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "338628", :languages (list "en"), :game/name "TRAILS", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/alEgV88cpqFtaHAklI6lbw__thumb/img/Zjwu-ZXktck4EIrVDhMqjLsZmsQ=/fit-in/200x150/filters:strip_icc()/pic6214088.jpg"}, #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" {:game/id #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"}), :new true, :name "Tabannusi: Builders of Ur", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1029, :name "City Building"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 120, :com.boardgamegeek.boardgame/id "316786", :languages (list "en"), :game/name "Tabannusi: Builders of Ur", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0WmXXnvravcDiiQvJum0xA__thumb/img/3x8ADI1ZjsvXVziRdeGFOWLbZJ0=/fit-in/200x150/filters:strip_icc()/pic6428410.jpg"}, #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" {:game/id #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Taboo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "1111", :languages (list "en"), :game/name "Taboo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/e8wVvax1VqQkgCu_AST5Aw__thumb/img/liOKssTUHRIIVYERQgyHSNK33Qk=/fit-in/200x150/filters:strip_icc()/pic212946.jpg"}, #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" {:game/id #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "Taco Cat Goat Cheese Pizza", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "253664", :languages (list "en"), :game/name "Taco Cat Goat Cheese Pizza", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Huss90M3Dw69vZKsl6COaw__thumb/img/FT3OeUFrnFGZXukJbHNX9bcvQvY=/fit-in/200x150/filters:strip_icc()/pic5197313.png"}, #uuid "b8909580-a299-3ec5-848c-548f38510b72" {:game/id #uuid "b8909580-a299-3ec5-848c-548f38510b72", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Tri mala prasatka", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "135649", :languages (list "cz"), :game/name "Tales & Games: The Three Little Pigs", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rdSKRuh85xv6MmHBn9-aUQ__thumb/img/uog0ckrEef5Y140153OlcSn6Dqw=/fit-in/200x150/filters:strip_icc()/pic1701673.jpg"}, #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" {:game/id #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Team up", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"} #:com.boardgamegeek.category{:id 1011, :name "Transportation"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "235511", :languages (list "en"), :game/name "Team UP!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6hqatvV_uhGWebNPWzj4lA__thumb/img/Ja6pyHziaDDIi_2_jRCXUGNKWm0=/fit-in/200x150/filters:strip_icc()/pic3788130.jpg"}, #uuid "6b9a2464-282c-396d-a918-afde2db81cde" {:game/id #uuid "6b9a2464-282c-396d-a918-afde2db81cde", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2003, :name "Rock-Paper-Scissors"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Super Cats", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "279014", :languages (list "en" "fr"), :game/name "Teenage Mutant Ninja Turtles: Turtle Power Card Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bgjK-BduP2X3lgMmz1UjIg__thumb/img/uFUYESFRF06ugeLajX5nY9_rWww=/fit-in/200x150/filters:strip_icc()/pic6480478.jpg"}, #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" {:game/id #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Tension", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "1595", :languages (list "en"), :game/name "Tension", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/OzApxKxeNDjcEsM889qLog__thumb/img/wThBOcdWzhZDF9QAheswm6Go9v0=/fit-in/200x150/filters:strip_icc()/pic363584.jpg"}, #uuid "66437274-239d-371f-a5d1-71102dca56e3" {:languages (list "en"), :name "Tension Master", :game/id #uuid "66437274-239d-371f-a5d1-71102dca56e3", :game/name "Tension Master"}, #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" {:languages (list "cz"), :name "Teraformace Marsu", :game/id #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd", :game/name "Teraformace Marsu"}, #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" {:game/id #uuid "9c557202-449d-3095-b805-89c2e6e0fe50", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"}), :name "Zeme", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "153507", :languages (list "terra"), :game/name "Terra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/oisIhweNPvYGrTounfOr_A__thumb/img/CAOGSfBBkYezI4bVVyAP1fwv1ww=/fit-in/200x150/filters:strip_icc()/pic2566394.jpg"}, #uuid "e154f5ce-d498-3840-a559-661a996d4d09" {:game/id #uuid "e154f5ce-d498-3840-a559-661a996d4d09", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Terra Evolution Tree of life", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 1036, :name "Prehistoric"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "111426", :game/name "Terra Evolution: Tree of Life", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kYK_QyuZLxPCEnYo0VoH9A__thumb/img/iM5YOwWPk2BGRfhb-fRp5gU_cGI=/fit-in/200x150/filters:strip_icc()/pic2621857.jpg"}, #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" {:game/id #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2914, :name "Increase Value of Unchosen Resources"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2849, :name "Tech Trees / Tech Tracks"} #:com.boardgamegeek.mechanic{:id 2830, :name "Turn Order: Pass Order"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"} #:com.boardgamegeek.mechanic{:id 2874, :name "Victory Points as a Resource"}), :name "Terra Mystica", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "120677", :languages (list "cz"), :game/name "Terra Mystica", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bre12I1YiXkZr7elvriz4A__thumb/img/GW-ip0dfeAee7KQqJ04SRZxF1lg=/fit-in/200x150/filters:strip_icc()/pic5375624.jpg"}, #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" {:game/id #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2828, :name "Turn Order: Progressive"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Terraforming Mars", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1084, :name "Environmental"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 120, :com.boardgamegeek.boardgame/id "167791", :languages (list "cz"), :game/name "Terraforming Mars", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wg9oOLcsKvDesSUdZQ4rxw__thumb/img/BTxqxgYay5tHJfVoJ2NF5g43_gA=/fit-in/200x150/filters:strip_icc()/pic3536616.jpg"}, #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" {:game/id #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "Strife", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1055, :name "American West"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "225482", :game/name "Texas Showdown", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1a0gtaIzqd3GSHbOf5gW3w__thumb/img/fFypu_tK6nMkxDMic_v8rKyFwjw=/fit-in/200x150/filters:strip_icc()/pic3914023.jpg"}, #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" {:game/id #uuid "458d2163-a348-30c3-a4ad-8792fa32645c", :com.boardgamegeek.boardgame/min-players 3, :name "To je Otázka!", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "226322", :languages (list "cz"), :game/name "That's a Question!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/MTGTksYC45yzbOB-UJdBTw__thumb/img/Pe10KxKTwYWeK_Ikgu0YJEsDdkk=/fit-in/200x150/filters:strip_icc()/pic3643950.jpg"}, #uuid "8881688f-f717-3852-a5df-d3c7386562d1" {:game/id #uuid "8881688f-f717-3852-a5df-d3c7386562d1", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "The Ancient World", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "147253", :languages (list "en"), :game/name "The Ancient World", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/-trgBZRA5P4kk86FQuuI-A__thumb/img/OMIhsFac59AYy7QyiDbsVgFxQHs=/fit-in/200x150/filters:strip_icc()/pic1951629.jpg"}, #uuid "1bd17795-c173-3c75-9489-8343917b819a" {:game/id #uuid "1bd17795-c173-3c75-9489-8343917b819a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "The Boldest", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "261529", :languages (list "en"), :game/name "The Boldest", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/2igp3-QEN6v2tZm-MwrEPA__thumb/img/l9Z4TQVVnEQomKQUoIqcL8_50eY=/fit-in/200x150/filters:strip_icc()/pic4328782.jpg"}, #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" {:game/id #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2850, :name "Events"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "The Boss", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "7152", :game/name "The Boss", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/dHMkSe5cOAeWRg3wt8nh1A__thumb/img/jqfFM_x3vq7z9B8WlitYmE99dKM=/fit-in/200x150/filters:strip_icc()/pic579157.jpg"}, #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" {:game/id #uuid "595f02eb-d247-3d88-95e4-06800f89e71a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "Odysea Společne k devate planetě", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "284083", :languages (list "cz"), :game/name "The Crew: The Quest for Planet Nine", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/98LnQShydr11OBKS46xY-Q__thumb/img/et-fnuozyOdBOVL-5kSS3_7I8fw=/fit-in/200x150/filters:strip_icc()/pic5687013.jpg"}, #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" {:game/id #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "The Dutch East Indies", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1008, :name "Nautical"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"} #:com.boardgamegeek.category{:id 1011, :name "Transportation"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "216907", :languages (list "en"), :game/name "The Dutch East Indies", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6G4EVaT-g7WNPYHTA0EN7w__thumb/img/PjnIyuxU6v1SXddh0B4LDuKI2JY=/fit-in/200x150/filters:strip_icc()/pic3373286.jpg"}, #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" {:game/id #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2847, :name "Advantage Token"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2884, :name "Sudden Death Ending"} #:com.boardgamegeek.mechanic{:id 2826, :name "Turn Order: Stat-Based"}), :name "The Fog of War", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1049, :name "World War II"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "197439", :languages (list "en"), :game/name "The Fog of War", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/9UBE2IUYwJj0qzK-pF2EAw__thumb/img/Btsp1uK6EpiZe46DOalt_TZeKcI=/fit-in/200x150/filters:strip_icc()/pic3116180.jpg"}, #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" {:game/id #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "Liška Podšitá Duet", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "288169", :languages (list "cz"), :game/name "The Fox in the Forest Duet", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1uTAJoAdG3UC6N0G7UMeTA__thumb/img/SzaN4ejLFyjTbElgZPGGjUtlf6o=/fit-in/200x150/filters:strip_icc()/pic4942502.jpg"}, #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" {:game/id #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"}), :name "The Game of Life", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1072, :name "Electronic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "2921", :languages (list "en"), :game/name "The Game of Life", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/c4S2XDRb_DCYCAV-ZAzDpg__thumb/img/tAejWvDTc-mXjX2euOrJwaXP2Y8=/fit-in/200x150/filters:strip_icc()/pic288405.jpg"}, #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" {:languages (list "cz"), :name "The Godfather", :game/id #uuid "72b0f8c3-5245-35e0-9a66-484200882d79", :game/name "The Godfather"}, #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" {:game/id #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2962, :name "Move Through Deck"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "The Grizzled", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1065, :name "World War I"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "171668", :languages (list "en"), :game/name "The Grizzled", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5JuQCtSAeSZpAL3WgWdwow__thumb/img/XcI-3g0sVumt8DsaMaBGrwftIRw=/fit-in/200x150/filters:strip_icc()/pic3719610.png"}, #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" {:game/id #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2978, :name "Grid Coverage"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2826, :name "Turn Order: Stat-Based"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "The Magnificent", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "283863", :languages (list "en"), :game/name "The Magnificent", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6pci74DWc7U7XuwkfpEu2Q__thumb/img/K-X_5jjTMmesaFzFUoFOZu5p_AU=/fit-in/200x150/filters:strip_icc()/pic4871117.jpg"}, #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" {:game/id #uuid "134c5416-16b9-3118-a547-774f6df7bbcd", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"}), :name "The Mind", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "244992", :languages (list "en"), :game/name "The Mind", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/q_JGK291hrhnhiRB0667oA__thumb/img/PUrzEmTo5kOcK5BOb4cbOOcH86I=/fit-in/200x150/filters:strip_icc()/pic3979766.png"}, #uuid "af472b73-df4f-3397-a8c7-31a328913353" {:game/id #uuid "af472b73-df4f-3397-a8c7-31a328913353", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2885, :name "Finale Ending"} #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2892, :name "Roles with Asymmetric Information"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Avalon: The Resistance", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "128882", :languages (list "en"), :game/name "The Resistance: Avalon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/LPa6rsGcv8S0-OeNjCOAEQ__thumb/img/RKui79VjUbQAzTWaPu44ytupzDs=/fit-in/200x150/filters:strip_icc()/pic1398895.jpg"}, #uuid "5140d848-4910-3017-8f45-c2851658966b" {:game/id #uuid "5140d848-4910-3017-8f45-c2851658966b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "The River", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "257759", :languages (list "en"), :game/name "The River", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZmxO1MJdYqWHsVGuy2elPw__thumb/img/BmmJISWrgSPXfvc8-IEtSgbkwcM=/fit-in/200x150/filters:strip_icc()/pic4283642.png"}, #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" {:game/id #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "The Rose King", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "201", :languages (list "en"), :game/name "The Rose King", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/vfFy_HLiBNLxptwxFDMmDg__thumb/img/CJ8yTQu3kt8o4ZwF5ZbMJWDj564=/fit-in/200x150/filters:strip_icc()/pic2855891.jpg"}, #uuid "ebb89386-c539-37db-b4a7-972b931256f7" {:game/id #uuid "ebb89386-c539-37db-b4a7-972b931256f7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2932, :name "Auction: Dutch Priority"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "The Speicherstadt", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "66505", :languages (list "en"), :game/name "The Speicherstadt", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/x1EVKCtIP_tFTH8h5kvXog__thumb/img/8n5m3ZjWQfD-uwM7hOEyqS_93I4=/fit-in/200x150/filters:strip_icc()/pic686491.jpg"}, #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" {:languages (list "cz"), :name "Through the ages", :game/id #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538", :game/name "Through the ages"}, #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" {:languages (list "en"), :name "Thunder and Lightning", :game/id #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e", :game/name "Thunder and Lightning"}, #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" {:languages (list "en"), :name "Thunderstone Advance", :game/id #uuid "a09707a5-88fc-32fa-b544-8afa929496ab", :game/name "Thunderstone Advance"}, #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" {:game/id #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Ticket to Ride", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1034, :name "Trains"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "9209", :game/name "Ticket to Ride", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZWJg0dCdrWHxVnc0eFXK8w__thumb/img/a9rsFV6KR0aun8GobhRU16aU8Kc=/fit-in/200x150/filters:strip_icc()/pic38668.jpg"}, #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" {:game/id #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2883, :name "Connections"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Ticket to Ride Europe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1034, :name "Trains"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "14996", :languages (list "cz"), :game/name "Ticket to Ride: Europe", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0K1AOciqlMVUWFPLTJSiww__thumb/img/RDvu2FvsYVVH8icp1VsilUlqUGI=/fit-in/200x150/filters:strip_icc()/pic66668.jpg"}, #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" {:game/id #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb", :com.boardgamegeek.boardgame/min-players 2, :name "Time’s up", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1094, :name "Educational"}), :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/id "38579", :languages (list "en"), :game/name "Time's Up", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gDAVfngSgBT84oy3wlm3Rw__thumb/img/vAGevOvjEVquzcQkKWEBDcbK5T4=/fit-in/200x150/filters:strip_icc()/pic376027.jpg"}, #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" {:game/id #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Time’s Up – Rodina", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "88126", :game/name "Time's Up! Family", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/IaRRFgVPFUkhklzt96Z3sA__thumb/img/t3qrVwTjF04gioPupyc7gfnqDis=/fit-in/200x150/filters:strip_icc()/pic903503.jpg"}, #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" {:game/id #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "Timeline", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "683", :languages (list "cz"), :game/name "Timeline", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/xNlnA_NM7ZDKQWqx8WE3Uw__thumb/img/kJOIXrJ87KPJNSqC_niMvA2_JrU=/fit-in/200x150/filters:strip_icc()/pic137941.jpg"}, #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" {:game/id #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2843, :name "Follow"} #:com.boardgamegeek.mechanic{:id 2858, :name "Prisoner's Dilemma"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Malá Velká Království", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "148951", :languages (list "cz"), :game/name "Tiny Epic Kingdoms", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rEBwFqk9b4rT-hrGOQnZrA__thumb/img/nIQB6TR1SMbF1W1Oq4OlhIbnao4=/fit-in/200x150/filters:strip_icc()/pic2947892.jpg"}, #uuid "104965da-ee0b-3867-95a3-0416228b7b19" {:languages (list "cz"), :name "Tipni si Česko", :game/id #uuid "104965da-ee0b-3867-95a3-0416228b7b19", :game/name "Tipni si Česko"}, #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" {:game/id #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2663, :name "Time Track"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Tokaido", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1097, :name "Travel"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "123540", :languages (list "en"), :game/name "Tokaido", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/-sUA2HQNFHBxOdzHE6Ywlg__thumb/img/OW3Jp2snfQM6Aq_nwOrKnHpF2hM=/fit-in/200x150/filters:strip_icc()/pic3747956.png"}, #uuid "39063899-ef80-383a-97b7-38b8c778cc24" {:game/id #uuid "39063899-ef80-383a-97b7-38b8c778cc24", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Tortuga 1667", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 9, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "218530", :languages (list "en"), :game/name "Tortuga 1667", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rT6zVN1zRbEMHok5V_zoGQ__thumb/img/851DsrYg9ei8WsbL77sj5eQMvP0=/fit-in/200x150/filters:strip_icc()/pic3747083.png"}, #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" {:game/id #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df", :com.boardgamegeek.boardgame/min-players 2, :name "Totem", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1015, :name "Civilization"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "471", :languages (list "en"), :game/name "Totem", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/4j_lyl1mtRT7YYmTcd2b9g__thumb/img/RhYKvH1TbL2UbbB8TgULIzmquWI=/fit-in/200x150/filters:strip_icc()/pic75195.jpg"}, #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" {:game/id #uuid "c31af57c-a315-3610-b455-9d5f386f31e0", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Trapwords", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "257527", :languages (list "en"), :game/name "Trapwords", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/aU1dLvPuTgGY0NsFajD9HQ__thumb/img/LKC4wxSMYreK8hbG82sNjUFdDiY=/fit-in/200x150/filters:strip_icc()/pic4327157.jpg"}, #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" {:game/id #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Treasure Island", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "7659", :languages (list "en"), :game/name "Treasure Island", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ow6VaE8Yyn6A_70wvxwZUw__thumb/img/8K7_bIPxeL50ofJO6Gn2xvfG9jY=/fit-in/200x150/filters:strip_icc()/pic31268.jpg"}, #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" {:game/id #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Treasure Lair", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "207845", :languages (list "en"), :game/name "Treasure Lair", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/09gxU5YptdssyaKGcOfRtA__thumb/img/BlVNNRs49cxrpu72Odq9qsXF-qM=/fit-in/200x150/filters:strip_icc()/pic3158785.jpg"}, #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" {:languages (list "en"), :name "Treasures of the Carribean", :game/id #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330", :game/name "Treasures of the Carribean"}, #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" {:game/id #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75", :com.boardgamegeek.boardgame/min-players 2, :name "Tricks and the Phantom", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "242325", :languages (list "de" "en" "fr" "it"), :game/name "Tricks and the Phantom", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/q8EjU4y-sCwxe50KG4BV3Q__thumb/img/3xXe3p2eSu2YJ-qmBVgV9FGKTZU=/fit-in/200x150/filters:strip_icc()/pic5797064.png"}, #uuid "578002db-1bee-32a8-949c-58bece6429a5" {:languages (list "en"), :name "Triviador", :game/id #uuid "578002db-1bee-32a8-949c-58bece6429a5", :game/name "Triviador", :com.boardgamegeek.boardgame/id "135082", :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1027, :name "Trivia"})}, #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2" {:game/id #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2", :com.boardgamegeek.boardgame/min-players 4, :name "Trivial Pursuit", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 99, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "253633", :languages (list "en"), :game/name "Trivial Pursuit: X", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wuSzCspUXnJi5WZMBrcnkg__thumb/img/aHCBnB71-uHP38KVVTdJ6Nsf7jY=/fit-in/200x150/filters:strip_icc()/pic4823899.jpg"}, #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" {:game/id #uuid "64b81638-f97f-36d4-ad33-08e915a1750e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Troika", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1045, :name "Memory"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "102248", :languages (list "en"), :game/name "Troika", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/zqF9ipRqRz-KF1hEhoUhKw__thumb/img/Gi8zTIFzRnJbPYCNps1UAuT2zX0=/fit-in/200x150/filters:strip_icc()/pic1033038.jpg"}, #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" {:game/id #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"}), :new true, :name "Truffle Shuffle", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "23955", :languages (list "en"), :game/name "Truffle Shuffle", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/8AAxaLVwDRy5ThcXJrUn8A__thumb/img/2d0JpBMuwasLIhKJNqLvgEVpUSI=/fit-in/200x150/filters:strip_icc()/pic149490.jpg"}, #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" {:game/id #uuid "aacb653d-e587-34a7-a360-4c3956b4f677", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Tsuro", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "16992", :languages (list "en"), :game/name "Tsuro", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/2V3d4ryhxkS3RoPtDrvpUw__thumb/img/NWgNhoxUIF7Lmj1apRkZQhFL6NU=/fit-in/200x150/filters:strip_icc()/pic875761.jpg"}, #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" {:game/id #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Twist of Fate", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "198059", :languages (list "en"), :game/name "Twist of Fate", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/-FtKCFdQ89CDoGGg3NZTFA__thumb/img/V8ZkI6tf5sqIRp04swz1U6ewcQo=/fit-in/200x150/filters:strip_icc()/pic3281332.jpg"}, #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" {:game/id #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"}), :name "Two Crowns", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "132145", :languages (list "en"), :game/name "Two Crowns", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/F_VS_xKZ31WMaKEUiro9iQ__thumb/img/VPGT_i_iHhQaZM_JjDT7Yvw7BIY=/fit-in/200x150/filters:strip_icc()/pic1750933.png"}, #uuid "91934e02-f64d-3aab-9536-19f592307a91" {:game/id #uuid "91934e02-f64d-3aab-9536-19f592307a91", :com.boardgamegeek.boardgame/min-players 6, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "The Two Khans", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 15, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "286892", :languages (list "en"), :game/name "Two Khans", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rVFSyzpN-7Bfde8s2yLCWA__thumb/img/IZKAVuDzTdU9eOl7CWxiugP6pSE=/fit-in/200x150/filters:strip_icc()/pic4942004.jpg"}, #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" {:languages (list "cz"), :name "T’zolkin", :game/id #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f", :game/name "T’zolkin"}, #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" {:game/id #uuid "7416a104-a4b4-3c68-895e-98e989dce7de", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "Ugo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "139326", :game/name "UGO!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/vLlpTJzPbWSTO1p8v65VQQ__thumb/img/NyZCUFG4ITVIHFaWrcdNsOi3fww=/fit-in/200x150/filters:strip_icc()/pic1823140.png"}, #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" {:game/id #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2836, :name "Lose a Turn"} #:com.boardgamegeek.mechanic{:id 3007, :name "Matching"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Uno", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2223", :languages (list "en"), :game/name "UNO", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/SU-OL7XWn7BOiSYevyTThw__thumb/img/5dxRomuxNxzw01ZYNnIK-f_Ai4o=/fit-in/200x150/filters:strip_icc()/pic981505.jpg"}, #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" {:game/id #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2978, :name "Grid Coverage"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Ubongo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "16986", :languages (list "cz"), :game/name "Ubongo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0wSuQbmk4nPwNytp9_zzPw__thumb/img/2_damZx35g1mE8kgWUpIXoHybW8=/fit-in/200x150/filters:strip_icc()/pic4597123.jpg"}, #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" {:game/id #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e", :com.boardgamegeek.boardgame/min-players 1, :name "Ubongo trigo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "118553", :game/name "Ubongo Trigo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/9_zB31vH27jNJJ1mSN9u4Q__thumb/img/7tsV5bv_FDMvRBUuAQvn6mR119k=/fit-in/200x150/filters:strip_icc()/pic1210953.jpg"}, #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" {:game/id #uuid "7c823c08-2b3e-3613-bf68-fde60227450d", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Ultimate werewolf", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 30, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "152241", :languages (list "en"), :game/name "Ultimate Werewolf", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pbX50vKkFCUBsK8DolVq_w__thumb/img/Q-glOUzREfIQkbMyLE70qmf3R9Q=/fit-in/200x150/filters:strip_icc()/pic1878507.png"}, #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" {:game/id #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"}), :name "Undaunted Normandy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1019, :name "Wargame"} #:com.boardgamegeek.category{:id 1049, :name "World War II"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "268864", :languages (list "en"), :game/name "Undaunted: Normandy", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iCd6hMGDzsQ_UXh00iKsJA__thumb/img/QbOlBm7DZGP2ZBnGZ-YaD-py-UQ=/fit-in/200x150/filters:strip_icc()/pic4602347.jpg"}, #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" {:game/id #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2846, :name "Once-Per-Game Abilities"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2884, :name "Sudden Death Ending"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"} #:com.boardgamegeek.mechanic{:id 2935, :name "Worker Placement with Dice Workers"}), :new true, :name "Under Falling Skies", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 1, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "306735", :languages (list "en"), :game/name "Under Falling Skies", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ecO5eAd3RkctQ0-Tbqv37Q__thumb/img/uxrJLWxvi-f8CGbDpxQBStzvGes=/fit-in/200x150/filters:strip_icc()/pic5428723.jpg"}, #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" {:languages (list "cz"), :name "Unlock", :game/id #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a", :game/name "Unlock"}, #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" {:game/id #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2882, :name "Elapsed Real Time Ending"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"}), :name "Unlock! Escape Adventures", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "213460", :languages (list "cz"), :game/name "Unlock!: Escape Adventures", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/h8K_nTemD6bmydT0akChZw__thumb/img/nKF4nF8Ml5q0E0CYo7qo3Ax_gcE=/fit-in/200x150/filters:strip_icc()/pic3348790.jpg"}, #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" {:game/id #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Unstable Unicorns", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "234190", :languages (list "en"), :game/name "Unstable Unicorns", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/8_5xvpsrrX5JVzO7eBLSgw__thumb/img/fV4UWCHC1ImGFUN7lcJju9K8_zo=/fit-in/200x150/filters:strip_icc()/pic3912914.jpg"}, #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" {:game/id #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Upstream", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1084, :name "Environmental"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "209567", :languages (list "en"), :game/name "Upstream", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Iv_eFbNzMuROy275e2X2pw__thumb/img/9hx4WYZfrvM_EFxaYL2oVpJEBuU=/fit-in/200x150/filters:strip_icc()/pic3674313.png"}, #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" {:game/id #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"}), :name "Valley of the Kings Afterlife", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"} #:com.boardgamegeek.category{:id 1115, :name "Religious"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "175223", :game/name "Valley of the Kings: Afterlife", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/PqoEulSFarx64L6EYMn-qg__thumb/img/cA12z4bxPWLRHGcZ8FduT8kcLGE=/fit-in/200x150/filters:strip_icc()/pic2456554.jpg"}, #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" {:game/id #uuid "e5ce3771-79d2-3202-b053-1561d6d093be", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Vast The Crystal Caverns", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "170416", :languages (list "en"), :game/name "Vast: The Crystal Caverns", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CeXtELC0X1xjwuend_7pTg__thumb/img/FdE8SHtb503f9ZOk_TYyxS-sJQg=/fit-in/200x150/filters:strip_icc()/pic2962290.jpg"}, #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" {:game/id #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2920, :name "Auction: Sealed Bid"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Panovnik", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "157526", :languages (list "viceroy"), :game/name "Viceroy", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/24x3IUxdpizAPxXPOJsypQ__thumb/img/XFKd1GrAgke9M5wwDilZvyGBfDk=/fit-in/200x150/filters:strip_icc()/pic2254354.jpg"}, #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" {:name "Vikings on boards", :game/id #uuid "5c50d320-55f3-337f-b820-3e559968a3f1", :game/name "Vikings on boards"}, #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" {:name "Village inn", :game/id #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44", :game/name "Village inn", :com.boardgamegeek.boardgame/id "136223"}, #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" {:name "Wakanada", :game/id #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae", :game/name "Wakanada"}, #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" {:game/id #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "Walls of York", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "247980", :languages (list "en"), :game/name "Walls of York", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/-mGHT2rgFu4dFezodM38kA__thumb/img/x9TBZ5dZiiPi7q2RfgxOFHipG4c=/fit-in/200x150/filters:strip_icc()/pic4223058.png"}, #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" {:languages (list "en"), :name "Wanna Bet Family challenge", :game/id #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527", :game/name "Wanna Bet Family challenge"}, #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" {:game/id #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "We’re Doomed", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "264806", :languages (list "en"), :game/name "We're Doomed!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NCcmCG2X-ssnAA5kyR386g__thumb/img/vaYBsf0wCFaEhjX-cIwpc1vRHUc=/fit-in/200x150/filters:strip_icc()/pic4420866.jpg"}, #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" {:game/id #uuid "32288419-57f9-3b53-a2df-4b3393930c5a", :com.boardgamegeek.boardgame/min-players 2, :name "Weird things humans search for", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 20, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "254419", :languages (list "en"), :game/name "Weird Things Humans Search For", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/3UUUkiZx5wMr_W9ZmnA1Kg__thumb/img/WQI8ETMLMY6IqZaovZdxE1N04RY=/fit-in/200x150/filters:strip_icc()/pic4206940.jpg"}, #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" {:game/id #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "Vzhuru zpátky do Podzemí", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "195043", :languages (list "cz"), :game/name "Welcome Back to the Dungeon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Tu5hFjeX1-5EwnwjdNTaHg__thumb/img/y8At3p87JcNiUuHTiRIKgUvKOks=/fit-in/200x150/filters:strip_icc()/pic3060124.jpg"}, #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" {:game/id #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2892, :name "Roles with Asymmetric Information"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Werewords", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "219215", :languages (list "en"), :game/name "Werewords", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/4ngyBZXLLKIOdGuUHE7baw__thumb/img/gSGfC0ZMYbOXukqfdBBuxULmyJU=/fit-in/200x150/filters:strip_icc()/pic4415135.jpg"}, #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" {:game/id #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Legendy Západu", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1055, :name "American West"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "232405", :languages (list "cz"), :game/name "Western Legends", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/_FnP28QChh-8uFh6ZvpJhA__thumb/img/iq5peG7h6fe8_-nY_MJkG3QrYCg=/fit-in/200x150/filters:strip_icc()/pic3837503.jpg"}, #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" {:game/id #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"}), :name "Whales Destroying the World", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "256502", :languages (list "cz" "en"), :game/name "Whales Destroying The World", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nwk8uhs8nuGghB5WtVfZ0w__thumb/img/cMCkbF_ICrXxKKJBZpcUNb9lzM0=/fit-in/200x150/filters:strip_icc()/pic4276568.jpg"}, #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" {:game/id #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf", :com.boardgamegeek.boardgame/min-players 2, :name "What came first", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "283363", :languages (list "en"), :game/name "What Came First?", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5bY5HlOzIwyI5SPW1b3JdQ__thumb/img/-oP4DslYzNnxLB48R4snu-WOfeg=/fit-in/200x150/filters:strip_icc()/pic4820669.png"}, #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" {:game/id #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"}), :name "What do you meme", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "132203", :languages (list "en"), :game/name "What Do You Meme?", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/11n5l5NwDkUB40QPlw2yIg__thumb/img/-8i8V-TI5HEsYxRvQ7HVNvg7R1g=/fit-in/200x150/filters:strip_icc()/pic4729721.png"}, #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" {:game/id #uuid "15a92feb-8726-3842-b957-7e7b69421b2c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2991, :name "Speed Matching"}), :new true, :name "The Sound Maker", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "341136", :languages (list "en"), :game/name "What's That Sound?", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/vhwa9AMXqfTqVpY6Z01_2A__thumb/img/_fAl8-tWPSTEPNoHzWNhs2QBwu4=/fit-in/200x150/filters:strip_icc()/pic6416292.jpg"}, #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" {:game/id #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "What’s Up", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1045, :name "Memory"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "201054", :game/name "What's Up", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/lpKc9CfkSyF5qyNfWG8XrA__thumb/img/SsUJzqPEJQ4Lx0K1d7G7o-D1uEQ=/fit-in/200x150/filters:strip_icc()/pic3042240.jpg"}, #uuid "e214a1ce-1929-3835-b502-4510ef89f940" {:languages (list "en"), :name "Who’s the traitor", :game/id #uuid "e214a1ce-1929-3835-b502-4510ef89f940", :game/name "Who’s the traitor"}, #uuid "abe58998-3062-3866-9238-314af7ba0265" {:game/id #uuid "abe58998-3062-3866-9238-314af7ba0265", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"}), :name "Wild Fun West", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1055, :name "American West"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "120781", :game/name "Wild Fun West", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/SBTjRWG6lNHkHULIT13AKA__thumb/img/BJy5bJ4IBj3K0tobl3pIMLWijbo=/fit-in/200x150/filters:strip_icc()/pic1391887.png"}, #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" {:game/id #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "Wilderness", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "108637", :game/name "Wilderness", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ucbjn6fKAxqI43Ba_Yl9_w__thumb/img/dtOnPBhmW9j-UkAFCRkoXjAdchk=/fit-in/200x150/filters:strip_icc()/pic1097184.jpg"}, #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" {:game/id #uuid "e5f11979-9a30-30ec-8084-92dd584b1214", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"}), :name "Na Křídlech", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1094, :name "Educational"}), :com.boardgamegeek.boardgame/max-play-time 70, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "266192", :languages (list "cz"), :game/name "Wingspan", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/yLZJCVLlIx4c7eJEWUNJ7w__thumb/img/VNToqgS2-pOGU6MuvIkMPKn_y-s=/fit-in/200x150/filters:strip_icc()/pic4458123.jpg"}, #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" {:game/id #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2055, :name "Paper-and-Pencil"}), :name "Wits and wagers family", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "66588", :languages (list "en"), :game/name "Wits & Wagers Family", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ScQODaP8QC5mXrRn8qTHOg__thumb/img/_l_W7kLA12ioz0QcaxceZnNHJ1A=/fit-in/200x150/filters:strip_icc()/pic664569.jpg"}, #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" {:languages (list "en"), :name "Wits and Wagers", :game/id #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa", :game/name "Wits and Wagers"}, #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" {:game/id #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "WordQuest", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "39180", :game/name "Wordquest", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UtoR2r81kOMWDZ0xGrSfAA__thumb/img/BRfR57UmJzTqxcN-4-kGN9Qu-qg=/fit-in/200x150/filters:strip_icc()/pic622198.jpg"}, #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" {:game/id #uuid "161dfda2-bf83-3041-ae10-e2410340abd1", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2055, :name "Paper-and-Pencil"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"}), :name "Wordsy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "208480", :languages (list "en"), :game/name "Wordsy", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/uryuyu59_aycdrCXs8I2Tg__thumb/img/1ow1EXgujmByLH69pW1spzfitIc=/fit-in/200x150/filters:strip_icc()/pic3223277.jpg"}, #uuid "3463c066-922f-3864-93bd-b87bb1286679" {:game/id #uuid "3463c066-922f-3864-93bd-b87bb1286679", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Wurfel Bohnanza", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "111148", :languages (list "de"), :game/name "Würfel Bohnanza", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iirbnwkZ755tRj69Q-uWHw__thumb/img/_aACxitODyWc7h1cAKG_c8w9Cjo=/fit-in/200x150/filters:strip_icc()/pic1197852.jpg"}, #uuid "d993f311-557a-391d-ab21-677ab586a01b" {:game/id #uuid "d993f311-557a-391d-ab21-677ab586a01b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Xenon Profiteer", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "176530", :languages (list "en"), :game/name "Xenon Profiteer", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZYukAQrKxJTosyVYmm98aw__thumb/img/BIsI2thXlVPfY30qfyftZCsNnY0=/fit-in/200x150/filters:strip_icc()/pic2537665.jpg"}, #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" {:game/id #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a", :com.boardgamegeek.boardgame/min-players 2, :name "Jak jako jak", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/id "177437", :languages (list "cz"), :game/name "YAK", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6W8_WuKJa3vvIFC2Cg-sPQ__thumb/img/Vk4oKKMkyLpynj5YR22lc5Sfx9E=/fit-in/200x150/filters:strip_icc()/pic2385066.jpg"}, #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" {:game/id #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Yak", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "21877", :game/name "Yak", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HzHXfWLxdZhAV1OVkWG7pA__thumb/img/tUZvD8FZq4STp8HXkjz509ngCtY=/fit-in/200x150/filters:strip_icc()/pic218963.jpg"}, #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" {:game/id #uuid "9cb073d5-2081-32d7-9991-a6077288e01e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "Yeti", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "189294", :game/name "Yeti", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/H7gM0ltr7zeYJjwiQiJMEA__thumb/img/EUMiXkxa6LeNKD9UEpdgJGM0kPo=/fit-in/200x150/filters:strip_icc()/pic2817129.jpg"}, #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" {:game/id #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2003, :name "Rock-Paper-Scissors"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Yomi", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1101, :name "Video Game Theme"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "43022", :game/name "Yomi", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NGxZknC3YvP4Xjn6ro38tQ__thumb/img/0jN0d9qt3YM2DN9MnG1-v6qI2VM=/fit-in/200x150/filters:strip_icc()/pic885442.jpg"}, #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" {:game/id #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2886, :name "King of the Hill"}), :name "Zeus na Uteku", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1104, :name "Math"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "22864", :languages (list "cz"), :game/name "Zeus on the Loose", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/t_7YMa7eh46paqvyi9616Q__thumb/img/dQIaPTQ-_Yjf7z_ahIHy2O8H4CU=/fit-in/200x150/filters:strip_icc()/pic191011.jpg"}, #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" {:game/id #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2828, :name "Turn Order: Progressive"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Zombicide Cerny mor", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 2481, :name "Zombies"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "176189", :languages (list "cz"), :game/name "Zombicide: Black Plague", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kVHuMBxmathfnq42XINBQg__thumb/img/u5Fuj4SwZhXElCO3VmrNKkAeXX4=/fit-in/200x150/filters:strip_icc()/pic2482309.jpg"}, #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" {:game/id #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Zooloretto", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "27588", :languages (list "cz" "de" "en"), :game/name "Zooloretto", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/FF_R0HV6APUKh0IW2w6oqw__thumb/img/GH0Q1trIy2CUCkixCe-b6UpjJoY=/fit-in/200x150/filters:strip_icc()/pic2021685.png"}, #uuid "fab76503-1b94-3d49-8b17-1336fababeec" {:languages (list "cz"), :name "Zámky", :game/id #uuid "fab76503-1b94-3d49-8b17-1336fababeec", :game/name "Zámky"}, #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" {:game/id #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"}), :name "iKnow", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "130680", :languages (list "cz"), :game/name "iKNOW", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/GDCDK9ZaD4AfTYf8FWoVaA__thumb/img/Vd7027iCx6W0QfvuB36TTAmVxcs=/fit-in/200x150/filters:strip_icc()/pic5885668.jpg"}}, :sorting {:game/name [#uuid "49b5473d-32f5-382b-943a-dda4a1491daf" #uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" #uuid "f8283731-6cf2-3086-8140-494037314bf5" #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" #uuid "d496a066-c36e-3570-99d1-9eedec118dee" #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" #uuid "ac19727b-672c-352f-b393-c52a81b055cb" #uuid "109a021a-56f4-3223-ae04-902a1f40db16" #uuid "492b7750-c3e8-3055-a93b-6745391300a6" #uuid "28e54304-62fc-38c9-9b76-058878323d57" #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" #uuid "582d2648-b634-3370-a31e-bef979dab3f3" #uuid "2e89598e-c81e-39d5-bae2-aee451063265" #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" #uuid "a0969dfc-5294-3b41-82bf-220e859197db" #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" #uuid "897ee373-c9e4-32f9-a323-fe188494520b" #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" #uuid "557482bd-c397-30d7-af1b-afbb6c763124" #uuid "414bbf5b-1083-3275-9983-4133937db58b" #uuid "56c98771-eaf0-34fe-8f66-156041739594" #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" #uuid "be01908f-633f-35da-be89-80701db8ed25" #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" #uuid "890488d0-a370-30a4-9788-a44754330b27" #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" #uuid "30c12229-f508-341c-9680-149dbdf88523" #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" #uuid "99102149-c730-3271-a928-b7549ce07a13" #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" #uuid "054f1270-bf79-32f9-825a-96880e800c9f" #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" #uuid "096f6d71-6864-3882-898c-00b9142932e7" #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" #uuid "12218694-0010-31cc-a245-a502b7ed4b19" #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" #uuid "165261a9-0183-3e53-be82-ccc197c354b8" #uuid "a389677b-6118-3815-84fe-c1e75f38984c" #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" #uuid "91a5169d-5877-3642-9a52-54c4f01655da" #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" #uuid "826863b8-1605-33a8-9169-91ebcb89712b" #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" #uuid "434338bc-9501-334b-adbf-2b3752e9e231" #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" #uuid "b4991e13-f466-39b4-be16-56909272f1cc" #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" #uuid "f18187e7-f398-32f0-b73e-625e848d8333" #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" #uuid "2293c663-d1bc-3701-9a53-009f457c6940" #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" #uuid "b1127074-659b-3102-907a-25a0473a3e98" #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" #uuid "938351d5-c89e-32e0-af3b-73d217217b14" #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" #uuid "5a156002-5793-338e-9399-def9bfd7eca6" #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" #uuid "39af5c41-5927-3dde-8a75-10397211dcda" #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" #uuid "423cb589-88be-336d-ada8-9817b5fe519e" #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" #uuid "12fd071d-60ce-3146-b555-655882920638" #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" #uuid "5e04b28e-010d-366b-af9d-020474ee6392" #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" #uuid "f8049db2-d889-3677-984e-4e2ce41de578" #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" #uuid "4578b280-9265-3868-8670-e39b70b610f9" #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" #uuid "189f9b13-158d-379b-9440-05b9bc24a356" #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" #uuid "44de8c27-9942-39ca-997c-57ff932fc882" #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" #uuid "33e20383-3807-3414-869c-7a3907d40b75" #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" #uuid "f750d160-d009-3c96-a630-eff035abfd6c" #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" #uuid "f81386ae-7767-3f93-a560-c78df55109bb" #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" #uuid "f7625727-1129-3703-96c0-442c8ac00dae" #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" #uuid "c64e760d-cd41-31b1-9626-a196593146fa" #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" #uuid "af817d47-9021-3806-800d-7ef8dab08024" #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" #uuid "20b16954-6c66-3536-b816-f13d464da44c" #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" #uuid "77933845-adf8-3758-a686-a08ea46f015e" #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" #uuid "5b444b22-2047-3124-af08-48687f72a6b5" #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" #uuid "568da493-2833-3009-ad26-7108e0683081" #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" #uuid "dee45e08-5103-32ec-93b7-17d391b64576" #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" #uuid "51817160-093d-3773-957a-662779bebec9" #uuid "56be7020-8ac5-312f-9c02-a912103646d9" #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" #uuid "875b8289-de41-3672-8c92-95b6a689ff43" #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" #uuid "b8909580-a299-3ec5-848c-548f38510b72" #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" #uuid "6b9a2464-282c-396d-a918-afde2db81cde" #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" #uuid "66437274-239d-371f-a5d1-71102dca56e3" #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" #uuid "e154f5ce-d498-3840-a559-661a996d4d09" #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" #uuid "8881688f-f717-3852-a5df-d3c7386562d1" #uuid "1bd17795-c173-3c75-9489-8343917b819a" #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" #uuid "af472b73-df4f-3397-a8c7-31a328913353" #uuid "5140d848-4910-3017-8f45-c2851658966b" #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" #uuid "ebb89386-c539-37db-b4a7-972b931256f7" #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" #uuid "104965da-ee0b-3867-95a3-0416228b7b19" #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" #uuid "39063899-ef80-383a-97b7-38b8c778cc24" #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" #uuid "578002db-1bee-32a8-949c-58bece6429a5" #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2" #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" #uuid "91934e02-f64d-3aab-9536-19f592307a91" #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" #uuid "e214a1ce-1929-3835-b502-4510ef89f940" #uuid "abe58998-3062-3866-9238-314af7ba0265" #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" #uuid "3463c066-922f-3864-93bd-b87bb1286679" #uuid "d993f311-557a-391d-ab21-677ab586a01b" #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" #uuid "fab76503-1b94-3d49-8b17-1336fababeec"], :com.boardgamegeek.boardgame/min-players [#uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" #uuid "56c98771-eaf0-34fe-8f66-156041739594" #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" #uuid "938351d5-c89e-32e0-af3b-73d217217b14" #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" #uuid "12fd071d-60ce-3146-b555-655882920638" #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" #uuid "875b8289-de41-3672-8c92-95b6a689ff43" #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" #uuid "66437274-239d-371f-a5d1-71102dca56e3" #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" #uuid "104965da-ee0b-3867-95a3-0416228b7b19" #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" #uuid "e214a1ce-1929-3835-b502-4510ef89f940" #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" #uuid "fab76503-1b94-3d49-8b17-1336fababeec" #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" #uuid "28e54304-62fc-38c9-9b76-058878323d57" #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" #uuid "557482bd-c397-30d7-af1b-afbb6c763124" #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" #uuid "096f6d71-6864-3882-898c-00b9142932e7" #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" #uuid "423cb589-88be-336d-ada8-9817b5fe519e" #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" #uuid "5e04b28e-010d-366b-af9d-020474ee6392" #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" #uuid "49b5473d-32f5-382b-943a-dda4a1491daf" #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" #uuid "f8283731-6cf2-3086-8140-494037314bf5" #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" #uuid "d496a066-c36e-3570-99d1-9eedec118dee" #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" #uuid "109a021a-56f4-3223-ae04-902a1f40db16" #uuid "492b7750-c3e8-3055-a93b-6745391300a6" #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" #uuid "582d2648-b634-3370-a31e-bef979dab3f3" #uuid "2e89598e-c81e-39d5-bae2-aee451063265" #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" #uuid "a0969dfc-5294-3b41-82bf-220e859197db" #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" #uuid "414bbf5b-1083-3275-9983-4133937db58b" #uuid "be01908f-633f-35da-be89-80701db8ed25" #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" #uuid "890488d0-a370-30a4-9788-a44754330b27" #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" #uuid "30c12229-f508-341c-9680-149dbdf88523" #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" #uuid "99102149-c730-3271-a928-b7549ce07a13" #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" #uuid "054f1270-bf79-32f9-825a-96880e800c9f" #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" #uuid "12218694-0010-31cc-a245-a502b7ed4b19" #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" #uuid "165261a9-0183-3e53-be82-ccc197c354b8" #uuid "a389677b-6118-3815-84fe-c1e75f38984c" #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" #uuid "91a5169d-5877-3642-9a52-54c4f01655da" #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" #uuid "826863b8-1605-33a8-9169-91ebcb89712b" #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" #uuid "434338bc-9501-334b-adbf-2b3752e9e231" #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" #uuid "b4991e13-f466-39b4-be16-56909272f1cc" #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" #uuid "f18187e7-f398-32f0-b73e-625e848d8333" #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" #uuid "2293c663-d1bc-3701-9a53-009f457c6940" #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" #uuid "b1127074-659b-3102-907a-25a0473a3e98" #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" #uuid "5a156002-5793-338e-9399-def9bfd7eca6" #uuid "39af5c41-5927-3dde-8a75-10397211dcda" #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" #uuid "f8049db2-d889-3677-984e-4e2ce41de578" #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" #uuid "4578b280-9265-3868-8670-e39b70b610f9" #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" #uuid "33e20383-3807-3414-869c-7a3907d40b75" #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" #uuid "f81386ae-7767-3f93-a560-c78df55109bb" #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" #uuid "c64e760d-cd41-31b1-9626-a196593146fa" #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" #uuid "77933845-adf8-3758-a686-a08ea46f015e" #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" #uuid "568da493-2833-3009-ad26-7108e0683081" #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" #uuid "51817160-093d-3773-957a-662779bebec9" #uuid "56be7020-8ac5-312f-9c02-a912103646d9" #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" #uuid "b8909580-a299-3ec5-848c-548f38510b72" #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" #uuid "e154f5ce-d498-3840-a559-661a996d4d09" #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" #uuid "8881688f-f717-3852-a5df-d3c7386562d1" #uuid "1bd17795-c173-3c75-9489-8343917b819a" #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" #uuid "5140d848-4910-3017-8f45-c2851658966b" #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" #uuid "ebb89386-c539-37db-b4a7-972b931256f7" #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" #uuid "39063899-ef80-383a-97b7-38b8c778cc24" #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" #uuid "578002db-1bee-32a8-949c-58bece6429a5" #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" #uuid "3463c066-922f-3864-93bd-b87bb1286679" #uuid "d993f311-557a-391d-ab21-677ab586a01b" #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" #uuid "897ee373-c9e4-32f9-a323-fe188494520b" #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" #uuid "189f9b13-158d-379b-9440-05b9bc24a356" #uuid "f750d160-d009-3c96-a630-eff035abfd6c" #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" #uuid "f7625727-1129-3703-96c0-442c8ac00dae" #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" #uuid "af817d47-9021-3806-800d-7ef8dab08024" #uuid "20b16954-6c66-3536-b816-f13d464da44c" #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" #uuid "dee45e08-5103-32ec-93b7-17d391b64576" #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" #uuid "6b9a2464-282c-396d-a918-afde2db81cde" #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" #uuid "ac19727b-672c-352f-b393-c52a81b055cb" #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" #uuid "44de8c27-9942-39ca-997c-57ff932fc882" #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2" #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" #uuid "abe58998-3062-3866-9238-314af7ba0265" #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" #uuid "5b444b22-2047-3124-af08-48687f72a6b5" #uuid "af472b73-df4f-3397-a8c7-31a328913353" #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" #uuid "91934e02-f64d-3aab-9536-19f592307a91"], :com.boardgamegeek.boardgame/max-players [#uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" #uuid "56c98771-eaf0-34fe-8f66-156041739594" #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" #uuid "938351d5-c89e-32e0-af3b-73d217217b14" #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" #uuid "12fd071d-60ce-3146-b555-655882920638" #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" #uuid "875b8289-de41-3672-8c92-95b6a689ff43" #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" #uuid "66437274-239d-371f-a5d1-71102dca56e3" #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" #uuid "104965da-ee0b-3867-95a3-0416228b7b19" #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" #uuid "e214a1ce-1929-3835-b502-4510ef89f940" #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" #uuid "fab76503-1b94-3d49-8b17-1336fababeec" #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" #uuid "2e89598e-c81e-39d5-bae2-aee451063265" #uuid "30c12229-f508-341c-9680-149dbdf88523" #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" #uuid "434338bc-9501-334b-adbf-2b3752e9e231" #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" #uuid "49b5473d-32f5-382b-943a-dda4a1491daf" #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" #uuid "f8283731-6cf2-3086-8140-494037314bf5" #uuid "d496a066-c36e-3570-99d1-9eedec118dee" #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" #uuid "109a021a-56f4-3223-ae04-902a1f40db16" #uuid "492b7750-c3e8-3055-a93b-6745391300a6" #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" #uuid "582d2648-b634-3370-a31e-bef979dab3f3" #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" #uuid "557482bd-c397-30d7-af1b-afbb6c763124" #uuid "414bbf5b-1083-3275-9983-4133937db58b" #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" #uuid "99102149-c730-3271-a928-b7549ce07a13" #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" #uuid "054f1270-bf79-32f9-825a-96880e800c9f" #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" #uuid "096f6d71-6864-3882-898c-00b9142932e7" #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" #uuid "91a5169d-5877-3642-9a52-54c4f01655da" #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" #uuid "826863b8-1605-33a8-9169-91ebcb89712b" #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" #uuid "f18187e7-f398-32f0-b73e-625e848d8333" #uuid "2293c663-d1bc-3701-9a53-009f457c6940" #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" #uuid "b1127074-659b-3102-907a-25a0473a3e98" #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" #uuid "5a156002-5793-338e-9399-def9bfd7eca6" #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" #uuid "423cb589-88be-336d-ada8-9817b5fe519e" #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" #uuid "5e04b28e-010d-366b-af9d-020474ee6392" #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" #uuid "33e20383-3807-3414-869c-7a3907d40b75" #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" #uuid "c64e760d-cd41-31b1-9626-a196593146fa" #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" #uuid "77933845-adf8-3758-a686-a08ea46f015e" #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" #uuid "8881688f-f717-3852-a5df-d3c7386562d1" #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" #uuid "5140d848-4910-3017-8f45-c2851658966b" #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" #uuid "d993f311-557a-391d-ab21-677ab586a01b" #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" #uuid "a0969dfc-5294-3b41-82bf-220e859197db" #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" #uuid "897ee373-c9e4-32f9-a323-fe188494520b" #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" #uuid "890488d0-a370-30a4-9788-a44754330b27" #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" #uuid "165261a9-0183-3e53-be82-ccc197c354b8" #uuid "a389677b-6118-3815-84fe-c1e75f38984c" #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" #uuid "39af5c41-5927-3dde-8a75-10397211dcda" #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" #uuid "4578b280-9265-3868-8670-e39b70b610f9" #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" #uuid "f81386ae-7767-3f93-a560-c78df55109bb" #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" #uuid "f7625727-1129-3703-96c0-442c8ac00dae" #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" #uuid "b8909580-a299-3ec5-848c-548f38510b72" #uuid "e154f5ce-d498-3840-a559-661a996d4d09" #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" #uuid "1bd17795-c173-3c75-9489-8343917b819a" #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" #uuid "ebb89386-c539-37db-b4a7-972b931256f7" #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" #uuid "3463c066-922f-3864-93bd-b87bb1286679" #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" #uuid "12218694-0010-31cc-a245-a502b7ed4b19" #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" #uuid "f750d160-d009-3c96-a630-eff035abfd6c" #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" #uuid "20b16954-6c66-3536-b816-f13d464da44c" #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" #uuid "51817160-093d-3773-957a-662779bebec9" #uuid "56be7020-8ac5-312f-9c02-a912103646d9" #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" #uuid "6b9a2464-282c-396d-a918-afde2db81cde" #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" #uuid "189f9b13-158d-379b-9440-05b9bc24a356" #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" #uuid "28e54304-62fc-38c9-9b76-058878323d57" #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" #uuid "be01908f-633f-35da-be89-80701db8ed25" #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" #uuid "b4991e13-f466-39b4-be16-56909272f1cc" #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" #uuid "f8049db2-d889-3677-984e-4e2ce41de578" #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" #uuid "568da493-2833-3009-ad26-7108e0683081" #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" #uuid "dee45e08-5103-32ec-93b7-17d391b64576" #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" #uuid "abe58998-3062-3866-9238-314af7ba0265" #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" #uuid "39063899-ef80-383a-97b7-38b8c778cc24" #uuid "ac19727b-672c-352f-b393-c52a81b055cb" #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" #uuid "af817d47-9021-3806-800d-7ef8dab08024" #uuid "5b444b22-2047-3124-af08-48687f72a6b5" #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" #uuid "af472b73-df4f-3397-a8c7-31a328913353" #uuid "578002db-1bee-32a8-949c-58bece6429a5" #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" #uuid "91934e02-f64d-3aab-9536-19f592307a91" #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" #uuid "44de8c27-9942-39ca-997c-57ff932fc882" #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2"], :com.boardgamegeek.boardgame/min-play-time [#uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" #uuid "56c98771-eaf0-34fe-8f66-156041739594" #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" #uuid "938351d5-c89e-32e0-af3b-73d217217b14" #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" #uuid "12fd071d-60ce-3146-b555-655882920638" #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" #uuid "875b8289-de41-3672-8c92-95b6a689ff43" #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" #uuid "66437274-239d-371f-a5d1-71102dca56e3" #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" #uuid "104965da-ee0b-3867-95a3-0416228b7b19" #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" #uuid "578002db-1bee-32a8-949c-58bece6429a5" #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" #uuid "e214a1ce-1929-3835-b502-4510ef89f940" #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" #uuid "fab76503-1b94-3d49-8b17-1336fababeec" #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" #uuid "c64e760d-cd41-31b1-9626-a196593146fa" #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" #uuid "91934e02-f64d-3aab-9536-19f592307a91" #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" #uuid "49b5473d-32f5-382b-943a-dda4a1491daf" #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" #uuid "a389677b-6118-3815-84fe-c1e75f38984c" #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" #uuid "5a156002-5793-338e-9399-def9bfd7eca6" #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" #uuid "56be7020-8ac5-312f-9c02-a912103646d9" #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" #uuid "6b9a2464-282c-396d-a918-afde2db81cde" #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" #uuid "f8283731-6cf2-3086-8140-494037314bf5" #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" #uuid "a0969dfc-5294-3b41-82bf-220e859197db" #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" #uuid "99102149-c730-3271-a928-b7549ce07a13" #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" #uuid "054f1270-bf79-32f9-825a-96880e800c9f" #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" #uuid "165261a9-0183-3e53-be82-ccc197c354b8" #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" #uuid "f18187e7-f398-32f0-b73e-625e848d8333" #uuid "b1127074-659b-3102-907a-25a0473a3e98" #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" #uuid "20b16954-6c66-3536-b816-f13d464da44c" #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" #uuid "dee45e08-5103-32ec-93b7-17d391b64576" #uuid "51817160-093d-3773-957a-662779bebec9" #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" #uuid "897ee373-c9e4-32f9-a323-fe188494520b" #uuid "be01908f-633f-35da-be89-80701db8ed25" #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" #uuid "096f6d71-6864-3882-898c-00b9142932e7" #uuid "12218694-0010-31cc-a245-a502b7ed4b19" #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" #uuid "826863b8-1605-33a8-9169-91ebcb89712b" #uuid "434338bc-9501-334b-adbf-2b3752e9e231" #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" #uuid "39af5c41-5927-3dde-8a75-10397211dcda" #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" #uuid "f750d160-d009-3c96-a630-eff035abfd6c" #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" #uuid "568da493-2833-3009-ad26-7108e0683081" #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" #uuid "b8909580-a299-3ec5-848c-548f38510b72" #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" #uuid "39063899-ef80-383a-97b7-38b8c778cc24" #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" #uuid "d496a066-c36e-3570-99d1-9eedec118dee" #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" #uuid "ac19727b-672c-352f-b393-c52a81b055cb" #uuid "492b7750-c3e8-3055-a93b-6745391300a6" #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" #uuid "582d2648-b634-3370-a31e-bef979dab3f3" #uuid "2e89598e-c81e-39d5-bae2-aee451063265" #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" #uuid "30c12229-f508-341c-9680-149dbdf88523" #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" #uuid "f8049db2-d889-3677-984e-4e2ce41de578" #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" #uuid "44de8c27-9942-39ca-997c-57ff932fc882" #uuid "f81386ae-7767-3f93-a560-c78df55109bb" #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" #uuid "af817d47-9021-3806-800d-7ef8dab08024" #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" #uuid "1bd17795-c173-3c75-9489-8343917b819a" #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" #uuid "af472b73-df4f-3397-a8c7-31a328913353" #uuid "5140d848-4910-3017-8f45-c2851658966b" #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2" #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" #uuid "d993f311-557a-391d-ab21-677ab586a01b" #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" #uuid "5e04b28e-010d-366b-af9d-020474ee6392" #uuid "4578b280-9265-3868-8670-e39b70b610f9" #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" #uuid "557482bd-c397-30d7-af1b-afbb6c763124" #uuid "414bbf5b-1083-3275-9983-4133937db58b" #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" #uuid "890488d0-a370-30a4-9788-a44754330b27" #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" #uuid "2293c663-d1bc-3701-9a53-009f457c6940" #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" #uuid "189f9b13-158d-379b-9440-05b9bc24a356" #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" #uuid "5b444b22-2047-3124-af08-48687f72a6b5" #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" #uuid "ebb89386-c539-37db-b4a7-972b931256f7" #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" #uuid "abe58998-3062-3866-9238-314af7ba0265" #uuid "3463c066-922f-3864-93bd-b87bb1286679" #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" #uuid "b4991e13-f466-39b4-be16-56909272f1cc" #uuid "423cb589-88be-336d-ada8-9817b5fe519e" #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" #uuid "33e20383-3807-3414-869c-7a3907d40b75" #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" #uuid "e154f5ce-d498-3840-a559-661a996d4d09" #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" #uuid "f7625727-1129-3703-96c0-442c8ac00dae" #uuid "77933845-adf8-3758-a686-a08ea46f015e" #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" #uuid "8881688f-f717-3852-a5df-d3c7386562d1" #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" #uuid "91a5169d-5877-3642-9a52-54c4f01655da" #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" #uuid "28e54304-62fc-38c9-9b76-058878323d57" #uuid "109a021a-56f4-3223-ae04-902a1f40db16"], :com.boardgamegeek.boardgame/max-play-time [#uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" #uuid "56c98771-eaf0-34fe-8f66-156041739594" #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" #uuid "938351d5-c89e-32e0-af3b-73d217217b14" #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" #uuid "12fd071d-60ce-3146-b555-655882920638" #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" #uuid "875b8289-de41-3672-8c92-95b6a689ff43" #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" #uuid "66437274-239d-371f-a5d1-71102dca56e3" #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" #uuid "104965da-ee0b-3867-95a3-0416228b7b19" #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" #uuid "578002db-1bee-32a8-949c-58bece6429a5" #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" #uuid "e214a1ce-1929-3835-b502-4510ef89f940" #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" #uuid "fab76503-1b94-3d49-8b17-1336fababeec" #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" #uuid "5a156002-5793-338e-9399-def9bfd7eca6" #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" #uuid "49b5473d-32f5-382b-943a-dda4a1491daf" #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" #uuid "99102149-c730-3271-a928-b7549ce07a13" #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" #uuid "054f1270-bf79-32f9-825a-96880e800c9f" #uuid "165261a9-0183-3e53-be82-ccc197c354b8" #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" #uuid "f18187e7-f398-32f0-b73e-625e848d8333" #uuid "b1127074-659b-3102-907a-25a0473a3e98" #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" #uuid "20b16954-6c66-3536-b816-f13d464da44c" #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" #uuid "dee45e08-5103-32ec-93b7-17d391b64576" #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" #uuid "6b9a2464-282c-396d-a918-afde2db81cde" #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" #uuid "a0969dfc-5294-3b41-82bf-220e859197db" #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" #uuid "897ee373-c9e4-32f9-a323-fe188494520b" #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" #uuid "a389677b-6118-3815-84fe-c1e75f38984c" #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" #uuid "826863b8-1605-33a8-9169-91ebcb89712b" #uuid "434338bc-9501-334b-adbf-2b3752e9e231" #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" #uuid "39af5c41-5927-3dde-8a75-10397211dcda" #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" #uuid "f750d160-d009-3c96-a630-eff035abfd6c" #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" #uuid "b8909580-a299-3ec5-848c-548f38510b72" #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" #uuid "91934e02-f64d-3aab-9536-19f592307a91" #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" #uuid "f8283731-6cf2-3086-8140-494037314bf5" #uuid "d496a066-c36e-3570-99d1-9eedec118dee" #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" #uuid "ac19727b-672c-352f-b393-c52a81b055cb" #uuid "492b7750-c3e8-3055-a93b-6745391300a6" #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" #uuid "2e89598e-c81e-39d5-bae2-aee451063265" #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" #uuid "be01908f-633f-35da-be89-80701db8ed25" #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" #uuid "30c12229-f508-341c-9680-149dbdf88523" #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" #uuid "096f6d71-6864-3882-898c-00b9142932e7" #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" #uuid "44de8c27-9942-39ca-997c-57ff932fc882" #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" #uuid "f81386ae-7767-3f93-a560-c78df55109bb" #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" #uuid "c64e760d-cd41-31b1-9626-a196593146fa" #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" #uuid "af817d47-9021-3806-800d-7ef8dab08024" #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" #uuid "51817160-093d-3773-957a-662779bebec9" #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" #uuid "af472b73-df4f-3397-a8c7-31a328913353" #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" #uuid "d993f311-557a-391d-ab21-677ab586a01b" #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" #uuid "12218694-0010-31cc-a245-a502b7ed4b19" #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" #uuid "4578b280-9265-3868-8670-e39b70b610f9" #uuid "56be7020-8ac5-312f-9c02-a912103646d9" #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" #uuid "39063899-ef80-383a-97b7-38b8c778cc24" #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" #uuid "582d2648-b634-3370-a31e-bef979dab3f3" #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" #uuid "414bbf5b-1083-3275-9983-4133937db58b" #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" #uuid "890488d0-a370-30a4-9788-a44754330b27" #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" #uuid "2293c663-d1bc-3701-9a53-009f457c6940" #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" #uuid "5b444b22-2047-3124-af08-48687f72a6b5" #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" #uuid "5140d848-4910-3017-8f45-c2851658966b" #uuid "ebb89386-c539-37db-b4a7-972b931256f7" #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" #uuid "abe58998-3062-3866-9238-314af7ba0265" #uuid "3463c066-922f-3864-93bd-b87bb1286679" #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" #uuid "189f9b13-158d-379b-9440-05b9bc24a356" #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" #uuid "e154f5ce-d498-3840-a559-661a996d4d09" #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" #uuid "557482bd-c397-30d7-af1b-afbb6c763124" #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" #uuid "5e04b28e-010d-366b-af9d-020474ee6392" #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" #uuid "423cb589-88be-336d-ada8-9817b5fe519e" #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" #uuid "77933845-adf8-3758-a686-a08ea46f015e" #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" #uuid "8881688f-f717-3852-a5df-d3c7386562d1" #uuid "1bd17795-c173-3c75-9489-8343917b819a" #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2" #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" #uuid "91a5169d-5877-3642-9a52-54c4f01655da" #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" #uuid "33e20383-3807-3414-869c-7a3907d40b75" #uuid "568da493-2833-3009-ad26-7108e0683081" #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" #uuid "f7625727-1129-3703-96c0-442c8ac00dae" #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" #uuid "28e54304-62fc-38c9-9b76-058878323d57" #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" #uuid "b4991e13-f466-39b4-be16-56909272f1cc" #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" #uuid "f8049db2-d889-3677-984e-4e2ce41de578" #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" #uuid "109a021a-56f4-3223-ae04-902a1f40db16"]}} )
103562
(ns app.data) (def game-data #:game-list{:games {#uuid "49b5473d-32f5-382b-943a-dda4a1491daf" {:game/id #uuid "49b5473d-32f5-382b-943a-dda4a1491daf", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"}), :name "10' to Kill", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "174476", :languages (list "en"), :game/name "10' to Kill", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Qfxg7YCYBilmNvI7fi87Tg__thumb/img/cPxvlb5JSWowWHwXSpRmUj-tr8s=/fit-in/200x150/filters:strip_icc()/pic3723481.jpg"}, #uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" {:languages (list "cz"), :name "1989", :game/id #uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5", :game/name "1989"}, #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" {:languages (list "en"), :name "5 Seconds Rule", :game/id #uuid "64581d49-5b7a-3952-b129-c64b56c406ed", :game/name "5 Seconds Rule"}, #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" {:languages (list "cz"), :name "7 Divu sveta duel [7 wonders duel]", :game/id #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76", :game/name "7 Divu sveta duel [7 wonders duel]"}, #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" {:game/id #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2839, :name "Action Retrieval"} #:com.boardgamegeek.mechanic{:id 2850, :name "Events"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "A castle for all seasons", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "38386", :languages (list "en"), :game/name "A Castle for All Seasons", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HEHduHVfdLULQHoWLu-Sqw__thumb/img/HnBxzNEHY0vivRABnTIRmBR_aPU=/fit-in/200x150/filters:strip_icc()/pic400762.jpg"}, #uuid "f8283731-6cf2-3086-8140-494037314bf5" {:game/id #uuid "f8283731-6cf2-3086-8140-494037314bf5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "<NAME> o Tr<NAME> P<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "205610", :languages (list "cz"), :game/name "A Game of Thrones: Hand of the King", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eKmDyXnsFmnzF5cuv32hjA__thumb/img/bugAzct3L9TIYkuie8jbj49rT7g=/fit-in/200x150/filters:strip_icc()/pic3122395.jpg"}, #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" {:languages (list "cz"), :name "AZ Quiz", :game/id #uuid "6d8aa71d-1531-3019-ac35-ea2463485268", :game/name "AZ Quiz"}, #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" {:languages (list "en"), :name "Abraca what", :game/id #uuid "780cd613-d706-3945-8ef3-6d59c16c2312", :game/name "Abraca what"}, #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" {:game/id #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2910, :name "Investment"} #:com.boardgamegeek.mechanic{:id 2900, :name "Market"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2874, :name "Victory Points as a Resource"}), :name "Acquire", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "5", :languages (list "en"), :game/name "Acquire", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/3C--kJRhi6kTPHsr9dNaWw__thumb/img/EQqszaHS3n6XplVVGQfTZtGc8fE=/fit-in/200x150/filters:strip_icc()/pic3299296.jpg"}, #uuid "d496a066-c36e-3570-99d1-9eedec118dee" {:game/id #uuid "d496a066-c36e-3570-99d1-9eedec118dee", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Across Africa", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1094, :name "Educational"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "183472", :languages (list "en"), :game/name "Across Africa", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/vGWn49wquxCTXEgHxCvdcA__thumb/img/naI1UxX_PLFhzMoeW8aTQN2Ajug=/fit-in/200x150/filters:strip_icc()/pic2659340.jpg"}, #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" {:game/id #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2871, :name "Kill Steal"}), :name "Adrenaline", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1101, :name "Video Game Theme"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "202408", :languages (list "en"), :game/name "Adrenaline", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/TiNI7bUCR2RPFMlvKEC9TQ__thumb/img/nnWEA6jjVsxPSuEC_Ooph9kzO_g=/fit-in/200x150/filters:strip_icc()/pic3476604.jpg"}, #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" {:game/id #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2847, :name "Advantage Token"} #:com.boardgamegeek.mechanic{:id 2903, :name "Automatic Resource Growth"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2914, :name "Increase Value of Unchosen Resources"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2829, :name "Turn Order: Claim Action"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Agricola", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "31260", :languages (list "cz"), :game/name "Agricola", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/dDDo2Hexl80ucK1IlqTk-g__thumb/img/GHGdnCfeysoP_34gLnofJcNivW8=/fit-in/200x150/filters:strip_icc()/pic831744.jpg"}, #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" {:game/id #uuid "1d4dffda-8368-3060-a077-e7937437d6f7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :new true, :name "Critters at War: Land, Sea, and Air", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "342857", :languages (list "en"), :game/name "Air, Land, and Sea: Critters at War", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/sAOWDzYp6CDTzo2EHozkEw__thumb/img/XIGKrZEmkqKyrN24WXf7dIXq5ag=/fit-in/200x150/filters:strip_icc()/pic6293166.jpg"}, #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" {:game/id #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2910, :name "Investment"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"}), :name "Airlines Europe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 2650, :name "Aviation / Flight"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "90419", :languages (list "cz" "de"), :game/name "Airlines Europe", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/MWSJ6c001o3HAk00qek9Rw__thumb/img/ZgcRUnCdSNZZyCnpBBs1ST5ESwE=/fit-in/200x150/filters:strip_icc()/pic975416.jpg"}, #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" {:game/id #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Alias", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "3818", :languages (list "en"), :game/name "Alias", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/b5ku0ffAvzeBydiOUDVELw__thumb/img/hG6aNU1hiiXwopQ6XexCM_q9aRI=/fit-in/200x150/filters:strip_icc()/pic451300.jpg"}, #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" {:game/id #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Alenčina zahrádka", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1093, :name "Novel-based"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "298635", :languages (list "cz"), :game/name "Alice's Garden", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JhLSvQu1cOBg4Dg5l3BgHw__thumb/img/vCrs7JWz87NWlMnaYGRfr9PsVAY=/fit-in/200x150/filters:strip_icc()/pic5177326.jpg"}, #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" {:game/id #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2018, :name "Campaign / Battle Card Driven"}), :name "Allies Realm of Wonder", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "182172", :game/name "Allies: Realm of Wonder", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bGm33oVfySVB-XraX-eO4Q__thumb/img/xofGdDpiE2Ll-bnaiOxWunMK5uE=/fit-in/200x150/filters:strip_icc()/pic2728113.jpg"}, #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" {:languages (list "cz"), :name "Andor", :game/id #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae", :game/name "Andor"}, #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" {:game/id #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2906, :name "I Cut, You Choose"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Animals on Board", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "191572", :languages (list "cz" "en"), :game/name "Animals on Board", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NLgUgFH88DJogE-16PPFsw__thumb/img/CuInp1YTUxTZlrIi3TMTcUwQcKs=/fit-in/200x150/filters:strip_icc()/pic2845593.jpg"}, #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" {:game/id #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"}), :name "Animal suspect", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "156461", :languages (list "en" "fr"), :game/name "Animotion", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5UkysjBRLOEA8FZU7JsmVg__thumb/img/ZYdEgotZnh66KU12sTfn4bQh1l8=/fit-in/200x150/filters:strip_icc()/pic6573339.jpg"}, #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" {:game/id #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2991, :name "Speed Matching"}), :name "Anomia", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "67877", :languages (list "en"), :game/name "Anomia", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/OvOpd-Lhl7t3h9fF_qi6lQ__thumb/img/002NO49Pl3-9dPUj43StWt0SS2c=/fit-in/200x150/filters:strip_icc()/pic2527529.jpg"}, #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" {:game/id #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2813, :name "Rondel"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "104955", :languages (list "de" "en"), :game/name "<NAME>", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/zwhI40_3em8zJjrmbT6TLQ__thumb/img/Tzl4gVEbeokaDg0MlJQw_9tHvB0=/fit-in/200x150/filters:strip_icc()/pic1282841.jpg"}, #uuid "ac19727b-672c-352f-b393-c52a81b055cb" {:game/id #uuid "ac19727b-672c-352f-b393-c52a81b055cb", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2865, :name "Player Judge"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Apples to Apples", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "74", :languages (list "en"), :game/name "Apples to Apples", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S5GzB_f2Re3kEDoSxqG5Ew__thumb/img/kJ1JQ_d9xEZ00sJ1dLvwyQYiQUA=/fit-in/200x150/filters:strip_icc()/pic213515.jpg"}, #uuid "109a021a-56f4-3223-ae04-902a1f40db16" {:game/id #uuid "109a021a-56f4-3223-ae04-902a1f40db16", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Archmage", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 360, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 360, :com.boardgamegeek.boardgame/id "63072", :languages (list "en"), :game/name "ArchMage", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/COo1f6uDP89xUU2s94Onqg__thumb/img/l0kYMdxShODYCnewDFYljQGtp20=/fit-in/200x150/filters:strip_icc()/pic616853.jpg"}, #uuid "492b7750-c3e8-3055-a93b-6745391300a6" {:game/id #uuid "492b7750-c3e8-3055-a93b-6745391300a6", :com.boardgamegeek.boardgame/min-players 2, :name "Aristocracy", :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "104423", :languages (list "en"), :game/name "Aristocracy"}, #uuid "28e54304-62fc-38c9-9b76-058878323d57" {:game/id #uuid "28e54304-62fc-38c9-9b76-058878323d57", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Arkham Horror", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 180, :com.boardgamegeek.boardgame/id "34", :languages (list "cz"), :game/name "Arkham Horror", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/AhS53CO05pBagyr9EfRazg__thumb/img/vkAI2JcO2v2Y_pO1Fi5shUGzCxc=/fit-in/200x150/filters:strip_icc()/pic5747491.jpg"}, #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" {:game/id #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"}), :name "Around the world in 80 days", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1093, :name "Novel-based"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "414", :languages (list "en"), :game/name "Around the World in 80 Days", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/mXes1H5HlEcb0VRFObYcJQ__thumb/img/yUatX2NYK46nUosAvEyjdb9xjEo=/fit-in/200x150/filters:strip_icc()/pic664642.jpg"}, #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" {:game/id #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Article 27", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1001, :name "Political"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "113293", :languages (list "en"), :game/name "Article 27: The UN Security Council Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kyB2tDm5oTwjXzG_H0UW6g__thumb/img/1xOJs8f92Rvn_y00wPfhq8JeiXI=/fit-in/200x150/filters:strip_icc()/pic1309420.jpg"}, #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" {:game/id #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Articulate", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "6541", :languages (list "en"), :game/name "Articulate!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BOvTyp_E-3UXcWpD9bVYog__thumb/img/CqwJb6xbDjdfVlIrNK3PjRXEn3A=/fit-in/200x150/filters:strip_icc()/pic5885634.jpg"}, #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" {:game/id #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Artifact stack", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "236556", :languages (list "en"), :game/name "Artifact Stack", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0q6H2VDztoXvH5H7nBQAnQ__thumb/img/PN2vWRy9uhQc1FAxFPMF4OXzruM=/fit-in/200x150/filters:strip_icc()/pic3769855.jpg"}, #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" {:languages (list "en"), :name "Ashes Rise of the Pheonixborn", :game/id #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288", :game/name "Ashes Rise of the Pheonixborn"}, #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" {:game/id #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Awkward Guests", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "188866", :languages (list "en"), :game/name "Awkward Guests", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Awopfw5_5Qyh-7YcSbtudA__thumb/img/HHn3So0Mum6VZliDmEnB2LwfeQ0=/fit-in/200x150/filters:strip_icc()/pic4870482.jpg"}, #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" {:languages (list "en"), :name "Axis and Allies", :game/id #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b", :game/name "Axis and Allies"}, #uuid "582d2648-b634-3370-a31e-bef979dab3f3" {:game/id #uuid "582d2648-b634-3370-a31e-bef979dab3f3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2829, :name "Turn Order: Claim Action"}), :name "Azul", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1070, :name "Renaissance"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "230802", :game/name "Azul", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/tz19PfklMdAdjxV9WArraA__thumb/img/debo694HgBaIBeNGyxu1ELUbQGA=/fit-in/200x150/filters:strip_icc()/pic3718275.jpg"}, #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" {:game/id #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Bang: The Dice Game", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1055, :name "American West"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "143741", :languages (list "cz"), :game/name "BANG! The Dice Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BLTFau1Ue-gjX6geQdYrjQ__thumb/img/IijBpyOQC760F6XIw34WT0ePqe4=/fit-in/200x150/filters:strip_icc()/pic2909713.jpg"}, #uuid "2e89598e-c81e-39d5-bae2-aee451063265" {:game/id #uuid "2e89598e-c81e-39d5-bae2-aee451063265", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2847, :name "Advantage Token"} #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"}), :name "Backgammon", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2397", :game/name "Backgammon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/_6HVCuGni6NunlrSje0ySQ__thumb/img/FS7YID4DgqMBppP0nhyG52MP7Xk=/fit-in/200x150/filters:strip_icc()/pic1361122.jpg"}, #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" {:game/id #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :new true, :name "Bag of Butts", :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "337833", :languages (list "de" "en"), :game/name "Bag of Butts", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/_LGpE_T3Ey8kAJsZBCcl2Q__thumb/img/0jLl-V-h2xmkWDjjf5SzxELA3eY=/fit-in/200x150/filters:strip_icc()/pic6253322.png"}, #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" {:game/id #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Bananagrams", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "27225", :languages (list "en"), :game/name "Bananagrams", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1QjYPI4bXx4OUMJPlrsNBA__thumb/img/nC_gG-4CYy7VBfYez2qSfTkU2ik=/fit-in/200x150/filters:strip_icc()/pic2463443.jpg"}, #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" {:languages (list "cz"), :name "Bang", :game/id #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c", :game/name "Bang"}, #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" {:languages (list "cz"), :name "Bang Duel", :game/id #uuid "24380876-a0ae-3b46-a8c6-a092619bef37", :game/name "Bang Duel"}, #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" {:languages (list "cz"), :name "Bang Mesto Duchu", :game/id #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8", :game/name "Bang Mesto Duchu", :com.boardgamegeek.boardgame/id "147918"}, #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" {:name "<NAME>", :game/id #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b", :game/name "Barracuda", :com.boardgamegeek.boardgame/id "47307", :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ByH9-4VoBOrYHrZ6on8IKQ__thumb/img/6CauS6bPub0en7IPxfYY3P38Jso=/fit-in/200x150/filters:strip_icc()/pic512503.jpg", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"})}, #uuid "a0969dfc-5294-3b41-82bf-220e859197db" {:game/id #uuid "a0969dfc-5294-3b41-82bf-220e859197db", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Bears vs. Babies", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "211534", :languages (list "en"), :game/name "Bears vs Babies", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iJpO2VOezeMXuclGqR_mXg__thumb/img/GrVBkH_kUoL5lszRkFTOZFMCEVg=/fit-in/200x150/filters:strip_icc()/pic3231155.png"}, #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" {:game/id #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Beasty Bar", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "165950", :languages (list "cz" "en"), :game/name "Beasty Bar", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7_y1dbU5GCYhIRBCO0q7rg__thumb/img/WiuNMDiiM38EHOAdW5MB1ldlEJM=/fit-in/200x150/filters:strip_icc()/pic2241067.jpg"}, #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" {:game/id #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Beasty Bar 3: Born to be Wild", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "286657", :game/name "Beasty Bar 3: Born to Be Wild", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/e_en-vwHgXusEclcKWS4bg__thumb/img/x3iJI8QoTkK7Ptp_N_tq3-bpb5E=/fit-in/200x150/filters:strip_icc()/pic4909349.jpg"}, #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" {:game/id #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Beasty Bar New Beasts in Town", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "181617", :languages (list "cz" "en"), :game/name "Beasty Bar: New Beasts in Town", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/fKOPzIhkT_wVhZWvq267sQ__thumb/img/ULXgCaaXwTKJDhHncpI1acXOQLk=/fit-in/200x150/filters:strip_icc()/pic2672397.jpg"}, #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" {:game/id #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0", :com.boardgamegeek.boardgame/min-players 2, :name "Bed Bugs", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "8486", :languages (list "en"), :game/name "Bed Bugs", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Z1xhttA6vW5rvCK5I32OKg__thumb/img/xBSbnbvzTDYqOwgt-l1hklMax6A=/fit-in/200x150/filters:strip_icc()/pic35248.jpg"}, #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" {:game/id #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Belle of the Ball", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "139897", :languages (list "en"), :game/name "Belle of the Ball", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JMVcMUrZC-K3DjeuHFXhjw__thumb/img/uPIXh-8lRCEdmN6Np3Ze_XbW86I=/fit-in/200x150/filters:strip_icc()/pic4593784.jpg"}, #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" {:game/id #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2959, :name "Map Addition"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Betrayal at House on the Hill", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "10547", :languages (list "en"), :game/name "Betrayal at House on the Hill", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/lqmt2Oti_qJS65XqHcB8AA__thumb/img/EDOmDbRhLy4za2PHkJ5IbhNxZmk=/fit-in/200x150/filters:strip_icc()/pic5146864.png"}, #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" {:languages (list "en"), :name "Between 2 Cities", :game/id #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410", :game/name "Between 2 Cities"}, #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" {:game/id #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2919, :name "Auction: Turn Order Until Pass"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :new true, :name "Biblios", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1115, :name "Religious"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "34219", :languages (list "en"), :game/name "Biblios", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/w9pHmbMbHEFYtuOUcWcruA__thumb/img/BYid-ptJy9xNI_kK3IDWOGLWJVM=/fit-in/200x150/filters:strip_icc()/pic759154.jpg"}, #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" {:game/id #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1101, :name "Video Game Theme"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 15, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "158564", :languages (list "en"), :game/name "Billionaire Banshee", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Pe8iAvlyTOzVINQRdFdcig__thumb/img/iXmFA-7_cNegyHs8nKD4rTv2O1k=/fit-in/200x150/filters:strip_icc()/pic2729693.png"}, #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" {:languages (list "cz"), :name "Blafuj / Cockroach Poker", :game/id #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774", :game/name "Blafuj / Cockroach Poker"}, #uuid "897ee373-c9e4-32f9-a323-fe188494520b" {:game/id #uuid "897ee373-c9e4-32f9-a323-fe188494520b", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 3007, :name "Matching"}), :new true, :name "Blaze", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "332317", :languages (list "de" "en"), :game/name "Blaze", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ejlad9HzsFX0xCPWqTGFmw__thumb/img/0RVKdSi4BxCTFPFBoCsuJMKl_W0=/fit-in/200x150/filters:strip_icc()/pic6006816.jpg"}, #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" {:game/id #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Blood Rage", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "170216", :languages (list "cz"), :game/name "Blood Rage", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HkZSJfQnZ3EpS214xtuplg__thumb/img/NLhVdU8xazrgS5dA6nVCYmN2DNI=/fit-in/200x150/filters:strip_icc()/pic2439223.jpg"}, #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" {:game/id #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :new true, :name "Bloom Town", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "284291", :languages (list "en"), :game/name "Bloom Town", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/9YgdR9F66ti_0fcoPDtwhw__thumb/img/d5mPk0UMMXf-_3-0Xpvr1EK-JNQ=/fit-in/200x150/filters:strip_icc()/pic4852758.png"}, #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" {:game/id #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "BluePrints", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "140933", :languages (list "en"), :game/name "Blueprints", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/yj0dJI3pFauW-EU9Vg6OZw__thumb/img/TVG6p598iOhPeDZuVWy6QCTzOi4=/fit-in/200x150/filters:strip_icc()/pic1877243.jpg"}, #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" {:game/id #uuid "bf684d42-7071-39ee-809d-514bc5ca241a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Bomb Arena", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "208145", :languages (list "en"), :game/name "Bomb Arena", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JY8Q5GbG2aa4257QVuCQTw__thumb/img/IvRKbdnGi50C_HHIWu1VD0i3VYA=/fit-in/200x150/filters:strip_icc()/pic3175138.jpg"}, #uuid "557482bd-c397-30d7-af1b-afbb6c763124" {:game/id #uuid "557482bd-c397-30d7-af1b-afbb6c763124", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2944, :name "Three Dimensional Movement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Burgle Bros 2", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1059, :name "Maze"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 70, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "286537", :languages (list "en"), :game/name "Burgle Bros 2: The Casino Capers", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/YNcSJhDM_g-2av0pzNs4wQ__thumb/img/_3QhL_-pkBScdNFqOKxwj0zY-OA=/fit-in/200x150/filters:strip_icc()/pic6087472.png"}, #uuid "414bbf5b-1083-3275-9983-4133937db58b" {:game/id #uuid "414bbf5b-1083-3275-9983-4133937db58b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Kabo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "271321", :languages (list "cz"), :game/name "CABO (Second Edition)", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UXg5z353Vs3aI90_TfL4pQ__thumb/img/rDg9t7gP1iqNcy3NZxAWGVoWYok=/fit-in/200x150/filters:strip_icc()/pic4572408.jpg"}, #uuid "56c98771-eaf0-34fe-8f66-156041739594" {:languages (list "en"), :name "Caesar!: Sieze Rome in 20 minutes", :new true, :game/id #uuid "56c98771-eaf0-34fe-8f66-156041739594", :game/name "Caesar!: Sieze Rome in 20 minutes"}, #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" {:game/id #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :new true, :name "Calico", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "283155", :languages (list "en"), :game/name "Calico", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/t8bTlZmxz6PiskMSjcBHcw__thumb/img/TByBGUDO_jNVxDaOviRWOFtu9fk=/fit-in/200x150/filters:strip_icc()/pic4815033.jpg"}, #uuid "be01908f-633f-35da-be89-80701db8ed25" {:game/id #uuid "be01908f-633f-35da-be89-80701db8ed25", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Camel Up", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "153938", :languages (list "de" "en"), :game/name "Camel Up", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1ph2jVOD1MudR1fK1nkwwA__thumb/img/TVCsLhF3KMZkFs6oLJkS37njE_s=/fit-in/200x150/filters:strip_icc()/pic2031446.png"}, #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" {:game/id #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "Can’t stop", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "41", :languages (list "en"), :game/name "Can't Stop", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JZpo3AnyFH4TqxKWFSFKGQ__thumb/img/KxfmwuPAgmmNACBQkxIaYUxKdLI=/fit-in/200x150/filters:strip_icc()/pic1046518.jpg"}, #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" {:languages (list "en"), :name "Captain Dice", :game/id #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b", :game/name "Captain Dice"}, #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" {:game/id #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2967, :name "Hidden Movement"} #:com.boardgamegeek.mechanic{:id 2039, :name "Line Drawing"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Captain Sonar", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1008, :name "Nautical"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "171131", :languages (list "cz" "en"), :game/name "Captain Sonar", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eVy9IyAVtzzKv2VvPHFPbA__thumb/img/RavsPCF6el7VEaVR1OG5M2ZGCrk=/fit-in/200x150/filters:strip_icc()/pic3013621.png"}, #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" {:game/id #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2959, :name "Map Addition"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "822", :game/name "Carcassonne", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/okM0dq_bEXnbyQTOvHfwRA__thumb/img/88274KiOg94wziybVHyW8AeOiXg=/fit-in/200x150/filters:strip_icc()/pic6544250.png"}, #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" {:game/id #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2865, :name "Player Judge"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Cards against Humanity", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 30, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "50381", :languages (list "cz" "en"), :game/name "Cards Against Humanity", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nYLrPiI9gnvlrwOrKQ4_CA__thumb/img/fIhQLjWueNPYZhCZ_LzjAIhPm5U=/fit-in/200x150/filters:strip_icc()/pic2909692.jpg"}, #uuid "890488d0-a370-30a4-9788-a44754330b27" {:game/id #uuid "890488d0-a370-30a4-9788-a44754330b27", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Obludárium", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "231484", :languages (list "cz"), :game/name "Carnival of Monsters", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/epQCPLfMbtaKiXmz7uz4PA__thumb/img/b1rgSddValol8h1Ock8s_9peBPc=/fit-in/200x150/filters:strip_icc()/pic4856068.jpg"}, #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" {:languages (list "cz"), :name "<NAME>", :game/id #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454", :game/name "<NAME> K<NAME>ouk"}, #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" {:game/id #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Kočíčí Klub", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "228504", :languages (list "cz"), :game/name "Cat Lady", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/tnx6ExxyUmIlga9tFSrR6g__thumb/img/jHvb__-N4QCSB8rhTKXzCxWOWcU=/fit-in/200x150/filters:strip_icc()/pic3864115.jpg"}, #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" {:game/id #uuid "48309f49-6981-3784-80f4-f8b7cff15c98", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2909, :name "Random Production"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Osadnici z Katanu", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "13", :languages (list "cz"), :game/name "Catan", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/W3Bsga_uLP9kO91gZ7H8yw__thumb/img/8a9HeqFydO7Uun_le9bXWPnidcA=/fit-in/200x150/filters:strip_icc()/pic2419375.jpg"}, #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" {:game/id #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"} #:com.boardgamegeek.mechanic{:id 2935, :name "Worker Placement with Dice Workers"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "189067", :languages (list "en"), :game/name "Cavern Tavern", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NdCwfRORG5oLaDBmQeOOaQ__thumb/img/jeGf0ItclxtK4YeTWrBlBCe8Qt4=/fit-in/200x150/filters:strip_icc()/pic3020188.png"}, #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" {:languages (list "cz"), :name "Caverna", :game/id #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2", :game/name "Caverna"}, #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" {:game/id #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Celestia", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "130853", :game/name "Celestia", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/npqKJbeLXejp0j2ECQ5huA__thumb/img/ur42OT9MelTa6X3lPbnwN5WG-iU=/fit-in/200x150/filters:strip_icc()/pic1475228.png"}, #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" {:game/id #uuid "595f5c4f-c267-303b-adf4-1333c70a9460", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "181694", :languages (list "en"), :game/name "Cha dango", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1NJNf0z5guEZ2L713YNzPw__thumb/img/fMswkQDBdqiVpfiPOIAA6FY7PLo=/fit-in/200x150/filters:strip_icc()/pic4791211.jpg"}, #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" {:game/id #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Chameleon", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "4187", :languages (list "en"), :game/name "Chameleon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Mq4HaM5jARaNQ_jrTnGfnA__thumb/img/cRlXz4uT63-BkyRJIJX-0vKywKo=/fit-in/200x150/filters:strip_icc()/pic13110.jpg"}, #uuid "30c12229-f508-341c-9680-149dbdf88523" {:game/id #uuid "30c12229-f508-341c-9680-149dbdf88523", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2946, :name "Pattern Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2861, :name "Static Capture"}), :name "Checkers", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2083", :game/name "Checkers", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S4IBcWYhlbn51_5f0EIR4g__thumb/img/wxqQxa2--TclJY8n8hzMGXzk1sI=/fit-in/200x150/filters:strip_icc()/pic113720.jpg"}, #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" {:game/id #uuid "0727c24e-c484-3017-9850-a0e366a7dd42", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2946, :name "Pattern Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2861, :name "Static Capture"}), :name "Chess", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/id "171", :game/name "Chess", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0-DjGBOko6RV8zg5ejhYIg__thumb/img/kjtoinSrkYV0HZleXMxkJzZwS8k=/fit-in/200x150/filters:strip_icc()/pic260745.jpg"}, #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" {:game/id #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"}), :name "Kureci olympiada", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1045, :name "Memory"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "3570", :languages (list "cz" "de"), :game/name "Chicken Cha Cha Cha", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZxGfy7AR2mjrKVDiDVJoBw__thumb/img/8oLfdlwvjgqVlU4tZXSSnPyUwi0=/fit-in/200x150/filters:strip_icc()/pic406697.jpg"}, #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" {:game/id #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2829, :name "Turn Order: Claim Action"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"} #:com.boardgamegeek.mechanic{:id 2933, :name "Worker Placement, Different Worker Types"}), :name "Chimera Station", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "163642", :languages (list "de" "it"), :game/name "Chimera Station", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1CiJrEhD6UpRNFNIy-1R5g__thumb/img/ptY_o-lbmIVvqtbFRRERIODbetk=/fit-in/200x150/filters:strip_icc()/pic3160959.jpg"}, #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" {:game/id #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2910, :name "Investment"} #:com.boardgamegeek.mechanic{:id 2915, :name "Negotiation"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"} #:com.boardgamegeek.mechanic{:id 2874, :name "Victory Points as a Resource"}), :name "Chinatown", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "47", :languages (list "de" "en"), :game/name "Chinatown", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/QnIOe-1wb8_zuxglKjAwOQ__thumb/img/CyDOXyRu7MHfn2ZS9pb9XmOStv0=/fit-in/200x150/filters:strip_icc()/pic2037509.png"}, #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" {:game/id #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2823, :name "Score-and-Reset Game"}), :new true, :name "Chinchiller Dice", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "337834", :languages (list "de" "en"), :game/name "Chinchiller Dice", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7YduweUXo87k3FYx9dryRg__thumb/img/NNtQ16pzW--zfY3TG1nCiT7mz0A=/fit-in/200x150/filters:strip_icc()/pic6253330.png"}, #uuid "99102149-c730-3271-a928-b7549ce07a13" {:game/id #uuid "99102149-c730-3271-a928-b7549ce07a13", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "<NAME>ac<NAME>ra", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "27738", :languages (list "en"), :game/name "Chupacabra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/i_thTasR2InYawFGKTyrQg__thumb/img/HtsO-YF_-I5ufs1CtfNF9DcJG7w=/fit-in/200x150/filters:strip_icc()/pic184563.jpg"}, #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" {:game/id #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2838, :name "Action Drafting"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2836, :name "Lose a Turn"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2833, :name "Turn Order: Role Order"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Citadela deluxe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "205398", :languages (list "cz"), :game/name "Citadels", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/sHd0jkZZLDgixHjAXtn7kA__thumb/img/HB0Z5D7uwBjf1lCCPjMck-5VP9A=/fit-in/200x150/filters:strip_icc()/pic3119514.jpg"}, #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" {:game/id #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "<NAME>ue", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "1294", :languages (list "en"), :game/name "Clue", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/owlmDA10KegcwPaapY5auw__thumb/img/73FO0H7pORdum5ZexMXyrjLhpVU=/fit-in/200x150/filters:strip_icc()/pic5146918.png"}, #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" {:game/id #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Codenames", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "178900", :game/name "Codenames", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/F_KDEu0GjdClml8N7c8Imw__thumb/img/yl8iXxSNwguMeg3KkmfFO9SMVVc=/fit-in/200x150/filters:strip_icc()/pic2582929.jpg"}, #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" {:game/id #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "<NAME>: Duet", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "224037", :languages (list "cz"), :game/name "Codenames: Duet", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0d1EaMVmAiIBROI2QstFSQ__thumb/img/J-thZd7Pbbh1CE8QHcvEE4w8FBE=/fit-in/200x150/filters:strip_icc()/pic3596681.jpg"}, #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" {:game/id #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Codenames Pictures", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "198773", :languages (list "cz" "en"), :game/name "Codenames: Pictures", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Q2u-Nk68Wb1iLjxh_dfsIg__thumb/img/6-1EOESE196KVKw4xOJ5rge56j0=/fit-in/200x150/filters:strip_icc()/pic3476592.jpg"}, #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" {:languages (list "en"), :name "Cohort", :game/id #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105", :game/name "Cohort"}, #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" {:game/id #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2018, :name "Campaign / Battle Card Driven"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Colonialism", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 2710, :name "Post-Napoleonic"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "67917", :languages (list "en"), :game/name "Colonialism", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7L38HEji9NCO7l8vJGPNpA__thumb/img/Bil3fnBYfH2sksgWXG6w7-MmRuk=/fit-in/200x150/filters:strip_icc()/pic1613797.jpg"}, #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" {:game/id #uuid "08cddb57-6c00-3836-9593-a0b04fd84141", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Coloretto", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "5782", :languages (list "cz" "de" "en"), :game/name "Coloretto", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Z_C3ujE0BcRpbQjDd1Vatg__thumb/img/40jfO9cNXB20z1fm6FfSkGf5qVQ=/fit-in/200x150/filters:strip_icc()/pic149765.jpg"}, #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" {:game/id #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Colors of Paris", :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "269160", :languages (list "en" "ne"), :game/name "Colors of Paris", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/j16Xrf08-toGYZ04HqLoNw__thumb/img/xaIYrg5FuSjX6VRLLd3yL2fcyz4=/fit-in/200x150/filters:strip_icc()/pic4804321.jpg"}, #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" {:game/id #uuid "935b4085-0cd3-3875-abe0-2996fb99980b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Color Brain", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "223742", :languages (list "en"), :game/name "Colour Brain", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/M3KJfjJVOGA6x0LuMgfVWA__thumb/img/BXLhWVUfFkVhEV6BbEa18JOA_a8=/fit-in/200x150/filters:strip_icc()/pic4219953.jpg"}, #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" {:languages (list "en"), :name "<NAME>mission<NAME> <NAME>", :game/id #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130", :game/name "Commissioner Victor"}, #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" {:game/id #uuid "9353a118-c201-398a-83cc-6d58ccb38f02", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2839, :name "Action Retrieval"} #:com.boardgamegeek.mechanic{:id 2847, :name "Advantage Token"} #:com.boardgamegeek.mechanic{:id 2924, :name "Auction: Dutch"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Concordia", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1008, :name "Nautical"}), :com.boardgamegeek.boardgame/max-play-time 100, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 100, :com.boardgamegeek.boardgame/id "124361", :game/name "Concordia", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CzwSm8i7tkLz6cBnrILZBg__thumb/img/ESPSltYYSFK-aJw6jOTdQrJGpOc=/fit-in/200x150/filters:strip_icc()/pic3453267.jpg"}, #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" {:name "Connect 4 / Quattro", :game/id #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6", :game/name "Connect 4 / Quattro"}, #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" {:game/id #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Container", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"}), :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/id "23463", :game/name "Container", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ci0_OdQ-189r4QjQ_ylWcg__thumb/img/IrzG3AhYwSIeoahynhIV1Ou3ucA=/fit-in/200x150/filters:strip_icc()/pic4821859.jpg"}, #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" {:name "Cortex", :game/id #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83", :game/name "Cortex"}, #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" {:game/id #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb", :com.boardgamegeek.boardgame/min-players 2, :name "Cortex Geo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "203266", :game/name "Cortex Challenge GEO", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/29gZEF3-jNTJ90wSSAATGw__thumb/img/t2UqBSLQXpKNhyoOvpNPE97d51Q=/fit-in/200x150/filters:strip_icc()/pic3190835.jpg"}, #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" {:languages (list "en"), :name "Cosmic Enounter", :game/id #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9", :game/name "Cosmic Enounter"}, #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" {:game/id #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2965, :name "Multiple Maps"} #:com.boardgamegeek.mechanic{:id 2953, :name "Programmed Movement"} #:com.boardgamegeek.mechanic{:id 2948, :name "Resource to Move"} #:com.boardgamegeek.mechanic{:id 2003, :name "Rock-Paper-Scissors"} #:com.boardgamegeek.mechanic{:id 2892, :name "Roles with Asymmetric Information"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "crazy karts", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "195518", :game/name "Crazy Karts", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/tuz1paociIFCwki_tfN5pg__thumb/img/ZDIypgSQtMDsqbZVCKf3dcDT8sI=/fit-in/200x150/filters:strip_icc()/pic2935361.jpg"}, #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" {:game/id #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01", :com.boardgamegeek.boardgame/min-players 2, :name "Crazy Turf", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "209258", :game/name "Crazy Turf", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BJ7g-5ZBaOcdTg2Uv3T08A__thumb/img/f84XeqVja0Y7bZDoA4G69MY1ooA=/fit-in/200x150/filters:strip_icc()/pic3186921.jpg"}, #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" {:game/id #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Crooks", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1033, :name "Mafia"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "111172", :game/name "Crooks", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ddg1cTH9VaLE4aErYjrr0Q__thumb/img/4WGwUngVtEleBc8MuqU4y6mv6kw=/fit-in/200x150/filters:strip_icc()/pic2844726.jpg"}, #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" {:game/id #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Cubirds", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "245476", :languages (list "en"), :game/name "CuBirds", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Q7gnq4qbG73YRprMOicBEQ__thumb/img/-wmmOu7yKFsC89jw5VKqF79AuAw=/fit-in/200x150/filters:strip_icc()/pic4261952.png"}, #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" {:game/id #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Bluff You", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "201842", :languages (list "en"), :game/name "Cup of Bluff", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6sE8yku7XsFyQyb8felYxQ__thumb/img/NhYaVD4IDB4mHOfwnkJEH7xaLBc=/fit-in/200x150/filters:strip_icc()/pic3051680.jpg"}, #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" {:game/id #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Dany", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "265381", :languages (list "en" "fr"), :game/name "DANY", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/15ZfT3y5Wndrg7Cxp8BAYg__thumb/img/kJTC0OB3o0_4WwrTPCIFuycpULw=/fit-in/200x150/filters:strip_icc()/pic4465422.jpg"}, #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" {:game/id #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2850, :name "Events"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2888, :name "Tug of War"}), :new true, :name "Days of Ire: Budapest 1956", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1102, :name "Civil War"} #:com.boardgamegeek.category{:id 1069, :name "Modern Warfare"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "192802", :languages (list "en"), :game/name "Days of Ire: Budapest 1956", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ny0ORoE9a1Nnr9G8W1BvTw__thumb/img/-0GedxaygiIzJ1RrVozYA15W61M=/fit-in/200x150/filters:strip_icc()/pic6327791.png"}, #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" {:game/id #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066", :com.boardgamegeek.boardgame/min-players 2, :name "Decrypto", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "65952", :languages (list "en"), :game/name "Decrypto", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/WVGtlwI8Sp0HH4OGozuenA__thumb/img/5Q1OYKZK7_KgwaMZP6eeCUBuwWI=/fit-in/200x150/filters:strip_icc()/pic802013.jpg"}, #uuid "054f1270-bf79-32f9-825a-96880e800c9f" {:game/id #uuid "054f1270-bf79-32f9-825a-96880e800c9f", :com.boardgamegeek.boardgame/min-players 2, :name "The Endless River", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "165797", :game/name "Der unendliche Fluss", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/fZdfrPgGqjK-Brsrq7B_hg__thumb/img/OaZhWO7VcHKOg6h8xYOrMagcm7c=/fit-in/200x150/filters:strip_icc()/pic2238168.png"}, #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" {:game/id #uuid "86f0bb77-105e-3136-98ae-4837a11ed606", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Detective: City of Angels", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "218074", :languages (list "en"), :game/name "Detective: City of Angels", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/xWdK1lL-2ZTdzBZGYjjqkw__thumb/img/wl_YxOhd-S6QbpyHAQZGhV109rw=/fit-in/200x150/filters:strip_icc()/pic3469246.jpg"}, #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" {:game/id #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2823, :name "Score-and-Reset Game"} #:com.boardgamegeek.mechanic{:id 2991, :name "Speed Matching"}), :new true, :name "Dexterity Jane", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 9, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "300527", :languages (list "en"), :game/name "Dexterity Jane", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/XTP7QH9YqI4W5d2OIUBR1g__thumb/img/2-oJqLeYpC-P2CccMm7P2eiuOCw=/fit-in/200x150/filters:strip_icc()/pic6100741.png"}, #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" {:game/id #uuid "ef81a392-af64-3668-81ff-2c3b7736919f", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Osadnici z Katanu Junior", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "27766", :languages (list "cz"), :game/name "Die Siedler von Catan: Junior", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/-wW5iAnqudxpqGmT4YIQ7g__thumb/img/9qS-yi0nySdtOqGzy5a_jsGxEp4=/fit-in/200x150/filters:strip_icc()/pic266168.jpg"}, #uuid "096f6d71-6864-3882-898c-00b9142932e7" {:game/id #uuid "096f6d71-6864-3882-898c-00b9142932e7", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2953, :name "Programmed Movement"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Dive", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "304324", :languages (list "en"), :game/name "Dive", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iOla7B7sqs4IsGQcS4ghgA__thumb/img/oStmPCcaE3-Ncs6-EyRZDQfFVnE=/fit-in/200x150/filters:strip_icc()/pic5733939.png"}, #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" {:game/id #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2866, :name "Targeted Clues"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Dixit", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "39856", :game/name "Dixit", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/uSgzS-SClISqDkYRCdUq6g__thumb/img/iLgQV17c4xezI4ZeN_hmue_jh40=/fit-in/200x150/filters:strip_icc()/pic3483909.jpg"}, #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" {:game/id #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Dog Lover", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "344839", :languages (list "en"), :game/name "Dog Lover", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/k5vsit8aU1_PnrqTwum2YQ__thumb/img/Cxs0YbafjQeBS3Kqgf6CtOUPxu8=/fit-in/200x150/filters:strip_icc()/pic6503210.jpg"}, #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" {:game/id #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406", :com.boardgamegeek.boardgame/min-players 3, :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "172164", :languages (list "de"), :game/name "Dohdles!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/IXkDic7NjvYnhnb1rgSEIw__thumb/img/pNZbuy9ya2IDGgGPmVKuE2Y_dCQ=/fit-in/200x150/filters:strip_icc()/pic2606161.jpg"}, #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" {:game/id #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2901, :name "Delayed Purchase"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Dominion", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "36218", :languages (list "cz" "en"), :game/name "Dominion", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/j6iQpZ4XkemZP07HNCODBA__thumb/img/B2u2ghwlmI_qsUtCwuvcbnBcIqU=/fit-in/200x150/filters:strip_icc()/pic394356.jpg"}, #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" {:game/id #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Don’t Drop the Soap", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "32687", :languages (list "en"), :game/name "Don't Drop the Soap", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/LESe-G9vSHtXgFJ5XdJh9w__thumb/img/-0kHTzUikTs-oNfj-JP-RtCesPs=/fit-in/200x150/filters:strip_icc()/pic294901.jpg"}, #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" {:game/id #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"}), :name "Doppelgänger", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "162777", :languages (list "en"), :game/name "Doppelgänger", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/VUP_YfIMAMRbTqW7Az_z7w__thumb/img/yag9GSN6xhlvxKtphyYsJpmK_Go=/fit-in/200x150/filters:strip_icc()/pic3893983.jpg"}, #uuid "12218694-0010-31cc-a245-a502b7ed4b19" {:game/id #uuid "12218694-0010-31cc-a245-a502b7ed4b19", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2958, :name "Moving Multiple Units"} #:com.boardgamegeek.mechanic{:id 3006, :name "Predictive Bid"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Rivalove", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1031, :name "Racing"} #:com.boardgamegeek.category{:id 1038, :name "Sports"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "215311", :languages (list "cz"), :game/name "Downforce", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/c74C-NVJHuMVxt6A_j2TsA__thumb/img/OUdT3uFyqBBzN7q9ZDFN6WBiecU=/fit-in/200x150/filters:strip_icc()/pic3432548.png"}, #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" {:game/id #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4", :com.boardgamegeek.boardgame/min-players 2, :name "Drop it", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "244916", :languages (list "cz"), :game/name "Drop It", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kkF3MJrPU-byzAlFbxGYew__thumb/img/y0YSRjiGXFEawazsYFmVVoD3Q94=/fit-in/200x150/filters:strip_icc()/pic3958813.jpg"}, #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" {:languages (list "en"), :name "Dude and More Dude", :game/id #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c", :game/name "Dude and More Dude"}, #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" {:game/id #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2906, :name "I Cut, You Choose"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Duelosaur Island", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "247236", :languages (list "en"), :game/name "Duelosaur Island", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/paSj18K2b6r2pH-ax37mNA__thumb/img/EpqB5JtMfimf3pZNDc93Tbk8IXo=/fit-in/200x150/filters:strip_icc()/pic4194135.png"}, #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" {:game/id #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Priserky z podzemí", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "97207", :languages (list "cz"), :game/name "Dungeon Petz", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7JjAm9RM8E2pbu5KCCbsTQ__thumb/img/vySdmxWBad2T5Xrylxv-jYukFmU=/fit-in/200x150/filters:strip_icc()/pic1103979.jpg"}, #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" {:game/id #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :new true, :name "Durian", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 7, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "307963", :languages (list "en"), :game/name "Durian", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/QBwnHLJy8DRV2Mx-ZkB1_A__thumb/img/Pk2dokqgJ9hxgHHvZSadh4wKNog=/fit-in/200x150/filters:strip_icc()/pic5783560.png"}, #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" {:game/id #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Dust", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "29109", :game/name "Dust", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qvQEYh6nblN0xGi7J1qYkw__thumb/img/BYCvJ8YyMoMM1QtCn64nMs5-HYM=/fit-in/200x150/filters:strip_icc()/pic280668.jpg"}, #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" {:game/id #uuid "bf515360-5eca-32d5-ac9d-fb620b905619", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2924, :name "Auction: Dutch"} #:com.boardgamegeek.mechanic{:id 2932, :name "Auction: Dutch Priority"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Eight minute empire", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 8, :com.boardgamegeek.boardgame/id "131366", :languages (list "cz"), :game/name "Eight-Minute Empire", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HKj7MIw-zV-AmQ7PfoltRg__thumb/img/W0WHf_M-Dq-xO3yfzVA4USbjcgY=/fit-in/200x150/filters:strip_icc()/pic1443212.jpg"}, #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" {:game/id #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"}), :name "El capitan", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "178937", :game/name "El Capitan", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/06VFwFZb99qkd_2yFy480w__thumb/img/xN-XYFKDwdHSpOXRVcasm7H3iWE=/fit-in/200x150/filters:strip_icc()/pic3488237.jpg"}, #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" {:game/id #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2843, :name "Follow"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"}), :new true, :name "Eminent Domain", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "68425", :languages (list "en"), :game/name "Eminent Domain", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Dn3gJBq-k8Zww4a5yCzgOQ__thumb/img/IuAN5frtRpuyA5ZyueUdG3_DMxs=/fit-in/200x150/filters:strip_icc()/pic1160506.jpg"}, #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" {:game/id #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Enigma", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "9607", :game/name "Enigma", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6Yy5wNTGLy6o3GyGHSaCog__thumb/img/eO5w9imJtJVe0T2XiYbQZkw3JNo=/fit-in/200x150/filters:strip_icc()/pic39888.jpg"}, #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" {:game/id #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Epic Spell Wars: Panic at the Pleasure Palace", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "248075", :languages (list "en"), :game/name "Epic Spell Wars of the Battle Wizards: Panic at the Pleasure Palace", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nu23MbouJDmxGBPPKTHuqA__thumb/img/Y_0D4-J2-Kfds6ML28Oowo-pLnQ=/fit-in/200x150/filters:strip_icc()/pic4025218.jpg"}, #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" {:languages (list "en"), :name "Epic Spell Wars: Duel at Mt. Skullzfyre", :game/id #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5", :game/name "Epic Spell Wars: Duel at Mt. Skullzfyre"}, #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" {:game/id #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"}), :name "Once there was", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "61664", :game/name "Erzähl doch mal...", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5MaIJSDiE8jPkem-IVTonw__thumb/img/7guypUB7sZml3stBxx7UlOLiJ4Y=/fit-in/200x150/filters:strip_icc()/pic706519.jpg"}, #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" {:game/id #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2055, :name "Paper-and-Pencil"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"}), :name "Escape the Dark Castle", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1024, :name "Horror"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "227456", :languages (list "en"), :game/name "Escape the Dark Castle", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/d4MkgAvJOaJPVjxr6R9rKQ__thumb/img/fbbmrfibmcgPqNDbruBOE4-uTkc=/fit-in/200x150/filters:strip_icc()/pic5004159.jpg"}, #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" {:game/id #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Evolution", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1036, :name "Prehistoric"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "1080", :game/name "Evolution", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/L3BZMXWaOX9zZXyGedHDyQ__thumb/img/3bQoh-EJxL03Qq6wA0dbVAQrhSQ=/fit-in/200x150/filters:strip_icc()/pic279884.jpg"}, #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" {:game/id #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"}), :name "Evolution the beginning", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 1084, :name "Environmental"} #:com.boardgamegeek.category{:id 1036, :name "Prehistoric"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "201248", :languages (list "en"), :game/name "Evolution: The Beginning", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1rvefz1PSj1c3wC1UIGgnQ__thumb/img/hEcG7RPDUc5M7VsZcOqUMJQaNhM=/fit-in/200x150/filters:strip_icc()/pic3042047.jpg"}, #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" {:game/id #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2900, :name "Market"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"}), :new true, :name "Excavation Earth", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "292126", :languages (list "en"), :game/name "Excavation Earth", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wMXOMmbO9ktgHYhEQSrDlg__thumb/img/-W5iM9fVpNFalBSsBKimlXV_vUI=/fit-in/200x150/filters:strip_icc()/pic5012390.jpg"}, #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" {:languages (list "en"), :name "Exit: The abandoned cabin", :game/id #uuid "55ce9281-0034-3261-81ee-695fd1879fe7", :game/name "Exit: The abandoned cabin"}, #uuid "165261a9-0183-3e53-be82-ccc197c354b8" {:game/id #uuid "165261a9-0183-3e53-be82-ccc197c354b8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 3000, :name "Hot Potato"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Exploding Kittens", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "172225", :languages (list "en"), :game/name "Exploding Kittens", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/N8bL53-pRU7zaXDTrEaYrw__thumb/img/3tH4pIc1Udzkd0tXc6MgVQ59BC0=/fit-in/200x150/filters:strip_icc()/pic2691976.png"}, #uuid "a389677b-6118-3815-84fe-c1e75f38984c" {:game/id #uuid "a389677b-6118-3815-84fe-c1e75f38984c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Exploding Kittens NSFW", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "172242", :languages (list "en"), :game/name "Exploding Kittens: NSFW Deck", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/q1fHQMYtU-aajQKTYDlx7w__thumb/img/Az8jEnRuHEbXSn2TWVO4i2rE6ZQ=/fit-in/200x150/filters:strip_icc()/pic2815278.jpg"}, #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" {:game/id #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Fantastic Park", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "218576", :languages (list "en"), :game/name "Fantastic Park", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JWcDDlku6rMkVBPIzfM2xw__thumb/img/8fkElPvZEiOI0jqNOTarXybAQhQ=/fit-in/200x150/filters:strip_icc()/pic3375149.png"}, #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" {:game/id #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Fantasy realms", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "223040", :languages (list "en"), :game/name "Fantasy Realms", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/A7IOpPt-lHrMYsbRmxXWdQ__thumb/img/XoD3fXgApfY7-dfYyFeE6FVkbfY=/fit-in/200x150/filters:strip_icc()/pic6177962.jpg"}, #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" {:game/id #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "259005", :languages (list "de" "en"), :game/name "Farben", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bdtFnbOHc1TpBYtBq3gLGg__thumb/img/G4IZYxp25z-N9UklBdLsA1sQQiw=/fit-in/200x150/filters:strip_icc()/pic4319287.jpg"}, #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" {:game/id #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "Fast Flip", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "194088", :game/name "Fast Flip", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6YTV87TX0uU8gEcQr0p9aw__thumb/img/scLBO4mhJF2lrx9tEEBjcpOzsII=/fit-in/200x150/filters:strip_icc()/pic2904691.jpg"}, #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" {:game/id #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Faulpelz", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "153388", :game/name "Faulpelz", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/h-Fzhf0SGeicPwTtS6wRcA__thumb/img/eTDFdl4FA791dm3zSWAFOyeS9iU=/fit-in/200x150/filters:strip_icc()/pic1892559.jpg"}, #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" {:name "Fifty Shades of Grey", :game/id #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498", :game/name "Fifty Shades of Grey"}, #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" {:game/id #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"}), :name "Find the Animals", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "40837", :game/name "Finde die Tiere!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZsLp6eTL2-jnuAR8VjXp2w__thumb/img/DeFarGFET0ejB6QhmkExlJjmWeA=/fit-in/200x150/filters:strip_icc()/pic445108.jpg"}, #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" {:game/id #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"}), :new true, :name "Five Points: Gangs of New York", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1001, :name "Political"}), :com.boardgamegeek.boardgame/max-play-time 108, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "93540", :languages (list "en"), :game/name "Five Points: Gangs of New York", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qDZFKVCL-kOor061tkIUWA__thumb/img/aSllMoOcTQ5cwhPn5p1TL36Y9Vo=/fit-in/200x150/filters:strip_icc()/pic1541090.jpg"}, #uuid "91a5169d-5877-3642-9a52-54c4f01655da" {:game/id #uuid "91a5169d-5877-3642-9a52-54c4f01655da", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Fleets the pleiad conflict", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 120, :com.boardgamegeek.boardgame/id "156750", :languages (list "en"), :game/name "Fleets: The Pleiad Conflict", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pRAsGuQyvNiRSbIS5v_jqQ__thumb/img/sC8Tdln7ubDVsd6YBvmZpDL26oQ=/fit-in/200x150/filters:strip_icc()/pic2263070.jpg"}, #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" {:game/id #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Fools Gold", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "132758", :languages (list "en"), :game/name "Fool's Gold", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6hx-Td6GomNJL7J-Czd0Kg__thumb/img/FIF2g8gPLHOYRNeC8Vz-g5i7YDE=/fit-in/200x150/filters:strip_icc()/pic1800625.jpg"}, #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" {:game/id #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2960, :name "Map Reduction"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Forbidden Island", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "65244", :languages (list "en"), :game/name "Forbidden Island", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JgAkEBUaiHOsOS94iRMs2w__thumb/img/5aPR8-KMbgucI_XkPE2PJaMQQsg=/fit-in/200x150/filters:strip_icc()/pic646458.jpg"}, #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" {:languages (list "en"), :name "Fox in the Forest", :game/id #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb", :game/name "Fox in the Forest"}, #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" {:game/id #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"}), :name "Frankenstein", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "19030", :languages (list "en"), :game/name "Frankenstein", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/TFT3zgvVAx8U4BcDY9P5iA__thumb/img/waFGtDnsbNDB5_zgFBH6VSpG-eM=/fit-in/200x150/filters:strip_icc()/pic302246.jpg"}, #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" {:game/id #uuid "34946d54-6d22-3af0-afdb-e795b8de802b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2967, :name "Hidden Movement"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"}), :name "Fugitive", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1098, :name "Number"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "197443", :languages (list "en"), :game/name "Fugitive", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Jeukp3NUs-u6i3SuF-yE4A__thumb/img/1cw7pZbdLk2bBFh-tjkwzZXwgmw=/fit-in/200x150/filters:strip_icc()/pic3481216.png"}, #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" {:game/id #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Fuji flush", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "203430", :game/name "Fuji Flush", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/mobPzHA7UwgwiGzr2EVW9g__thumb/img/rQmbjRFo3DZhq7ufK3K1UwDI0x0=/fit-in/200x150/filters:strip_icc()/pic3086849.jpg"}, #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" {:game/id #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a", :com.boardgamegeek.boardgame/min-players 2, :name "Full Moon", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "136523", :languages (list "en"), :game/name "Full Moon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/QX1mkUrYWBeih3nfeP36sg__thumb/img/3gDOQSXQBBKWcyu5Bl4MQVpGLkw=/fit-in/200x150/filters:strip_icc()/pic1534029.jpg"}, #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" {:languages (list "de" "en"), :name "Fungi / morells", :game/id #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9", :game/name "Fungi / morells"}, #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" {:game/id #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Game of Thrones: Oathbreaker", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1001, :name "Political"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "275530", :languages (list "en"), :game/name "Game of Thrones: Oathbreaker", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/C3gHLeIl8333KBy1OOEyzw__thumb/img/4tQdfs8vggC32L-ZnbqfpC4-XD4=/fit-in/200x150/filters:strip_icc()/pic4635232.jpg"}, #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" {:game/id #uuid "9ecf0011-c0af-37eb-a590-f247005f0399", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2915, :name "Negotiation"} #:com.boardgamegeek.mechanic{:id 2858, :name "Prisoner's Dilemma"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "204837", :languages (list "cz"), :game/name "Game of Thrones: The Iron Throne", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/t9LtCL9_aSDliHPxHFNNeg__thumb/img/9EF6xEaV7AuEB9YCPC3FiSBpL1E=/fit-in/200x150/filters:strip_icc()/pic3109099.jpg"}, #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" {:game/id #uuid "af89834e-3251-3aa9-a464-74b8d24a5091", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Game of Trains", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1034, :name "Trains"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "180602", :languages (list "de" "en"), :game/name "Game of Trains", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CawgoeUEMFS4f14Iix9Exg__thumb/img/OYsku3__TTw8fiFYEWlhUBT7nIU=/fit-in/200x150/filters:strip_icc()/pic2608713.png"}, #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" {:game/id #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2913, :name "Bribery"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Gentleman’s deal", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 9, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "205776", :languages (list "en"), :game/name "Gentleman's Deal", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HJQGrFfsjbbCKykXE8brrA__thumb/img/LpJQFC8s55wuwWpAbogSUQxELck=/fit-in/200x150/filters:strip_icc()/pic3160826.jpg"}, #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" {:game/id #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "182050", :languages (list "en"), :game/name "Germania Magna: Border in Flames", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Oer5u8dNIo9y2ncEMIljGQ__thumb/img/sN9Px7o3oogpKe_1qe4glWujOv0=/fit-in/200x150/filters:strip_icc()/pic3130233.png"}, #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" {:game/id #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4", :com.boardgamegeek.boardgame/min-players 1, :new true, :name "Ghost Adventure", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "275032", :languages (list "en"), :game/name "Ghost Adventure", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/KX4vbo56H0zH55HJo0ZU3Q__thumb/img/7OkM6156VruWDxM7CoTFFDe310A=/fit-in/200x150/filters:strip_icc()/pic5636008.jpg"}, #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" {:game/id #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Giraffun", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "213358", :game/name "Giraf'Fun", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/22l0MMlmBatAMaxsIwZ-ew__thumb/img/KfT4gfFaMBqkLUeNd-grasK1fCo=/fit-in/200x150/filters:strip_icc()/pic3304372.jpg"}, #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" {:game/id #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2038, :name "Singing"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Glimpse", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 99, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "201595", :languages (list "en"), :game/name "Glimpse", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Oo_huFZJtGQVBkhOOeYr1Q__thumb/img/fPW0sy9y9Q7qdntQTeaMdqFFhpg=/fit-in/200x150/filters:strip_icc()/pic3192493.jpg"}, #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" {:game/id #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Globe twister", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1097, :name "Travel"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "257924", :languages (list "cz" "de" "en" "fr"), :game/name "Globe Twister", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/sFcxNCKHiiqjQdBSo4O1Hg__thumb/img/LJpave2uTNe9UgAaehNAD3gK71Q=/fit-in/200x150/filters:strip_icc()/pic4261553.jpg"}, #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" {:game/id #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 3001, :name "Layering"} #:com.boardgamegeek.mechanic{:id 2836, :name "Lose a Turn"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Gloom", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "12692", :languages (list "en"), :game/name "Gloom", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/jD7_Ir8gL_9AXC-wjnqjHg__thumb/img/wWqmoercFrbIFjS1FloZFTZddcE=/fit-in/200x150/filters:strip_icc()/pic2080481.jpg"}, #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" {:languages (list "lagoonies"), :name "Glupsch geister", :game/id #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8", :game/name "Glupsch geister"}, #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" {:game/id #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "Go", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "188", :game/name "Go", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6qAiZwWxSSKP2kFcA80cZg__thumb/img/COT5I3D_0dKWrSRHChb-SnQl3Zc=/fit-in/200x150/filters:strip_icc()/pic1728832.jpg"}, #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" {:game/id #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "217553", :languages (list "cz"), :game/name "Go Go Gelato!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/970IA1qF--JQB4C-SAiX-w__thumb/img/WiZooxvVjFDpelW4XsliMXTl8OM=/fit-in/200x150/filters:strip_icc()/pic3363675.jpg"}, #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" {:game/id #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"}), :name "Gobbit", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "132620", :languages (list "cz" "fr"), :game/name "Gobbit", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bMWoFNQFesjs64shTr-ObA__thumb/img/0EsCUEryLNYdObPJzB2SRNUo0yQ=/fit-in/200x150/filters:strip_icc()/pic4819194.png"}, #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" {:game/id #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Goblins inc.", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "110524", :languages (list "en"), :game/name "Goblins, Inc.", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/y-7XKqyWHh3sE5N86EBUfA__thumb/img/UtLa49EALZ2DVwSgsR9Ku5hE6hU=/fit-in/200x150/filters:strip_icc()/pic1415862.jpg"}, #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" {:languages (list "cz"), :name "Goblíci jedlíci / Gobblet Gobblers", :game/id #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287", :game/name "Goblíci jedlíci / Gobblet Gobblers"}, #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" {:game/id #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"}), :name "Going Postal", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "292795", :languages (list "en"), :game/name "Going Postal", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Q8xKywi0R2rvrsXgS1Ay0Q__thumb/img/a-VLo5gnnZdBt3cgrsowjnqsSUM=/fit-in/200x150/filters:strip_icc()/pic5080591.jpg"}, #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" {:game/id #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2930, :name "Auction: Dexterity"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Going going gone", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "144761", :languages (list "en"), :game/name "Going, Going, GONE!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/LSWJQZ4t6_Re_iz3SMv2-w__thumb/img/vrodOnKIbdD7T5oJdV5AsrRuhHk=/fit-in/200x150/filters:strip_icc()/pic1742682.jpg"}, #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" {:game/id #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Goosebumps the board game", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 35, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "189657", :languages (list "en"), :game/name "Goosebumps: The Board Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/j082xJe0y4t_diBc8InuXw__thumb/img/5QrDwoPafDRBrrRhY5Y2WzitOjY=/fit-in/200x150/filters:strip_icc()/pic2809741.jpg"}, #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" {:game/id #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "253756", :languages (list "en"), :game/name "<NAME>or<NAME>", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gXQ4IAIpBejz3N1LPpreMg__thumb/img/gVozjy2zCuvg2EHYkJxxUDfm8BY=/fit-in/200x150/filters:strip_icc()/pic4146552.jpg"}, #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" {:game/id #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2911, :name "Ownership"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2813, :name "Rondel"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Great western trail", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1055, :name "American West"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "193738", :languages (list "cz" "en"), :game/name "Great Western Trail", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/u1l0gH7sb_vnvDvoO_QHqA__thumb/img/9lxFidyDb8j6D1vobx4e3UwZ-FI=/fit-in/200x150/filters:strip_icc()/pic4887376.jpg"}, #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" {:game/id #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :new true, :name "Greedy Kingdoms", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "57201", :languages (list "en"), :game/name "Greedy Kingdoms", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pY-YcQyPuTkhoojWrrAR3A__thumb/img/zqDTc4anPBGjYWMvojNtKh9Y96w=/fit-in/200x150/filters:strip_icc()/pic565301.jpg"}, #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" {:game/id #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Gretchinz", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1031, :name "Racing"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "239951", :languages (list "en"), :game/name "Gretchinz!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Dv7p-wFsyKbRwlWo8FObwQ__thumb/img/Tl69LY5QGCOVt7Ygg9pJ1aacaEg=/fit-in/200x150/filters:strip_icc()/pic3856833.jpg"}, #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" {:game/id #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4", :com.boardgamegeek.boardgame/min-players 3, :name "Guess What", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "142103", :game/name "Guess What!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kMaXgIDf-AQzYEM9Roo8jw__thumb/img/axTBuQdbroN7PMk4HQtGaxLDw6I=/fit-in/200x150/filters:strip_icc()/pic1699333.png"}, #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" {:game/id #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Hunger the show", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "219670", :languages (list "en"), :game/name "HUNGER: The Show", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0PlLZN729gkNyyYB7M264Q__thumb/img/OjtXDO3gita_jOZkYdj62C-rH70=/fit-in/200x150/filters:strip_icc()/pic3532789.jpg"}, #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" {:game/id #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Hadara", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "269144", :languages (list "cz"), :game/name "Hadara", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/17wJNXSBYuVmKryV9lEKsQ__thumb/img/nVMvEWrTFCoOE9Y3tqFLelkjYWw=/fit-in/200x150/filters:strip_icc()/pic5099398.jpg"}, #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" {:game/id #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Hail Hydra", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "256877", :languages (list "en"), :game/name "Hail Hydra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/vqVPJtDgFGrU4UUpygn19w__thumb/img/HlRZwWhjdliHGnxY2x7-pkj-1I8=/fit-in/200x150/filters:strip_icc()/pic4233915.jpg"}, #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" {:game/id #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "<NAME>ali", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "1130", :game/name "Halali", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/DB9K9asuaH7Na3AKH2G5dg__thumb/img/kQGmAAkgT5J7ZLgUAxldNxeA1vg=/fit-in/200x150/filters:strip_icc()/pic14240.jpg"}, #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" {:game/id #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1045, :name "Memory"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "98778", :game/name "Hanabi", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JDVksMwfcqoem1k_xtZrOA__thumb/img/amCeCcEKhYGbVtDvpvIMnu3qTg0=/fit-in/200x150/filters:strip_icc()/pic2007286.jpg"}, #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" {:game/id #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Happy pigs", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "156138", :languages (list "en"), :game/name "Happy Pigs", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gbUdxyfnt-P2i2fmPixN_Q__thumb/img/iIQwlVdbR6VMj5R6-Wi25LKTI0c=/fit-in/200x150/filters:strip_icc()/pic2830958.jpg"}, #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" {:game/id #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Šťastný candát", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 2, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 2, :com.boardgamegeek.boardgame/id "194626", :languages (list "cz"), :game/name "Happy Salmon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/m0fTHQRSHztlpHsCzR9iAw__thumb/img/EA1AyifbIZB00-p569p0p7cBi5U=/fit-in/200x150/filters:strip_icc()/pic2913980.png"}, #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" {:game/id #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "165662", :languages (list "en"), :game/name "<NAME>", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/sOwpuouKdVSYmpz9oIJv_g__thumb/img/nwsGruWd-5XPmYPY3RG72-MsQ6g=/fit-in/200x150/filters:strip_icc()/pic2678962.jpg"}, #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" {:game/id #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Hat trick", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "11153", :game/name "Hat Trick", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ur5TMXRKUNod-fjT6GoWWg__thumb/img/vNtveDGyNhKtuvZaDrfGXftu-SA=/fit-in/200x150/filters:strip_icc()/pic46136.jpg"}, #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" {:game/id #uuid "cdd0afaf-944b-3605-ab9e-990704f79409", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :new true, :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "324467", :languages (list "en"), :game/name "<NAME>", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gdL3oocd-YZdV-eov01mzQ__thumb/img/MzaD_ZISvY6hH-Mht-YA5UiOq_g=/fit-in/200x150/filters:strip_icc()/pic6388848.png"}, #uuid "826863b8-1605-33a8-9169-91ebcb89712b" {:game/id #uuid "826863b8-1605-33a8-9169-91ebcb89712b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2960, :name "Map Reduction"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "Hey that’s my fish", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "8203", :game/name "Hey, That's My Fish!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CR2jXsbmCdhDYo2zI6cJFQ__thumb/img/6jjUgJWbOMUZ4JIEqJF0MzP6tO8=/fit-in/200x150/filters:strip_icc()/pic1004115.jpg"}, #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" {:game/id #uuid "75466a84-a8e4-3539-bad7-a8f56097c633", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2930, :name "Auction: Dexterity"} #:com.boardgamegeek.mechanic{:id 2920, :name "Auction: Sealed Bid"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :new true, :name "Hibachi", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "313718", :languages (list "en"), :game/name "Hibachi", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wXeBFmXw3QrNJBz05tbF4g__thumb/img/AXT-WLek_ayeFVWarBzcCvL6Dhg=/fit-in/200x150/filters:strip_icc()/pic5517561.jpg"}, #uuid "434338bc-9501-334b-adbf-2b3752e9e231" {:game/id #uuid "434338bc-9501-334b-adbf-2b3752e9e231", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2964, :name "Pieces as Map"} #:com.boardgamegeek.mechanic{:id 3005, :name "Slide/Push"} #:com.boardgamegeek.mechanic{:id 2944, :name "Three Dimensional Movement"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Hive Pocket", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "154597", :languages (list "de" "en"), :game/name "Hive Pocket", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/4DffKExiPihIf9T_AqkPCQ__thumb/img/0EuD6uQ0lLAb2jtY6YC0EduW7Gw=/fit-in/200x150/filters:strip_icc()/pic1299877.png"}, #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" {:game/id #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Holding on", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 2145, :name "Medical"} #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "245444", :languages (list "en"), :game/name "Holding On: The Troubled Life of <NAME> K<NAME>", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/lKHrfnNpblE-ZoqiAt8RUw__thumb/img/mg863nmqfO4wjGxV1EqqaxhLzOg=/fit-in/200x150/filters:strip_icc()/pic4177569.jpg"}, #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" {:game/id #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Holmes Sherlock and Mycroft", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "174078", :languages (list "en"), :game/name "Holmes: Sherlock & Mycroft", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/EAUE93YGXVFJW1FwftPRgw__thumb/img/4ByVnF3DSfQTxwsUMPRmDMQrWFA=/fit-in/200x150/filters:strip_icc()/pic2431481.jpg"}, #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" {:languages (list "en"), :name "Home Stretch", :game/id #uuid "0d22fe23-de11-3728-9634-4b0114313a9f", :game/name "Home Stretch"}, #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" {:game/id #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Honba za Pokladem", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1084, :name "Environmental"} #:com.boardgamegeek.category{:id 1098, :name "Number"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "131414", :languages (list "cz"), :game/name "Honba za pokladem", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/u0c2qcKFO-CZXW7mTA7k1Q__thumb/img/1OWhhlIs8NwGCbW4NUkjkSgIi34=/fit-in/200x150/filters:strip_icc()/pic1436457.jpg"}, #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" {:game/id #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Hospital Rush", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 2145, :name "Medical"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "119265", :languages (list "en"), :game/name "Hospital Rush", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rVWdEN9wzXzz2goU5xeXkQ__thumb/img/sC7xAly_TzGn1l7kNuYQvEpoVqw=/fit-in/200x150/filters:strip_icc()/pic2218972.jpg"}, #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" {:languages (list "cz"), :name "Hospodský kvíz", :game/id #uuid "d803129a-da52-3403-b88a-1331f9bf89b1", :game/name "Hospodský kvíz"}, #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" {:game/id #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Hound", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "255632", :languages (list "en"), :game/name "Hound", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7zHXxwcHjq2Yp2woQkk2DA__thumb/img/keVJuY3uTOGRPtKIs8R66mXQcJ4=/fit-in/200x150/filters:strip_icc()/pic4334234.jpg"}, #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" {:languages (list "cz"), :name "<NAME>", :game/id #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6", :game/name "Hravé kroužky"}, #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" {:game/id #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "23435", :game/name "Hugo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ERhkAfrYHD-jpsBf1L9mTQ__thumb/img/flSO_ro1ATTQw5EaCkeaSqa8UvE=/fit-in/200x150/filters:strip_icc()/pic165694.jpg"}, #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" {:game/id #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Hvezdokupy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "187538", :languages (list "cz"), :game/name "Hvězdokupy: Hra plná hvězd", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/dpuO8gjLSm0R6EJRpCaF3w__thumb/img/E2XFve6QnxBMsib3rraDVxuPvKw=/fit-in/200x150/filters:strip_icc()/pic2740107.jpg"}, #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" {:game/id #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Hypergrid", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "209206", :game/name "Hypergrid", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wDAL9LJQ1GoiRXeGQ9fnaw__thumb/img/ro9Zk2Fj6Ou8JR_S3uDmkVwELi8=/fit-in/200x150/filters:strip_icc()/pic3184914.jpg"}, #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" {:languages (list "cz"), :name "I Know: Hit list", :game/id #uuid "c693b4c3-9720-303a-836a-8f25b4da698a", :game/name "I Know: Hit list"}, #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" {:game/id #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2860, :name "Flicking"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Ice Cool", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "177524", :game/name "ICECOOL", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/xVx8ex1fjO9C7W8rRvWdVQ__thumb/img/7ZeCdaJWigksF5wUHTGGXmmfP6Y=/fit-in/200x150/filters:strip_icc()/pic3320017.png"}, #uuid "b4991e13-f466-39b4-be16-56909272f1cc" {:game/id #uuid "b4991e13-f466-39b4-be16-56909272f1cc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Illuminati", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "28", :languages (list "en"), :game/name "Illuminati", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ea8y04WKGgdQkFy1Pbw9tA__thumb/img/eph2ZknTAhhs-A8ij76DJbhzjrs=/fit-in/200x150/filters:strip_icc()/pic1320091.jpg"}, #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" {:game/id #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Imperial Settlers", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "154203", :languages (list "en"), :game/name "Imperial Settlers", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pRwsvyfsRJ-lWWwVJCdXNg__thumb/img/-b7sYBaUVxdZ_a33QRfvJY2ccAk=/fit-in/200x150/filters:strip_icc()/pic2871265.jpg"}, #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" {:languages (list "en"), :name "Isle of Skye", :game/id #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434", :game/name "Isle of Skye"}, #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" {:game/id #uuid "0ef8f876-d62a-3535-ae28-410454e3634b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Istanbul", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "148949", :languages (list "cz"), :game/name "Istanbul", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/PHH9Mreen2sBcxV6ZsE3ew__thumb/img/Vzpg3sdeAbCy0IxSAoh1aH9nvDE=/fit-in/200x150/filters:strip_icc()/pic1885326.jpg"}, #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" {:game/id #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "It dies with me", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "246709", :languages (list "en"), :game/name "It Dies With Me", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/DWMT6FxLomGvgYzfKJTuKw__thumb/img/C6-AyY0PP5fFzG1eDyVcWCwHd1g=/fit-in/200x150/filters:strip_icc()/pic4466127.jpg"}, #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" {:game/id #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2883, :name "Connections"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"}), :new true, :name "It’s Obvious!", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "338747", :languages (list "en"), :game/name "It's Obvious", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/r4Av0cBw_qHPEM3IypNE4w__thumb/img/94t98GCbpq57IyMEbz9RUuLPdgw=/fit-in/200x150/filters:strip_icc()/pic6315328.jpg"}, #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" {:game/id #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Itchy Monkey", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "249404", :languages (list "en"), :game/name "Itchy Monkey", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZxA13WeYt4YN6UdzBg_R1Q__thumb/img/f1Dgcax5BCbGgSAX4FEWjNB-AhY=/fit-in/200x150/filters:strip_icc()/pic4275085.jpg"}, #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" {:game/id #uuid "e4b769db-2a42-392d-b311-b02c3545d07d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2987, :name "Hidden Victory Points"} #:com.boardgamegeek.mechanic{:id 2900, :name "Market"} #:com.boardgamegeek.mechanic{:id 2823, :name "Score-and-Reset Game"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "54043", :languages (list "fr"), :game/name "Jaipur", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/_LTujSe_o16nvjDC-J0seA__thumb/img/82vhODfpxIT03BzW4NkisJ5Unzs=/fit-in/200x150/filters:strip_icc()/pic5100947.jpg"}, #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" {:game/id #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Jamaica", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1008, :name "Nautical"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "28023", :game/name "Jamaica", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/jZRfv3isrBG5waCzEx60Cw__thumb/img/6q5nirF5yn1d0qtjm2UEI5HV874=/fit-in/200x150/filters:strip_icc()/pic6434838.png"}, #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" {:game/id #uuid "647e229b-c07b-3419-a641-254ed8b96dbd", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2865, :name "Player Judge"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "193621", :languages (list "en"), :game/name "Joking Hazard", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ohrUtQ0FGHPSFxfSX2Ltmg__thumb/img/r9PhVsbOjPDDLfVKBhwrPnqV4LI=/fit-in/200x150/filters:strip_icc()/pic6411897.png"}, #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" {:game/id #uuid "18594966-e721-3762-8ad4-b4cc663db0b9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2837, :name "Interrupts"} #:com.boardgamegeek.mechanic{:id 2871, :name "Kill Steal"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "<NAME>: <NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "275034", :languages (list "en"), :game/name "<NAME>: <NAME>ter", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/voQGyVEKCWsh-EfbjdnDCA__thumb/img/YgMuh3DbFOp8k2FqPWNkxEbJ0SE=/fit-in/200x150/filters:strip_icc()/pic4973077.jpg"}, #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" {:game/id #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Jungle Brunch", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "130907", :game/name "Jungle Brunch", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/oRyH1goh93mCNr1m0bMLtA__thumb/img/WdokDmJ4wy1iQtfbVtSzaTVU_bo=/fit-in/200x150/filters:strip_icc()/pic1422658.jpg"}, #uuid "f18187e7-f398-32f0-b73e-625e848d8333" {:game/id #uuid "f18187e7-f398-32f0-b73e-625e848d8333", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Jungle race", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "14616", :languages (list "en"), :game/name "Jungle Race", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/WOx_B6WTWG9Pmn0S1-6bgQ__thumb/img/UfQc3KADnR_X34kclxhkAPafeQg=/fit-in/200x150/filters:strip_icc()/pic2105293.jpg"}, #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" {:game/id #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2999, :name "Bingo"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2906, :name "I Cut, You Choose"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2821, :name "Single Loser Game"} #:com.boardgamegeek.mechanic{:id 2988, :name "Stacking and Balancing"}), :name "Junk Art", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "193042", :languages (list "cz"), :game/name "Junk Art", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5VDnpX_3ykgCjTJSmHdfCA__thumb/img/LLHF9t1MxB0m-NBe_C9cxAyIslA=/fit-in/200x150/filters:strip_icc()/pic2884509.jpg"}, #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" {:game/id #uuid "e9e59065-5acd-3d1d-876b-8cb866541534", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"}), :name "Just One", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 7, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "254640", :languages (list "en"), :game/name "Just One", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qKcKjHpzAvLddwBhyindag__thumb/img/HhZu2qLp9wyX9PNgvmDE8_hCl-0=/fit-in/200x150/filters:strip_icc()/pic4268499.jpg"}, #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" {:game/id #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Kahuna", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "394", :game/name "Kahuna", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UdhhVlmQihMbvlNSvY1lUA__thumb/img/bc5NxkspfUfPskxlC30SxlwNyxs=/fit-in/200x150/filters:strip_icc()/pic2606165.jpg"}, #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" {:name "<NAME>", :game/id #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f", :game/name "Kaleva", :com.boardgamegeek.boardgame/id "182174", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/sdnIpVpAqsZyckQmnql0fg__thumb/img/5-NmFZcvHYLlSIpIVeEiE73_v4o=/fit-in/200x150/filters:strip_icc()/pic2634113.jpg", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"})}, #uuid "2293c663-d1bc-3701-9a53-009f457c6940" {:game/id #uuid "2293c663-d1bc-3701-9a53-009f457c6940", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2829, :name "Turn Order: Claim Action"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Kanagawa", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "200147", :languages (list "en"), :game/name "Kanagawa", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Rr2JrRztCFzzikJ9YL5-Dw__thumb/img/x9MtKEQlcQ_jS-5AVMeZ28NOC0s=/fit-in/200x150/filters:strip_icc()/pic3105168.jpg"}, #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" {:game/id #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"}), :name "Kashgar", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "143175", :languages (list "de"), :game/name "Kashgar: Merchants of the Silk Road", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wEcuixeJMR4e1Jj85qRvWA__thumb/img/262Z59cV9FNpYczcYBOaAIKmgFc=/fit-in/200x150/filters:strip_icc()/pic3697855.jpg"}, #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" {:game/id #uuid "abc5edec-2835-3550-b622-c491cdafdb5e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :new true, :name "Kemet", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "127023", :languages (list "en"), :game/name "Kemet", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/RmZjhy7_6REp8IaXh9Zqwg__thumb/img/930_NppLsnIGUDG_W6wkdOGgKR8=/fit-in/200x150/filters:strip_icc()/pic3979527.jpg"}, #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" {:game/id #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Kerala", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 3, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "31154", :languages (list "en"), :game/name "Kerala", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/XiiLyFXVcd8iDmXZbTssfw__thumb/img/ffJlDKp1rIRm9TDj4ApwpNYaqJk=/fit-in/200x150/filters:strip_icc()/pic1064029.png"}, #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" {:game/id #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "194196", :languages (list "en"), :game/name "Kharnage", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Pp3N1Ai0QMzKcU7XVlLnEA__thumb/img/XNWruCF2upZHUFlcVL_88lnnPW4=/fit-in/200x150/filters:strip_icc()/pic3372416.jpg"}, #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" {:languages (list "en"), :name "Kill Dr. Lucky", :game/id #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1", :game/name "Kill Dr. Lucky"}, #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" {:game/id #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Kilt Castle", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "205826", :languages (list "en"), :game/name "Kilt Castle", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZwHGdOOym-ZlS8mR1oa9Vg__thumb/img/GUyr4p7NCEVWBB2O0Y5J0kr9JBw=/fit-in/200x150/filters:strip_icc()/pic3126011.jpg"}, #uuid "b1127074-659b-3102-907a-25a0473a3e98" {:game/id #uuid "b1127074-659b-3102-907a-25a0473a3e98", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Quibbit", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "209849", :game/name "King Frog", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CRNr-IjANGmnMly93P9_lw__thumb/img/C85uPMQ3exnB5lhL8JPZ4GWj5jc=/fit-in/200x150/filters:strip_icc()/pic3648641.png"}, #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" {:game/id #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2856, :name "Die Icon Resolution"} #:com.boardgamegeek.mechanic{:id 2886, :name "King of the Hill"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "King of New York", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "160499", :languages (list "en"), :game/name "King of New York", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/FGekxht_r5xqt8oSmQ9HZg__thumb/img/DBoMebkqbcyZWJVLC5MRbF-YbnU=/fit-in/200x150/filters:strip_icc()/pic2407103.jpg"}, #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" {:game/id #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2856, :name "Die Icon Resolution"} #:com.boardgamegeek.mechanic{:id 2886, :name "King of the Hill"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"}), :name "King of Tokyo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "70323", :languages (list "cz" "en"), :game/name "King of Tokyo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/m_RzXpHURC0_xLkvRSR_sw__thumb/img/OfgWmkGJj5BgOO0zFHEtP5CHfbU=/fit-in/200x150/filters:strip_icc()/pic3043734.jpg"}, #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" {:game/id #uuid "22b3df14-e100-33a6-a098-e396cb523d6a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2956, :name "Chaining"} #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Kingdom Builder", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "107529", :game/name "Kingdom Builder", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kJOP_BICVX-88sKqFRh9PQ__thumb/img/KwrWpSRncnCE0cEldldyVQ-0Cdk=/fit-in/200x150/filters:strip_icc()/pic1152359.jpg"}, #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" {:game/id #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2826, :name "Turn Order: Stat-Based"}), :name "Kingdomino", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "204583", :languages (list "cz"), :game/name "Kingdomino", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/3h9W8BfB_rltQ48EBmHliw__thumb/img/RGpbcY90eBcNLXbHLMBwLrr2uzo=/fit-in/200x150/filters:strip_icc()/pic3132685.png"}, #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" {:game/id #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "King’s struggle", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "253568", :languages (list "en"), :game/name "Kings' Struggle", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZQI6aR6IcK_EJHCufesE4A__thumb/img/gY4LOjIxf29hE5mceE0auAgR1Cg=/fit-in/200x150/filters:strip_icc()/pic4139916.jpg"}, #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" {:languages (list "cz"), :name "Kmotr / Godfather", :game/id #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f", :game/name "Kmotr / Godfather"}, #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" {:languages (list "en"), :name "<NAME>", :game/id #uuid "a673ace7-74a3-384d-823b-f8131295d6d1", :game/name "Koba yakawa"}, #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" {:languages (list "cz"), :name "<NAME>", :game/id #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f", :game/name "Kocka Karla"}, #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" {:game/id #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 3001, :name "Layering"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :new true, :name "Kodama: The Tree Spirits", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "181810", :languages (list "en"), :game/name "Kodama: The Tree Spirits", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/c5plwwXh0T5S3spJqFwxNQ__thumb/img/a3HWHogUfMBWon0jjJkJ6G2gr90=/fit-in/200x150/filters:strip_icc()/pic3291451.jpg"}, #uuid "938351d5-c89e-32e0-af3b-73d217217b14" {:languages (list "cz"), :name "<NAME>", :game/id #uuid "938351d5-c89e-32e0-af3b-73d217217b14", :game/name "Kohouti namluvy"}, #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" {:languages (list "ru"), :name "<NAME>osta Py<NAME>", :game/id #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83", :game/name "Kosta Pyaha"}, #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" {:name "Kumo", :game/id #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b", :game/name "Kumo"}, #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" {:game/id #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/id "17442", :game/name "Kung F<NAME>", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/f3Cn4GZRQ5q9JwBOVYUDlg__thumb/img/cwT18Dr8XcStsDfnILK29D_wOpI=/fit-in/200x150/filters:strip_icc()/pic75405.jpg"}, #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" {:game/id #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :new true, :name "<NAME>", :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "151453", :languages (list "en"), :game/name "Kyoto", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qwD4rxcmKsvIjjnGryG7jQ__thumb/img/UOybw4gDkgld6f4zZWvmZuOCZo4=/fit-in/200x150/filters:strip_icc()/pic5268028.png"}, #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" {:game/id #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "L.L.A.M.A.", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"} #:com.boardgamegeek.category{:id 1101, :name "Video Game Theme"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "18051", :languages (list "cz"), :game/name "L.L.A.M.A.", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/DIlvdiqrtsThyG-zrbcoaQ__thumb/img/PHwqvNIPyequuc8a1SBCiJ9cSdQ=/fit-in/200x150/filters:strip_icc()/pic385756.jpg"}, #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" {:game/id #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Left Center Right", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "3522", :languages (list "en"), :game/name "LCR", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wuS6NwGsDEThQlf12vVBxA__thumb/img/DQ99drs5cEMSyflPM7jV0dhZhjY=/fit-in/200x150/filters:strip_icc()/pic155138.jpg"}, #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" {:languages (list "en"), :name "LOTR card game", :game/id #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0", :game/name "LOTR card game"}, #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" {:game/id #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2961, :name "Map Deformation"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Labyrinth", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1059, :name "Maze"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "1219", :languages (list "de" "en" "fr"), :game/name "Labyrinth", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qpL225YNN5iKRPotB7Q7MA__thumb/img/JZR5MVC8xYrboBrYMsZmWtjJTu0=/fit-in/200x150/filters:strip_icc()/pic6173371.jpg"}, #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" {:game/id #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "126912", :languages (list "en" "fr"), :game/name "<NAME>", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6FMrU00_0KHRoVw1hA8eog__thumb/img/LJTPIpdTnlqOO8jH2GGMFBi9Upg=/fit-in/200x150/filters:strip_icc()/pic1431498.jpg"}, #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" {:game/id #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Le Fantome de l’Opera", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1054, :name "Music"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "145645", :languages (list "en" "fr"), :game/name "Le Fantôme de l'Opéra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/L4Of6W3yhhjYgmUjH2FDpQ__thumb/img/_evRWSRlE2VrjLu5XCxlayW0qmI=/fit-in/200x150/filters:strip_icc()/pic1726671.jpg"}, #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" {:name "Legendary Encounters", :game/id #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65", :game/name "Legendary Encounters"}, #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" {:game/id #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "Let’s Drink", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "261251", :languages (list "en"), :game/name "Let's Drink", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/A2uEWD8yMEdnNMih_DDRNQ__thumb/img/Ix5MpioQ4dnNkvYeu9yUVQwKDCw=/fit-in/200x150/filters:strip_icc()/pic5002036.jpg"}, #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" {:game/id #uuid "4921b8e8-521a-3a27-9aac-936218a067c7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"}), :name "Letter Jam", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "275467", :languages (list "en"), :game/name "Letter Jam", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kBZGJlIqir1I_EVCr2nDbg__thumb/img/mSl669ndQnGcsmKfe0Yppc1XvbI=/fit-in/200x150/filters:strip_icc()/pic4853794.jpg"}, #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" {:game/id #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2988, :name "Stacking and Balancing"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Bild it", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "132497", :languages (list "lift it"), :game/name "Lift it!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Q_R2gkpJwV-oKNey6eeIcQ__thumb/img/BbmMGq1NLQwWJXrsV-mNs98X3zY=/fit-in/200x150/filters:strip_icc()/pic2568580.jpg"}, #uuid "5a156002-5793-338e-9399-def9bfd7eca6" {:game/id #uuid "5a156002-5793-338e-9399-def9bfd7eca6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Ligretto", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "943", :game/name "Ligretto", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BQ6UyXXeivndO4F9Hu8CHw__thumb/img/2dXMh9HI7oiLw7ZGeLcrwfXLtjI=/fit-in/200x150/filters:strip_icc()/pic1306961.jpg"}, #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" {:languages (list "en"), :name "Little Monster who came to tea", :game/id #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3", :game/name "Little Monster who came to tea"}, #uuid "39af5c41-5927-3dde-8a75-10397211dcda" {:game/id #uuid "39af5c41-5927-3dde-8a75-10397211dcda", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Loch Ness", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "77076", :game/name "Loch Ness", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ircfsOW-o8JsIH32Rdb5dg__thumb/img/ZhX_r9YSxxQYWhZ8fnaRw_7EHUo=/fit-in/200x150/filters:strip_icc()/pic775371.jpg"}, #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" {:game/id #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :new true, :name "London", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "65781", :languages (list "en"), :game/name "London", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Wb9zwcnPNX-wSNvVcWYNjQ__thumb/img/XOY71ukn7QV-nwLSV3EmhuO46bM=/fit-in/200x150/filters:strip_icc()/pic770317.jpg"}, #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" {:game/id #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"}), :name "Longhorn", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1055, :name "American West"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1011, :name "Transportation"}), :com.boardgamegeek.boardgame/max-play-time 80, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 80, :com.boardgamegeek.boardgame/id "22460", :languages (list "en"), :game/name "Longhorn", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Eaudm6F4BQY8pXe06vle_A__thumb/img/leiaNCoFjDnW3S_1PSShVHu2xbM=/fit-in/200x150/filters:strip_icc()/pic117266.jpg"}, #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" {:languages (list "cz"), :name "Looney Quest", :game/id #uuid "b4f52f37-41db-379b-94e2-3b8911f49401", :game/name "Looney Quest"}, #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" {:game/id #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"}), :name "Looping Louie", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 2650, :name "Aviation / Flight"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1072, :name "Electronic"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "327", :languages (list "en"), :game/name "Loopin' Louie", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/e9CWevSJC03NzLybnCKEVQ__thumb/img/vQZYNWt9xSZez7NCoMB5Lz9yBdY=/fit-in/200x150/filters:strip_icc()/pic4025029.png"}, #uuid "423cb589-88be-336d-ada8-9817b5fe519e" {:game/id #uuid "423cb589-88be-336d-ada8-9817b5fe519e", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Lords of Hellas", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "222509", :languages (list "cz"), :game/name "Lords of Hellas", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iOqSO4vRZFp4MqEKXDXEIw__thumb/img/o7KVJlL45wZxunl0wwwJjqTPl3s=/fit-in/200x150/filters:strip_icc()/pic3592207.jpg"}, #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" {:game/id #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Lost cities board game", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "42487", :game/name "Lost Cities: The Board Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/d-LqrhWAEuIxdEL6DoR2Jg__thumb/img/rI67HKTBZTdqbKaKNiJiowWLWfo=/fit-in/200x150/filters:strip_icc()/pic4597093.jpg"}, #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" {:game/id #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"}), :name "Lost Temple", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "102835", :languages (list "en"), :game/name "Lost Temple", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/YNxToYNXkHIehCztt96sRA__thumb/img/SkLjpQ3lEdyJHuetTe30xED439c=/fit-in/200x150/filters:strip_icc()/pic1045956.jpg"}, #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" {:game/id #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"}), :name "Lux Aeterna", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 12, :com.boardgamegeek.boardgame/max-players 1, :com.boardgamegeek.boardgame/min-play-time 6, :com.boardgamegeek.boardgame/id "282439", :languages (list "en"), :game/name "Lux Aeterna", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/i99laJmQGeZVkKdznB2Ssw__thumb/img/Z24OVjsP3zP12wKHTvuBgfAklNM=/fit-in/200x150/filters:strip_icc()/pic6314128.jpg"}, #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" {:game/id #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"}), :name "Majesty", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "172893", :languages (list "cz"), :game/name "MAJESTY", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/QFUG6olcmjf1HuOuGGsYpw__thumb/img/NcluPj7hQTHfW-ZM404n-u6SGiI=/fit-in/200x150/filters:strip_icc()/pic2401712.png"}, #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" {:game/id #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"}), :name "Crunch", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "65204", :languages (list "en"), :game/name "MASU"}, #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" {:game/id #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2909, :name "Random Production"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "143884", :languages (list "cz" "de"), :game/name "Machi Koro", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/_lI2eUDHfesfe5SswJiFAg__thumb/img/tCTP0XMMmsAfNqzb0iYmp0b-YUc=/fit-in/200x150/filters:strip_icc()/pic4783831.png"}, #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" {:game/id #uuid "47a720fb-24ff-320b-99ab-77739da99a5a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2909, :name "Random Production"}), :name "Machi Koro Bright Lights, Big City", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "205494", :languages (list "en"), :game/name "Machi Koro: Bright Lights, Big City", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/e9Z1IOX7_HwspCzP54prPg__thumb/img/hw04Z1zdSvxIV7REA5pryXVqZas=/fit-in/200x150/filters:strip_icc()/pic3119592.png"}, #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" {:game/id #uuid "227fed4b-25cc-316a-b15e-6c9a064702db", :com.boardgamegeek.boardgame/min-players 6, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Mafia de cuba", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1033, :name "Mafia"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "176558", :languages (list "en"), :game/name "Mafia de Cuba", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nvdogXld5bIr8uXIq2M-uA__thumb/img/j82wTfCvi4Cjq3Pa3aJDLS1nuRw=/fit-in/200x150/filters:strip_icc()/pic2519675.jpg"}, #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" {:game/id #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2057, :name "Chit-Pull System"}), :name "Majority Rules", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1001, :name "Political"}), :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/id "41628", :languages (list "en"), :game/name "Majority Rules", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ynZ--2v9bdc4TIWpAs57_g__thumb/img/Fd32l5WNDYHUNrE6rJ5kSTbYZIo=/fit-in/200x150/filters:strip_icc()/pic4798299.jpg"}, #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" {:game/id #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Mandala", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2991", :languages (list "cz"), :game/name "Mandala", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/XpiNDZqHN4VCKt68223zDw__thumb/img/Ttt1ydAI_wBsVLITRZigSss9S5Q=/fit-in/200x150/filters:strip_icc()/pic372231.jpg"}, #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" {:game/id #uuid "43f3a349-eec8-3b6a-9947-777f90811c90", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Manno monster", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "144416", :languages (list "de"), :game/name "Manno Monster", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1F6vYgRF_j4Z07AbfwjwlQ__thumb/img/WIwHzTE61haoGpogRmYC2vRFaDE=/fit-in/200x150/filters:strip_icc()/pic1708405.jpg"}, #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" {:game/id #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2850, :name "Events"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2851, :name "Narrative Choice / Paragraph"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"} #:com.boardgamegeek.mechanic{:id 2884, :name "Sudden Death Ending"} #:com.boardgamegeek.mechanic{:id 2849, :name "Tech Trees / Tech Tracks"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Maracaibo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "276025", :languages (list "en"), :game/name "Maracaibo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rMNa0k05zMdKgSEp26Q3Tw__thumb/img/lVlnhYyxlZb3WuKZJHLoJcFHEjs=/fit-in/200x150/filters:strip_icc()/pic4917407.jpg"}, #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" {:game/id #uuid "3384a03c-665a-3116-a474-cf5d4406c85a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1052, :name "Arabian"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1011, :name "Transportation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "2280", :languages (list "cz"), :game/name "<NAME>", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kphUeoUqMXHrVGbSgFEk0w__thumb/img/e8-7eDIBCZysiUW607XANuXfY6E=/fit-in/200x150/filters:strip_icc()/pic20540.jpg"}, #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" {:game/id #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Masquerade", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "8644", :languages (list "cz"), :game/name "Masquerade", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/p1qMG3b0Do2BXkahQhxQhQ__thumb/img/UId86MhgXlzheSSDUMXyYd5vp8I=/fit-in/200x150/filters:strip_icc()/pic1215445.jpg"}, #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" {:game/id #uuid "133c22e7-c259-3256-a323-5b88f0b6a645", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Mayday Mayday", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 2650, :name "Aviation / Flight"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "142924", :languages (list "en"), :game/name "Mayday!Mayday!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Souny15gpklxNkWsZiW9wA__thumb/img/G-dqBFDgzZHi6Oy2iQVP6nXeHOY=/fit-in/200x150/filters:strip_icc()/pic2243928.jpg"}, #uuid "12fd071d-60ce-3146-b555-655882920638" {:languages (list "cz" "en"), :name "<NAME>", :game/id #uuid "12fd071d-60ce-3146-b555-655882920638", :game/name "McJohnnys"}, #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" {:game/id #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1115, :name "Religious"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "203624", :languages (list "de" "en"), :game/name "Mea Culpa", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/yXU6z6pl-Kkn7KRUpiCKiw__thumb/img/rdeSRR98yXhlvfaprZbPjgTIQTE=/fit-in/200x150/filters:strip_icc()/pic3108106.jpg"}, #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" {:game/id #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Medium", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "242529", :languages (list "en"), :game/name "Medium", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gaiG9Iv8S3G6ppC5AKlNIQ__thumb/img/85q4rpTU8rQy3n0-agc3YUjda4o=/fit-in/200x150/filters:strip_icc()/pic4912833.png"}, #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" {:game/id #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Epix", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "165657", :game/name "Melee", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S4ru-E2eXhpaJBX1WQOxeQ__thumb/img/zLMYjsqpHZkWNtlOVuQlMeHZ48k=/fit-in/200x150/filters:strip_icc()/pic2564896.jpg"}, #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" {:game/id #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2989, :name "Physical Removal"} #:com.boardgamegeek.mechanic{:id 2988, :name "Stacking and Balancing"}), :name "Menara", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "244608", :languages (list "en"), :game/name "Menara", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qRwLtZZDhIT1wPD8qjCEUA__thumb/img/M7GGgc8cAX5AiTfdC8U4AieR6VQ=/fit-in/200x150/filters:strip_icc()/pic3944407.jpg"}, #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" {:game/id #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Mice and Mystics", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "124708", :languages (list "en"), :game/name "Mice and Mystics", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pZFrbWXBzrkxqOotg05D9Q__thumb/img/nrgg_ID3yq1r5dZ6iWe4de3GW6E=/fit-in/200x150/filters:strip_icc()/pic1312072.jpg"}, #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" {:game/id #uuid "79413bfc-7937-3c16-be95-e34d45589ec4", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "318977", :languages (list "cz"), :game/name "MicroMacro: Crime City", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1M-1d6fr3U9t670MCVOTeg__thumb/img/aR9LNVhRr_hnIIoYwxFUTb8rPMk=/fit-in/200x150/filters:strip_icc()/pic5896816.jpg"}, #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" {:game/id #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2813, :name "Rondel"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "MileStones", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "117914", :game/name "Milestones", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/tP2C-DDjV10zGqZFDwXcxA__thumb/img/9Klfq9ORCU3904fVqh9DiJXHDRQ=/fit-in/200x150/filters:strip_icc()/pic1336176.jpg"}, #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" {:game/id #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "590", :languages (list "en"), :game/name "<NAME>", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kzLZY_DHTh-hBcqXP34a5w__thumb/img/82b4hCqE8tTLkwexnLrp3ubGU_c=/fit-in/200x150/filters:strip_icc()/pic4330533.jpg"}, #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" {:game/id #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"}), :name "Mined Out", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-play-time 50, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "212348", :languages (list "en"), :game/name "Mined Out!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/k33VoKTDM-E5iIMwv6flxA__thumb/img/buyKl6WQgvzisWu_k7djrizjqew=/fit-in/200x150/filters:strip_icc()/pic3267967.jpg"}, #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" {:game/id #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "Mmm…", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "172507", :languages (list "cz"), :game/name "Mmm!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/V_nDKd8bFLwCu4ttyuWJrg__thumb/img/Djv6DavegF7YoX7YrwZlgHr1mgY=/fit-in/200x150/filters:strip_icc()/pic2498158.jpg"}, #uuid "5e04b28e-010d-366b-af9d-020474ee6392" {:game/id #uuid "5e04b28e-010d-366b-af9d-020474ee6392", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 3001, :name "Layering"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2826, :name "Turn Order: Stat-Based"}), :new true, :name "Mobile Markets", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"}), :com.boardgamegeek.boardgame/max-play-time 80, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "344768", :languages (list "en"), :game/name "Mobile Markets: A Smartphone Inc. Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/SW5qyUXKriiJ8ynLX0j6Aw__thumb/img/5nCK4Q83jNIS_oc_SV0mLE8U7z4=/fit-in/200x150/filters:strip_icc()/pic6364797.jpg"}, #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" {:game/id #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2910, :name "Investment"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"} #:com.boardgamegeek.mechanic{:id 2829, :name "Turn Order: Claim Action"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Mombasa", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "172386", :languages (list "cz"), :game/name "Mombasa", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/VceWk5QVkgIp6rWDl5qHKQ__thumb/img/_4ZkvkgZey9R2OJOw_TqF426Qew=/fit-in/200x150/filters:strip_icc()/pic2611318.jpg"}, #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" {:game/id #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2904, :name "Loans"} #:com.boardgamegeek.mechanic{:id 2836, :name "Lose a Turn"} #:com.boardgamegeek.mechanic{:id 2911, :name "Ownership"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Monopoly", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "1406", :game/name "Monopoly", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/9nGoBZ0MRbi6rdH47sj2Qg__thumb/img/ezXcyEsHhS9iRxmuGe8SmiLLXlM=/fit-in/200x150/filters:strip_icc()/pic5786795.jpg"}, #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" {:game/id #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Monopoly Cheaters Edition", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "254617", :game/name "Monopoly Cheaters Edition", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/78dZB2GPUrjMXQyOnqZ65Q__thumb/img/mOJbxy0j7TRHx4epykdoyKNDEOA=/fit-in/200x150/filters:strip_icc()/pic4187117.jpg"}, #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" {:name "Monopoly Here & Now World Edition", :game/id #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c", :game/name "Monopoly Here & Now World Edition"}, #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" {:game/id #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Monopoly Jackpot", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "201890", :game/name "Monopoly Jackpot", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/30x4ifcezQlEXStSK3vSRg__thumb/img/GmvSu2Qd5T1r6JZRj73DgBOQcsY=/fit-in/200x150/filters:strip_icc()/pic3262276.jpg"}, #uuid "f8049db2-d889-3677-984e-4e2ce41de578" {:game/id #uuid "f8049db2-d889-3677-984e-4e2ce41de578", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Monopoly 80th Anniversary Edition", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "173637", :game/name "Monopoly: 80th Anniversary Edition", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/IiL8FBqK_BcuikjRZKezIQ__thumb/img/Dy7RlFc6nDFo5Re95Rkci6-lfNI=/fit-in/200x150/filters:strip_icc()/pic2427080.jpg"}, #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" {:game/id #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Monopoly Limerick Edition", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 120, :com.boardgamegeek.boardgame/id "300801", :game/name "Monopoly: Limerick Edition", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/8ILfC2W174MxPrA2wfaifw__thumb/img/ZntaNB4_2mPPc6fibqDq2vhVaaY=/fit-in/200x150/filters:strip_icc()/pic5216777.jpg"}, #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" {:game/id #uuid "b17747c8-2344-37e0-af25-4c86481d8b35", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Monopoly Ultimate Banking", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1072, :name "Electronic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "207167", :game/name "Monopoly: Ultimate Banking", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/tCcB6q7RjB-LcszCG1TCfQ__thumb/img/Dw1stW35naEWBlMLHVG8h_P0HJU=/fit-in/200x150/filters:strip_icc()/pic3188674.jpg"}, #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" {:game/id #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2018, :name "Campaign / Battle Card Driven"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "Monstrous", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "164775", :languages (list "en"), :game/name "Monstrous", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eF724u6DJlXUFnc3hBKrGQ__thumb/img/y_SRAOIaniPmZBiQ59OYNRJYOec=/fit-in/200x150/filters:strip_icc()/pic3297444.jpg"}, #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" {:game/id #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Monstrum", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/id "127426", :languages (list "cz"), :game/name "Monstrum", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CV7xiLrZo8rHdjD8yBVbvw__thumb/img/z3I-welI7QeetRLaOzYAD90_YV4=/fit-in/200x150/filters:strip_icc()/pic1365924.jpg"}, #uuid "4578b280-9265-3868-8670-e39b70b610f9" {:game/id #uuid "4578b280-9265-3868-8670-e39b70b610f9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :new true, :name "Moon Adventure", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "330403", :languages (list "en"), :game/name "Moon Adventure", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NkIgyVpeeoKW7i1t5M6YlA__thumb/img/91dTtDOrH-b2bRvWthjQu8ioMiM=/fit-in/200x150/filters:strip_icc()/pic6388850.png"}, #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" {:game/id #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "MoonQuake Escape", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "175516", :languages (list "en"), :game/name "MoonQuake Escape", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S48n6sA2U93zwrKDdXKkfw__thumb/img/w1IrqbOXxzyjc99CRxea_dQCRfc=/fit-in/200x150/filters:strip_icc()/pic2829035.jpg"}, #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" {:game/id #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2915, :name "Negotiation"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Moral Dilemma", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 20, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "167715", :languages (list "en"), :game/name "Moral Dilemma", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Mooqmdf2jP38oavcfZ5RDg__thumb/img/AZfnJTdnFGCWh78YAUZdE_decKc=/fit-in/200x150/filters:strip_icc()/pic3262426.jpg"}, #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" {:game/id #uuid "3b726f01-748c-32b9-ac65-408fdb259e18", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1050, :name "Ancient"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "25567", :languages (list "de" "en" "pl"), :game/name "Mozaika", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7VSlBiPWlFGBPm2niiWbCg__thumb/img/im70JKZmGxABdYDJdcATPg9axT4=/fit-in/200x150/filters:strip_icc()/pic344437.jpg"}, #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" {:game/id #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf", :com.boardgamegeek.boardgame/min-players 3, :name "Mr. Face", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "267945", :languages (list "de" "en" "fr" "it"), :game/name "Mr. Face", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/uBBBtbjmKDGJilb7bn9r8Q__thumb/img/pReg8AZr5HMH4uRg5SRjKrO30-w=/fit-in/200x150/filters:strip_icc()/pic5797033.png"}, #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" {:game/id #uuid "51c249b0-90c8-3a66-8732-f796a82e5382", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2967, :name "Hidden Movement"} #:com.boardgamegeek.mechanic{:id 2961, :name "Map Deformation"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"} #:com.boardgamegeek.category{:id 2710, :name "Post-Napoleonic"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "72287", :languages (list "en" "fr"), :game/name "Mr. <NAME>", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nd44m6n6ykDCsHVt4wcEcQ__thumb/img/wpEJcfEdHyXDW1Kh3xbevgW2JuA=/fit-in/200x150/filters:strip_icc()/pic1519530.jpg"}, #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" {:game/id #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "1927", :languages (list "cz" "en"), :game/name "Munchkin", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/J-ts3MW0UhDzs621TR6cog__thumb/img/8hVkpMC5pDLr6ARI_4gI4N3aF5M=/fit-in/200x150/filters:strip_icc()/pic1871016.jpg"}, #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" {:game/id #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2866, :name "Targeted Clues"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Muse", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "234396", :languages (list "cz"), :game/name "Muse", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6gDD73LSCMrr7ab1LHCXCg__thumb/img/YmT4zvKoAkhx62AGUdeylS7mQig=/fit-in/200x150/filters:strip_icc()/pic3719954.jpg"}, #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" {:game/id #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Musee", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "163056", :languages (list "en"), :game/name "Musée", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S6dzLYuwDsYvzreZ8UAapg__thumb/img/fjXBTIZGJYt1vCcuHjLjaB3GuLs=/fit-in/200x150/filters:strip_icc()/pic2088837.jpg"}, #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" {:game/id #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "My Booty", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "221083", :languages (list "en"), :game/name "My Booty!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/coC-QGCrRZgx-O73RwTnzQ__thumb/img/33WbZE6k9Ju-LfhygSRmw1JYMgw=/fit-in/200x150/filters:strip_icc()/pic3433568.jpg"}, #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" {:game/id #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2864, :name "Force Commitment"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "My little Scythe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1104, :name "Math"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "226320", :languages (list "en"), :game/name "My Little Scythe", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/EhXCpSR6ambdYuKbrej3UQ__thumb/img/3znFvjc6uN6rossizk5I5eOr4Rk=/fit-in/200x150/filters:strip_icc()/pic4134810.jpg"}, #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" {:game/id #uuid "df4c4520-3102-33f1-9a51-ee304c193f23", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Mystic scrolls", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "198455", :languages (list "en"), :game/name "Mystic ScROLLS", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/9cwjyRGj3SBDeJyO17p2Qw__thumb/img/IZBiEizOIxVgTnXkVbgaxg-wY1g=/fit-in/200x150/filters:strip_icc()/pic3174074.jpg"}, #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" {:game/id #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Mythotopia", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "133632", :languages (list "en"), :game/name "Mythotopia", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Pk-IBl84HBPZWZQgQWkCpQ__thumb/img/a3sfzRClZ7sfj4Jyq6SJ8TdCQto=/fit-in/200x150/filters:strip_icc()/pic2257592.jpg"}, #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" {:game/id #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "New Corp Order", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "232478", :languages (list "en"), :game/name "New Corp Order", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UJL9d_WpRk3jvdEWO5incA__thumb/img/E5cfhNNliCz4XpMXDejzmZ8llRE=/fit-in/200x150/filters:strip_icc()/pic4026118.jpg"}, #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" {:game/id #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2903, :name "Automatic Resource Growth"} #:com.boardgamegeek.mechanic{:id 2978, :name "Grid Coverage"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2813, :name "Rondel"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Zoo New York", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "300877", :languages (list "cz"), :game/name "New York Zoo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/8vqr1uYik715mqDqy0W9vg__thumb/img/Bu97VesRjdbQO2PxfuOrdC6icd8=/fit-in/200x150/filters:strip_icc()/pic5673404.jpg"}, #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" {:game/id #uuid "32c24411-f63e-3a04-8648-0361f80ef58c", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :new true, :name "Nights of Fire: Battle for Budapest", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1069, :name "Modern Warfare"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 3, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "236125", :languages (list "en"), :game/name "Nights of Fire: Battle for Budapest", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iIbtNT3HzZymSB-Sfw5ipw__thumb/img/Go7odgg002xxa3_PjBzGmkCte6g=/fit-in/200x150/filters:strip_icc()/pic3869601.jpg"}, #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" {:game/id #uuid "36f8c047-0a0d-34e8-920b-337b779969ab", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Noctiluca", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "269752", :languages (list "cz"), :game/name "Noctiluca", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qQGBX-BW4SOuQMdm7pjZQg__thumb/img/3Q3aYBEbblKxEUU8HutRqydWcLU=/fit-in/200x150/filters:strip_icc()/pic4766236.jpg"}, #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" {:game/id #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"}), :name "North American Railways", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1034, :name "Trains"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "191438", :languages (list "en"), :game/name "North American Railways", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/EhFHGbpihB7KBNEuDe0bJw__thumb/img/EydatDnC9as4K-Oiel7ujVS8oSk=/fit-in/200x150/filters:strip_icc()/pic3847804.png"}, #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" {:game/id #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Now Boarding", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 2650, :name "Aviation / Flight"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1011, :name "Transportation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "231567", :languages (list "en"), :game/name "Now Boarding", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/yI1Zxy5JAgk7xFWpSqYX7w__thumb/img/0b4G8p3lZJJhtWpLeOetrGDHWdI=/fit-in/200x150/filters:strip_icc()/pic3710609.jpg"}, #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" {:game/id #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "OMG", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "181245", :languages (list "en"), :game/name "OMG", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nLpk3zLehjGSiWo76Oo9Yg__thumb/img/jrztxp2Re5S7ouhTSGyBdxnhjIc=/fit-in/200x150/filters:strip_icc()/pic2605033.jpg"}, #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" {:game/id #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"}), :name "Obscenity", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 16, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "243671", :languages (list "en"), :game/name "Obscenity: A Shameless Adult Party Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ezwhC52nLtbLDWwUYZlSZw__thumb/img/0J0jjINFUJ09Zk6XK4G_mW8SGpA=/fit-in/200x150/filters:strip_icc()/pic4373949.jpg"}, #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" {:game/id #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Octorage", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "279016", :languages (list "de" "en" "fr"), :game/name "Octorage", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/2TESBkMZ8CC9IAjMMwTqtA__thumb/img/9wpesj7ruvzdenelqzrkmRAFS-A=/fit-in/200x150/filters:strip_icc()/pic4715194.png"}, #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" {:game/id #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Boží Zboží", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "183840", :game/name "Oh My Goods!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nYIjEKh_0nYX48uD_tLawA__thumb/img/MCnURatf0lFmNOVLYEjABfN_uVY=/fit-in/200x150/filters:strip_icc()/pic3032677.jpg"}, #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" {:game/id #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Oink", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "5693", :game/name "Oink!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rhYdI6Oimeyfxs3JIGrpYw__thumb/img/0m8qHIbPqKIgAlJuByP3D7vEBq8=/fit-in/200x150/filters:strip_icc()/pic870993.jpg"}, #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" {:game/id #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Okiya", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "125311", :game/name "Okiya", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/a86BdUaCSfIqygVvStXsGQ__thumb/img/jAV9bZYZln9N21DaKOXWRp0e8vA=/fit-in/200x150/filters:strip_icc()/pic3711392.png"}, #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" {:game/id #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Om nom nom", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "147305", :languages (list "en"), :game/name "Om Nom Nom", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/DckIF9e9le75ev9CRNS0_w__thumb/img/0qeLCHolAAG6LGvq9-V0MHrCtTs=/fit-in/200x150/filters:strip_icc()/pic1765949.png"}, #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" {:game/id #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "One Night Revolution", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "176361", :languages (list "en"), :game/name "One Night Revolution", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0SFLHa5hNmtdL0LpqCN2kA__thumb/img/DBscKuzoek17BGUcjPLVgQeoNTc=/fit-in/200x150/filters:strip_icc()/pic2513302.jpg"}, #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" {:game/id #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2892, :name "Roles with Asymmetric Information"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "One night ultimate werewolf", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "147949", :languages (list "en"), :game/name "One Night Ultimate Werewolf", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/KLDb0vR3w8mfaHgIGF0gHw__thumb/img/ZgQsHsvdxXZr4DbMGUBSTArBp3o=/fit-in/200x150/filters:strip_icc()/pic1809823.jpg"}, #uuid "189f9b13-158d-379b-9440-05b9bc24a356" {:game/id #uuid "189f9b13-158d-379b-9440-05b9bc24a356", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "One week ultimate werewolf", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 7, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "252197", :languages (list "en"), :game/name "One Week Ultimate Werewolf", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Aw0CZqg-LgYK5YjVE6HReg__thumb/img/JmdwqeYZC4n1RHpTRwSLJ9kx46c=/fit-in/200x150/filters:strip_icc()/pic4119482.jpg"}, #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" {:game/id #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2946, :name "Pattern Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2861, :name "Static Capture"}), :new true, :name "Onitama", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "160477", :languages (list "en"), :game/name "Onitama", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/FZdihu8SibqQYtwfo77BdQ__thumb/img/3fX3AN6UMOIASL3Qev3zsQ6Uxy8=/fit-in/200x150/filters:strip_icc()/pic5032361.jpg"}, #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" {:languages (list "cz"), :name "Opraski Scenski Historie", :game/id #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f", :game/name "Opraski Scenski Historie"}, #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" {:languages (list "cz"), :name "Original nebo Kopie?", :game/id #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb", :game/name "Original nebo Kopie?"}, #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" {:game/id #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2861, :name "Static Capture"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Clovece nezlob se", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2136", :languages (list "cz"), :game/name "Pachisi", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/45Nb6goQqvPHD9hOut0ntg__thumb/img/ZtUXrh9wko9BQ3QLCMw9mU9Fjpw=/fit-in/200x150/filters:strip_icc()/pic516869.jpg"}, #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" {:languages (list "en"), :name "Pan Am the game", :game/id #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f", :game/name "Pan Am the game"}, #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" {:game/id #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Pandemic", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 2145, :name "Medical"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "30549", :languages (list "cz"), :game/name "Pandemic", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S3ybV1LAp-8SnHIXLLjVqA__thumb/img/oqViRj6nVxK3m36NluTxU1PZkrk=/fit-in/200x150/filters:strip_icc()/pic1534148.jpg"}, #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" {:languages (list "en"), :name "Pandemic Cthulu", :game/id #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d", :game/name "Pandemic Cthulu"}, #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" {:game/id #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "Panic Lab", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "121073", :languages (list "cz"), :game/name "Panic Lab", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/LzsXWOG6ZA6x6TqB5H6F1g__thumb/img/1Mop0yzpQddJj3MF7Q_cC3y-P6Y=/fit-in/200x150/filters:strip_icc()/pic3488252.jpg"}, #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" {:languages (list "cz"), :name "Panic Mansion / Shaky Manor", :game/id #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a", :game/name "Panic Mansion / Shaky Manor"}, #uuid "44de8c27-9942-39ca-997c-57ff932fc882" {:game/id #uuid "44de8c27-9942-39ca-997c-57ff932fc882", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Party Alias", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1031, :name "Racing"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 24, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "43530", :languages (list "cz" "en"), :game/name "Party Alias", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/15IJm-xtFo5DlVC0I_KEVQ__thumb/img/OW1wylQIh-ly_SJY4mnF8TODfEQ=/fit-in/200x150/filters:strip_icc()/pic517373.jpg"}, #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" {:languages (list "en"), :name "Pass Ack Words", :game/id #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6", :game/name "Pass Ack Words"}, #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" {:game/id #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2948, :name "Resource to Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Passing through Petra", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "257966", :languages (list "en"), :game/name "Passing Through Petra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/q1cUKr4tuljXipsdemYUAw__thumb/img/Z1R49jE15RcqNQoUqHcBCg1s2aU=/fit-in/200x150/filters:strip_icc()/pic4257243.png"}, #uuid "33e20383-3807-3414-869c-7a3907d40b75" {:game/id #uuid "33e20383-3807-3414-869c-7a3907d40b75", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2914, :name "Increase Value of Unchosen Resources"} #:com.boardgamegeek.mechanic{:id 2900, :name "Market"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"}), :name "Pax Renaissance", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 2725, :name "Pike and Shot"} #:com.boardgamegeek.category{:id 1115, :name "Religious"} #:com.boardgamegeek.category{:id 1070, :name "Renaissance"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "198953", :languages (list "en"), :game/name "Pax Renaissance", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gIHITIenJOCIsO_vQNEE0w__thumb/img/68iODGupr7JuYEYiDofNJzxgEzM=/fit-in/200x150/filters:strip_icc()/pic3009233.jpg"}, #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" {:game/id #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2987, :name "Hidden Victory Points"} #:com.boardgamegeek.mechanic{:id 2900, :name "Market"} #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2884, :name "Sudden Death Ending"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Pax: Transhumanity", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "257732", :languages (list "en"), :game/name "Pax Transhumanity", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ByCgA7w4DMC1eKvUD-XajA__thumb/img/JflRs575_Lh-Tv1srmxKSrx91wU=/fit-in/200x150/filters:strip_icc()/pic6256870.png"}, #uuid "f750d160-d009-3c96-a630-eff035abfd6c" {:game/id #uuid "f750d160-d009-3c96-a630-eff035abfd6c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Peanut club", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "254846", :languages (list "en" "fr"), :game/name "Peanut Club", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/78_kYPImvhOVARKfNtEnSA__thumb/img/snNlushutBIx-VCwYt-zzQlHos8=/fit-in/200x150/filters:strip_icc()/pic4360500.jpg"}, #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" {:game/id #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "<NAME>chvogel", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "257074", :languages (list "de" "en"), :game/name "Pechvogel", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HhomgrTG2FJKqCy4AfRUhQ__thumb/img/N13b1u3XxFvTKu32m4bWtZQ87qQ=/fit-in/200x150/filters:strip_icc()/pic4242837.jpg"}, #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" {:languages (list "cz"), :name "Penguins", :game/id #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143", :game/name "Penguins"}, #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" {:game/id #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2055, :name "Paper-and-Pencil"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "255697", :languages (list "en"), :game/name "Penk!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iIbjyUdVK00hELkxyeQDfg__thumb/img/P1ZoTqVtKDO3UIZKkPKyejTIyxs=/fit-in/200x150/filters:strip_icc()/pic4206098.png"}, #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" {:game/id #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Personally Incorrect", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "140840", :languages (list "en"), :game/name "Personally Incorrect", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/FBctEY9fJtIrk4hqbwhg2A__thumb/img/roixdL_YFGr5s0ati2grORqEagk=/fit-in/200x150/filters:strip_icc()/pic3206168.png"}, #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" {:languages (list "en"), :name "Pick & Pack", :game/id #uuid "edfa15bc-3235-3696-aaad-09e432fc6662", :game/name "Pick & Pack"}, #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" {:game/id #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2039, :name "Line Drawing"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Pictures", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "98026", :languages (list "en"), :game/name "Pictures", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/2ksVi_M5sLws57Y5dmZVOA__thumb/img/Ytcky0xrJF3bHzfIWmhZolI97RQ=/fit-in/200x150/filters:strip_icc()/pic991829.jpg"}, #uuid "f81386ae-7767-3f93-a560-c78df55109bb" {:game/id #uuid "f81386ae-7767-3f93-a560-c78df55109bb", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "117663", :languages (list "cz"), :game/name "Piraten kapern", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ASvNr8Z7n4uuXiIeKTCpjA__thumb/img/yFj9eUDNMh0UrCugHmxPouZoaM8=/fit-in/200x150/filters:strip_icc()/pic5755894.jpg"}, #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" {:game/id #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Pocket Madness", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1024, :name "Horror"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "201920", :languages (list "en"), :game/name "Pocket Madness", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6v8uO3HPOV1xMT9HlrUn6A__thumb/img/9ntOmLX333OuntfZ1uXoyyi8Co8=/fit-in/200x150/filters:strip_icc()/pic3171191.png"}, #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" {:game/id #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :new true, :name "Poetry for Neanderthals", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1036, :name "Prehistoric"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "312786", :languages (list "en"), :game/name "Poetry for Neanderthals", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CDlBjXSPT-3Zyrj8ENBkvQ__thumb/img/0ON18UcLepuwPLhwkRtRUjhvAZ8=/fit-in/200x150/filters:strip_icc()/pic5702797.jpg"}, #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" {:game/id #uuid "54b141a9-4bee-378e-b867-fd1d4729f014", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Zbodni Salát", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "274960", :languages (list "cz"), :game/name "Point Salad", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Xy0W9NtEpX0EVjwgxO3IEA__thumb/img/1gKeE2_50dXcL03gH3cEU-Ixj6c=/fit-in/200x150/filters:strip_icc()/pic4621571.png"}, #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" {:game/id #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Ponzi Scheme", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "180899", :languages (list "en"), :game/name "Ponzi Scheme", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/XrXpHvoeiA_cC1Caye1B7Q__thumb/img/z5CKVkv0-T3vFAikANagen7sjwE=/fit-in/200x150/filters:strip_icc()/pic5100985.jpg"}, #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" {:game/id #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "Port Royal", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "565", :languages (list "cz" "en"), :game/name "Port Royal", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/YieNLWVLKMERmrEosQsKOA__thumb/img/Vd8kb9AT204KNdE5GXBBK7JQL7g=/fit-in/200x150/filters:strip_icc()/pic248213.jpg"}, #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" {:languages (list "de" "en"), :name "PowerGrid", :new true, :game/id #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb", :game/name "PowerGrid"}, #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" {:languages (list "en"), :name "Profanity", :game/id #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069", :game/name "Profanity"}, #uuid "f7625727-1129-3703-96c0-442c8ac00dae" {:game/id #uuid "f7625727-1129-3703-96c0-442c8ac00dae", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2838, :name "Action Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2843, :name "Follow"} #:com.boardgamegeek.mechanic{:id 2987, :name "Hidden Victory Points"} #:com.boardgamegeek.mechanic{:id 2914, :name "Increase Value of Unchosen Resources"} #:com.boardgamegeek.mechanic{:id 2828, :name "Turn Order: Progressive"} #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"}), :name "Puerto Rico", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "3076", :languages (list "cz"), :game/name "Puerto Rico", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/QFiIRd2kimaMqTyWsX0aUg__thumb/img/5fLo89ChZH6Wzukk36bhZ-EpBS0=/fit-in/200x150/filters:strip_icc()/pic158548.jpg"}, #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" {:game/id #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"}), :name "QE", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "209136", :languages (list "en"), :game/name "Q.E.", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/taTddHmWN-n7BZbKWsmsKQ__thumb/img/V9sMeg-nlSiTMj4bFviRLBlY50E=/fit-in/200x150/filters:strip_icc()/pic4116760.jpg"}, #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" {:game/id #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "Quoridor", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1059, :name "Maze"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "624", :game/name "Quoridor", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/I1YNAhee09mryaqfEo8MwA__thumb/img/9TJaxgoMUkiMhAGSYM8-0o1ICpg=/fit-in/200x150/filters:strip_icc()/pic3488232.jpg"}, #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" {:name "Quorridor", :game/id #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311", :game/name "Quorridor"}, #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" {:game/id #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Qwirkle", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "25669", :game/name "Qwirkle", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/k7zHj8j_a6uUAtXUt5Fvuw__thumb/img/APPui4zwBuwAIHXSTW6UxYcY6Ow=/fit-in/200x150/filters:strip_icc()/pic309353.jpg"}, #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" {:languages (list "en"), :name "Railroad Ink", :game/id #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183", :game/name "Railroad Ink"}, #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" {:languages (list "en"), :name "Railroad ink", :game/id #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa", :game/name "Railroad ink"}, #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" {:game/id #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Pozvednete Cise", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "202732", :languages (list "cz"), :game/name "Raise Your Goblets", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/M-QMEFRd2LkfyiXt6YFbwg__thumb/img/p4xMVTX4wWReahsdAE7hMgeP6uk=/fit-in/200x150/filters:strip_icc()/pic3132188.jpg"}, #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" {:game/id #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Realm of Wonder", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "162580", :game/name "Realm of Wonder", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/e0pz2fI8Hr8DGKcDskSwbQ__thumb/img/v1T8ZkbbCbLw8o3KQXhNEaUxebY=/fit-in/200x150/filters:strip_icc()/pic2204281.jpg"}, #uuid "c64e760d-cd41-31b1-9626-a196593146fa" {:game/id #uuid "c64e760d-cd41-31b1-9626-a196593146fa", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Red 7", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "161417", :languages (list "cz"), :game/name "Red7", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7zH6Kt5ebWEixjDGmHweNA__thumb/img/PVkJyJhCtzo1ZwKO4iuRaqUyKJc=/fit-in/200x150/filters:strip_icc()/pic2247258.png"}, #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" {:game/id #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Hledá se Hrdina", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "135116", :languages (list "cz"), :game/name "Rent a Hero", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pnhx0DJsrkz1VfDU7c3Wtg__thumb/img/y1ksV-fuU5rQWuv4wzZEz_KolZs=/fit-in/200x150/filters:strip_icc()/pic2932852.jpg"}, #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" {:game/id #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :new true, :name "Rest in Peace", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "319680", :languages (list "en"), :game/name "Rest In Peace", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/jD77V4uV2mSG96tX8Ur0yQ__thumb/img/hOcvflu7DypGuySG4F_39c-NivE=/fit-in/200x150/filters:strip_icc()/pic5663592.jpg"}, #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" {:game/id #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2", :com.boardgamegeek.boardgame/min-players 2, :name "Revolution", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1069, :name "Modern Warfare"}), :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/id "38118", :languages (list "de"), :game/name "Revolution", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/piMBdZjr9l82WAJuRwmLHg__thumb/img/bBfNJcCvAJWnQPfP4hgbJSyo9xM=/fit-in/200x150/filters:strip_icc()/pic1448389.jpg"}, #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" {:languages (list "en"), :name "Rick & Morty: Totall Rickall", :game/id #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748", :game/name "Rick & Morty: Totall Rickall"}, #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" {:game/id #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Rick and Morty: The Ricks must be Crazy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "241731", :languages (list "en"), :game/name "Rick and Morty: The Ricks Must Be Crazy Multiverse Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/I1fNtBe8tCMt_6qcn6D-EA__thumb/img/WRQIfu_klm9X1XGOU3ssXnHA_fM=/fit-in/200x150/filters:strip_icc()/pic3880225.png"}, #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" {:game/id #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"}), :name "Risk: Game of Thrones", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 240, :com.boardgamegeek.boardgame/max-players 7, :com.boardgamegeek.boardgame/min-play-time 120, :com.boardgamegeek.boardgame/id "179719", :languages (list "en"), :game/name "Risk: Game of Thrones", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UNici3J_3qZIYeEapfaLpg__thumb/img/omzrXKLCEvYqZR8Kf0zeSZbRw3g=/fit-in/200x150/filters:strip_icc()/pic2568573.jpg"}, #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" {:game/id #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "51319", :languages (list "cz"), :game/name "<NAME>", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5i7RNi6o-1THM0zPKE3obg__thumb/img/vL7T-0G-KxMNZQg-uWTNEOOnPkE=/fit-in/200x150/filters:strip_icc()/pic528291.jpg"}, #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" {:languages (list "en"), :name "Rock, Paper, Wizard", :game/id #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf", :game/name "Rock, Paper, Wizard"}, #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" {:game/id #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"}), :name "Rolit", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "8243", :languages (list "en"), :game/name "Rolit", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wymI6qRpGHF-hD1Y34QbkA__thumb/img/6dj4-736Cf1IgqnR_PgTkvQTe5s=/fit-in/200x150/filters:strip_icc()/pic336560.jpg"}, #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" {:game/id #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2839, :name "Action Retrieval"} #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2843, :name "Follow"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Roll for the Galaxy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "132531", :languages (list "en"), :game/name "Roll for the Galaxy", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nhoyoLpYPC2b3UiJ5kJ0yg__thumb/img/KVmexHT6N_fquB1CQl9QRNYCvD0=/fit-in/200x150/filters:strip_icc()/pic1473629.jpg"}, #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" {:languages (list "en"), :name "Rome & Carthrage", :game/id #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f", :game/name "Rome & Carthrage"}, #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" {:game/id #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Royals", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "154495", :game/name "Royals", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6HtTciyZmT8d_RnDlIOlAg__thumb/img/0dDXrkV7wcVHdzbHuZtf-SC21NM=/fit-in/200x150/filters:strip_icc()/pic1917555.png"}, #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" {:game/id #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "Sabotage", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "1142", :languages (list "en"), :game/name "Sabotage", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/t0qDsOOT4Yb8XPBLI3c4TA__thumb/img/l-xrZRw-_tORXb9LfkeWLY4a_Z4=/fit-in/200x150/filters:strip_icc()/pic301507.jpg"}, #uuid "af817d47-9021-3806-800d-7ef8dab08024" {:game/id #uuid "af817d47-9021-3806-800d-7ef8dab08024", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2959, :name "Map Addition"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"}), :name "Saboteur", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "9220", :game/name "Saboteur", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0vJwP6NGa7GHPZKC3gplUw__thumb/img/B3j-is62fP09eHP34uFG_gsxNQs=/fit-in/200x150/filters:strip_icc()/pic3989824.jpg"}, #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" {:game/id #uuid "bb7745e6-fe51-351f-843c-5012bd13d334", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"}), :name "Saboteur: The Duel", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "168215", :languages (list "cz"), :game/name "Saboteur: The Duel", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/2HQMz_qehqPHAsn12h-o4w__thumb/img/BZJsX4-a803QfAn9_uvfx2mj4vE=/fit-in/200x150/filters:strip_icc()/pic3989510.png"}, #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" {:game/id #uuid "1fff84e0-9d09-3677-a846-84f01c21b161", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Salem 1692", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 35, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "175549", :languages (list "en"), :game/name "Salem 1692", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/xUurReSy2Amlx4hGj1fPvQ__thumb/img/IiiUFNDZKGNNDls_AhD0-DE7Ba0=/fit-in/200x150/filters:strip_icc()/pic4204062.jpg"}, #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" {:game/id #uuid "113e202b-52db-3631-b4c4-7027d1edccf5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2948, :name "Resource to Move"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Santiago de Cuba", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "104347", :languages (list "en"), :game/name "Santiago de Cuba", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/v4Rk-agCbbmMNo3vUQ1IcA__thumb/img/470q2hMMP1V-75tKqU7OBh6WzjU=/fit-in/200x150/filters:strip_icc()/pic1918128.jpg"}, #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" {:game/id #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2944, :name "Three Dimensional Movement"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Santorini", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 3, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "9963", :languages (list "en"), :game/name "Santorini", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZjP5gU9SCluEARbZnYtb_A__thumb/img/rEOJAzchz4LrBWvBkQILZQk7Mf4=/fit-in/200x150/filters:strip_icc()/pic42278.jpg"}, #uuid "20b16954-6c66-3536-b816-f13d464da44c" {:game/id #uuid "20b16954-6c66-3536-b816-f13d464da44c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "181955", :languages (list "de"), :game/name "Sarkophag", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wBTmZnUA9cR1Cme1LePceg__thumb/img/7cYYnDb4nLN8EtBpOR9oMvrORyk=/fit-in/200x150/filters:strip_icc()/pic2617439.jpg"}, #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" {:game/id #uuid "abcdf625-6664-306b-88db-9848e46fc0e8", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Say What?", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1072, :name "Electronic"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "32196", :languages (list "en"), :game/name "Say What?", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/LYvG1qBhqJpTq0StWS5_JQ__thumb/img/Dkhr-ZHWQoWmet0EHaOSycgkWL0=/fit-in/200x150/filters:strip_icc()/pic296492.jpg"}, #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" {:game/id #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2055, :name "Paper-and-Pencil"}), :name "Scattergories", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2381", :languages (list "en"), :game/name "Scattergories", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eIL4hvMb7ZPgizc7BZOh-g__thumb/img/sx0XxYqv0FtsIp-RoW-5C42sLOc=/fit-in/200x150/filters:strip_icc()/pic4994410.jpg"}, #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" {:game/id #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Skol ty Skoty!", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "372", :languages (list "cz"), :game/name "Schotten Totten", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/69mwXe7c6HNYmT6S35Y4zg__thumb/img/97DW-2XWDrSSkgy3XnUJ7f7tLiQ=/fit-in/200x150/filters:strip_icc()/pic2932872.jpg"}, #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" {:game/id #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Scopa", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1045, :name "Memory"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "15889", :game/name "Scopa", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CGdqzoYIqmcWmVVnNtbrGw__thumb/img/k6VnPZink59LA3xjUdtZSTmjXzs=/fit-in/200x150/filters:strip_icc()/pic1517475.jpg"}, #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" {:game/id #uuid "645ab7f6-09eb-3401-988d-97cd930668c1", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2967, :name "Hidden Movement"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Scotland Yard", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1097, :name "Travel"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "438", :languages (list "en"), :game/name "Scotland Yard", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NbHZjHmQcA5_TenhVJtJ3w__thumb/img/BfD9cR1-u_qNUNNZ2i4Bg8XKYhg=/fit-in/200x150/filters:strip_icc()/pic4527702.jpg"}, #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" {:game/id #uuid "71e79ef8-0600-3398-990c-febe3b0b758d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"}), :new true, :name "Scout", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1059, :name "Maze"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "26681", :languages (list "en"), :game/name "Scout", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bpbkU9dPYc100p15Su36_g__thumb/img/LVogRviWw8cfogWcE0yJoOY05yg=/fit-in/200x150/filters:strip_icc()/pic200411.jpg"}, #uuid "77933845-adf8-3758-a686-a08ea46f015e" {:game/id #uuid "77933845-adf8-3758-a686-a08ea46f015e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Scrabble", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "320", :languages (list "en"), :game/name "Scrabble", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/mVmmntn2oQd0PfFrWBvwIQ__thumb/img/RUmuGCB40FQH0en0R2nrcsSO7DE=/fit-in/200x150/filters:strip_icc()/pic404651.jpg"}, #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" {:name "Scracker", :game/id #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9", :game/name "Scracker"}, #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" {:game/id #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2838, :name "Action Drafting"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2864, :name "Force Commitment"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2886, :name "King of the Hill"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2851, :name "Narrative Choice / Paragraph"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2849, :name "Tech Trees / Tech Tracks"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2874, :name "Victory Points as a Resource"}), :name "Scythe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 115, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "169786", :game/name "Scythe", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7k_nOxpO9OGIjhLq2BUZdA__thumb/img/eQ69OEDdjYjfKg6q5Navee87skU=/fit-in/200x150/filters:strip_icc()/pic3163924.jpg"}, #uuid "5b444b22-2047-3124-af08-48687f72a6b5" {:game/id #uuid "5b444b22-2047-3124-af08-48687f72a6b5", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Secret Hitler", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "188834", :game/name "Secret Hitler", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rAQ3hIXoH6xDcj41v9iqCg__thumb/img/xA2T7PiwN3Z8pwAksicoCOA1tf0=/fit-in/200x150/filters:strip_icc()/pic5164305.jpg"}, #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" {:name "Settlers of Catan", :game/id #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386", :game/name "Settlers of Catan"}, #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" {:name "Settlers of Catan Jr.", :game/id #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da", :game/name "Settlers of Catan Jr."}, #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" {:languages (list "en"), :name "Sh*<NAME> H<NAME>", :game/id #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf", :game/name "Sh*t Happens"}, #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" {:game/id #uuid "7bd8e302-1270-3448-8815-58d1f6da0834", :com.boardgamegeek.boardgame/min-players 2, :name "Sheep dog", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "255609", :languages (list "en"), :game/name "Sheep Dog", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/klhlFwH-ZF6OUUBxXcQ5xQ__thumb/img/9INQR0kOX6NGHmDnVO1XTEEdm_o=/fit-in/200x150/filters:strip_icc()/pic4334235.jpg"}, #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" {:game/id #uuid "07a34867-4397-3448-a7e6-5b70ca021d45", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :new true, :name "Sheepy Time", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "324242", :languages (list "en"), :game/name "Sheepy Time", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eNpXmxU-DynH-5ZkMxwksQ__thumb/img/9RS4gNjaKvgrwXAQHE-iYtMz4sY=/fit-in/200x150/filters:strip_icc()/pic5777745.png"}, #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" {:game/id #uuid "01f7b705-9b33-3897-969b-343e8a6e682e", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2913, :name "Bribery"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2915, :name "Negotiation"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "157969", :languages (list "en"), :game/name "<NAME>", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BBgLFKUzr6tcKtlIM2JSFw__thumb/img/JD5L_XrtkaKINUj8ILZqFMGcTsE=/fit-in/200x150/filters:strip_icc()/pic2075830.jpg"}, #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" {:game/id #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1", :com.boardgamegeek.boardgame/min-players 2, :new true, :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "149869", :languages (list "en"), :game/name "Sherlock 13", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qUqySSzXr8QXZbfg8k_M1Q__thumb/img/barvaBLDqZYe282NLmbo_Sg51A4=/fit-in/200x150/filters:strip_icc()/pic5857846.jpg"}, #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" {:languages (list "en"), :name "<NAME> h<NAME>mes consulting detective", :game/id #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6", :game/name "Sherlock holmes consulting detective"}, #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" {:game/id #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2866, :name "Targeted Clues"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Shifty Eyed Spies", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "232830", :languages (list "en"), :game/name "Shifty Eyed Spies", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/J8GvDIigfMdxT9MoMHR01Q__thumb/img/EWVfiXLL6HFexzDlxXNU_Q386sI=/fit-in/200x150/filters:strip_icc()/pic4372703.jpg"}, #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" {:game/id #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Shuffle Heroes", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1024, :name "Horror"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "177542", :languages (list "en"), :game/name "Shuffle Heroes", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6hK_G51Chsas-ciJjHFLIQ__thumb/img/fUkHaTverNSEjaL3rVwjFXiLRMQ=/fit-in/200x150/filters:strip_icc()/pic2527161.png"}, #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" {:game/id #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "<NAME>k", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "255037", :languages (list "en"), :game/name "Silk", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/09W9RVgQH3iczXgNpc4t4A__thumb/img/7Gnu1fAzXwPA83uqNtMtd5fobvo=/fit-in/200x150/filters:strip_icc()/pic4232947.jpg"}, #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" {:game/id #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Skull", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1038, :name "Sports"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "67466", :languages (list "en"), :game/name "Skull", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/4FvrOFxgPqlGmO56WS08dg__thumb/img/-DGFjUF0NHZo-6U4lcmE46utf-E=/fit-in/200x150/filters:strip_icc()/pic744864.jpg"}, #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" {:game/id #uuid "b172271f-a27d-3300-9b46-7f9825f0727e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "180599", :languages (list "en"), :game/name "Sly Dice", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/IZb7Sf1s_auwNn3ayfVB2Q__thumb/img/LxewU81q9qZcteJPHyhuegZxgmo=/fit-in/200x150/filters:strip_icc()/pic2653414.png"}, #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" {:game/id #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2932, :name "Auction: Dutch Priority"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2987, :name "Hidden Victory Points"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"} #:com.boardgamegeek.mechanic{:id 2874, :name "Victory Points as a Resource"}), :name "Small world", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 80, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "40692", :languages (list "en"), :game/name "Small World", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/aoPM07XzoceB-RydLh08zA__thumb/img/o3Bw9heVDJRgPYlI_PksCvLAgnM=/fit-in/200x150/filters:strip_icc()/pic428828.jpg"}, #uuid "568da493-2833-3009-ad26-7108e0683081" {:game/id #uuid "568da493-2833-3009-ad26-7108e0683081", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "Desítka", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "241590", :languages (list "cz"), :game/name "Smart10", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pwa0lKfmlE4PvFo-YVxrLQ__thumb/img/4RXK5M7g8_GRW_2HjyLdTjS3_fw=/fit-in/200x150/filters:strip_icc()/pic4945756.jpg"}, #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" {:game/id #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 3004, :name "Deck Construction"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Smash-UP", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 2481, :name "Zombies"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "122522", :languages (list "en"), :game/name "Smash Up", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/c1DOHkXD35OcqfPoxoSXlA__thumb/img/kdzBzdj4prsoztFNEFZ6eWv1RVI=/fit-in/200x150/filters:strip_icc()/pic1269874.jpg"}, #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" {:game/id #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4", :com.boardgamegeek.boardgame/min-players 2, :name "Snake Oil", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/id "19285", :languages (list "en"), :game/name "Snake Oil", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BauWTfEUjkjxdpwtPHMLXQ__thumb/img/SfkJjYEvCG5AQ1tOeZZVFEVfSuA=/fit-in/200x150/filters:strip_icc()/pic88607.jpg"}, #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" {:languages (list "cz"), :name "Sneci Zavody", :game/id #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce", :game/name "Sneci Zavody"}, #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" {:name "Soq", :game/id #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20", :game/name "Soq"}, #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" {:game/id #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "Space Bowl", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 35, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "287580", :languages (list "en"), :game/name "Space Bowl", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/f_VqSLk0LsED8c53A0V6_w__thumb/img/lUi45L_gzordC8q1PAWncdYZSqc=/fit-in/200x150/filters:strip_icc()/pic4919382.jpg"}, #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" {:game/id #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2860, :name "Flicking"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2953, :name "Programmed Movement"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Space Cadets", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "123096", :languages (list "en"), :game/name "Space Cadets", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/YTPL0ZG_8Y4EQfiCXZzvrg__thumb/img/2gOYyhKR6WH8EuemztSCMQvqNbo=/fit-in/200x150/filters:strip_icc()/pic1362404.jpg"}, #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" {:game/id #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :new true, :name "Space Dragons", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "329084", :languages (list "en"), :game/name "Space Dragons", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/47A7oUEpu-qwO988YOTkBA__thumb/img/N6VULco9RdpHfMpXS2Nr9Tc89_4=/fit-in/200x150/filters:strip_icc()/pic5915757.jpg"}, #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" {:game/id #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Spaghetti", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 5, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "60794", :game/name "Spaghetti"}, #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" {:game/id #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2967, :name "Hidden Movement"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2846, :name "Once-Per-Game Abilities"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Specter ops", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "155624", :languages (list "en"), :game/name "Specter Ops", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/lVFArtZrwFEDo23sDcSMEg__thumb/img/pky3rb47HJv8jcNPjV3jbDB7o4c=/fit-in/200x150/filters:strip_icc()/pic2486481.jpg"}, #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" {:game/id #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"}), :name "Speculation", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "1036", :languages (list "en"), :game/name "Speculation", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/DIOqNWsW565yd3hPNun2UQ__thumb/img/8Bu2i8e03TSByVt95QUy4NoIxpQ=/fit-in/200x150/filters:strip_icc()/pic4029529.jpg"}, #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" {:game/id #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Speed Dice", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "191473", :game/name "Speed Dice", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ShmaBebkwhHnhMoi5favDg__thumb/img/o_ZrVDn3s01Pg50FuWNfjYHLkRM=/fit-in/200x150/filters:strip_icc()/pic2834183.jpg"}, #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" {:game/id #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :new true, :name "Spicy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "299169", :languages (list "en"), :game/name "Spicy", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eLJJ7f5I106enEFkSfxmnQ__thumb/img/nyTH5PgSWie1DZMZVJ7tnzEL-hk=/fit-in/200x150/filters:strip_icc()/pic5181748.png"}, #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" {:game/id #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2978, :name "Grid Coverage"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Spring Meadow", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "253684", :languages (list "en"), :game/name "Spring Meadow", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/RyoXSs5ukUtep7WbiWqTLg__thumb/img/Ev9hcbV_yI-PKaRqY8ZZSVLJpPY=/fit-in/200x150/filters:strip_icc()/pic4149719.jpg"}, #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" {:game/id #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Spy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "9201", :languages (list "en"), :game/name "Spy", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5fO7faqykFXDWbcuj0THZQ__thumb/img/mPXjz6iHNP3uyuYzCAA33AETHXo=/fit-in/200x150/filters:strip_icc()/pic38682.jpg"}, #uuid "dee45e08-5103-32ec-93b7-17d391b64576" {:game/id #uuid "dee45e08-5103-32ec-93b7-17d391b64576", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2892, :name "Roles with Asymmetric Information"} #:com.boardgamegeek.mechanic{:id 2866, :name "Targeted Clues"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Spyfall", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "166384", :languages (list "en"), :game/name "Spyfall", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ehx72XRdSeQHISVXcZVnHg__thumb/img/sPJVWjzGcEpiseZGdoD6HNR9nRI=/fit-in/200x150/filters:strip_icc()/pic2453926.jpg"}, #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" {:game/id #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2932, :name "Auction: Dutch Priority"} #:com.boardgamegeek.mechanic{:id 2850, :name "Events"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Spyrium", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "137269", :languages (list "en"), :game/name "Spyrium", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ze4QFonaGDFj9QTapBQYlg__thumb/img/opVobJGfklKTacqs512ty9kq5QE=/fit-in/200x150/filters:strip_icc()/pic1808509.jpg"}, #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" {:game/id #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"}), :name "Squadro", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "245222", :game/name "Squadro", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/WnpSuWccYdjrLDaAqaDCPw__thumb/img/eA6wQK1rtkYLUEk_9Viq940QGpM=/fit-in/200x150/filters:strip_icc()/pic4210130.jpg"}, #uuid "51817160-093d-3773-957a-662779bebec9" {:game/id #uuid "51817160-093d-3773-957a-662779bebec9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Squirrel rush", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "199690", :languages (list "en"), :game/name "Squirrel Rush", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rAh8TQNb6ZIelgmaonDPUQ__thumb/img/q7g0f8h4SWc9dLkbd5A9g7jLAcg=/fit-in/200x150/filters:strip_icc()/pic3018118.jpg"}, #uuid "56be7020-8ac5-312f-9c02-a912103646d9" {:game/id #uuid "56be7020-8ac5-312f-9c02-a912103646d9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Star Flux", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "102104", :languages (list "en"), :game/name "Star Fluxx", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/4rafBr5oDBZVSzN7ije3ZA__thumb/img/Pfr3nT9aYUJC6kEy0PArEeONLpM=/fit-in/200x150/filters:strip_icc()/pic1059779.jpg"}, #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" {:game/id #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Star Trek Fleet Captains", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "79127", :languages (list "en"), :game/name "Star Trek: Fleet Captains", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UqnetX2v84p9ZMpzB8GiDw__thumb/img/2MTCJvG13SbBcF92yo-4wuGuY10=/fit-in/200x150/filters:strip_icc()/pic1081488.jpg"}, #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" {:game/id #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Stay away", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "158392", :languages (list "en"), :game/name "Stay Away!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/oQjTzwZ07k7K32ix42v9vQ__thumb/img/craD998lI9Qp7TYfQS9TrOnif1k=/fit-in/200x150/filters:strip_icc()/pic3494983.png"}, #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" {:game/id #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "Stratego", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1051, :name "Napoleonic"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "1917", :languages (list "en"), :game/name "Stratego", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/O3JZyf9nB_2tGl4jpj8SPw__thumb/img/Yo80CtI2QTxVEXDWvjhkc6iYsMo=/fit-in/200x150/filters:strip_icc()/pic25644.jpg"}, #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" {:game/id #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Osadnici z Katanu Rychla karetni hra", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1029, :name "City Building"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "91534", :languages (list "cz"), :game/name "Struggle for Catan", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/odRECA_s_wJWJnFHovbb0g__thumb/img/CPhroaAPBNta7BCp1M69h8ArEKs=/fit-in/200x150/filters:strip_icc()/pic3063589.jpg"}, #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" {:game/id #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2959, :name "Map Addition"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Sub Terra", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1059, :name "Maze"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "204472", :languages (list "en"), :game/name "Sub Terra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/47Z9FcLD20NDHdRYUaF_XA__thumb/img/I6Uog8mnrK4MgjiQlIMGcrQ01r8=/fit-in/200x150/filters:strip_icc()/pic3904427.png"}, #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" {:languages (list "en"), :name "Subterra", :game/id #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f", :game/name "Subterra"}, #uuid "875b8289-de41-3672-8c92-95b6a689ff43" {:languages (list "en" "pl"), :name "Suits, the", :game/id #uuid "875b8289-de41-3672-8c92-95b6a689ff43", :game/name "Suits, the"}, #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" {:game/id #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Summoner Wars", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "58281", :languages (list "en"), :game/name "Summoner Wars", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/EWi-utp09EIJnwia_o_Taw__thumb/img/vEFkO1QccS2LQpL7fgX7-v1hZhg=/fit-in/200x150/filters:strip_icc()/pic5152378.png"}, #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" {:game/id #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Super Farmer: The Card Game", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "286147", :languages (list "en" "pl"), :game/name "Super Farmer: The Card Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/PAedUfUJ5gW0vtNfGHDVAg__thumb/img/mSf3m6Gb7F5mHCTUJghR52DVMhM=/fit-in/200x150/filters:strip_icc()/pic4966239.png"}, #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" {:languages (list "cz"), :name "SuperSpion / Spyfall", :game/id #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd", :game/name "SuperSpion / Spyfall"}, #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" {:game/id #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Supervillain this galaxy is mine", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "223573", :languages (list "en"), :game/name "Supervillain: This Galaxy Is Mine!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/m6WHe0nNunrTTKwvYJyyFg__thumb/img/ttRdI77V230dCPyC3AlxrNbI_Ms=/fit-in/200x150/filters:strip_icc()/pic3488140.jpg"}, #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" {:game/id #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Sushi Go!", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "133473", :game/name "Sushi Go!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/EPdI2KbLVtpGWLgL_eJLFg__thumb/img/6fDvIObIG-oxTDWNaf8l9mchWMk=/fit-in/200x150/filters:strip_icc()/pic5885690.jpg"}, #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" {:game/id #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Sweet Nose", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1098, :name "Number"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "179548", :languages (list "en"), :game/name "Sweet Nose", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Mxns4HExaB42Rdj0Rm9eag__thumb/img/zQ-ZXDJNtoRvd6FPu98KURcaEJ4=/fit-in/200x150/filters:strip_icc()/pic3052668.jpg"}, #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" {:game/id #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :new true, :name "Swipe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "16807", :languages (list "en"), :game/name "Swipe", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/YFn_ZUqa_ixHhmRCU0lqAQ__thumb/img/pGSfGur3zROciDXpzb-YADiUDlQ=/fit-in/200x150/filters:strip_icc()/pic3782673.png"}, #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" {:game/id #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2962, :name "Move Through Deck"} #:com.boardgamegeek.mechanic{:id 2851, :name "Narrative Choice / Paragraph"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Time Stories", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "146508", :languages (list "cz"), :game/name "T.I.M.E Stories", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/XmwCsjQ3C1Ul53ZN2o8Q-Q__thumb/img/tTU1YVtab-cN5gCdagINowvVA2g=/fit-in/200x150/filters:strip_icc()/pic2617634.png"}, #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" {:game/id #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Trails", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1084, :name "Environmental"} #:com.boardgamegeek.category{:id 1097, :name "Travel"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "338628", :languages (list "en"), :game/name "TRAILS", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/alEgV88cpqFtaHAklI6lbw__thumb/img/Zjwu-ZXktck4EIrVDhMqjLsZmsQ=/fit-in/200x150/filters:strip_icc()/pic6214088.jpg"}, #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" {:game/id #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"}), :new true, :name "Tabannusi: Builders of Ur", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1029, :name "City Building"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 120, :com.boardgamegeek.boardgame/id "316786", :languages (list "en"), :game/name "Tabannusi: Builders of Ur", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0WmXXnvravcDiiQvJum0xA__thumb/img/3x8ADI1ZjsvXVziRdeGFOWLbZJ0=/fit-in/200x150/filters:strip_icc()/pic6428410.jpg"}, #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" {:game/id #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Taboo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "1111", :languages (list "en"), :game/name "Taboo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/e8wVvax1VqQkgCu_AST5Aw__thumb/img/liOKssTUHRIIVYERQgyHSNK33Qk=/fit-in/200x150/filters:strip_icc()/pic212946.jpg"}, #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" {:game/id #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "Taco Cat Goat Cheese Pizza", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "253664", :languages (list "en"), :game/name "Taco Cat Goat Cheese Pizza", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Huss90M3Dw69vZKsl6COaw__thumb/img/FT3OeUFrnFGZXukJbHNX9bcvQvY=/fit-in/200x150/filters:strip_icc()/pic5197313.png"}, #uuid "b8909580-a299-3ec5-848c-548f38510b72" {:game/id #uuid "b8909580-a299-3ec5-848c-548f38510b72", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Tri <NAME>ala <NAME>asatka", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "135649", :languages (list "cz"), :game/name "Tales & Games: The Three Little Pigs", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rdSKRuh85xv6MmHBn9-aUQ__thumb/img/uog0ckrEef5Y140153OlcSn6Dqw=/fit-in/200x150/filters:strip_icc()/pic1701673.jpg"}, #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" {:game/id #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Team up", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"} #:com.boardgamegeek.category{:id 1011, :name "Transportation"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "235511", :languages (list "en"), :game/name "Team UP!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6hqatvV_uhGWebNPWzj4lA__thumb/img/Ja6pyHziaDDIi_2_jRCXUGNKWm0=/fit-in/200x150/filters:strip_icc()/pic3788130.jpg"}, #uuid "6b9a2464-282c-396d-a918-afde2db81cde" {:game/id #uuid "6b9a2464-282c-396d-a918-afde2db81cde", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2003, :name "Rock-Paper-Scissors"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Super Cats", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "279014", :languages (list "en" "fr"), :game/name "Teenage Mutant Ninja Turtles: Turtle Power Card Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bgjK-BduP2X3lgMmz1UjIg__thumb/img/uFUYESFRF06ugeLajX5nY9_rWww=/fit-in/200x150/filters:strip_icc()/pic6480478.jpg"}, #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" {:game/id #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Tension", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "1595", :languages (list "en"), :game/name "Tension", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/OzApxKxeNDjcEsM889qLog__thumb/img/wThBOcdWzhZDF9QAheswm6Go9v0=/fit-in/200x150/filters:strip_icc()/pic363584.jpg"}, #uuid "66437274-239d-371f-a5d1-71102dca56e3" {:languages (list "en"), :name "Tension Master", :game/id #uuid "66437274-239d-371f-a5d1-71102dca56e3", :game/name "Tension Master"}, #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" {:languages (list "cz"), :name "Teraformace Marsu", :game/id #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd", :game/name "Teraformace Marsu"}, #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" {:game/id #uuid "9c557202-449d-3095-b805-89c2e6e0fe50", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"}), :name "Zeme", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "153507", :languages (list "terra"), :game/name "Terra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/oisIhweNPvYGrTounfOr_A__thumb/img/CAOGSfBBkYezI4bVVyAP1fwv1ww=/fit-in/200x150/filters:strip_icc()/pic2566394.jpg"}, #uuid "e154f5ce-d498-3840-a559-661a996d4d09" {:game/id #uuid "e154f5ce-d498-3840-a559-661a996d4d09", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Terra Evolution Tree of life", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 1036, :name "Prehistoric"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "111426", :game/name "Terra Evolution: Tree of Life", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kYK_QyuZLxPCEnYo0VoH9A__thumb/img/iM5YOwWPk2BGRfhb-fRp5gU_cGI=/fit-in/200x150/filters:strip_icc()/pic2621857.jpg"}, #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" {:game/id #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2914, :name "Increase Value of Unchosen Resources"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2849, :name "Tech Trees / Tech Tracks"} #:com.boardgamegeek.mechanic{:id 2830, :name "Turn Order: Pass Order"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"} #:com.boardgamegeek.mechanic{:id 2874, :name "Victory Points as a Resource"}), :name "Terra Mystica", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "120677", :languages (list "cz"), :game/name "Terra Mystica", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bre12I1YiXkZr7elvriz4A__thumb/img/GW-ip0dfeAee7KQqJ04SRZxF1lg=/fit-in/200x150/filters:strip_icc()/pic5375624.jpg"}, #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" {:game/id #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2828, :name "Turn Order: Progressive"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Terraforming Mars", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1084, :name "Environmental"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 120, :com.boardgamegeek.boardgame/id "167791", :languages (list "cz"), :game/name "Terraforming Mars", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wg9oOLcsKvDesSUdZQ4rxw__thumb/img/BTxqxgYay5tHJfVoJ2NF5g43_gA=/fit-in/200x150/filters:strip_icc()/pic3536616.jpg"}, #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" {:game/id #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "Strife", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1055, :name "American West"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "225482", :game/name "Texas Showdown", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1a0gtaIzqd3GSHbOf5gW3w__thumb/img/fFypu_tK6nMkxDMic_v8rKyFwjw=/fit-in/200x150/filters:strip_icc()/pic3914023.jpg"}, #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" {:game/id #uuid "458d2163-a348-30c3-a4ad-8792fa32645c", :com.boardgamegeek.boardgame/min-players 3, :name "To je O<NAME>ázka!", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "226322", :languages (list "cz"), :game/name "That's a Question!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/MTGTksYC45yzbOB-UJdBTw__thumb/img/Pe10KxKTwYWeK_Ikgu0YJEsDdkk=/fit-in/200x150/filters:strip_icc()/pic3643950.jpg"}, #uuid "8881688f-f717-3852-a5df-d3c7386562d1" {:game/id #uuid "8881688f-f717-3852-a5df-d3c7386562d1", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "The Ancient World", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "147253", :languages (list "en"), :game/name "The Ancient World", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/-trgBZRA5P4kk86FQuuI-A__thumb/img/OMIhsFac59AYy7QyiDbsVgFxQHs=/fit-in/200x150/filters:strip_icc()/pic1951629.jpg"}, #uuid "1bd17795-c173-3c75-9489-8343917b819a" {:game/id #uuid "1bd17795-c173-3c75-9489-8343917b819a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "The Boldest", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "261529", :languages (list "en"), :game/name "The Boldest", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/2igp3-QEN6v2tZm-MwrEPA__thumb/img/l9Z4TQVVnEQomKQUoIqcL8_50eY=/fit-in/200x150/filters:strip_icc()/pic4328782.jpg"}, #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" {:game/id #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2850, :name "Events"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "The Boss", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "7152", :game/name "The Boss", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/dHMkSe5cOAeWRg3wt8nh1A__thumb/img/jqfFM_x3vq7z9B8WlitYmE99dKM=/fit-in/200x150/filters:strip_icc()/pic579157.jpg"}, #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" {:game/id #uuid "595f02eb-d247-3d88-95e4-06800f89e71a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "<NAME> k devate planetě", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "284083", :languages (list "cz"), :game/name "The Crew: The Quest for Planet Nine", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/98LnQShydr11OBKS46xY-Q__thumb/img/et-fnuozyOdBOVL-5kSS3_7I8fw=/fit-in/200x150/filters:strip_icc()/pic5687013.jpg"}, #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" {:game/id #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "The Dutch East Indies", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1008, :name "Nautical"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"} #:com.boardgamegeek.category{:id 1011, :name "Transportation"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "216907", :languages (list "en"), :game/name "The Dutch East Indies", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6G4EVaT-g7WNPYHTA0EN7w__thumb/img/PjnIyuxU6v1SXddh0B4LDuKI2JY=/fit-in/200x150/filters:strip_icc()/pic3373286.jpg"}, #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" {:game/id #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2847, :name "Advantage Token"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2884, :name "Sudden Death Ending"} #:com.boardgamegeek.mechanic{:id 2826, :name "Turn Order: Stat-Based"}), :name "The Fog of War", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1049, :name "World War II"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "197439", :languages (list "en"), :game/name "The Fog of War", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/9UBE2IUYwJj0qzK-pF2EAw__thumb/img/Btsp1uK6EpiZe46DOalt_TZeKcI=/fit-in/200x150/filters:strip_icc()/pic3116180.jpg"}, #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" {:game/id #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "<NAME>ška Pod<NAME>itá Duet", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "288169", :languages (list "cz"), :game/name "The Fox in the Forest Duet", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1uTAJoAdG3UC6N0G7UMeTA__thumb/img/SzaN4ejLFyjTbElgZPGGjUtlf6o=/fit-in/200x150/filters:strip_icc()/pic4942502.jpg"}, #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" {:game/id #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"}), :name "The Game of Life", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1072, :name "Electronic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "2921", :languages (list "en"), :game/name "The Game of Life", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/c4S2XDRb_DCYCAV-ZAzDpg__thumb/img/tAejWvDTc-mXjX2euOrJwaXP2Y8=/fit-in/200x150/filters:strip_icc()/pic288405.jpg"}, #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" {:languages (list "cz"), :name "The Godfather", :game/id #uuid "72b0f8c3-5245-35e0-9a66-484200882d79", :game/name "The Godfather"}, #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" {:game/id #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2962, :name "Move Through Deck"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "The Grizzled", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1065, :name "World War I"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "171668", :languages (list "en"), :game/name "The Grizzled", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5JuQCtSAeSZpAL3WgWdwow__thumb/img/XcI-3g0sVumt8DsaMaBGrwftIRw=/fit-in/200x150/filters:strip_icc()/pic3719610.png"}, #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" {:game/id #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2978, :name "Grid Coverage"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2826, :name "Turn Order: Stat-Based"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "The Magnificent", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "283863", :languages (list "en"), :game/name "The Magnificent", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6pci74DWc7U7XuwkfpEu2Q__thumb/img/K-X_5jjTMmesaFzFUoFOZu5p_AU=/fit-in/200x150/filters:strip_icc()/pic4871117.jpg"}, #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" {:game/id #uuid "134c5416-16b9-3118-a547-774f6df7bbcd", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"}), :name "The Mind", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "244992", :languages (list "en"), :game/name "The Mind", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/q_JGK291hrhnhiRB0667oA__thumb/img/PUrzEmTo5kOcK5BOb4cbOOcH86I=/fit-in/200x150/filters:strip_icc()/pic3979766.png"}, #uuid "af472b73-df4f-3397-a8c7-31a328913353" {:game/id #uuid "af472b73-df4f-3397-a8c7-31a328913353", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2885, :name "Finale Ending"} #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2892, :name "Roles with Asymmetric Information"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Avalon: The Resistance", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "128882", :languages (list "en"), :game/name "The Resistance: Avalon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/LPa6rsGcv8S0-OeNjCOAEQ__thumb/img/RKui79VjUbQAzTWaPu44ytupzDs=/fit-in/200x150/filters:strip_icc()/pic1398895.jpg"}, #uuid "5140d848-4910-3017-8f45-c2851658966b" {:game/id #uuid "5140d848-4910-3017-8f45-c2851658966b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "The River", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "257759", :languages (list "en"), :game/name "The River", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZmxO1MJdYqWHsVGuy2elPw__thumb/img/BmmJISWrgSPXfvc8-IEtSgbkwcM=/fit-in/200x150/filters:strip_icc()/pic4283642.png"}, #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" {:game/id #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "The Rose King", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "201", :languages (list "en"), :game/name "The Rose King", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/vfFy_HLiBNLxptwxFDMmDg__thumb/img/CJ8yTQu3kt8o4ZwF5ZbMJWDj564=/fit-in/200x150/filters:strip_icc()/pic2855891.jpg"}, #uuid "ebb89386-c539-37db-b4a7-972b931256f7" {:game/id #uuid "ebb89386-c539-37db-b4a7-972b931256f7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2932, :name "Auction: Dutch Priority"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "The Speicherstadt", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "66505", :languages (list "en"), :game/name "The Speicherstadt", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/x1EVKCtIP_tFTH8h5kvXog__thumb/img/8n5m3ZjWQfD-uwM7hOEyqS_93I4=/fit-in/200x150/filters:strip_icc()/pic686491.jpg"}, #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" {:languages (list "cz"), :name "Through the ages", :game/id #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538", :game/name "Through the ages"}, #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" {:languages (list "en"), :name "Thunder and Lightning", :game/id #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e", :game/name "Thunder and Lightning"}, #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" {:languages (list "en"), :name "Thunderstone Advance", :game/id #uuid "a09707a5-88fc-32fa-b544-8afa929496ab", :game/name "Thunderstone Advance"}, #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" {:game/id #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Ticket to Ride", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1034, :name "Trains"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "9209", :game/name "Ticket to Ride", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZWJg0dCdrWHxVnc0eFXK8w__thumb/img/a9rsFV6KR0aun8GobhRU16aU8Kc=/fit-in/200x150/filters:strip_icc()/pic38668.jpg"}, #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" {:game/id #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2883, :name "Connections"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Ticket to Ride Europe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1034, :name "Trains"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "14996", :languages (list "cz"), :game/name "Ticket to Ride: Europe", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0K1AOciqlMVUWFPLTJSiww__thumb/img/RDvu2FvsYVVH8icp1VsilUlqUGI=/fit-in/200x150/filters:strip_icc()/pic66668.jpg"}, #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" {:game/id #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb", :com.boardgamegeek.boardgame/min-players 2, :name "Time’s up", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1094, :name "Educational"}), :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/id "38579", :languages (list "en"), :game/name "Time's Up", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gDAVfngSgBT84oy3wlm3Rw__thumb/img/vAGevOvjEVquzcQkKWEBDcbK5T4=/fit-in/200x150/filters:strip_icc()/pic376027.jpg"}, #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" {:game/id #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Time’s Up – <NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "88126", :game/name "Time's Up! Family", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/IaRRFgVPFUkhklzt96Z3sA__thumb/img/t3qrVwTjF04gioPupyc7gfnqDis=/fit-in/200x150/filters:strip_icc()/pic903503.jpg"}, #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" {:game/id #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "Timeline", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "683", :languages (list "cz"), :game/name "Timeline", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/xNlnA_NM7ZDKQWqx8WE3Uw__thumb/img/kJOIXrJ87KPJNSqC_niMvA2_JrU=/fit-in/200x150/filters:strip_icc()/pic137941.jpg"}, #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" {:game/id #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2843, :name "Follow"} #:com.boardgamegeek.mechanic{:id 2858, :name "Prisoner's Dilemma"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "<NAME>á Velká K<NAME>lovství", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "148951", :languages (list "cz"), :game/name "Tiny Epic Kingdoms", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rEBwFqk9b4rT-hrGOQnZrA__thumb/img/nIQB6TR1SMbF1W1Oq4OlhIbnao4=/fit-in/200x150/filters:strip_icc()/pic2947892.jpg"}, #uuid "104965da-ee0b-3867-95a3-0416228b7b19" {:languages (list "cz"), :name "Tipni si Česko", :game/id #uuid "104965da-ee0b-3867-95a3-0416228b7b19", :game/name "Tipni si Česko"}, #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" {:game/id #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2663, :name "Time Track"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Tokaido", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1097, :name "Travel"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "123540", :languages (list "en"), :game/name "Tokaido", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/-sUA2HQNFHBxOdzHE6Ywlg__thumb/img/OW3Jp2snfQM6Aq_nwOrKnHpF2hM=/fit-in/200x150/filters:strip_icc()/pic3747956.png"}, #uuid "39063899-ef80-383a-97b7-38b8c778cc24" {:game/id #uuid "39063899-ef80-383a-97b7-38b8c778cc24", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Tortuga 1667", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 9, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "218530", :languages (list "en"), :game/name "Tortuga 1667", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rT6zVN1zRbEMHok5V_zoGQ__thumb/img/851DsrYg9ei8WsbL77sj5eQMvP0=/fit-in/200x150/filters:strip_icc()/pic3747083.png"}, #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" {:game/id #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df", :com.boardgamegeek.boardgame/min-players 2, :name "Totem", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1015, :name "Civilization"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "471", :languages (list "en"), :game/name "Totem", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/4j_lyl1mtRT7YYmTcd2b9g__thumb/img/RhYKvH1TbL2UbbB8TgULIzmquWI=/fit-in/200x150/filters:strip_icc()/pic75195.jpg"}, #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" {:game/id #uuid "c31af57c-a315-3610-b455-9d5f386f31e0", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Trapwords", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "257527", :languages (list "en"), :game/name "Trapwords", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/aU1dLvPuTgGY0NsFajD9HQ__thumb/img/LKC4wxSMYreK8hbG82sNjUFdDiY=/fit-in/200x150/filters:strip_icc()/pic4327157.jpg"}, #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" {:game/id #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Treasure Island", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "7659", :languages (list "en"), :game/name "Treasure Island", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ow6VaE8Yyn6A_70wvxwZUw__thumb/img/8K7_bIPxeL50ofJO6Gn2xvfG9jY=/fit-in/200x150/filters:strip_icc()/pic31268.jpg"}, #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" {:game/id #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Treasure Lair", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "207845", :languages (list "en"), :game/name "Treasure Lair", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/09gxU5YptdssyaKGcOfRtA__thumb/img/BlVNNRs49cxrpu72Odq9qsXF-qM=/fit-in/200x150/filters:strip_icc()/pic3158785.jpg"}, #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" {:languages (list "en"), :name "Treasures of the Carribean", :game/id #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330", :game/name "Treasures of the Carribean"}, #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" {:game/id #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75", :com.boardgamegeek.boardgame/min-players 2, :name "Tricks and the Phantom", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "242325", :languages (list "de" "en" "fr" "it"), :game/name "Tricks and the Phantom", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/q8EjU4y-sCwxe50KG4BV3Q__thumb/img/3xXe3p2eSu2YJ-qmBVgV9FGKTZU=/fit-in/200x150/filters:strip_icc()/pic5797064.png"}, #uuid "578002db-1bee-32a8-949c-58bece6429a5" {:languages (list "en"), :name "Triviador", :game/id #uuid "578002db-1bee-32a8-949c-58bece6429a5", :game/name "Triviador", :com.boardgamegeek.boardgame/id "135082", :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1027, :name "Trivia"})}, #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2" {:game/id #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2", :com.boardgamegeek.boardgame/min-players 4, :name "Trivial Pursuit", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 99, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "253633", :languages (list "en"), :game/name "Trivial Pursuit: X", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wuSzCspUXnJi5WZMBrcnkg__thumb/img/aHCBnB71-uHP38KVVTdJ6Nsf7jY=/fit-in/200x150/filters:strip_icc()/pic4823899.jpg"}, #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" {:game/id #uuid "64b81638-f97f-36d4-ad33-08e915a1750e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Troika", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1045, :name "Memory"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "102248", :languages (list "en"), :game/name "Troika", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/zqF9ipRqRz-KF1hEhoUhKw__thumb/img/Gi8zTIFzRnJbPYCNps1UAuT2zX0=/fit-in/200x150/filters:strip_icc()/pic1033038.jpg"}, #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" {:game/id #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"}), :new true, :name "Truffle Shuffle", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "23955", :languages (list "en"), :game/name "Truffle Shuffle", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/8AAxaLVwDRy5ThcXJrUn8A__thumb/img/2d0JpBMuwasLIhKJNqLvgEVpUSI=/fit-in/200x150/filters:strip_icc()/pic149490.jpg"}, #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" {:game/id #uuid "aacb653d-e587-34a7-a360-4c3956b4f677", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Tsuro", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "16992", :languages (list "en"), :game/name "Tsuro", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/2V3d4ryhxkS3RoPtDrvpUw__thumb/img/NWgNhoxUIF7Lmj1apRkZQhFL6NU=/fit-in/200x150/filters:strip_icc()/pic875761.jpg"}, #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" {:game/id #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Twist of Fate", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "198059", :languages (list "en"), :game/name "Twist of Fate", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/-FtKCFdQ89CDoGGg3NZTFA__thumb/img/V8ZkI6tf5sqIRp04swz1U6ewcQo=/fit-in/200x150/filters:strip_icc()/pic3281332.jpg"}, #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" {:game/id #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"}), :name "Two Crowns", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "132145", :languages (list "en"), :game/name "Two Crowns", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/F_VS_xKZ31WMaKEUiro9iQ__thumb/img/VPGT_i_iHhQaZM_JjDT7Yvw7BIY=/fit-in/200x150/filters:strip_icc()/pic1750933.png"}, #uuid "91934e02-f64d-3aab-9536-19f592307a91" {:game/id #uuid "91934e02-f64d-3aab-9536-19f592307a91", :com.boardgamegeek.boardgame/min-players 6, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "The Two Khans", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 15, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "286892", :languages (list "en"), :game/name "Two Khans", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rVFSyzpN-7Bfde8s2yLCWA__thumb/img/IZKAVuDzTdU9eOl7CWxiugP6pSE=/fit-in/200x150/filters:strip_icc()/pic4942004.jpg"}, #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" {:languages (list "cz"), :name "<NAME>’zolkin", :game/id #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f", :game/name "T’zolkin"}, #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" {:game/id #uuid "7416a104-a4b4-3c68-895e-98e989dce7de", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "Ugo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "139326", :game/name "UGO!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/vLlpTJzPbWSTO1p8v65VQQ__thumb/img/NyZCUFG4ITVIHFaWrcdNsOi3fww=/fit-in/200x150/filters:strip_icc()/pic1823140.png"}, #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" {:game/id #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2836, :name "Lose a Turn"} #:com.boardgamegeek.mechanic{:id 3007, :name "Matching"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Uno", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2223", :languages (list "en"), :game/name "UNO", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/SU-OL7XWn7BOiSYevyTThw__thumb/img/5dxRomuxNxzw01ZYNnIK-f_Ai4o=/fit-in/200x150/filters:strip_icc()/pic981505.jpg"}, #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" {:game/id #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2978, :name "Grid Coverage"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Ubongo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "16986", :languages (list "cz"), :game/name "Ubongo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0wSuQbmk4nPwNytp9_zzPw__thumb/img/2_damZx35g1mE8kgWUpIXoHybW8=/fit-in/200x150/filters:strip_icc()/pic4597123.jpg"}, #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" {:game/id #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e", :com.boardgamegeek.boardgame/min-players 1, :name "Ubongo trigo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "118553", :game/name "Ubongo Trigo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/9_zB31vH27jNJJ1mSN9u4Q__thumb/img/7tsV5bv_FDMvRBUuAQvn6mR119k=/fit-in/200x150/filters:strip_icc()/pic1210953.jpg"}, #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" {:game/id #uuid "7c823c08-2b3e-3613-bf68-fde60227450d", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Ultimate werewolf", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 30, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "152241", :languages (list "en"), :game/name "Ultimate Werewolf", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pbX50vKkFCUBsK8DolVq_w__thumb/img/Q-glOUzREfIQkbMyLE70qmf3R9Q=/fit-in/200x150/filters:strip_icc()/pic1878507.png"}, #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" {:game/id #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"}), :name "Undaunted Normandy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1019, :name "Wargame"} #:com.boardgamegeek.category{:id 1049, :name "World War II"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "268864", :languages (list "en"), :game/name "Undaunted: Normandy", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iCd6hMGDzsQ_UXh00iKsJA__thumb/img/QbOlBm7DZGP2ZBnGZ-YaD-py-UQ=/fit-in/200x150/filters:strip_icc()/pic4602347.jpg"}, #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" {:game/id #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2846, :name "Once-Per-Game Abilities"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2884, :name "Sudden Death Ending"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"} #:com.boardgamegeek.mechanic{:id 2935, :name "Worker Placement with Dice Workers"}), :new true, :name "Under Falling Skies", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 1, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "306735", :languages (list "en"), :game/name "Under Falling Skies", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ecO5eAd3RkctQ0-Tbqv37Q__thumb/img/uxrJLWxvi-f8CGbDpxQBStzvGes=/fit-in/200x150/filters:strip_icc()/pic5428723.jpg"}, #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" {:languages (list "cz"), :name "Unlock", :game/id #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a", :game/name "Unlock"}, #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" {:game/id #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2882, :name "Elapsed Real Time Ending"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"}), :name "Unlock! Escape Adventures", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "213460", :languages (list "cz"), :game/name "Unlock!: Escape Adventures", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/h8K_nTemD6bmydT0akChZw__thumb/img/nKF4nF8Ml5q0E0CYo7qo3Ax_gcE=/fit-in/200x150/filters:strip_icc()/pic3348790.jpg"}, #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" {:game/id #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Unstable Unicorns", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "234190", :languages (list "en"), :game/name "Unstable Unicorns", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/8_5xvpsrrX5JVzO7eBLSgw__thumb/img/fV4UWCHC1ImGFUN7lcJju9K8_zo=/fit-in/200x150/filters:strip_icc()/pic3912914.jpg"}, #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" {:game/id #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Upstream", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1084, :name "Environmental"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "209567", :languages (list "en"), :game/name "Upstream", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Iv_eFbNzMuROy275e2X2pw__thumb/img/9hx4WYZfrvM_EFxaYL2oVpJEBuU=/fit-in/200x150/filters:strip_icc()/pic3674313.png"}, #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" {:game/id #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"}), :name "Valley of the Kings Afterlife", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"} #:com.boardgamegeek.category{:id 1115, :name "Religious"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "175223", :game/name "Valley of the Kings: Afterlife", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/PqoEulSFarx64L6EYMn-qg__thumb/img/cA12z4bxPWLRHGcZ8FduT8kcLGE=/fit-in/200x150/filters:strip_icc()/pic2456554.jpg"}, #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" {:game/id #uuid "e5ce3771-79d2-3202-b053-1561d6d093be", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Vast The Crystal Caverns", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "170416", :languages (list "en"), :game/name "Vast: The Crystal Caverns", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CeXtELC0X1xjwuend_7pTg__thumb/img/FdE8SHtb503f9ZOk_TYyxS-sJQg=/fit-in/200x150/filters:strip_icc()/pic2962290.jpg"}, #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" {:game/id #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2920, :name "Auction: Sealed Bid"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Panovnik", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "157526", :languages (list "viceroy"), :game/name "Viceroy", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/24x3IUxdpizAPxXPOJsypQ__thumb/img/XFKd1GrAgke9M5wwDilZvyGBfDk=/fit-in/200x150/filters:strip_icc()/pic2254354.jpg"}, #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" {:name "Vikings on boards", :game/id #uuid "5c50d320-55f3-337f-b820-3e559968a3f1", :game/name "Vikings on boards"}, #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" {:name "Village inn", :game/id #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44", :game/name "Village inn", :com.boardgamegeek.boardgame/id "136223"}, #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" {:name "Wakanada", :game/id #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae", :game/name "Wakanada"}, #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" {:game/id #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "Walls of York", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "247980", :languages (list "en"), :game/name "Walls of York", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/-mGHT2rgFu4dFezodM38kA__thumb/img/x9TBZ5dZiiPi7q2RfgxOFHipG4c=/fit-in/200x150/filters:strip_icc()/pic4223058.png"}, #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" {:languages (list "en"), :name "Wanna Bet Family challenge", :game/id #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527", :game/name "Wanna Bet Family challenge"}, #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" {:game/id #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "We’re Doomed", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "264806", :languages (list "en"), :game/name "We're Doomed!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NCcmCG2X-ssnAA5kyR386g__thumb/img/vaYBsf0wCFaEhjX-cIwpc1vRHUc=/fit-in/200x150/filters:strip_icc()/pic4420866.jpg"}, #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" {:game/id #uuid "32288419-57f9-3b53-a2df-4b3393930c5a", :com.boardgamegeek.boardgame/min-players 2, :name "Weird things humans search for", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 20, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "254419", :languages (list "en"), :game/name "Weird Things Humans Search For", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/3UUUkiZx5wMr_W9ZmnA1Kg__thumb/img/WQI8ETMLMY6IqZaovZdxE1N04RY=/fit-in/200x150/filters:strip_icc()/pic4206940.jpg"}, #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" {:game/id #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "Vzhuru zpátky do Podzemí", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "195043", :languages (list "cz"), :game/name "Welcome Back to the Dungeon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Tu5hFjeX1-5EwnwjdNTaHg__thumb/img/y8At3p87JcNiUuHTiRIKgUvKOks=/fit-in/200x150/filters:strip_icc()/pic3060124.jpg"}, #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" {:game/id #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2892, :name "Roles with Asymmetric Information"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Werewords", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "219215", :languages (list "en"), :game/name "Werewords", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/4ngyBZXLLKIOdGuUHE7baw__thumb/img/gSGfC0ZMYbOXukqfdBBuxULmyJU=/fit-in/200x150/filters:strip_icc()/pic4415135.jpg"}, #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" {:game/id #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Legendy Západu", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1055, :name "American West"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "232405", :languages (list "cz"), :game/name "Western Legends", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/_FnP28QChh-8uFh6ZvpJhA__thumb/img/iq5peG7h6fe8_-nY_MJkG3QrYCg=/fit-in/200x150/filters:strip_icc()/pic3837503.jpg"}, #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" {:game/id #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"}), :name "Whales Destroying the World", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "256502", :languages (list "cz" "en"), :game/name "Whales Destroying The World", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nwk8uhs8nuGghB5WtVfZ0w__thumb/img/cMCkbF_ICrXxKKJBZpcUNb9lzM0=/fit-in/200x150/filters:strip_icc()/pic4276568.jpg"}, #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" {:game/id #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf", :com.boardgamegeek.boardgame/min-players 2, :name "What came first", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "283363", :languages (list "en"), :game/name "What Came First?", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5bY5HlOzIwyI5SPW1b3JdQ__thumb/img/-oP4DslYzNnxLB48R4snu-WOfeg=/fit-in/200x150/filters:strip_icc()/pic4820669.png"}, #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" {:game/id #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"}), :name "What do you meme", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "132203", :languages (list "en"), :game/name "What Do You Meme?", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/11n5l5NwDkUB40QPlw2yIg__thumb/img/-8i8V-TI5HEsYxRvQ7HVNvg7R1g=/fit-in/200x150/filters:strip_icc()/pic4729721.png"}, #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" {:game/id #uuid "15a92feb-8726-3842-b957-7e7b69421b2c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2991, :name "Speed Matching"}), :new true, :name "The Sound Maker", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "341136", :languages (list "en"), :game/name "What's That Sound?", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/vhwa9AMXqfTqVpY6Z01_2A__thumb/img/_fAl8-tWPSTEPNoHzWNhs2QBwu4=/fit-in/200x150/filters:strip_icc()/pic6416292.jpg"}, #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" {:game/id #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "What’s Up", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1045, :name "Memory"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "201054", :game/name "What's Up", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/lpKc9CfkSyF5qyNfWG8XrA__thumb/img/SsUJzqPEJQ4Lx0K1d7G7o-D1uEQ=/fit-in/200x150/filters:strip_icc()/pic3042240.jpg"}, #uuid "e214a1ce-1929-3835-b502-4510ef89f940" {:languages (list "en"), :name "Who’s the traitor", :game/id #uuid "e214a1ce-1929-3835-b502-4510ef89f940", :game/name "Who’s the traitor"}, #uuid "abe58998-3062-3866-9238-314af7ba0265" {:game/id #uuid "abe58998-3062-3866-9238-314af7ba0265", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"}), :name "Wild Fun West", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1055, :name "American West"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "120781", :game/name "Wild Fun West", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/SBTjRWG6lNHkHULIT13AKA__thumb/img/BJy5bJ4IBj3K0tobl3pIMLWijbo=/fit-in/200x150/filters:strip_icc()/pic1391887.png"}, #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" {:game/id #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "Wilderness", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "108637", :game/name "Wilderness", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ucbjn6fKAxqI43Ba_Yl9_w__thumb/img/dtOnPBhmW9j-UkAFCRkoXjAdchk=/fit-in/200x150/filters:strip_icc()/pic1097184.jpg"}, #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" {:game/id #uuid "e5f11979-9a30-30ec-8084-92dd584b1214", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1094, :name "Educational"}), :com.boardgamegeek.boardgame/max-play-time 70, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "266192", :languages (list "cz"), :game/name "Wingspan", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/yLZJCVLlIx4c7eJEWUNJ7w__thumb/img/VNToqgS2-pOGU6MuvIkMPKn_y-s=/fit-in/200x150/filters:strip_icc()/pic4458123.jpg"}, #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" {:game/id #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2055, :name "Paper-and-Pencil"}), :name "Wits and wagers family", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "66588", :languages (list "en"), :game/name "Wits & Wagers Family", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ScQODaP8QC5mXrRn8qTHOg__thumb/img/_l_W7kLA12ioz0QcaxceZnNHJ1A=/fit-in/200x150/filters:strip_icc()/pic664569.jpg"}, #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" {:languages (list "en"), :name "Wits and Wagers", :game/id #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa", :game/name "Wits and Wagers"}, #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" {:game/id #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "WordQuest", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "39180", :game/name "Wordquest", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UtoR2r81kOMWDZ0xGrSfAA__thumb/img/BRfR57UmJzTqxcN-4-kGN9Qu-qg=/fit-in/200x150/filters:strip_icc()/pic622198.jpg"}, #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" {:game/id #uuid "161dfda2-bf83-3041-ae10-e2410340abd1", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2055, :name "Paper-and-Pencil"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"}), :name "Wordsy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "208480", :languages (list "en"), :game/name "Word<NAME>", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/uryuyu59_aycdrCXs8I2Tg__thumb/img/1ow1EXgujmByLH69pW1spzfitIc=/fit-in/200x150/filters:strip_icc()/pic3223277.jpg"}, #uuid "3463c066-922f-3864-93bd-b87bb1286679" {:game/id #uuid "3463c066-922f-3864-93bd-b87bb1286679", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "<NAME>", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "111148", :languages (list "de"), :game/name "<NAME>", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iirbnwkZ755tRj69Q-uWHw__thumb/img/_aACxitODyWc7h1cAKG_c8w9Cjo=/fit-in/200x150/filters:strip_icc()/pic1197852.jpg"}, #uuid "d993f311-557a-391d-ab21-677ab586a01b" {:game/id #uuid "d993f311-557a-391d-ab21-677ab586a01b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Xenon Profiteer", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "176530", :languages (list "en"), :game/name "Xenon Profiteer", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZYukAQrKxJTosyVYmm98aw__thumb/img/BIsI2thXlVPfY30qfyftZCsNnY0=/fit-in/200x150/filters:strip_icc()/pic2537665.jpg"}, #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" {:game/id #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a", :com.boardgamegeek.boardgame/min-players 2, :name "Jak jako jak", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/id "177437", :languages (list "cz"), :game/name "YAK", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6W8_WuKJa3vvIFC2Cg-sPQ__thumb/img/Vk4oKKMkyLpynj5YR22lc5Sfx9E=/fit-in/200x150/filters:strip_icc()/pic2385066.jpg"}, #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" {:game/id #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Yak", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "21877", :game/name "Yak", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HzHXfWLxdZhAV1OVkWG7pA__thumb/img/tUZvD8FZq4STp8HXkjz509ngCtY=/fit-in/200x150/filters:strip_icc()/pic218963.jpg"}, #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" {:game/id #uuid "9cb073d5-2081-32d7-9991-a6077288e01e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "Yeti", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "189294", :game/name "Yeti", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/H7gM0ltr7zeYJjwiQiJMEA__thumb/img/EUMiXkxa6LeNKD9UEpdgJGM0kPo=/fit-in/200x150/filters:strip_icc()/pic2817129.jpg"}, #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" {:game/id #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2003, :name "Rock-Paper-Scissors"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Yomi", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1101, :name "Video Game Theme"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "43022", :game/name "Yomi", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NGxZknC3YvP4Xjn6ro38tQ__thumb/img/0jN0d9qt3YM2DN9MnG1-v6qI2VM=/fit-in/200x150/filters:strip_icc()/pic885442.jpg"}, #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" {:game/id #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2886, :name "King of the Hill"}), :name "Zeus na Uteku", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1104, :name "Math"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "22864", :languages (list "cz"), :game/name "Zeus on the Loose", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/t_7YMa7eh46paqvyi9616Q__thumb/img/dQIaPTQ-_Yjf7z_ahIHy2O8H4CU=/fit-in/200x150/filters:strip_icc()/pic191011.jpg"}, #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" {:game/id #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2828, :name "Turn Order: Progressive"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Zombicide Cerny mor", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 2481, :name "Zombies"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "176189", :languages (list "cz"), :game/name "Zombicide: Black Plague", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kVHuMBxmathfnq42XINBQg__thumb/img/u5Fuj4SwZhXElCO3VmrNKkAeXX4=/fit-in/200x150/filters:strip_icc()/pic2482309.jpg"}, #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" {:game/id #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Zooloretto", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "27588", :languages (list "cz" "de" "en"), :game/name "Zooloretto", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/FF_R0HV6APUKh0IW2w6oqw__thumb/img/GH0Q1trIy2CUCkixCe-b6UpjJoY=/fit-in/200x150/filters:strip_icc()/pic2021685.png"}, #uuid "fab76503-1b94-3d49-8b17-1336fababeec" {:languages (list "cz"), :name "<NAME>ámky", :game/id #uuid "fab76503-1b94-3d49-8b17-1336fababeec", :game/name "Zámky"}, #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" {:game/id #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"}), :name "iKnow", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "130680", :languages (list "cz"), :game/name "iKNOW", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/GDCDK9ZaD4AfTYf8FWoVaA__thumb/img/Vd7027iCx6W0QfvuB36TTAmVxcs=/fit-in/200x150/filters:strip_icc()/pic5885668.jpg"}}, :sorting {:game/name [#uuid "49b5473d-32f5-382b-943a-dda4a1491daf" #uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" #uuid "f8283731-6cf2-3086-8140-494037314bf5" #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" #uuid "d496a066-c36e-3570-99d1-9eedec118dee" #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" #uuid "ac19727b-672c-352f-b393-c52a81b055cb" #uuid "109a021a-56f4-3223-ae04-902a1f40db16" #uuid "492b7750-c3e8-3055-a93b-6745391300a6" #uuid "28e54304-62fc-38c9-9b76-058878323d57" #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" #uuid "582d2648-b634-3370-a31e-bef979dab3f3" #uuid "2e89598e-c81e-39d5-bae2-aee451063265" #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" #uuid "a0969dfc-5294-3b41-82bf-220e859197db" #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" #uuid "897ee373-c9e4-32f9-a323-fe188494520b" #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" #uuid "557482bd-c397-30d7-af1b-afbb6c763124" #uuid "414bbf5b-1083-3275-9983-4133937db58b" #uuid "56c98771-eaf0-34fe-8f66-156041739594" #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" #uuid "be01908f-633f-35da-be89-80701db8ed25" #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" #uuid "890488d0-a370-30a4-9788-a44754330b27" #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" #uuid "30c12229-f508-341c-9680-149dbdf88523" #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" #uuid "99102149-c730-3271-a928-b7549ce07a13" #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" #uuid "054f1270-bf79-32f9-825a-96880e800c9f" #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" #uuid "096f6d71-6864-3882-898c-00b9142932e7" #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" #uuid "12218694-0010-31cc-a245-a502b7ed4b19" #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" #uuid "165261a9-0183-3e53-be82-ccc197c354b8" #uuid "a389677b-6118-3815-84fe-c1e75f38984c" #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" #uuid "91a5169d-5877-3642-9a52-54c4f01655da" #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" #uuid "826863b8-1605-33a8-9169-91ebcb89712b" #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" #uuid "434338bc-9501-334b-adbf-2b3752e9e231" #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" #uuid "b4991e13-f466-39b4-be16-56909272f1cc" #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" #uuid "f18187e7-f398-32f0-b73e-625e848d8333" #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" #uuid "2293c663-d1bc-3701-9a53-009f457c6940" #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" #uuid "b1127074-659b-3102-907a-25a0473a3e98" #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" #uuid "938351d5-c89e-32e0-af3b-73d217217b14" #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" #uuid "5a156002-5793-338e-9399-def9bfd7eca6" #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" #uuid "39af5c41-5927-3dde-8a75-10397211dcda" #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" #uuid "423cb589-88be-336d-ada8-9817b5fe519e" #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" #uuid "12fd071d-60ce-3146-b555-655882920638" #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" #uuid "5e04b28e-010d-366b-af9d-020474ee6392" #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" #uuid "f8049db2-d889-3677-984e-4e2ce41de578" #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" #uuid "4578b280-9265-3868-8670-e39b70b610f9" #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" #uuid "189f9b13-158d-379b-9440-05b9bc24a356" #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" #uuid "44de8c27-9942-39ca-997c-57ff932fc882" #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" #uuid "33e20383-3807-3414-869c-7a3907d40b75" #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" #uuid "f750d160-d009-3c96-a630-eff035abfd6c" #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" #uuid "f81386ae-7767-3f93-a560-c78df55109bb" #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" #uuid "f7625727-1129-3703-96c0-442c8ac00dae" #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" #uuid "c64e760d-cd41-31b1-9626-a196593146fa" #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" #uuid "af817d47-9021-3806-800d-7ef8dab08024" #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" #uuid "20b16954-6c66-3536-b816-f13d464da44c" #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" #uuid "77933845-adf8-3758-a686-a08ea46f015e" #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" #uuid "5b444b22-2047-3124-af08-48687f72a6b5" #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" #uuid "568da493-2833-3009-ad26-7108e0683081" #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" #uuid "dee45e08-5103-32ec-93b7-17d391b64576" #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" #uuid "51817160-093d-3773-957a-662779bebec9" #uuid "56be7020-8ac5-312f-9c02-a912103646d9" #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" #uuid "875b8289-de41-3672-8c92-95b6a689ff43" #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" #uuid "b8909580-a299-3ec5-848c-548f38510b72" #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" #uuid "6b9a2464-282c-396d-a918-afde2db81cde" #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" #uuid "66437274-239d-371f-a5d1-71102dca56e3" #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" #uuid "e154f5ce-d498-3840-a559-661a996d4d09" #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" #uuid "8881688f-f717-3852-a5df-d3c7386562d1" #uuid "1bd17795-c173-3c75-9489-8343917b819a" #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" #uuid "af472b73-df4f-3397-a8c7-31a328913353" #uuid "5140d848-4910-3017-8f45-c2851658966b" #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" #uuid "ebb89386-c539-37db-b4a7-972b931256f7" #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" #uuid "104965da-ee0b-3867-95a3-0416228b7b19" #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" #uuid "39063899-ef80-383a-97b7-38b8c778cc24" #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" #uuid "578002db-1bee-32a8-949c-58bece6429a5" #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2" #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" #uuid "91934e02-f64d-3aab-9536-19f592307a91" #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" #uuid "e214a1ce-1929-3835-b502-4510ef89f940" #uuid "abe58998-3062-3866-9238-314af7ba0265" #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" #uuid "3463c066-922f-3864-93bd-b87bb1286679" #uuid "d993f311-557a-391d-ab21-677ab586a01b" #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" #uuid "fab76503-1b94-3d49-8b17-1336fababeec"], :com.boardgamegeek.boardgame/min-players [#uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" #uuid "56c98771-eaf0-34fe-8f66-156041739594" #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" #uuid "938351d5-c89e-32e0-af3b-73d217217b14" #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" #uuid "12fd071d-60ce-3146-b555-655882920638" #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" #uuid "875b8289-de41-3672-8c92-95b6a689ff43" #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" #uuid "66437274-239d-371f-a5d1-71102dca56e3" #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" #uuid "104965da-ee0b-3867-95a3-0416228b7b19" #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" #uuid "e214a1ce-1929-3835-b502-4510ef89f940" #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" #uuid "fab76503-1b94-3d49-8b17-1336fababeec" #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" #uuid "28e54304-62fc-38c9-9b76-058878323d57" #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" #uuid "557482bd-c397-30d7-af1b-afbb6c763124" #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" #uuid "096f6d71-6864-3882-898c-00b9142932e7" #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" #uuid "423cb589-88be-336d-ada8-9817b5fe519e" #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" #uuid "5e04b28e-010d-366b-af9d-020474ee6392" #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" #uuid "49b5473d-32f5-382b-943a-dda4a1491daf" #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" #uuid "f8283731-6cf2-3086-8140-494037314bf5" #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" #uuid "d496a066-c36e-3570-99d1-9eedec118dee" #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" #uuid "109a021a-56f4-3223-ae04-902a1f40db16" #uuid "492b7750-c3e8-3055-a93b-6745391300a6" #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" #uuid "582d2648-b634-3370-a31e-bef979dab3f3" #uuid "2e89598e-c81e-39d5-bae2-aee451063265" #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" #uuid "a0969dfc-5294-3b41-82bf-220e859197db" #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" #uuid "414bbf5b-1083-3275-9983-4133937db58b" #uuid "be01908f-633f-35da-be89-80701db8ed25" #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" #uuid "890488d0-a370-30a4-9788-a44754330b27" #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" #uuid "30c12229-f508-341c-9680-149dbdf88523" #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" #uuid "99102149-c730-3271-a928-b7549ce07a13" #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" #uuid "054f1270-bf79-32f9-825a-96880e800c9f" #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" #uuid "12218694-0010-31cc-a245-a502b7ed4b19" #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" #uuid "165261a9-0183-3e53-be82-ccc197c354b8" #uuid "a389677b-6118-3815-84fe-c1e75f38984c" #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" #uuid "91a5169d-5877-3642-9a52-54c4f01655da" #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" #uuid "826863b8-1605-33a8-9169-91ebcb89712b" #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" #uuid "434338bc-9501-334b-adbf-2b3752e9e231" #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" #uuid "b4991e13-f466-39b4-be16-56909272f1cc" #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" #uuid "f18187e7-f398-32f0-b73e-625e848d8333" #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" #uuid "2293c663-d1bc-3701-9a53-009f457c6940" #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" #uuid "b1127074-659b-3102-907a-25a0473a3e98" #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" #uuid "5a156002-5793-338e-9399-def9bfd7eca6" #uuid "39af5c41-5927-3dde-8a75-10397211dcda" #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" #uuid "f8049db2-d889-3677-984e-4e2ce41de578" #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" #uuid "4578b280-9265-3868-8670-e39b70b610f9" #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" #uuid "33e20383-3807-3414-869c-7a3907d40b75" #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" #uuid "f81386ae-7767-3f93-a560-c78df55109bb" #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" #uuid "c64e760d-cd41-31b1-9626-a196593146fa" #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" #uuid "77933845-adf8-3758-a686-a08ea46f015e" #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" #uuid "568da493-2833-3009-ad26-7108e0683081" #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" #uuid "51817160-093d-3773-957a-662779bebec9" #uuid "56be7020-8ac5-312f-9c02-a912103646d9" #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" #uuid "b8909580-a299-3ec5-848c-548f38510b72" #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" #uuid "e154f5ce-d498-3840-a559-661a996d4d09" #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" #uuid "8881688f-f717-3852-a5df-d3c7386562d1" #uuid "1bd17795-c173-3c75-9489-8343917b819a" #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" #uuid "5140d848-4910-3017-8f45-c2851658966b" #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" #uuid "ebb89386-c539-37db-b4a7-972b931256f7" #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" #uuid "39063899-ef80-383a-97b7-38b8c778cc24" #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" #uuid "578002db-1bee-32a8-949c-58bece6429a5" #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" #uuid "3463c066-922f-3864-93bd-b87bb1286679" #uuid "d993f311-557a-391d-ab21-677ab586a01b" #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" #uuid "897ee373-c9e4-32f9-a323-fe188494520b" #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" #uuid "189f9b13-158d-379b-9440-05b9bc24a356" #uuid "f750d160-d009-3c96-a630-eff035abfd6c" #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" #uuid "f7625727-1129-3703-96c0-442c8ac00dae" #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" #uuid "af817d47-9021-3806-800d-7ef8dab08024" #uuid "20b16954-6c66-3536-b816-f13d464da44c" #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" #uuid "dee45e08-5103-32ec-93b7-17d391b64576" #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" #uuid "6b9a2464-282c-396d-a918-afde2db81cde" #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" #uuid "ac19727b-672c-352f-b393-c52a81b055cb" #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" #uuid "44de8c27-9942-39ca-997c-57ff932fc882" #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2" #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" #uuid "abe58998-3062-3866-9238-314af7ba0265" #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" #uuid "5b444b22-2047-3124-af08-48687f72a6b5" #uuid "af472b73-df4f-3397-a8c7-31a328913353" #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" #uuid "91934e02-f64d-3aab-9536-19f592307a91"], :com.boardgamegeek.boardgame/max-players [#uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" #uuid "56c98771-eaf0-34fe-8f66-156041739594" #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" #uuid "938351d5-c89e-32e0-af3b-73d217217b14" #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" #uuid "12fd071d-60ce-3146-b555-655882920638" #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" #uuid "875b8289-de41-3672-8c92-95b6a689ff43" #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" #uuid "66437274-239d-371f-a5d1-71102dca56e3" #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" #uuid "104965da-ee0b-3867-95a3-0416228b7b19" #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" #uuid "e214a1ce-1929-3835-b502-4510ef89f940" #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" #uuid "fab76503-1b94-3d49-8b17-1336fababeec" #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" #uuid "2e89598e-c81e-39d5-bae2-aee451063265" #uuid "30c12229-f508-341c-9680-149dbdf88523" #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" #uuid "434338bc-9501-334b-adbf-2b3752e9e231" #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" #uuid "49b5473d-32f5-382b-943a-dda4a1491daf" #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" #uuid "f8283731-6cf2-3086-8140-494037314bf5" #uuid "d496a066-c36e-3570-99d1-9eedec118dee" #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" #uuid "109a021a-56f4-3223-ae04-902a1f40db16" #uuid "492b7750-c3e8-3055-a93b-6745391300a6" #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" #uuid "582d2648-b634-3370-a31e-bef979dab3f3" #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" #uuid "557482bd-c397-30d7-af1b-afbb6c763124" #uuid "414bbf5b-1083-3275-9983-4133937db58b" #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" #uuid "99102149-c730-3271-a928-b7549ce07a13" #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" #uuid "054f1270-bf79-32f9-825a-96880e800c9f" #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" #uuid "096f6d71-6864-3882-898c-00b9142932e7" #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" #uuid "91a5169d-5877-3642-9a52-54c4f01655da" #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" #uuid "826863b8-1605-33a8-9169-91ebcb89712b" #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" #uuid "f18187e7-f398-32f0-b73e-625e848d8333" #uuid "2293c663-d1bc-3701-9a53-009f457c6940" #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" #uuid "b1127074-659b-3102-907a-25a0473a3e98" #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" #uuid "5a156002-5793-338e-9399-def9bfd7eca6" #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" #uuid "423cb589-88be-336d-ada8-9817b5fe519e" #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" #uuid "5e04b28e-010d-366b-af9d-020474ee6392" #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" #uuid "33e20383-3807-3414-869c-7a3907d40b75" #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" #uuid "c64e760d-cd41-31b1-9626-a196593146fa" #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" #uuid "77933845-adf8-3758-a686-a08ea46f015e" #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" #uuid "8881688f-f717-3852-a5df-d3c7386562d1" #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" #uuid "5140d848-4910-3017-8f45-c2851658966b" #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" #uuid "d993f311-557a-391d-ab21-677ab586a01b" #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" #uuid "a0969dfc-5294-3b41-82bf-220e859197db" #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" #uuid "897ee373-c9e4-32f9-a323-fe188494520b" #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" #uuid "890488d0-a370-30a4-9788-a44754330b27" #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" #uuid "165261a9-0183-3e53-be82-ccc197c354b8" #uuid "a389677b-6118-3815-84fe-c1e75f38984c" #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" #uuid "39af5c41-5927-3dde-8a75-10397211dcda" #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" #uuid "4578b280-9265-3868-8670-e39b70b610f9" #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" #uuid "f81386ae-7767-3f93-a560-c78df55109bb" #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" #uuid "f7625727-1129-3703-96c0-442c8ac00dae" #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" #uuid "b8909580-a299-3ec5-848c-548f38510b72" #uuid "e154f5ce-d498-3840-a559-661a996d4d09" #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" #uuid "1bd17795-c173-3c75-9489-8343917b819a" #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" #uuid "ebb89386-c539-37db-b4a7-972b931256f7" #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" #uuid "3463c066-922f-3864-93bd-b87bb1286679" #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" #uuid "12218694-0010-31cc-a245-a502b7ed4b19" #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" #uuid "f750d160-d009-3c96-a630-eff035abfd6c" #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" #uuid "20b16954-6c66-3536-b816-f13d464da44c" #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" #uuid "51817160-093d-3773-957a-662779bebec9" #uuid "56be7020-8ac5-312f-9c02-a912103646d9" #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" #uuid "6b9a2464-282c-396d-a918-afde2db81cde" #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" #uuid "189f9b13-158d-379b-9440-05b9bc24a356" #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" #uuid "28e54304-62fc-38c9-9b76-058878323d57" #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" #uuid "be01908f-633f-35da-be89-80701db8ed25" #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" #uuid "b4991e13-f466-39b4-be16-56909272f1cc" #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" #uuid "f8049db2-d889-3677-984e-4e2ce41de578" #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" #uuid "568da493-2833-3009-ad26-7108e0683081" #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" #uuid "dee45e08-5103-32ec-93b7-17d391b64576" #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" #uuid "abe58998-3062-3866-9238-314af7ba0265" #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" #uuid "39063899-ef80-383a-97b7-38b8c778cc24" #uuid "ac19727b-672c-352f-b393-c52a81b055cb" #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" #uuid "af817d47-9021-3806-800d-7ef8dab08024" #uuid "5b444b22-2047-3124-af08-48687f72a6b5" #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" #uuid "af472b73-df4f-3397-a8c7-31a328913353" #uuid "578002db-1bee-32a8-949c-58bece6429a5" #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" #uuid "91934e02-f64d-3aab-9536-19f592307a91" #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" #uuid "44de8c27-9942-39ca-997c-57ff932fc882" #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2"], :com.boardgamegeek.boardgame/min-play-time [#uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" #uuid "56c98771-eaf0-34fe-8f66-156041739594" #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" #uuid "938351d5-c89e-32e0-af3b-73d217217b14" #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" #uuid "12fd071d-60ce-3146-b555-655882920638" #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" #uuid "875b8289-de41-3672-8c92-95b6a689ff43" #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" #uuid "66437274-239d-371f-a5d1-71102dca56e3" #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" #uuid "104965da-ee0b-3867-95a3-0416228b7b19" #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" #uuid "578002db-1bee-32a8-949c-58bece6429a5" #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" #uuid "e214a1ce-1929-3835-b502-4510ef89f940" #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" #uuid "fab76503-1b94-3d49-8b17-1336fababeec" #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" #uuid "c64e760d-cd41-31b1-9626-a196593146fa" #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" #uuid "91934e02-f64d-3aab-9536-19f592307a91" #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" #uuid "49b5473d-32f5-382b-943a-dda4a1491daf" #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" #uuid "a389677b-6118-3815-84fe-c1e75f38984c" #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" #uuid "5a156002-5793-338e-9399-def9bfd7eca6" #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" #uuid "56be7020-8ac5-312f-9c02-a912103646d9" #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" #uuid "6b9a2464-282c-396d-a918-afde2db81cde" #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" #uuid "f8283731-6cf2-3086-8140-494037314bf5" #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" #uuid "a0969dfc-5294-3b41-82bf-220e859197db" #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" #uuid "99102149-c730-3271-a928-b7549ce07a13" #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" #uuid "054f1270-bf79-32f9-825a-96880e800c9f" #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" #uuid "165261a9-0183-3e53-be82-ccc197c354b8" #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" #uuid "f18187e7-f398-32f0-b73e-625e848d8333" #uuid "b1127074-659b-3102-907a-25a0473a3e98" #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" #uuid "20b16954-6c66-3536-b816-f13d464da44c" #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" #uuid "dee45e08-5103-32ec-93b7-17d391b64576" #uuid "51817160-093d-3773-957a-662779bebec9" #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" #uuid "897ee373-c9e4-32f9-a323-fe188494520b" #uuid "be01908f-633f-35da-be89-80701db8ed25" #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" #uuid "096f6d71-6864-3882-898c-00b9142932e7" #uuid "12218694-0010-31cc-a245-a502b7ed4b19" #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" #uuid "826863b8-1605-33a8-9169-91ebcb89712b" #uuid "434338bc-9501-334b-adbf-2b3752e9e231" #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" #uuid "39af5c41-5927-3dde-8a75-10397211dcda" #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" #uuid "f750d160-d009-3c96-a630-eff035abfd6c" #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" #uuid "568da493-2833-3009-ad26-7108e0683081" #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" #uuid "b8909580-a299-3ec5-848c-548f38510b72" #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" #uuid "39063899-ef80-383a-97b7-38b8c778cc24" #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" #uuid "d496a066-c36e-3570-99d1-9eedec118dee" #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" #uuid "ac19727b-672c-352f-b393-c52a81b055cb" #uuid "492b7750-c3e8-3055-a93b-6745391300a6" #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" #uuid "582d2648-b634-3370-a31e-bef979dab3f3" #uuid "2e89598e-c81e-39d5-bae2-aee451063265" #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" #uuid "30c12229-f508-341c-9680-149dbdf88523" #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" #uuid "f8049db2-d889-3677-984e-4e2ce41de578" #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" #uuid "44de8c27-9942-39ca-997c-57ff932fc882" #uuid "f81386ae-7767-3f93-a560-c78df55109bb" #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" #uuid "af817d47-9021-3806-800d-7ef8dab08024" #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" #uuid "1bd17795-c173-3c75-9489-8343917b819a" #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" #uuid "af472b73-df4f-3397-a8c7-31a328913353" #uuid "5140d848-4910-3017-8f45-c2851658966b" #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2" #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" #uuid "d993f311-557a-391d-ab21-677ab586a01b" #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" #uuid "5e04b28e-010d-366b-af9d-020474ee6392" #uuid "4578b280-9265-3868-8670-e39b70b610f9" #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" #uuid "557482bd-c397-30d7-af1b-afbb6c763124" #uuid "414bbf5b-1083-3275-9983-4133937db58b" #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" #uuid "890488d0-a370-30a4-9788-a44754330b27" #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" #uuid "2293c663-d1bc-3701-9a53-009f457c6940" #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" #uuid "189f9b13-158d-379b-9440-05b9bc24a356" #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" #uuid "5b444b22-2047-3124-af08-48687f72a6b5" #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" #uuid "ebb89386-c539-37db-b4a7-972b931256f7" #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" #uuid "abe58998-3062-3866-9238-314af7ba0265" #uuid "3463c066-922f-3864-93bd-b87bb1286679" #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" #uuid "b4991e13-f466-39b4-be16-56909272f1cc" #uuid "423cb589-88be-336d-ada8-9817b5fe519e" #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" #uuid "33e20383-3807-3414-869c-7a3907d40b75" #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" #uuid "e154f5ce-d498-3840-a559-661a996d4d09" #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" #uuid "f7625727-1129-3703-96c0-442c8ac00dae" #uuid "77933845-adf8-3758-a686-a08ea46f015e" #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" #uuid "8881688f-f717-3852-a5df-d3c7386562d1" #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" #uuid "91a5169d-5877-3642-9a52-54c4f01655da" #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" #uuid "28e54304-62fc-38c9-9b76-058878323d57" #uuid "109a021a-56f4-3223-ae04-902a1f40db16"], :com.boardgamegeek.boardgame/max-play-time [#uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" #uuid "56c98771-eaf0-34fe-8f66-156041739594" #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" #uuid "938351d5-c89e-32e0-af3b-73d217217b14" #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" #uuid "12fd071d-60ce-3146-b555-655882920638" #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" #uuid "875b8289-de41-3672-8c92-95b6a689ff43" #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" #uuid "66437274-239d-371f-a5d1-71102dca56e3" #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" #uuid "104965da-ee0b-3867-95a3-0416228b7b19" #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" #uuid "578002db-1bee-32a8-949c-58bece6429a5" #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" #uuid "e214a1ce-1929-3835-b502-4510ef89f940" #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" #uuid "fab76503-1b94-3d49-8b17-1336fababeec" #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" #uuid "5a156002-5793-338e-9399-def9bfd7eca6" #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" #uuid "49b5473d-32f5-382b-943a-dda4a1491daf" #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" #uuid "99102149-c730-3271-a928-b7549ce07a13" #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" #uuid "054f1270-bf79-32f9-825a-96880e800c9f" #uuid "165261a9-0183-3e53-be82-ccc197c354b8" #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" #uuid "f18187e7-f398-32f0-b73e-625e848d8333" #uuid "b1127074-659b-3102-907a-25a0473a3e98" #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" #uuid "20b16954-6c66-3536-b816-f13d464da44c" #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" #uuid "dee45e08-5103-32ec-93b7-17d391b64576" #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" #uuid "6b9a2464-282c-396d-a918-afde2db81cde" #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" #uuid "a0969dfc-5294-3b41-82bf-220e859197db" #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" #uuid "897ee373-c9e4-32f9-a323-fe188494520b" #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" #uuid "a389677b-6118-3815-84fe-c1e75f38984c" #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" #uuid "826863b8-1605-33a8-9169-91ebcb89712b" #uuid "434338bc-9501-334b-adbf-2b3752e9e231" #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" #uuid "39af5c41-5927-3dde-8a75-10397211dcda" #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" #uuid "f750d160-d009-3c96-a630-eff035abfd6c" #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" #uuid "b8909580-a299-3ec5-848c-548f38510b72" #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" #uuid "91934e02-f64d-3aab-9536-19f592307a91" #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" #uuid "f8283731-6cf2-3086-8140-494037314bf5" #uuid "d496a066-c36e-3570-99d1-9eedec118dee" #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" #uuid "ac19727b-672c-352f-b393-c52a81b055cb" #uuid "492b7750-c3e8-3055-a93b-6745391300a6" #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" #uuid "2e89598e-c81e-39d5-bae2-aee451063265" #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" #uuid "be01908f-633f-35da-be89-80701db8ed25" #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" #uuid "30c12229-f508-341c-9680-149dbdf88523" #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" #uuid "096f6d71-6864-3882-898c-00b9142932e7" #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" #uuid "44de8c27-9942-39ca-997c-57ff932fc882" #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" #uuid "f81386ae-7767-3f93-a560-c78df55109bb" #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" #uuid "c64e760d-cd41-31b1-9626-a196593146fa" #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" #uuid "af817d47-9021-3806-800d-7ef8dab08024" #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" #uuid "51817160-093d-3773-957a-662779bebec9" #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" #uuid "af472b73-df4f-3397-a8c7-31a328913353" #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" #uuid "d993f311-557a-391d-ab21-677ab586a01b" #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" #uuid "12218694-0010-31cc-a245-a502b7ed4b19" #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" #uuid "4578b280-9265-3868-8670-e39b70b610f9" #uuid "56be7020-8ac5-312f-9c02-a912103646d9" #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" #uuid "39063899-ef80-383a-97b7-38b8c778cc24" #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" #uuid "582d2648-b634-3370-a31e-bef979dab3f3" #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" #uuid "414bbf5b-1083-3275-9983-4133937db58b" #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" #uuid "890488d0-a370-30a4-9788-a44754330b27" #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" #uuid "2293c663-d1bc-3701-9a53-009f457c6940" #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" #uuid "5b444b22-2047-3124-af08-48687f72a6b5" #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" #uuid "5140d848-4910-3017-8f45-c2851658966b" #uuid "ebb89386-c539-37db-b4a7-972b931256f7" #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" #uuid "abe58998-3062-3866-9238-314af7ba0265" #uuid "3463c066-922f-3864-93bd-b87bb1286679" #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" #uuid "189f9b13-158d-379b-9440-05b9bc24a356" #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" #uuid "e154f5ce-d498-3840-a559-661a996d4d09" #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" #uuid "557482bd-c397-30d7-af1b-afbb6c763124" #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" #uuid "5e04b28e-010d-366b-af9d-020474ee6392" #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" #uuid "423cb589-88be-336d-ada8-9817b5fe519e" #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" #uuid "77933845-adf8-3758-a686-a08ea46f015e" #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" #uuid "8881688f-f717-3852-a5df-d3c7386562d1" #uuid "1bd17795-c173-3c75-9489-8343917b819a" #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2" #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" #uuid "91a5169d-5877-3642-9a52-54c4f01655da" #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" #uuid "33e20383-3807-3414-869c-7a3907d40b75" #uuid "568da493-2833-3009-ad26-7108e0683081" #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" #uuid "f7625727-1129-3703-96c0-442c8ac00dae" #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" #uuid "28e54304-62fc-38c9-9b76-058878323d57" #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" #uuid "b4991e13-f466-39b4-be16-56909272f1cc" #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" #uuid "f8049db2-d889-3677-984e-4e2ce41de578" #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" #uuid "109a021a-56f4-3223-ae04-902a1f40db16"]}} )
true
(ns app.data) (def game-data #:game-list{:games {#uuid "49b5473d-32f5-382b-943a-dda4a1491daf" {:game/id #uuid "49b5473d-32f5-382b-943a-dda4a1491daf", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"}), :name "10' to Kill", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "174476", :languages (list "en"), :game/name "10' to Kill", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Qfxg7YCYBilmNvI7fi87Tg__thumb/img/cPxvlb5JSWowWHwXSpRmUj-tr8s=/fit-in/200x150/filters:strip_icc()/pic3723481.jpg"}, #uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" {:languages (list "cz"), :name "1989", :game/id #uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5", :game/name "1989"}, #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" {:languages (list "en"), :name "5 Seconds Rule", :game/id #uuid "64581d49-5b7a-3952-b129-c64b56c406ed", :game/name "5 Seconds Rule"}, #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" {:languages (list "cz"), :name "7 Divu sveta duel [7 wonders duel]", :game/id #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76", :game/name "7 Divu sveta duel [7 wonders duel]"}, #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" {:game/id #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2839, :name "Action Retrieval"} #:com.boardgamegeek.mechanic{:id 2850, :name "Events"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "A castle for all seasons", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "38386", :languages (list "en"), :game/name "A Castle for All Seasons", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HEHduHVfdLULQHoWLu-Sqw__thumb/img/HnBxzNEHY0vivRABnTIRmBR_aPU=/fit-in/200x150/filters:strip_icc()/pic400762.jpg"}, #uuid "f8283731-6cf2-3086-8140-494037314bf5" {:game/id #uuid "f8283731-6cf2-3086-8140-494037314bf5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "PI:NAME:<NAME>END_PI o TrPI:NAME:<NAME>END_PI PPI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "205610", :languages (list "cz"), :game/name "A Game of Thrones: Hand of the King", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eKmDyXnsFmnzF5cuv32hjA__thumb/img/bugAzct3L9TIYkuie8jbj49rT7g=/fit-in/200x150/filters:strip_icc()/pic3122395.jpg"}, #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" {:languages (list "cz"), :name "AZ Quiz", :game/id #uuid "6d8aa71d-1531-3019-ac35-ea2463485268", :game/name "AZ Quiz"}, #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" {:languages (list "en"), :name "Abraca what", :game/id #uuid "780cd613-d706-3945-8ef3-6d59c16c2312", :game/name "Abraca what"}, #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" {:game/id #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2910, :name "Investment"} #:com.boardgamegeek.mechanic{:id 2900, :name "Market"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2874, :name "Victory Points as a Resource"}), :name "Acquire", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "5", :languages (list "en"), :game/name "Acquire", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/3C--kJRhi6kTPHsr9dNaWw__thumb/img/EQqszaHS3n6XplVVGQfTZtGc8fE=/fit-in/200x150/filters:strip_icc()/pic3299296.jpg"}, #uuid "d496a066-c36e-3570-99d1-9eedec118dee" {:game/id #uuid "d496a066-c36e-3570-99d1-9eedec118dee", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Across Africa", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1094, :name "Educational"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "183472", :languages (list "en"), :game/name "Across Africa", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/vGWn49wquxCTXEgHxCvdcA__thumb/img/naI1UxX_PLFhzMoeW8aTQN2Ajug=/fit-in/200x150/filters:strip_icc()/pic2659340.jpg"}, #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" {:game/id #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2871, :name "Kill Steal"}), :name "Adrenaline", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1101, :name "Video Game Theme"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "202408", :languages (list "en"), :game/name "Adrenaline", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/TiNI7bUCR2RPFMlvKEC9TQ__thumb/img/nnWEA6jjVsxPSuEC_Ooph9kzO_g=/fit-in/200x150/filters:strip_icc()/pic3476604.jpg"}, #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" {:game/id #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2847, :name "Advantage Token"} #:com.boardgamegeek.mechanic{:id 2903, :name "Automatic Resource Growth"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2914, :name "Increase Value of Unchosen Resources"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2829, :name "Turn Order: Claim Action"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Agricola", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "31260", :languages (list "cz"), :game/name "Agricola", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/dDDo2Hexl80ucK1IlqTk-g__thumb/img/GHGdnCfeysoP_34gLnofJcNivW8=/fit-in/200x150/filters:strip_icc()/pic831744.jpg"}, #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" {:game/id #uuid "1d4dffda-8368-3060-a077-e7937437d6f7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :new true, :name "Critters at War: Land, Sea, and Air", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "342857", :languages (list "en"), :game/name "Air, Land, and Sea: Critters at War", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/sAOWDzYp6CDTzo2EHozkEw__thumb/img/XIGKrZEmkqKyrN24WXf7dIXq5ag=/fit-in/200x150/filters:strip_icc()/pic6293166.jpg"}, #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" {:game/id #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2910, :name "Investment"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"}), :name "Airlines Europe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 2650, :name "Aviation / Flight"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "90419", :languages (list "cz" "de"), :game/name "Airlines Europe", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/MWSJ6c001o3HAk00qek9Rw__thumb/img/ZgcRUnCdSNZZyCnpBBs1ST5ESwE=/fit-in/200x150/filters:strip_icc()/pic975416.jpg"}, #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" {:game/id #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Alias", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "3818", :languages (list "en"), :game/name "Alias", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/b5ku0ffAvzeBydiOUDVELw__thumb/img/hG6aNU1hiiXwopQ6XexCM_q9aRI=/fit-in/200x150/filters:strip_icc()/pic451300.jpg"}, #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" {:game/id #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Alenčina zahrádka", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1093, :name "Novel-based"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "298635", :languages (list "cz"), :game/name "Alice's Garden", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JhLSvQu1cOBg4Dg5l3BgHw__thumb/img/vCrs7JWz87NWlMnaYGRfr9PsVAY=/fit-in/200x150/filters:strip_icc()/pic5177326.jpg"}, #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" {:game/id #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2018, :name "Campaign / Battle Card Driven"}), :name "Allies Realm of Wonder", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "182172", :game/name "Allies: Realm of Wonder", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bGm33oVfySVB-XraX-eO4Q__thumb/img/xofGdDpiE2Ll-bnaiOxWunMK5uE=/fit-in/200x150/filters:strip_icc()/pic2728113.jpg"}, #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" {:languages (list "cz"), :name "Andor", :game/id #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae", :game/name "Andor"}, #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" {:game/id #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2906, :name "I Cut, You Choose"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Animals on Board", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "191572", :languages (list "cz" "en"), :game/name "Animals on Board", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NLgUgFH88DJogE-16PPFsw__thumb/img/CuInp1YTUxTZlrIi3TMTcUwQcKs=/fit-in/200x150/filters:strip_icc()/pic2845593.jpg"}, #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" {:game/id #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"}), :name "Animal suspect", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "156461", :languages (list "en" "fr"), :game/name "Animotion", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5UkysjBRLOEA8FZU7JsmVg__thumb/img/ZYdEgotZnh66KU12sTfn4bQh1l8=/fit-in/200x150/filters:strip_icc()/pic6573339.jpg"}, #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" {:game/id #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2991, :name "Speed Matching"}), :name "Anomia", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "67877", :languages (list "en"), :game/name "Anomia", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/OvOpd-Lhl7t3h9fF_qi6lQ__thumb/img/002NO49Pl3-9dPUj43StWt0SS2c=/fit-in/200x150/filters:strip_icc()/pic2527529.jpg"}, #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" {:game/id #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2813, :name "Rondel"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "104955", :languages (list "de" "en"), :game/name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/zwhI40_3em8zJjrmbT6TLQ__thumb/img/Tzl4gVEbeokaDg0MlJQw_9tHvB0=/fit-in/200x150/filters:strip_icc()/pic1282841.jpg"}, #uuid "ac19727b-672c-352f-b393-c52a81b055cb" {:game/id #uuid "ac19727b-672c-352f-b393-c52a81b055cb", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2865, :name "Player Judge"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Apples to Apples", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "74", :languages (list "en"), :game/name "Apples to Apples", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S5GzB_f2Re3kEDoSxqG5Ew__thumb/img/kJ1JQ_d9xEZ00sJ1dLvwyQYiQUA=/fit-in/200x150/filters:strip_icc()/pic213515.jpg"}, #uuid "109a021a-56f4-3223-ae04-902a1f40db16" {:game/id #uuid "109a021a-56f4-3223-ae04-902a1f40db16", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Archmage", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 360, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 360, :com.boardgamegeek.boardgame/id "63072", :languages (list "en"), :game/name "ArchMage", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/COo1f6uDP89xUU2s94Onqg__thumb/img/l0kYMdxShODYCnewDFYljQGtp20=/fit-in/200x150/filters:strip_icc()/pic616853.jpg"}, #uuid "492b7750-c3e8-3055-a93b-6745391300a6" {:game/id #uuid "492b7750-c3e8-3055-a93b-6745391300a6", :com.boardgamegeek.boardgame/min-players 2, :name "Aristocracy", :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "104423", :languages (list "en"), :game/name "Aristocracy"}, #uuid "28e54304-62fc-38c9-9b76-058878323d57" {:game/id #uuid "28e54304-62fc-38c9-9b76-058878323d57", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Arkham Horror", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 180, :com.boardgamegeek.boardgame/id "34", :languages (list "cz"), :game/name "Arkham Horror", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/AhS53CO05pBagyr9EfRazg__thumb/img/vkAI2JcO2v2Y_pO1Fi5shUGzCxc=/fit-in/200x150/filters:strip_icc()/pic5747491.jpg"}, #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" {:game/id #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"}), :name "Around the world in 80 days", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1093, :name "Novel-based"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "414", :languages (list "en"), :game/name "Around the World in 80 Days", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/mXes1H5HlEcb0VRFObYcJQ__thumb/img/yUatX2NYK46nUosAvEyjdb9xjEo=/fit-in/200x150/filters:strip_icc()/pic664642.jpg"}, #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" {:game/id #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Article 27", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1001, :name "Political"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "113293", :languages (list "en"), :game/name "Article 27: The UN Security Council Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kyB2tDm5oTwjXzG_H0UW6g__thumb/img/1xOJs8f92Rvn_y00wPfhq8JeiXI=/fit-in/200x150/filters:strip_icc()/pic1309420.jpg"}, #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" {:game/id #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Articulate", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "6541", :languages (list "en"), :game/name "Articulate!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BOvTyp_E-3UXcWpD9bVYog__thumb/img/CqwJb6xbDjdfVlIrNK3PjRXEn3A=/fit-in/200x150/filters:strip_icc()/pic5885634.jpg"}, #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" {:game/id #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Artifact stack", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "236556", :languages (list "en"), :game/name "Artifact Stack", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0q6H2VDztoXvH5H7nBQAnQ__thumb/img/PN2vWRy9uhQc1FAxFPMF4OXzruM=/fit-in/200x150/filters:strip_icc()/pic3769855.jpg"}, #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" {:languages (list "en"), :name "Ashes Rise of the Pheonixborn", :game/id #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288", :game/name "Ashes Rise of the Pheonixborn"}, #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" {:game/id #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Awkward Guests", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "188866", :languages (list "en"), :game/name "Awkward Guests", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Awopfw5_5Qyh-7YcSbtudA__thumb/img/HHn3So0Mum6VZliDmEnB2LwfeQ0=/fit-in/200x150/filters:strip_icc()/pic4870482.jpg"}, #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" {:languages (list "en"), :name "Axis and Allies", :game/id #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b", :game/name "Axis and Allies"}, #uuid "582d2648-b634-3370-a31e-bef979dab3f3" {:game/id #uuid "582d2648-b634-3370-a31e-bef979dab3f3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2829, :name "Turn Order: Claim Action"}), :name "Azul", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1070, :name "Renaissance"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "230802", :game/name "Azul", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/tz19PfklMdAdjxV9WArraA__thumb/img/debo694HgBaIBeNGyxu1ELUbQGA=/fit-in/200x150/filters:strip_icc()/pic3718275.jpg"}, #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" {:game/id #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Bang: The Dice Game", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1055, :name "American West"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "143741", :languages (list "cz"), :game/name "BANG! The Dice Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BLTFau1Ue-gjX6geQdYrjQ__thumb/img/IijBpyOQC760F6XIw34WT0ePqe4=/fit-in/200x150/filters:strip_icc()/pic2909713.jpg"}, #uuid "2e89598e-c81e-39d5-bae2-aee451063265" {:game/id #uuid "2e89598e-c81e-39d5-bae2-aee451063265", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2847, :name "Advantage Token"} #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"}), :name "Backgammon", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2397", :game/name "Backgammon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/_6HVCuGni6NunlrSje0ySQ__thumb/img/FS7YID4DgqMBppP0nhyG52MP7Xk=/fit-in/200x150/filters:strip_icc()/pic1361122.jpg"}, #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" {:game/id #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :new true, :name "Bag of Butts", :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "337833", :languages (list "de" "en"), :game/name "Bag of Butts", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/_LGpE_T3Ey8kAJsZBCcl2Q__thumb/img/0jLl-V-h2xmkWDjjf5SzxELA3eY=/fit-in/200x150/filters:strip_icc()/pic6253322.png"}, #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" {:game/id #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Bananagrams", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "27225", :languages (list "en"), :game/name "Bananagrams", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1QjYPI4bXx4OUMJPlrsNBA__thumb/img/nC_gG-4CYy7VBfYez2qSfTkU2ik=/fit-in/200x150/filters:strip_icc()/pic2463443.jpg"}, #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" {:languages (list "cz"), :name "Bang", :game/id #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c", :game/name "Bang"}, #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" {:languages (list "cz"), :name "Bang Duel", :game/id #uuid "24380876-a0ae-3b46-a8c6-a092619bef37", :game/name "Bang Duel"}, #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" {:languages (list "cz"), :name "Bang Mesto Duchu", :game/id #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8", :game/name "Bang Mesto Duchu", :com.boardgamegeek.boardgame/id "147918"}, #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" {:name "PI:NAME:<NAME>END_PI", :game/id #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b", :game/name "Barracuda", :com.boardgamegeek.boardgame/id "47307", :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ByH9-4VoBOrYHrZ6on8IKQ__thumb/img/6CauS6bPub0en7IPxfYY3P38Jso=/fit-in/200x150/filters:strip_icc()/pic512503.jpg", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"})}, #uuid "a0969dfc-5294-3b41-82bf-220e859197db" {:game/id #uuid "a0969dfc-5294-3b41-82bf-220e859197db", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Bears vs. Babies", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "211534", :languages (list "en"), :game/name "Bears vs Babies", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iJpO2VOezeMXuclGqR_mXg__thumb/img/GrVBkH_kUoL5lszRkFTOZFMCEVg=/fit-in/200x150/filters:strip_icc()/pic3231155.png"}, #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" {:game/id #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Beasty Bar", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "165950", :languages (list "cz" "en"), :game/name "Beasty Bar", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7_y1dbU5GCYhIRBCO0q7rg__thumb/img/WiuNMDiiM38EHOAdW5MB1ldlEJM=/fit-in/200x150/filters:strip_icc()/pic2241067.jpg"}, #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" {:game/id #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Beasty Bar 3: Born to be Wild", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "286657", :game/name "Beasty Bar 3: Born to Be Wild", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/e_en-vwHgXusEclcKWS4bg__thumb/img/x3iJI8QoTkK7Ptp_N_tq3-bpb5E=/fit-in/200x150/filters:strip_icc()/pic4909349.jpg"}, #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" {:game/id #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Beasty Bar New Beasts in Town", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "181617", :languages (list "cz" "en"), :game/name "Beasty Bar: New Beasts in Town", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/fKOPzIhkT_wVhZWvq267sQ__thumb/img/ULXgCaaXwTKJDhHncpI1acXOQLk=/fit-in/200x150/filters:strip_icc()/pic2672397.jpg"}, #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" {:game/id #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0", :com.boardgamegeek.boardgame/min-players 2, :name "Bed Bugs", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "8486", :languages (list "en"), :game/name "Bed Bugs", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Z1xhttA6vW5rvCK5I32OKg__thumb/img/xBSbnbvzTDYqOwgt-l1hklMax6A=/fit-in/200x150/filters:strip_icc()/pic35248.jpg"}, #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" {:game/id #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Belle of the Ball", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "139897", :languages (list "en"), :game/name "Belle of the Ball", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JMVcMUrZC-K3DjeuHFXhjw__thumb/img/uPIXh-8lRCEdmN6Np3Ze_XbW86I=/fit-in/200x150/filters:strip_icc()/pic4593784.jpg"}, #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" {:game/id #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2959, :name "Map Addition"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Betrayal at House on the Hill", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "10547", :languages (list "en"), :game/name "Betrayal at House on the Hill", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/lqmt2Oti_qJS65XqHcB8AA__thumb/img/EDOmDbRhLy4za2PHkJ5IbhNxZmk=/fit-in/200x150/filters:strip_icc()/pic5146864.png"}, #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" {:languages (list "en"), :name "Between 2 Cities", :game/id #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410", :game/name "Between 2 Cities"}, #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" {:game/id #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2919, :name "Auction: Turn Order Until Pass"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :new true, :name "Biblios", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1115, :name "Religious"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "34219", :languages (list "en"), :game/name "Biblios", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/w9pHmbMbHEFYtuOUcWcruA__thumb/img/BYid-ptJy9xNI_kK3IDWOGLWJVM=/fit-in/200x150/filters:strip_icc()/pic759154.jpg"}, #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" {:game/id #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1101, :name "Video Game Theme"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 15, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "158564", :languages (list "en"), :game/name "Billionaire Banshee", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Pe8iAvlyTOzVINQRdFdcig__thumb/img/iXmFA-7_cNegyHs8nKD4rTv2O1k=/fit-in/200x150/filters:strip_icc()/pic2729693.png"}, #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" {:languages (list "cz"), :name "Blafuj / Cockroach Poker", :game/id #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774", :game/name "Blafuj / Cockroach Poker"}, #uuid "897ee373-c9e4-32f9-a323-fe188494520b" {:game/id #uuid "897ee373-c9e4-32f9-a323-fe188494520b", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 3007, :name "Matching"}), :new true, :name "Blaze", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "332317", :languages (list "de" "en"), :game/name "Blaze", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ejlad9HzsFX0xCPWqTGFmw__thumb/img/0RVKdSi4BxCTFPFBoCsuJMKl_W0=/fit-in/200x150/filters:strip_icc()/pic6006816.jpg"}, #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" {:game/id #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Blood Rage", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "170216", :languages (list "cz"), :game/name "Blood Rage", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HkZSJfQnZ3EpS214xtuplg__thumb/img/NLhVdU8xazrgS5dA6nVCYmN2DNI=/fit-in/200x150/filters:strip_icc()/pic2439223.jpg"}, #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" {:game/id #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :new true, :name "Bloom Town", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "284291", :languages (list "en"), :game/name "Bloom Town", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/9YgdR9F66ti_0fcoPDtwhw__thumb/img/d5mPk0UMMXf-_3-0Xpvr1EK-JNQ=/fit-in/200x150/filters:strip_icc()/pic4852758.png"}, #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" {:game/id #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "BluePrints", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "140933", :languages (list "en"), :game/name "Blueprints", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/yj0dJI3pFauW-EU9Vg6OZw__thumb/img/TVG6p598iOhPeDZuVWy6QCTzOi4=/fit-in/200x150/filters:strip_icc()/pic1877243.jpg"}, #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" {:game/id #uuid "bf684d42-7071-39ee-809d-514bc5ca241a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Bomb Arena", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "208145", :languages (list "en"), :game/name "Bomb Arena", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JY8Q5GbG2aa4257QVuCQTw__thumb/img/IvRKbdnGi50C_HHIWu1VD0i3VYA=/fit-in/200x150/filters:strip_icc()/pic3175138.jpg"}, #uuid "557482bd-c397-30d7-af1b-afbb6c763124" {:game/id #uuid "557482bd-c397-30d7-af1b-afbb6c763124", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2944, :name "Three Dimensional Movement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Burgle Bros 2", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1059, :name "Maze"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 70, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "286537", :languages (list "en"), :game/name "Burgle Bros 2: The Casino Capers", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/YNcSJhDM_g-2av0pzNs4wQ__thumb/img/_3QhL_-pkBScdNFqOKxwj0zY-OA=/fit-in/200x150/filters:strip_icc()/pic6087472.png"}, #uuid "414bbf5b-1083-3275-9983-4133937db58b" {:game/id #uuid "414bbf5b-1083-3275-9983-4133937db58b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Kabo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "271321", :languages (list "cz"), :game/name "CABO (Second Edition)", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UXg5z353Vs3aI90_TfL4pQ__thumb/img/rDg9t7gP1iqNcy3NZxAWGVoWYok=/fit-in/200x150/filters:strip_icc()/pic4572408.jpg"}, #uuid "56c98771-eaf0-34fe-8f66-156041739594" {:languages (list "en"), :name "Caesar!: Sieze Rome in 20 minutes", :new true, :game/id #uuid "56c98771-eaf0-34fe-8f66-156041739594", :game/name "Caesar!: Sieze Rome in 20 minutes"}, #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" {:game/id #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :new true, :name "Calico", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "283155", :languages (list "en"), :game/name "Calico", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/t8bTlZmxz6PiskMSjcBHcw__thumb/img/TByBGUDO_jNVxDaOviRWOFtu9fk=/fit-in/200x150/filters:strip_icc()/pic4815033.jpg"}, #uuid "be01908f-633f-35da-be89-80701db8ed25" {:game/id #uuid "be01908f-633f-35da-be89-80701db8ed25", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Camel Up", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "153938", :languages (list "de" "en"), :game/name "Camel Up", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1ph2jVOD1MudR1fK1nkwwA__thumb/img/TVCsLhF3KMZkFs6oLJkS37njE_s=/fit-in/200x150/filters:strip_icc()/pic2031446.png"}, #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" {:game/id #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "Can’t stop", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "41", :languages (list "en"), :game/name "Can't Stop", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JZpo3AnyFH4TqxKWFSFKGQ__thumb/img/KxfmwuPAgmmNACBQkxIaYUxKdLI=/fit-in/200x150/filters:strip_icc()/pic1046518.jpg"}, #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" {:languages (list "en"), :name "Captain Dice", :game/id #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b", :game/name "Captain Dice"}, #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" {:game/id #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2967, :name "Hidden Movement"} #:com.boardgamegeek.mechanic{:id 2039, :name "Line Drawing"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Captain Sonar", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1008, :name "Nautical"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "171131", :languages (list "cz" "en"), :game/name "Captain Sonar", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eVy9IyAVtzzKv2VvPHFPbA__thumb/img/RavsPCF6el7VEaVR1OG5M2ZGCrk=/fit-in/200x150/filters:strip_icc()/pic3013621.png"}, #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" {:game/id #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2959, :name "Map Addition"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "822", :game/name "Carcassonne", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/okM0dq_bEXnbyQTOvHfwRA__thumb/img/88274KiOg94wziybVHyW8AeOiXg=/fit-in/200x150/filters:strip_icc()/pic6544250.png"}, #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" {:game/id #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2865, :name "Player Judge"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Cards against Humanity", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 30, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "50381", :languages (list "cz" "en"), :game/name "Cards Against Humanity", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nYLrPiI9gnvlrwOrKQ4_CA__thumb/img/fIhQLjWueNPYZhCZ_LzjAIhPm5U=/fit-in/200x150/filters:strip_icc()/pic2909692.jpg"}, #uuid "890488d0-a370-30a4-9788-a44754330b27" {:game/id #uuid "890488d0-a370-30a4-9788-a44754330b27", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Obludárium", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "231484", :languages (list "cz"), :game/name "Carnival of Monsters", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/epQCPLfMbtaKiXmz7uz4PA__thumb/img/b1rgSddValol8h1Ock8s_9peBPc=/fit-in/200x150/filters:strip_icc()/pic4856068.jpg"}, #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" {:languages (list "cz"), :name "PI:NAME:<NAME>END_PI", :game/id #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454", :game/name "PI:NAME:<NAME>END_PI KPI:NAME:<NAME>END_PIouk"}, #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" {:game/id #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Kočíčí Klub", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "228504", :languages (list "cz"), :game/name "Cat Lady", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/tnx6ExxyUmIlga9tFSrR6g__thumb/img/jHvb__-N4QCSB8rhTKXzCxWOWcU=/fit-in/200x150/filters:strip_icc()/pic3864115.jpg"}, #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" {:game/id #uuid "48309f49-6981-3784-80f4-f8b7cff15c98", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2909, :name "Random Production"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Osadnici z Katanu", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "13", :languages (list "cz"), :game/name "Catan", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/W3Bsga_uLP9kO91gZ7H8yw__thumb/img/8a9HeqFydO7Uun_le9bXWPnidcA=/fit-in/200x150/filters:strip_icc()/pic2419375.jpg"}, #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" {:game/id #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"} #:com.boardgamegeek.mechanic{:id 2935, :name "Worker Placement with Dice Workers"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "189067", :languages (list "en"), :game/name "Cavern Tavern", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NdCwfRORG5oLaDBmQeOOaQ__thumb/img/jeGf0ItclxtK4YeTWrBlBCe8Qt4=/fit-in/200x150/filters:strip_icc()/pic3020188.png"}, #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" {:languages (list "cz"), :name "Caverna", :game/id #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2", :game/name "Caverna"}, #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" {:game/id #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Celestia", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "130853", :game/name "Celestia", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/npqKJbeLXejp0j2ECQ5huA__thumb/img/ur42OT9MelTa6X3lPbnwN5WG-iU=/fit-in/200x150/filters:strip_icc()/pic1475228.png"}, #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" {:game/id #uuid "595f5c4f-c267-303b-adf4-1333c70a9460", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "181694", :languages (list "en"), :game/name "Cha dango", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1NJNf0z5guEZ2L713YNzPw__thumb/img/fMswkQDBdqiVpfiPOIAA6FY7PLo=/fit-in/200x150/filters:strip_icc()/pic4791211.jpg"}, #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" {:game/id #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Chameleon", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "4187", :languages (list "en"), :game/name "Chameleon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Mq4HaM5jARaNQ_jrTnGfnA__thumb/img/cRlXz4uT63-BkyRJIJX-0vKywKo=/fit-in/200x150/filters:strip_icc()/pic13110.jpg"}, #uuid "30c12229-f508-341c-9680-149dbdf88523" {:game/id #uuid "30c12229-f508-341c-9680-149dbdf88523", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2946, :name "Pattern Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2861, :name "Static Capture"}), :name "Checkers", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2083", :game/name "Checkers", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S4IBcWYhlbn51_5f0EIR4g__thumb/img/wxqQxa2--TclJY8n8hzMGXzk1sI=/fit-in/200x150/filters:strip_icc()/pic113720.jpg"}, #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" {:game/id #uuid "0727c24e-c484-3017-9850-a0e366a7dd42", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2946, :name "Pattern Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2861, :name "Static Capture"}), :name "Chess", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/id "171", :game/name "Chess", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0-DjGBOko6RV8zg5ejhYIg__thumb/img/kjtoinSrkYV0HZleXMxkJzZwS8k=/fit-in/200x150/filters:strip_icc()/pic260745.jpg"}, #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" {:game/id #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"}), :name "Kureci olympiada", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1045, :name "Memory"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "3570", :languages (list "cz" "de"), :game/name "Chicken Cha Cha Cha", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZxGfy7AR2mjrKVDiDVJoBw__thumb/img/8oLfdlwvjgqVlU4tZXSSnPyUwi0=/fit-in/200x150/filters:strip_icc()/pic406697.jpg"}, #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" {:game/id #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2829, :name "Turn Order: Claim Action"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"} #:com.boardgamegeek.mechanic{:id 2933, :name "Worker Placement, Different Worker Types"}), :name "Chimera Station", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "163642", :languages (list "de" "it"), :game/name "Chimera Station", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1CiJrEhD6UpRNFNIy-1R5g__thumb/img/ptY_o-lbmIVvqtbFRRERIODbetk=/fit-in/200x150/filters:strip_icc()/pic3160959.jpg"}, #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" {:game/id #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2910, :name "Investment"} #:com.boardgamegeek.mechanic{:id 2915, :name "Negotiation"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"} #:com.boardgamegeek.mechanic{:id 2874, :name "Victory Points as a Resource"}), :name "Chinatown", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "47", :languages (list "de" "en"), :game/name "Chinatown", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/QnIOe-1wb8_zuxglKjAwOQ__thumb/img/CyDOXyRu7MHfn2ZS9pb9XmOStv0=/fit-in/200x150/filters:strip_icc()/pic2037509.png"}, #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" {:game/id #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2823, :name "Score-and-Reset Game"}), :new true, :name "Chinchiller Dice", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "337834", :languages (list "de" "en"), :game/name "Chinchiller Dice", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7YduweUXo87k3FYx9dryRg__thumb/img/NNtQ16pzW--zfY3TG1nCiT7mz0A=/fit-in/200x150/filters:strip_icc()/pic6253330.png"}, #uuid "99102149-c730-3271-a928-b7549ce07a13" {:game/id #uuid "99102149-c730-3271-a928-b7549ce07a13", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "PI:NAME:<NAME>END_PIacPI:NAME:<NAME>END_PIra", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "27738", :languages (list "en"), :game/name "Chupacabra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/i_thTasR2InYawFGKTyrQg__thumb/img/HtsO-YF_-I5ufs1CtfNF9DcJG7w=/fit-in/200x150/filters:strip_icc()/pic184563.jpg"}, #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" {:game/id #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2838, :name "Action Drafting"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2836, :name "Lose a Turn"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2833, :name "Turn Order: Role Order"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Citadela deluxe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "205398", :languages (list "cz"), :game/name "Citadels", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/sHd0jkZZLDgixHjAXtn7kA__thumb/img/HB0Z5D7uwBjf1lCCPjMck-5VP9A=/fit-in/200x150/filters:strip_icc()/pic3119514.jpg"}, #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" {:game/id #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "PI:NAME:<NAME>END_PIue", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "1294", :languages (list "en"), :game/name "Clue", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/owlmDA10KegcwPaapY5auw__thumb/img/73FO0H7pORdum5ZexMXyrjLhpVU=/fit-in/200x150/filters:strip_icc()/pic5146918.png"}, #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" {:game/id #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Codenames", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "178900", :game/name "Codenames", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/F_KDEu0GjdClml8N7c8Imw__thumb/img/yl8iXxSNwguMeg3KkmfFO9SMVVc=/fit-in/200x150/filters:strip_icc()/pic2582929.jpg"}, #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" {:game/id #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "PI:NAME:<NAME>END_PI: Duet", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "224037", :languages (list "cz"), :game/name "Codenames: Duet", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0d1EaMVmAiIBROI2QstFSQ__thumb/img/J-thZd7Pbbh1CE8QHcvEE4w8FBE=/fit-in/200x150/filters:strip_icc()/pic3596681.jpg"}, #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" {:game/id #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Codenames Pictures", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "198773", :languages (list "cz" "en"), :game/name "Codenames: Pictures", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Q2u-Nk68Wb1iLjxh_dfsIg__thumb/img/6-1EOESE196KVKw4xOJ5rge56j0=/fit-in/200x150/filters:strip_icc()/pic3476592.jpg"}, #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" {:languages (list "en"), :name "Cohort", :game/id #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105", :game/name "Cohort"}, #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" {:game/id #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2018, :name "Campaign / Battle Card Driven"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Colonialism", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 2710, :name "Post-Napoleonic"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "67917", :languages (list "en"), :game/name "Colonialism", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7L38HEji9NCO7l8vJGPNpA__thumb/img/Bil3fnBYfH2sksgWXG6w7-MmRuk=/fit-in/200x150/filters:strip_icc()/pic1613797.jpg"}, #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" {:game/id #uuid "08cddb57-6c00-3836-9593-a0b04fd84141", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Coloretto", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "5782", :languages (list "cz" "de" "en"), :game/name "Coloretto", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Z_C3ujE0BcRpbQjDd1Vatg__thumb/img/40jfO9cNXB20z1fm6FfSkGf5qVQ=/fit-in/200x150/filters:strip_icc()/pic149765.jpg"}, #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" {:game/id #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Colors of Paris", :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "269160", :languages (list "en" "ne"), :game/name "Colors of Paris", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/j16Xrf08-toGYZ04HqLoNw__thumb/img/xaIYrg5FuSjX6VRLLd3yL2fcyz4=/fit-in/200x150/filters:strip_icc()/pic4804321.jpg"}, #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" {:game/id #uuid "935b4085-0cd3-3875-abe0-2996fb99980b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Color Brain", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "223742", :languages (list "en"), :game/name "Colour Brain", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/M3KJfjJVOGA6x0LuMgfVWA__thumb/img/BXLhWVUfFkVhEV6BbEa18JOA_a8=/fit-in/200x150/filters:strip_icc()/pic4219953.jpg"}, #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" {:languages (list "en"), :name "PI:NAME:<NAME>END_PImissionPI:NAME:<NAME>END_PI PI:NAME:<NAME>END_PI", :game/id #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130", :game/name "Commissioner Victor"}, #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" {:game/id #uuid "9353a118-c201-398a-83cc-6d58ccb38f02", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2839, :name "Action Retrieval"} #:com.boardgamegeek.mechanic{:id 2847, :name "Advantage Token"} #:com.boardgamegeek.mechanic{:id 2924, :name "Auction: Dutch"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Concordia", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1008, :name "Nautical"}), :com.boardgamegeek.boardgame/max-play-time 100, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 100, :com.boardgamegeek.boardgame/id "124361", :game/name "Concordia", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CzwSm8i7tkLz6cBnrILZBg__thumb/img/ESPSltYYSFK-aJw6jOTdQrJGpOc=/fit-in/200x150/filters:strip_icc()/pic3453267.jpg"}, #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" {:name "Connect 4 / Quattro", :game/id #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6", :game/name "Connect 4 / Quattro"}, #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" {:game/id #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Container", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"}), :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/id "23463", :game/name "Container", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ci0_OdQ-189r4QjQ_ylWcg__thumb/img/IrzG3AhYwSIeoahynhIV1Ou3ucA=/fit-in/200x150/filters:strip_icc()/pic4821859.jpg"}, #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" {:name "Cortex", :game/id #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83", :game/name "Cortex"}, #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" {:game/id #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb", :com.boardgamegeek.boardgame/min-players 2, :name "Cortex Geo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "203266", :game/name "Cortex Challenge GEO", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/29gZEF3-jNTJ90wSSAATGw__thumb/img/t2UqBSLQXpKNhyoOvpNPE97d51Q=/fit-in/200x150/filters:strip_icc()/pic3190835.jpg"}, #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" {:languages (list "en"), :name "Cosmic Enounter", :game/id #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9", :game/name "Cosmic Enounter"}, #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" {:game/id #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2965, :name "Multiple Maps"} #:com.boardgamegeek.mechanic{:id 2953, :name "Programmed Movement"} #:com.boardgamegeek.mechanic{:id 2948, :name "Resource to Move"} #:com.boardgamegeek.mechanic{:id 2003, :name "Rock-Paper-Scissors"} #:com.boardgamegeek.mechanic{:id 2892, :name "Roles with Asymmetric Information"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "crazy karts", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "195518", :game/name "Crazy Karts", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/tuz1paociIFCwki_tfN5pg__thumb/img/ZDIypgSQtMDsqbZVCKf3dcDT8sI=/fit-in/200x150/filters:strip_icc()/pic2935361.jpg"}, #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" {:game/id #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01", :com.boardgamegeek.boardgame/min-players 2, :name "Crazy Turf", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "209258", :game/name "Crazy Turf", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BJ7g-5ZBaOcdTg2Uv3T08A__thumb/img/f84XeqVja0Y7bZDoA4G69MY1ooA=/fit-in/200x150/filters:strip_icc()/pic3186921.jpg"}, #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" {:game/id #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Crooks", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1033, :name "Mafia"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "111172", :game/name "Crooks", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ddg1cTH9VaLE4aErYjrr0Q__thumb/img/4WGwUngVtEleBc8MuqU4y6mv6kw=/fit-in/200x150/filters:strip_icc()/pic2844726.jpg"}, #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" {:game/id #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Cubirds", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "245476", :languages (list "en"), :game/name "CuBirds", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Q7gnq4qbG73YRprMOicBEQ__thumb/img/-wmmOu7yKFsC89jw5VKqF79AuAw=/fit-in/200x150/filters:strip_icc()/pic4261952.png"}, #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" {:game/id #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Bluff You", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "201842", :languages (list "en"), :game/name "Cup of Bluff", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6sE8yku7XsFyQyb8felYxQ__thumb/img/NhYaVD4IDB4mHOfwnkJEH7xaLBc=/fit-in/200x150/filters:strip_icc()/pic3051680.jpg"}, #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" {:game/id #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Dany", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "265381", :languages (list "en" "fr"), :game/name "DANY", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/15ZfT3y5Wndrg7Cxp8BAYg__thumb/img/kJTC0OB3o0_4WwrTPCIFuycpULw=/fit-in/200x150/filters:strip_icc()/pic4465422.jpg"}, #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" {:game/id #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2850, :name "Events"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2888, :name "Tug of War"}), :new true, :name "Days of Ire: Budapest 1956", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1102, :name "Civil War"} #:com.boardgamegeek.category{:id 1069, :name "Modern Warfare"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "192802", :languages (list "en"), :game/name "Days of Ire: Budapest 1956", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ny0ORoE9a1Nnr9G8W1BvTw__thumb/img/-0GedxaygiIzJ1RrVozYA15W61M=/fit-in/200x150/filters:strip_icc()/pic6327791.png"}, #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" {:game/id #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066", :com.boardgamegeek.boardgame/min-players 2, :name "Decrypto", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "65952", :languages (list "en"), :game/name "Decrypto", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/WVGtlwI8Sp0HH4OGozuenA__thumb/img/5Q1OYKZK7_KgwaMZP6eeCUBuwWI=/fit-in/200x150/filters:strip_icc()/pic802013.jpg"}, #uuid "054f1270-bf79-32f9-825a-96880e800c9f" {:game/id #uuid "054f1270-bf79-32f9-825a-96880e800c9f", :com.boardgamegeek.boardgame/min-players 2, :name "The Endless River", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "165797", :game/name "Der unendliche Fluss", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/fZdfrPgGqjK-Brsrq7B_hg__thumb/img/OaZhWO7VcHKOg6h8xYOrMagcm7c=/fit-in/200x150/filters:strip_icc()/pic2238168.png"}, #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" {:game/id #uuid "86f0bb77-105e-3136-98ae-4837a11ed606", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Detective: City of Angels", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "218074", :languages (list "en"), :game/name "Detective: City of Angels", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/xWdK1lL-2ZTdzBZGYjjqkw__thumb/img/wl_YxOhd-S6QbpyHAQZGhV109rw=/fit-in/200x150/filters:strip_icc()/pic3469246.jpg"}, #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" {:game/id #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2823, :name "Score-and-Reset Game"} #:com.boardgamegeek.mechanic{:id 2991, :name "Speed Matching"}), :new true, :name "Dexterity Jane", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 9, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "300527", :languages (list "en"), :game/name "Dexterity Jane", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/XTP7QH9YqI4W5d2OIUBR1g__thumb/img/2-oJqLeYpC-P2CccMm7P2eiuOCw=/fit-in/200x150/filters:strip_icc()/pic6100741.png"}, #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" {:game/id #uuid "ef81a392-af64-3668-81ff-2c3b7736919f", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Osadnici z Katanu Junior", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "27766", :languages (list "cz"), :game/name "Die Siedler von Catan: Junior", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/-wW5iAnqudxpqGmT4YIQ7g__thumb/img/9qS-yi0nySdtOqGzy5a_jsGxEp4=/fit-in/200x150/filters:strip_icc()/pic266168.jpg"}, #uuid "096f6d71-6864-3882-898c-00b9142932e7" {:game/id #uuid "096f6d71-6864-3882-898c-00b9142932e7", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2953, :name "Programmed Movement"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Dive", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "304324", :languages (list "en"), :game/name "Dive", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iOla7B7sqs4IsGQcS4ghgA__thumb/img/oStmPCcaE3-Ncs6-EyRZDQfFVnE=/fit-in/200x150/filters:strip_icc()/pic5733939.png"}, #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" {:game/id #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2866, :name "Targeted Clues"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Dixit", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "39856", :game/name "Dixit", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/uSgzS-SClISqDkYRCdUq6g__thumb/img/iLgQV17c4xezI4ZeN_hmue_jh40=/fit-in/200x150/filters:strip_icc()/pic3483909.jpg"}, #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" {:game/id #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Dog Lover", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "344839", :languages (list "en"), :game/name "Dog Lover", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/k5vsit8aU1_PnrqTwum2YQ__thumb/img/Cxs0YbafjQeBS3Kqgf6CtOUPxu8=/fit-in/200x150/filters:strip_icc()/pic6503210.jpg"}, #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" {:game/id #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406", :com.boardgamegeek.boardgame/min-players 3, :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "172164", :languages (list "de"), :game/name "Dohdles!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/IXkDic7NjvYnhnb1rgSEIw__thumb/img/pNZbuy9ya2IDGgGPmVKuE2Y_dCQ=/fit-in/200x150/filters:strip_icc()/pic2606161.jpg"}, #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" {:game/id #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2901, :name "Delayed Purchase"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Dominion", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "36218", :languages (list "cz" "en"), :game/name "Dominion", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/j6iQpZ4XkemZP07HNCODBA__thumb/img/B2u2ghwlmI_qsUtCwuvcbnBcIqU=/fit-in/200x150/filters:strip_icc()/pic394356.jpg"}, #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" {:game/id #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Don’t Drop the Soap", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "32687", :languages (list "en"), :game/name "Don't Drop the Soap", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/LESe-G9vSHtXgFJ5XdJh9w__thumb/img/-0kHTzUikTs-oNfj-JP-RtCesPs=/fit-in/200x150/filters:strip_icc()/pic294901.jpg"}, #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" {:game/id #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"}), :name "Doppelgänger", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "162777", :languages (list "en"), :game/name "Doppelgänger", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/VUP_YfIMAMRbTqW7Az_z7w__thumb/img/yag9GSN6xhlvxKtphyYsJpmK_Go=/fit-in/200x150/filters:strip_icc()/pic3893983.jpg"}, #uuid "12218694-0010-31cc-a245-a502b7ed4b19" {:game/id #uuid "12218694-0010-31cc-a245-a502b7ed4b19", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2958, :name "Moving Multiple Units"} #:com.boardgamegeek.mechanic{:id 3006, :name "Predictive Bid"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Rivalove", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1031, :name "Racing"} #:com.boardgamegeek.category{:id 1038, :name "Sports"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "215311", :languages (list "cz"), :game/name "Downforce", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/c74C-NVJHuMVxt6A_j2TsA__thumb/img/OUdT3uFyqBBzN7q9ZDFN6WBiecU=/fit-in/200x150/filters:strip_icc()/pic3432548.png"}, #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" {:game/id #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4", :com.boardgamegeek.boardgame/min-players 2, :name "Drop it", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "244916", :languages (list "cz"), :game/name "Drop It", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kkF3MJrPU-byzAlFbxGYew__thumb/img/y0YSRjiGXFEawazsYFmVVoD3Q94=/fit-in/200x150/filters:strip_icc()/pic3958813.jpg"}, #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" {:languages (list "en"), :name "Dude and More Dude", :game/id #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c", :game/name "Dude and More Dude"}, #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" {:game/id #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2906, :name "I Cut, You Choose"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Duelosaur Island", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "247236", :languages (list "en"), :game/name "Duelosaur Island", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/paSj18K2b6r2pH-ax37mNA__thumb/img/EpqB5JtMfimf3pZNDc93Tbk8IXo=/fit-in/200x150/filters:strip_icc()/pic4194135.png"}, #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" {:game/id #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Priserky z podzemí", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "97207", :languages (list "cz"), :game/name "Dungeon Petz", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7JjAm9RM8E2pbu5KCCbsTQ__thumb/img/vySdmxWBad2T5Xrylxv-jYukFmU=/fit-in/200x150/filters:strip_icc()/pic1103979.jpg"}, #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" {:game/id #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :new true, :name "Durian", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 7, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "307963", :languages (list "en"), :game/name "Durian", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/QBwnHLJy8DRV2Mx-ZkB1_A__thumb/img/Pk2dokqgJ9hxgHHvZSadh4wKNog=/fit-in/200x150/filters:strip_icc()/pic5783560.png"}, #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" {:game/id #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Dust", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "29109", :game/name "Dust", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qvQEYh6nblN0xGi7J1qYkw__thumb/img/BYCvJ8YyMoMM1QtCn64nMs5-HYM=/fit-in/200x150/filters:strip_icc()/pic280668.jpg"}, #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" {:game/id #uuid "bf515360-5eca-32d5-ac9d-fb620b905619", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2924, :name "Auction: Dutch"} #:com.boardgamegeek.mechanic{:id 2932, :name "Auction: Dutch Priority"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Eight minute empire", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 8, :com.boardgamegeek.boardgame/id "131366", :languages (list "cz"), :game/name "Eight-Minute Empire", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HKj7MIw-zV-AmQ7PfoltRg__thumb/img/W0WHf_M-Dq-xO3yfzVA4USbjcgY=/fit-in/200x150/filters:strip_icc()/pic1443212.jpg"}, #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" {:game/id #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"}), :name "El capitan", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "178937", :game/name "El Capitan", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/06VFwFZb99qkd_2yFy480w__thumb/img/xN-XYFKDwdHSpOXRVcasm7H3iWE=/fit-in/200x150/filters:strip_icc()/pic3488237.jpg"}, #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" {:game/id #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2843, :name "Follow"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"}), :new true, :name "Eminent Domain", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "68425", :languages (list "en"), :game/name "Eminent Domain", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Dn3gJBq-k8Zww4a5yCzgOQ__thumb/img/IuAN5frtRpuyA5ZyueUdG3_DMxs=/fit-in/200x150/filters:strip_icc()/pic1160506.jpg"}, #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" {:game/id #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Enigma", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "9607", :game/name "Enigma", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6Yy5wNTGLy6o3GyGHSaCog__thumb/img/eO5w9imJtJVe0T2XiYbQZkw3JNo=/fit-in/200x150/filters:strip_icc()/pic39888.jpg"}, #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" {:game/id #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Epic Spell Wars: Panic at the Pleasure Palace", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "248075", :languages (list "en"), :game/name "Epic Spell Wars of the Battle Wizards: Panic at the Pleasure Palace", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nu23MbouJDmxGBPPKTHuqA__thumb/img/Y_0D4-J2-Kfds6ML28Oowo-pLnQ=/fit-in/200x150/filters:strip_icc()/pic4025218.jpg"}, #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" {:languages (list "en"), :name "Epic Spell Wars: Duel at Mt. Skullzfyre", :game/id #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5", :game/name "Epic Spell Wars: Duel at Mt. Skullzfyre"}, #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" {:game/id #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"}), :name "Once there was", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "61664", :game/name "Erzähl doch mal...", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5MaIJSDiE8jPkem-IVTonw__thumb/img/7guypUB7sZml3stBxx7UlOLiJ4Y=/fit-in/200x150/filters:strip_icc()/pic706519.jpg"}, #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" {:game/id #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2055, :name "Paper-and-Pencil"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"}), :name "Escape the Dark Castle", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1024, :name "Horror"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "227456", :languages (list "en"), :game/name "Escape the Dark Castle", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/d4MkgAvJOaJPVjxr6R9rKQ__thumb/img/fbbmrfibmcgPqNDbruBOE4-uTkc=/fit-in/200x150/filters:strip_icc()/pic5004159.jpg"}, #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" {:game/id #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Evolution", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1036, :name "Prehistoric"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "1080", :game/name "Evolution", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/L3BZMXWaOX9zZXyGedHDyQ__thumb/img/3bQoh-EJxL03Qq6wA0dbVAQrhSQ=/fit-in/200x150/filters:strip_icc()/pic279884.jpg"}, #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" {:game/id #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"}), :name "Evolution the beginning", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 1084, :name "Environmental"} #:com.boardgamegeek.category{:id 1036, :name "Prehistoric"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "201248", :languages (list "en"), :game/name "Evolution: The Beginning", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1rvefz1PSj1c3wC1UIGgnQ__thumb/img/hEcG7RPDUc5M7VsZcOqUMJQaNhM=/fit-in/200x150/filters:strip_icc()/pic3042047.jpg"}, #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" {:game/id #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2900, :name "Market"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"}), :new true, :name "Excavation Earth", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "292126", :languages (list "en"), :game/name "Excavation Earth", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wMXOMmbO9ktgHYhEQSrDlg__thumb/img/-W5iM9fVpNFalBSsBKimlXV_vUI=/fit-in/200x150/filters:strip_icc()/pic5012390.jpg"}, #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" {:languages (list "en"), :name "Exit: The abandoned cabin", :game/id #uuid "55ce9281-0034-3261-81ee-695fd1879fe7", :game/name "Exit: The abandoned cabin"}, #uuid "165261a9-0183-3e53-be82-ccc197c354b8" {:game/id #uuid "165261a9-0183-3e53-be82-ccc197c354b8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 3000, :name "Hot Potato"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Exploding Kittens", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "172225", :languages (list "en"), :game/name "Exploding Kittens", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/N8bL53-pRU7zaXDTrEaYrw__thumb/img/3tH4pIc1Udzkd0tXc6MgVQ59BC0=/fit-in/200x150/filters:strip_icc()/pic2691976.png"}, #uuid "a389677b-6118-3815-84fe-c1e75f38984c" {:game/id #uuid "a389677b-6118-3815-84fe-c1e75f38984c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Exploding Kittens NSFW", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "172242", :languages (list "en"), :game/name "Exploding Kittens: NSFW Deck", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/q1fHQMYtU-aajQKTYDlx7w__thumb/img/Az8jEnRuHEbXSn2TWVO4i2rE6ZQ=/fit-in/200x150/filters:strip_icc()/pic2815278.jpg"}, #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" {:game/id #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Fantastic Park", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "218576", :languages (list "en"), :game/name "Fantastic Park", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JWcDDlku6rMkVBPIzfM2xw__thumb/img/8fkElPvZEiOI0jqNOTarXybAQhQ=/fit-in/200x150/filters:strip_icc()/pic3375149.png"}, #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" {:game/id #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Fantasy realms", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "223040", :languages (list "en"), :game/name "Fantasy Realms", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/A7IOpPt-lHrMYsbRmxXWdQ__thumb/img/XoD3fXgApfY7-dfYyFeE6FVkbfY=/fit-in/200x150/filters:strip_icc()/pic6177962.jpg"}, #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" {:game/id #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "259005", :languages (list "de" "en"), :game/name "Farben", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bdtFnbOHc1TpBYtBq3gLGg__thumb/img/G4IZYxp25z-N9UklBdLsA1sQQiw=/fit-in/200x150/filters:strip_icc()/pic4319287.jpg"}, #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" {:game/id #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "Fast Flip", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "194088", :game/name "Fast Flip", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6YTV87TX0uU8gEcQr0p9aw__thumb/img/scLBO4mhJF2lrx9tEEBjcpOzsII=/fit-in/200x150/filters:strip_icc()/pic2904691.jpg"}, #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" {:game/id #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Faulpelz", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "153388", :game/name "Faulpelz", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/h-Fzhf0SGeicPwTtS6wRcA__thumb/img/eTDFdl4FA791dm3zSWAFOyeS9iU=/fit-in/200x150/filters:strip_icc()/pic1892559.jpg"}, #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" {:name "Fifty Shades of Grey", :game/id #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498", :game/name "Fifty Shades of Grey"}, #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" {:game/id #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"}), :name "Find the Animals", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "40837", :game/name "Finde die Tiere!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZsLp6eTL2-jnuAR8VjXp2w__thumb/img/DeFarGFET0ejB6QhmkExlJjmWeA=/fit-in/200x150/filters:strip_icc()/pic445108.jpg"}, #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" {:game/id #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"}), :new true, :name "Five Points: Gangs of New York", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1001, :name "Political"}), :com.boardgamegeek.boardgame/max-play-time 108, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "93540", :languages (list "en"), :game/name "Five Points: Gangs of New York", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qDZFKVCL-kOor061tkIUWA__thumb/img/aSllMoOcTQ5cwhPn5p1TL36Y9Vo=/fit-in/200x150/filters:strip_icc()/pic1541090.jpg"}, #uuid "91a5169d-5877-3642-9a52-54c4f01655da" {:game/id #uuid "91a5169d-5877-3642-9a52-54c4f01655da", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Fleets the pleiad conflict", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 120, :com.boardgamegeek.boardgame/id "156750", :languages (list "en"), :game/name "Fleets: The Pleiad Conflict", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pRAsGuQyvNiRSbIS5v_jqQ__thumb/img/sC8Tdln7ubDVsd6YBvmZpDL26oQ=/fit-in/200x150/filters:strip_icc()/pic2263070.jpg"}, #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" {:game/id #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Fools Gold", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "132758", :languages (list "en"), :game/name "Fool's Gold", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6hx-Td6GomNJL7J-Czd0Kg__thumb/img/FIF2g8gPLHOYRNeC8Vz-g5i7YDE=/fit-in/200x150/filters:strip_icc()/pic1800625.jpg"}, #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" {:game/id #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2960, :name "Map Reduction"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Forbidden Island", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "65244", :languages (list "en"), :game/name "Forbidden Island", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JgAkEBUaiHOsOS94iRMs2w__thumb/img/5aPR8-KMbgucI_XkPE2PJaMQQsg=/fit-in/200x150/filters:strip_icc()/pic646458.jpg"}, #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" {:languages (list "en"), :name "Fox in the Forest", :game/id #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb", :game/name "Fox in the Forest"}, #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" {:game/id #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"}), :name "Frankenstein", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "19030", :languages (list "en"), :game/name "Frankenstein", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/TFT3zgvVAx8U4BcDY9P5iA__thumb/img/waFGtDnsbNDB5_zgFBH6VSpG-eM=/fit-in/200x150/filters:strip_icc()/pic302246.jpg"}, #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" {:game/id #uuid "34946d54-6d22-3af0-afdb-e795b8de802b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2967, :name "Hidden Movement"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"}), :name "Fugitive", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1098, :name "Number"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "197443", :languages (list "en"), :game/name "Fugitive", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Jeukp3NUs-u6i3SuF-yE4A__thumb/img/1cw7pZbdLk2bBFh-tjkwzZXwgmw=/fit-in/200x150/filters:strip_icc()/pic3481216.png"}, #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" {:game/id #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Fuji flush", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "203430", :game/name "Fuji Flush", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/mobPzHA7UwgwiGzr2EVW9g__thumb/img/rQmbjRFo3DZhq7ufK3K1UwDI0x0=/fit-in/200x150/filters:strip_icc()/pic3086849.jpg"}, #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" {:game/id #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a", :com.boardgamegeek.boardgame/min-players 2, :name "Full Moon", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "136523", :languages (list "en"), :game/name "Full Moon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/QX1mkUrYWBeih3nfeP36sg__thumb/img/3gDOQSXQBBKWcyu5Bl4MQVpGLkw=/fit-in/200x150/filters:strip_icc()/pic1534029.jpg"}, #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" {:languages (list "de" "en"), :name "Fungi / morells", :game/id #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9", :game/name "Fungi / morells"}, #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" {:game/id #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Game of Thrones: Oathbreaker", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1001, :name "Political"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "275530", :languages (list "en"), :game/name "Game of Thrones: Oathbreaker", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/C3gHLeIl8333KBy1OOEyzw__thumb/img/4tQdfs8vggC32L-ZnbqfpC4-XD4=/fit-in/200x150/filters:strip_icc()/pic4635232.jpg"}, #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" {:game/id #uuid "9ecf0011-c0af-37eb-a590-f247005f0399", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2915, :name "Negotiation"} #:com.boardgamegeek.mechanic{:id 2858, :name "Prisoner's Dilemma"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "204837", :languages (list "cz"), :game/name "Game of Thrones: The Iron Throne", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/t9LtCL9_aSDliHPxHFNNeg__thumb/img/9EF6xEaV7AuEB9YCPC3FiSBpL1E=/fit-in/200x150/filters:strip_icc()/pic3109099.jpg"}, #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" {:game/id #uuid "af89834e-3251-3aa9-a464-74b8d24a5091", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Game of Trains", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1034, :name "Trains"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "180602", :languages (list "de" "en"), :game/name "Game of Trains", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CawgoeUEMFS4f14Iix9Exg__thumb/img/OYsku3__TTw8fiFYEWlhUBT7nIU=/fit-in/200x150/filters:strip_icc()/pic2608713.png"}, #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" {:game/id #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2913, :name "Bribery"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Gentleman’s deal", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 9, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "205776", :languages (list "en"), :game/name "Gentleman's Deal", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HJQGrFfsjbbCKykXE8brrA__thumb/img/LpJQFC8s55wuwWpAbogSUQxELck=/fit-in/200x150/filters:strip_icc()/pic3160826.jpg"}, #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" {:game/id #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "182050", :languages (list "en"), :game/name "Germania Magna: Border in Flames", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Oer5u8dNIo9y2ncEMIljGQ__thumb/img/sN9Px7o3oogpKe_1qe4glWujOv0=/fit-in/200x150/filters:strip_icc()/pic3130233.png"}, #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" {:game/id #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4", :com.boardgamegeek.boardgame/min-players 1, :new true, :name "Ghost Adventure", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "275032", :languages (list "en"), :game/name "Ghost Adventure", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/KX4vbo56H0zH55HJo0ZU3Q__thumb/img/7OkM6156VruWDxM7CoTFFDe310A=/fit-in/200x150/filters:strip_icc()/pic5636008.jpg"}, #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" {:game/id #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Giraffun", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "213358", :game/name "Giraf'Fun", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/22l0MMlmBatAMaxsIwZ-ew__thumb/img/KfT4gfFaMBqkLUeNd-grasK1fCo=/fit-in/200x150/filters:strip_icc()/pic3304372.jpg"}, #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" {:game/id #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2038, :name "Singing"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Glimpse", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 99, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "201595", :languages (list "en"), :game/name "Glimpse", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Oo_huFZJtGQVBkhOOeYr1Q__thumb/img/fPW0sy9y9Q7qdntQTeaMdqFFhpg=/fit-in/200x150/filters:strip_icc()/pic3192493.jpg"}, #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" {:game/id #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Globe twister", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1097, :name "Travel"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "257924", :languages (list "cz" "de" "en" "fr"), :game/name "Globe Twister", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/sFcxNCKHiiqjQdBSo4O1Hg__thumb/img/LJpave2uTNe9UgAaehNAD3gK71Q=/fit-in/200x150/filters:strip_icc()/pic4261553.jpg"}, #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" {:game/id #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 3001, :name "Layering"} #:com.boardgamegeek.mechanic{:id 2836, :name "Lose a Turn"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Gloom", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "12692", :languages (list "en"), :game/name "Gloom", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/jD7_Ir8gL_9AXC-wjnqjHg__thumb/img/wWqmoercFrbIFjS1FloZFTZddcE=/fit-in/200x150/filters:strip_icc()/pic2080481.jpg"}, #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" {:languages (list "lagoonies"), :name "Glupsch geister", :game/id #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8", :game/name "Glupsch geister"}, #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" {:game/id #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "Go", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "188", :game/name "Go", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6qAiZwWxSSKP2kFcA80cZg__thumb/img/COT5I3D_0dKWrSRHChb-SnQl3Zc=/fit-in/200x150/filters:strip_icc()/pic1728832.jpg"}, #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" {:game/id #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "217553", :languages (list "cz"), :game/name "Go Go Gelato!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/970IA1qF--JQB4C-SAiX-w__thumb/img/WiZooxvVjFDpelW4XsliMXTl8OM=/fit-in/200x150/filters:strip_icc()/pic3363675.jpg"}, #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" {:game/id #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"}), :name "Gobbit", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "132620", :languages (list "cz" "fr"), :game/name "Gobbit", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bMWoFNQFesjs64shTr-ObA__thumb/img/0EsCUEryLNYdObPJzB2SRNUo0yQ=/fit-in/200x150/filters:strip_icc()/pic4819194.png"}, #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" {:game/id #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Goblins inc.", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "110524", :languages (list "en"), :game/name "Goblins, Inc.", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/y-7XKqyWHh3sE5N86EBUfA__thumb/img/UtLa49EALZ2DVwSgsR9Ku5hE6hU=/fit-in/200x150/filters:strip_icc()/pic1415862.jpg"}, #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" {:languages (list "cz"), :name "Goblíci jedlíci / Gobblet Gobblers", :game/id #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287", :game/name "Goblíci jedlíci / Gobblet Gobblers"}, #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" {:game/id #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"}), :name "Going Postal", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "292795", :languages (list "en"), :game/name "Going Postal", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Q8xKywi0R2rvrsXgS1Ay0Q__thumb/img/a-VLo5gnnZdBt3cgrsowjnqsSUM=/fit-in/200x150/filters:strip_icc()/pic5080591.jpg"}, #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" {:game/id #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2930, :name "Auction: Dexterity"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Going going gone", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "144761", :languages (list "en"), :game/name "Going, Going, GONE!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/LSWJQZ4t6_Re_iz3SMv2-w__thumb/img/vrodOnKIbdD7T5oJdV5AsrRuhHk=/fit-in/200x150/filters:strip_icc()/pic1742682.jpg"}, #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" {:game/id #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Goosebumps the board game", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 35, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "189657", :languages (list "en"), :game/name "Goosebumps: The Board Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/j082xJe0y4t_diBc8InuXw__thumb/img/5QrDwoPafDRBrrRhY5Y2WzitOjY=/fit-in/200x150/filters:strip_icc()/pic2809741.jpg"}, #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" {:game/id #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "253756", :languages (list "en"), :game/name "PI:NAME:<NAME>END_PIorPI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gXQ4IAIpBejz3N1LPpreMg__thumb/img/gVozjy2zCuvg2EHYkJxxUDfm8BY=/fit-in/200x150/filters:strip_icc()/pic4146552.jpg"}, #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" {:game/id #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2911, :name "Ownership"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2813, :name "Rondel"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Great western trail", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1055, :name "American West"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "193738", :languages (list "cz" "en"), :game/name "Great Western Trail", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/u1l0gH7sb_vnvDvoO_QHqA__thumb/img/9lxFidyDb8j6D1vobx4e3UwZ-FI=/fit-in/200x150/filters:strip_icc()/pic4887376.jpg"}, #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" {:game/id #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :new true, :name "Greedy Kingdoms", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "57201", :languages (list "en"), :game/name "Greedy Kingdoms", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pY-YcQyPuTkhoojWrrAR3A__thumb/img/zqDTc4anPBGjYWMvojNtKh9Y96w=/fit-in/200x150/filters:strip_icc()/pic565301.jpg"}, #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" {:game/id #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Gretchinz", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1031, :name "Racing"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "239951", :languages (list "en"), :game/name "Gretchinz!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Dv7p-wFsyKbRwlWo8FObwQ__thumb/img/Tl69LY5QGCOVt7Ygg9pJ1aacaEg=/fit-in/200x150/filters:strip_icc()/pic3856833.jpg"}, #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" {:game/id #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4", :com.boardgamegeek.boardgame/min-players 3, :name "Guess What", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "142103", :game/name "Guess What!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kMaXgIDf-AQzYEM9Roo8jw__thumb/img/axTBuQdbroN7PMk4HQtGaxLDw6I=/fit-in/200x150/filters:strip_icc()/pic1699333.png"}, #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" {:game/id #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Hunger the show", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "219670", :languages (list "en"), :game/name "HUNGER: The Show", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0PlLZN729gkNyyYB7M264Q__thumb/img/OjtXDO3gita_jOZkYdj62C-rH70=/fit-in/200x150/filters:strip_icc()/pic3532789.jpg"}, #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" {:game/id #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Hadara", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "269144", :languages (list "cz"), :game/name "Hadara", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/17wJNXSBYuVmKryV9lEKsQ__thumb/img/nVMvEWrTFCoOE9Y3tqFLelkjYWw=/fit-in/200x150/filters:strip_icc()/pic5099398.jpg"}, #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" {:game/id #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Hail Hydra", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "256877", :languages (list "en"), :game/name "Hail Hydra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/vqVPJtDgFGrU4UUpygn19w__thumb/img/HlRZwWhjdliHGnxY2x7-pkj-1I8=/fit-in/200x150/filters:strip_icc()/pic4233915.jpg"}, #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" {:game/id #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "PI:NAME:<NAME>END_PIali", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "1130", :game/name "Halali", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/DB9K9asuaH7Na3AKH2G5dg__thumb/img/kQGmAAkgT5J7ZLgUAxldNxeA1vg=/fit-in/200x150/filters:strip_icc()/pic14240.jpg"}, #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" {:game/id #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1045, :name "Memory"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "98778", :game/name "Hanabi", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/JDVksMwfcqoem1k_xtZrOA__thumb/img/amCeCcEKhYGbVtDvpvIMnu3qTg0=/fit-in/200x150/filters:strip_icc()/pic2007286.jpg"}, #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" {:game/id #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Happy pigs", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "156138", :languages (list "en"), :game/name "Happy Pigs", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gbUdxyfnt-P2i2fmPixN_Q__thumb/img/iIQwlVdbR6VMj5R6-Wi25LKTI0c=/fit-in/200x150/filters:strip_icc()/pic2830958.jpg"}, #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" {:game/id #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Šťastný candát", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 2, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 2, :com.boardgamegeek.boardgame/id "194626", :languages (list "cz"), :game/name "Happy Salmon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/m0fTHQRSHztlpHsCzR9iAw__thumb/img/EA1AyifbIZB00-p569p0p7cBi5U=/fit-in/200x150/filters:strip_icc()/pic2913980.png"}, #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" {:game/id #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "165662", :languages (list "en"), :game/name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/sOwpuouKdVSYmpz9oIJv_g__thumb/img/nwsGruWd-5XPmYPY3RG72-MsQ6g=/fit-in/200x150/filters:strip_icc()/pic2678962.jpg"}, #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" {:game/id #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Hat trick", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "11153", :game/name "Hat Trick", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ur5TMXRKUNod-fjT6GoWWg__thumb/img/vNtveDGyNhKtuvZaDrfGXftu-SA=/fit-in/200x150/filters:strip_icc()/pic46136.jpg"}, #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" {:game/id #uuid "cdd0afaf-944b-3605-ab9e-990704f79409", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :new true, :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "324467", :languages (list "en"), :game/name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gdL3oocd-YZdV-eov01mzQ__thumb/img/MzaD_ZISvY6hH-Mht-YA5UiOq_g=/fit-in/200x150/filters:strip_icc()/pic6388848.png"}, #uuid "826863b8-1605-33a8-9169-91ebcb89712b" {:game/id #uuid "826863b8-1605-33a8-9169-91ebcb89712b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2960, :name "Map Reduction"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "Hey that’s my fish", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "8203", :game/name "Hey, That's My Fish!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CR2jXsbmCdhDYo2zI6cJFQ__thumb/img/6jjUgJWbOMUZ4JIEqJF0MzP6tO8=/fit-in/200x150/filters:strip_icc()/pic1004115.jpg"}, #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" {:game/id #uuid "75466a84-a8e4-3539-bad7-a8f56097c633", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2930, :name "Auction: Dexterity"} #:com.boardgamegeek.mechanic{:id 2920, :name "Auction: Sealed Bid"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :new true, :name "Hibachi", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "313718", :languages (list "en"), :game/name "Hibachi", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wXeBFmXw3QrNJBz05tbF4g__thumb/img/AXT-WLek_ayeFVWarBzcCvL6Dhg=/fit-in/200x150/filters:strip_icc()/pic5517561.jpg"}, #uuid "434338bc-9501-334b-adbf-2b3752e9e231" {:game/id #uuid "434338bc-9501-334b-adbf-2b3752e9e231", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2964, :name "Pieces as Map"} #:com.boardgamegeek.mechanic{:id 3005, :name "Slide/Push"} #:com.boardgamegeek.mechanic{:id 2944, :name "Three Dimensional Movement"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Hive Pocket", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "154597", :languages (list "de" "en"), :game/name "Hive Pocket", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/4DffKExiPihIf9T_AqkPCQ__thumb/img/0EuD6uQ0lLAb2jtY6YC0EduW7Gw=/fit-in/200x150/filters:strip_icc()/pic1299877.png"}, #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" {:game/id #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Holding on", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 2145, :name "Medical"} #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "245444", :languages (list "en"), :game/name "Holding On: The Troubled Life of PI:NAME:<NAME>END_PI KPI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/lKHrfnNpblE-ZoqiAt8RUw__thumb/img/mg863nmqfO4wjGxV1EqqaxhLzOg=/fit-in/200x150/filters:strip_icc()/pic4177569.jpg"}, #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" {:game/id #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Holmes Sherlock and Mycroft", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "174078", :languages (list "en"), :game/name "Holmes: Sherlock & Mycroft", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/EAUE93YGXVFJW1FwftPRgw__thumb/img/4ByVnF3DSfQTxwsUMPRmDMQrWFA=/fit-in/200x150/filters:strip_icc()/pic2431481.jpg"}, #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" {:languages (list "en"), :name "Home Stretch", :game/id #uuid "0d22fe23-de11-3728-9634-4b0114313a9f", :game/name "Home Stretch"}, #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" {:game/id #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Honba za Pokladem", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1084, :name "Environmental"} #:com.boardgamegeek.category{:id 1098, :name "Number"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "131414", :languages (list "cz"), :game/name "Honba za pokladem", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/u0c2qcKFO-CZXW7mTA7k1Q__thumb/img/1OWhhlIs8NwGCbW4NUkjkSgIi34=/fit-in/200x150/filters:strip_icc()/pic1436457.jpg"}, #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" {:game/id #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Hospital Rush", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 2145, :name "Medical"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "119265", :languages (list "en"), :game/name "Hospital Rush", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rVWdEN9wzXzz2goU5xeXkQ__thumb/img/sC7xAly_TzGn1l7kNuYQvEpoVqw=/fit-in/200x150/filters:strip_icc()/pic2218972.jpg"}, #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" {:languages (list "cz"), :name "Hospodský kvíz", :game/id #uuid "d803129a-da52-3403-b88a-1331f9bf89b1", :game/name "Hospodský kvíz"}, #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" {:game/id #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Hound", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "255632", :languages (list "en"), :game/name "Hound", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7zHXxwcHjq2Yp2woQkk2DA__thumb/img/keVJuY3uTOGRPtKIs8R66mXQcJ4=/fit-in/200x150/filters:strip_icc()/pic4334234.jpg"}, #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" {:languages (list "cz"), :name "PI:NAME:<NAME>END_PI", :game/id #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6", :game/name "Hravé kroužky"}, #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" {:game/id #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "23435", :game/name "Hugo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ERhkAfrYHD-jpsBf1L9mTQ__thumb/img/flSO_ro1ATTQw5EaCkeaSqa8UvE=/fit-in/200x150/filters:strip_icc()/pic165694.jpg"}, #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" {:game/id #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Hvezdokupy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "187538", :languages (list "cz"), :game/name "Hvězdokupy: Hra plná hvězd", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/dpuO8gjLSm0R6EJRpCaF3w__thumb/img/E2XFve6QnxBMsib3rraDVxuPvKw=/fit-in/200x150/filters:strip_icc()/pic2740107.jpg"}, #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" {:game/id #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Hypergrid", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "209206", :game/name "Hypergrid", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wDAL9LJQ1GoiRXeGQ9fnaw__thumb/img/ro9Zk2Fj6Ou8JR_S3uDmkVwELi8=/fit-in/200x150/filters:strip_icc()/pic3184914.jpg"}, #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" {:languages (list "cz"), :name "I Know: Hit list", :game/id #uuid "c693b4c3-9720-303a-836a-8f25b4da698a", :game/name "I Know: Hit list"}, #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" {:game/id #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2860, :name "Flicking"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Ice Cool", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "177524", :game/name "ICECOOL", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/xVx8ex1fjO9C7W8rRvWdVQ__thumb/img/7ZeCdaJWigksF5wUHTGGXmmfP6Y=/fit-in/200x150/filters:strip_icc()/pic3320017.png"}, #uuid "b4991e13-f466-39b4-be16-56909272f1cc" {:game/id #uuid "b4991e13-f466-39b4-be16-56909272f1cc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Illuminati", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "28", :languages (list "en"), :game/name "Illuminati", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ea8y04WKGgdQkFy1Pbw9tA__thumb/img/eph2ZknTAhhs-A8ij76DJbhzjrs=/fit-in/200x150/filters:strip_icc()/pic1320091.jpg"}, #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" {:game/id #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Imperial Settlers", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "154203", :languages (list "en"), :game/name "Imperial Settlers", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pRwsvyfsRJ-lWWwVJCdXNg__thumb/img/-b7sYBaUVxdZ_a33QRfvJY2ccAk=/fit-in/200x150/filters:strip_icc()/pic2871265.jpg"}, #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" {:languages (list "en"), :name "Isle of Skye", :game/id #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434", :game/name "Isle of Skye"}, #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" {:game/id #uuid "0ef8f876-d62a-3535-ae28-410454e3634b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Istanbul", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "148949", :languages (list "cz"), :game/name "Istanbul", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/PHH9Mreen2sBcxV6ZsE3ew__thumb/img/Vzpg3sdeAbCy0IxSAoh1aH9nvDE=/fit-in/200x150/filters:strip_icc()/pic1885326.jpg"}, #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" {:game/id #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "It dies with me", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "246709", :languages (list "en"), :game/name "It Dies With Me", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/DWMT6FxLomGvgYzfKJTuKw__thumb/img/C6-AyY0PP5fFzG1eDyVcWCwHd1g=/fit-in/200x150/filters:strip_icc()/pic4466127.jpg"}, #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" {:game/id #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2883, :name "Connections"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"}), :new true, :name "It’s Obvious!", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "338747", :languages (list "en"), :game/name "It's Obvious", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/r4Av0cBw_qHPEM3IypNE4w__thumb/img/94t98GCbpq57IyMEbz9RUuLPdgw=/fit-in/200x150/filters:strip_icc()/pic6315328.jpg"}, #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" {:game/id #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Itchy Monkey", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "249404", :languages (list "en"), :game/name "Itchy Monkey", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZxA13WeYt4YN6UdzBg_R1Q__thumb/img/f1Dgcax5BCbGgSAX4FEWjNB-AhY=/fit-in/200x150/filters:strip_icc()/pic4275085.jpg"}, #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" {:game/id #uuid "e4b769db-2a42-392d-b311-b02c3545d07d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2987, :name "Hidden Victory Points"} #:com.boardgamegeek.mechanic{:id 2900, :name "Market"} #:com.boardgamegeek.mechanic{:id 2823, :name "Score-and-Reset Game"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "54043", :languages (list "fr"), :game/name "Jaipur", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/_LTujSe_o16nvjDC-J0seA__thumb/img/82vhODfpxIT03BzW4NkisJ5Unzs=/fit-in/200x150/filters:strip_icc()/pic5100947.jpg"}, #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" {:game/id #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Jamaica", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1008, :name "Nautical"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "28023", :game/name "Jamaica", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/jZRfv3isrBG5waCzEx60Cw__thumb/img/6q5nirF5yn1d0qtjm2UEI5HV874=/fit-in/200x150/filters:strip_icc()/pic6434838.png"}, #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" {:game/id #uuid "647e229b-c07b-3419-a641-254ed8b96dbd", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2865, :name "Player Judge"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "193621", :languages (list "en"), :game/name "Joking Hazard", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ohrUtQ0FGHPSFxfSX2Ltmg__thumb/img/r9PhVsbOjPDDLfVKBhwrPnqV4LI=/fit-in/200x150/filters:strip_icc()/pic6411897.png"}, #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" {:game/id #uuid "18594966-e721-3762-8ad4-b4cc663db0b9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2837, :name "Interrupts"} #:com.boardgamegeek.mechanic{:id 2871, :name "Kill Steal"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "PI:NAME:<NAME>END_PI: PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "275034", :languages (list "en"), :game/name "PI:NAME:<NAME>END_PI: PI:NAME:<NAME>END_PIter", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/voQGyVEKCWsh-EfbjdnDCA__thumb/img/YgMuh3DbFOp8k2FqPWNkxEbJ0SE=/fit-in/200x150/filters:strip_icc()/pic4973077.jpg"}, #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" {:game/id #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Jungle Brunch", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "130907", :game/name "Jungle Brunch", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/oRyH1goh93mCNr1m0bMLtA__thumb/img/WdokDmJ4wy1iQtfbVtSzaTVU_bo=/fit-in/200x150/filters:strip_icc()/pic1422658.jpg"}, #uuid "f18187e7-f398-32f0-b73e-625e848d8333" {:game/id #uuid "f18187e7-f398-32f0-b73e-625e848d8333", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Jungle race", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "14616", :languages (list "en"), :game/name "Jungle Race", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/WOx_B6WTWG9Pmn0S1-6bgQ__thumb/img/UfQc3KADnR_X34kclxhkAPafeQg=/fit-in/200x150/filters:strip_icc()/pic2105293.jpg"}, #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" {:game/id #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2999, :name "Bingo"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2906, :name "I Cut, You Choose"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2821, :name "Single Loser Game"} #:com.boardgamegeek.mechanic{:id 2988, :name "Stacking and Balancing"}), :name "Junk Art", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "193042", :languages (list "cz"), :game/name "Junk Art", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5VDnpX_3ykgCjTJSmHdfCA__thumb/img/LLHF9t1MxB0m-NBe_C9cxAyIslA=/fit-in/200x150/filters:strip_icc()/pic2884509.jpg"}, #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" {:game/id #uuid "e9e59065-5acd-3d1d-876b-8cb866541534", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"}), :name "Just One", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 7, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "254640", :languages (list "en"), :game/name "Just One", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qKcKjHpzAvLddwBhyindag__thumb/img/HhZu2qLp9wyX9PNgvmDE8_hCl-0=/fit-in/200x150/filters:strip_icc()/pic4268499.jpg"}, #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" {:game/id #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Kahuna", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "394", :game/name "Kahuna", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UdhhVlmQihMbvlNSvY1lUA__thumb/img/bc5NxkspfUfPskxlC30SxlwNyxs=/fit-in/200x150/filters:strip_icc()/pic2606165.jpg"}, #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" {:name "PI:NAME:<NAME>END_PI", :game/id #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f", :game/name "Kaleva", :com.boardgamegeek.boardgame/id "182174", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/sdnIpVpAqsZyckQmnql0fg__thumb/img/5-NmFZcvHYLlSIpIVeEiE73_v4o=/fit-in/200x150/filters:strip_icc()/pic2634113.jpg", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"})}, #uuid "2293c663-d1bc-3701-9a53-009f457c6940" {:game/id #uuid "2293c663-d1bc-3701-9a53-009f457c6940", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2829, :name "Turn Order: Claim Action"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Kanagawa", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "200147", :languages (list "en"), :game/name "Kanagawa", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Rr2JrRztCFzzikJ9YL5-Dw__thumb/img/x9MtKEQlcQ_jS-5AVMeZ28NOC0s=/fit-in/200x150/filters:strip_icc()/pic3105168.jpg"}, #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" {:game/id #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"}), :name "Kashgar", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "143175", :languages (list "de"), :game/name "Kashgar: Merchants of the Silk Road", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wEcuixeJMR4e1Jj85qRvWA__thumb/img/262Z59cV9FNpYczcYBOaAIKmgFc=/fit-in/200x150/filters:strip_icc()/pic3697855.jpg"}, #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" {:game/id #uuid "abc5edec-2835-3550-b622-c491cdafdb5e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :new true, :name "Kemet", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "127023", :languages (list "en"), :game/name "Kemet", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/RmZjhy7_6REp8IaXh9Zqwg__thumb/img/930_NppLsnIGUDG_W6wkdOGgKR8=/fit-in/200x150/filters:strip_icc()/pic3979527.jpg"}, #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" {:game/id #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Kerala", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 3, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "31154", :languages (list "en"), :game/name "Kerala", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/XiiLyFXVcd8iDmXZbTssfw__thumb/img/ffJlDKp1rIRm9TDj4ApwpNYaqJk=/fit-in/200x150/filters:strip_icc()/pic1064029.png"}, #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" {:game/id #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "194196", :languages (list "en"), :game/name "Kharnage", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Pp3N1Ai0QMzKcU7XVlLnEA__thumb/img/XNWruCF2upZHUFlcVL_88lnnPW4=/fit-in/200x150/filters:strip_icc()/pic3372416.jpg"}, #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" {:languages (list "en"), :name "Kill Dr. Lucky", :game/id #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1", :game/name "Kill Dr. Lucky"}, #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" {:game/id #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Kilt Castle", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "205826", :languages (list "en"), :game/name "Kilt Castle", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZwHGdOOym-ZlS8mR1oa9Vg__thumb/img/GUyr4p7NCEVWBB2O0Y5J0kr9JBw=/fit-in/200x150/filters:strip_icc()/pic3126011.jpg"}, #uuid "b1127074-659b-3102-907a-25a0473a3e98" {:game/id #uuid "b1127074-659b-3102-907a-25a0473a3e98", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Quibbit", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "209849", :game/name "King Frog", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CRNr-IjANGmnMly93P9_lw__thumb/img/C85uPMQ3exnB5lhL8JPZ4GWj5jc=/fit-in/200x150/filters:strip_icc()/pic3648641.png"}, #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" {:game/id #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2856, :name "Die Icon Resolution"} #:com.boardgamegeek.mechanic{:id 2886, :name "King of the Hill"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "King of New York", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "160499", :languages (list "en"), :game/name "King of New York", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/FGekxht_r5xqt8oSmQ9HZg__thumb/img/DBoMebkqbcyZWJVLC5MRbF-YbnU=/fit-in/200x150/filters:strip_icc()/pic2407103.jpg"}, #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" {:game/id #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2856, :name "Die Icon Resolution"} #:com.boardgamegeek.mechanic{:id 2886, :name "King of the Hill"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"}), :name "King of Tokyo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "70323", :languages (list "cz" "en"), :game/name "King of Tokyo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/m_RzXpHURC0_xLkvRSR_sw__thumb/img/OfgWmkGJj5BgOO0zFHEtP5CHfbU=/fit-in/200x150/filters:strip_icc()/pic3043734.jpg"}, #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" {:game/id #uuid "22b3df14-e100-33a6-a098-e396cb523d6a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2956, :name "Chaining"} #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Kingdom Builder", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "107529", :game/name "Kingdom Builder", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kJOP_BICVX-88sKqFRh9PQ__thumb/img/KwrWpSRncnCE0cEldldyVQ-0Cdk=/fit-in/200x150/filters:strip_icc()/pic1152359.jpg"}, #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" {:game/id #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2826, :name "Turn Order: Stat-Based"}), :name "Kingdomino", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "204583", :languages (list "cz"), :game/name "Kingdomino", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/3h9W8BfB_rltQ48EBmHliw__thumb/img/RGpbcY90eBcNLXbHLMBwLrr2uzo=/fit-in/200x150/filters:strip_icc()/pic3132685.png"}, #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" {:game/id #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "King’s struggle", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "253568", :languages (list "en"), :game/name "Kings' Struggle", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZQI6aR6IcK_EJHCufesE4A__thumb/img/gY4LOjIxf29hE5mceE0auAgR1Cg=/fit-in/200x150/filters:strip_icc()/pic4139916.jpg"}, #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" {:languages (list "cz"), :name "Kmotr / Godfather", :game/id #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f", :game/name "Kmotr / Godfather"}, #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" {:languages (list "en"), :name "PI:NAME:<NAME>END_PI", :game/id #uuid "a673ace7-74a3-384d-823b-f8131295d6d1", :game/name "Koba yakawa"}, #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" {:languages (list "cz"), :name "PI:NAME:<NAME>END_PI", :game/id #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f", :game/name "Kocka Karla"}, #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" {:game/id #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 3001, :name "Layering"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :new true, :name "Kodama: The Tree Spirits", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "181810", :languages (list "en"), :game/name "Kodama: The Tree Spirits", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/c5plwwXh0T5S3spJqFwxNQ__thumb/img/a3HWHogUfMBWon0jjJkJ6G2gr90=/fit-in/200x150/filters:strip_icc()/pic3291451.jpg"}, #uuid "938351d5-c89e-32e0-af3b-73d217217b14" {:languages (list "cz"), :name "PI:NAME:<NAME>END_PI", :game/id #uuid "938351d5-c89e-32e0-af3b-73d217217b14", :game/name "Kohouti namluvy"}, #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" {:languages (list "ru"), :name "PI:NAME:<NAME>END_PIosta PyPI:NAME:<NAME>END_PI", :game/id #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83", :game/name "Kosta Pyaha"}, #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" {:name "Kumo", :game/id #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b", :game/name "Kumo"}, #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" {:game/id #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/id "17442", :game/name "Kung FPI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/f3Cn4GZRQ5q9JwBOVYUDlg__thumb/img/cwT18Dr8XcStsDfnILK29D_wOpI=/fit-in/200x150/filters:strip_icc()/pic75405.jpg"}, #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" {:game/id #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :new true, :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "151453", :languages (list "en"), :game/name "Kyoto", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qwD4rxcmKsvIjjnGryG7jQ__thumb/img/UOybw4gDkgld6f4zZWvmZuOCZo4=/fit-in/200x150/filters:strip_icc()/pic5268028.png"}, #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" {:game/id #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "L.L.A.M.A.", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"} #:com.boardgamegeek.category{:id 1101, :name "Video Game Theme"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "18051", :languages (list "cz"), :game/name "L.L.A.M.A.", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/DIlvdiqrtsThyG-zrbcoaQ__thumb/img/PHwqvNIPyequuc8a1SBCiJ9cSdQ=/fit-in/200x150/filters:strip_icc()/pic385756.jpg"}, #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" {:game/id #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Left Center Right", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "3522", :languages (list "en"), :game/name "LCR", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wuS6NwGsDEThQlf12vVBxA__thumb/img/DQ99drs5cEMSyflPM7jV0dhZhjY=/fit-in/200x150/filters:strip_icc()/pic155138.jpg"}, #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" {:languages (list "en"), :name "LOTR card game", :game/id #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0", :game/name "LOTR card game"}, #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" {:game/id #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2961, :name "Map Deformation"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Labyrinth", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1059, :name "Maze"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "1219", :languages (list "de" "en" "fr"), :game/name "Labyrinth", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qpL225YNN5iKRPotB7Q7MA__thumb/img/JZR5MVC8xYrboBrYMsZmWtjJTu0=/fit-in/200x150/filters:strip_icc()/pic6173371.jpg"}, #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" {:game/id #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "126912", :languages (list "en" "fr"), :game/name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6FMrU00_0KHRoVw1hA8eog__thumb/img/LJTPIpdTnlqOO8jH2GGMFBi9Upg=/fit-in/200x150/filters:strip_icc()/pic1431498.jpg"}, #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" {:game/id #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Le Fantome de l’Opera", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1054, :name "Music"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "145645", :languages (list "en" "fr"), :game/name "Le Fantôme de l'Opéra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/L4Of6W3yhhjYgmUjH2FDpQ__thumb/img/_evRWSRlE2VrjLu5XCxlayW0qmI=/fit-in/200x150/filters:strip_icc()/pic1726671.jpg"}, #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" {:name "Legendary Encounters", :game/id #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65", :game/name "Legendary Encounters"}, #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" {:game/id #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "Let’s Drink", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "261251", :languages (list "en"), :game/name "Let's Drink", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/A2uEWD8yMEdnNMih_DDRNQ__thumb/img/Ix5MpioQ4dnNkvYeu9yUVQwKDCw=/fit-in/200x150/filters:strip_icc()/pic5002036.jpg"}, #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" {:game/id #uuid "4921b8e8-521a-3a27-9aac-936218a067c7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"}), :name "Letter Jam", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "275467", :languages (list "en"), :game/name "Letter Jam", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kBZGJlIqir1I_EVCr2nDbg__thumb/img/mSl669ndQnGcsmKfe0Yppc1XvbI=/fit-in/200x150/filters:strip_icc()/pic4853794.jpg"}, #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" {:game/id #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2988, :name "Stacking and Balancing"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Bild it", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "132497", :languages (list "lift it"), :game/name "Lift it!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Q_R2gkpJwV-oKNey6eeIcQ__thumb/img/BbmMGq1NLQwWJXrsV-mNs98X3zY=/fit-in/200x150/filters:strip_icc()/pic2568580.jpg"}, #uuid "5a156002-5793-338e-9399-def9bfd7eca6" {:game/id #uuid "5a156002-5793-338e-9399-def9bfd7eca6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Ligretto", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "943", :game/name "Ligretto", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BQ6UyXXeivndO4F9Hu8CHw__thumb/img/2dXMh9HI7oiLw7ZGeLcrwfXLtjI=/fit-in/200x150/filters:strip_icc()/pic1306961.jpg"}, #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" {:languages (list "en"), :name "Little Monster who came to tea", :game/id #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3", :game/name "Little Monster who came to tea"}, #uuid "39af5c41-5927-3dde-8a75-10397211dcda" {:game/id #uuid "39af5c41-5927-3dde-8a75-10397211dcda", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Loch Ness", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "77076", :game/name "Loch Ness", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ircfsOW-o8JsIH32Rdb5dg__thumb/img/ZhX_r9YSxxQYWhZ8fnaRw_7EHUo=/fit-in/200x150/filters:strip_icc()/pic775371.jpg"}, #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" {:game/id #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :new true, :name "London", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "65781", :languages (list "en"), :game/name "London", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Wb9zwcnPNX-wSNvVcWYNjQ__thumb/img/XOY71ukn7QV-nwLSV3EmhuO46bM=/fit-in/200x150/filters:strip_icc()/pic770317.jpg"}, #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" {:game/id #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"}), :name "Longhorn", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1055, :name "American West"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1011, :name "Transportation"}), :com.boardgamegeek.boardgame/max-play-time 80, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 80, :com.boardgamegeek.boardgame/id "22460", :languages (list "en"), :game/name "Longhorn", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Eaudm6F4BQY8pXe06vle_A__thumb/img/leiaNCoFjDnW3S_1PSShVHu2xbM=/fit-in/200x150/filters:strip_icc()/pic117266.jpg"}, #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" {:languages (list "cz"), :name "Looney Quest", :game/id #uuid "b4f52f37-41db-379b-94e2-3b8911f49401", :game/name "Looney Quest"}, #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" {:game/id #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"}), :name "Looping Louie", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 2650, :name "Aviation / Flight"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1072, :name "Electronic"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "327", :languages (list "en"), :game/name "Loopin' Louie", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/e9CWevSJC03NzLybnCKEVQ__thumb/img/vQZYNWt9xSZez7NCoMB5Lz9yBdY=/fit-in/200x150/filters:strip_icc()/pic4025029.png"}, #uuid "423cb589-88be-336d-ada8-9817b5fe519e" {:game/id #uuid "423cb589-88be-336d-ada8-9817b5fe519e", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Lords of Hellas", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "222509", :languages (list "cz"), :game/name "Lords of Hellas", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iOqSO4vRZFp4MqEKXDXEIw__thumb/img/o7KVJlL45wZxunl0wwwJjqTPl3s=/fit-in/200x150/filters:strip_icc()/pic3592207.jpg"}, #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" {:game/id #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Lost cities board game", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "42487", :game/name "Lost Cities: The Board Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/d-LqrhWAEuIxdEL6DoR2Jg__thumb/img/rI67HKTBZTdqbKaKNiJiowWLWfo=/fit-in/200x150/filters:strip_icc()/pic4597093.jpg"}, #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" {:game/id #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"}), :name "Lost Temple", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "102835", :languages (list "en"), :game/name "Lost Temple", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/YNxToYNXkHIehCztt96sRA__thumb/img/SkLjpQ3lEdyJHuetTe30xED439c=/fit-in/200x150/filters:strip_icc()/pic1045956.jpg"}, #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" {:game/id #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"}), :name "Lux Aeterna", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 12, :com.boardgamegeek.boardgame/max-players 1, :com.boardgamegeek.boardgame/min-play-time 6, :com.boardgamegeek.boardgame/id "282439", :languages (list "en"), :game/name "Lux Aeterna", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/i99laJmQGeZVkKdznB2Ssw__thumb/img/Z24OVjsP3zP12wKHTvuBgfAklNM=/fit-in/200x150/filters:strip_icc()/pic6314128.jpg"}, #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" {:game/id #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"}), :name "Majesty", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "172893", :languages (list "cz"), :game/name "MAJESTY", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/QFUG6olcmjf1HuOuGGsYpw__thumb/img/NcluPj7hQTHfW-ZM404n-u6SGiI=/fit-in/200x150/filters:strip_icc()/pic2401712.png"}, #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" {:game/id #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"}), :name "Crunch", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "65204", :languages (list "en"), :game/name "MASU"}, #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" {:game/id #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2909, :name "Random Production"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "143884", :languages (list "cz" "de"), :game/name "Machi Koro", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/_lI2eUDHfesfe5SswJiFAg__thumb/img/tCTP0XMMmsAfNqzb0iYmp0b-YUc=/fit-in/200x150/filters:strip_icc()/pic4783831.png"}, #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" {:game/id #uuid "47a720fb-24ff-320b-99ab-77739da99a5a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2909, :name "Random Production"}), :name "Machi Koro Bright Lights, Big City", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "205494", :languages (list "en"), :game/name "Machi Koro: Bright Lights, Big City", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/e9Z1IOX7_HwspCzP54prPg__thumb/img/hw04Z1zdSvxIV7REA5pryXVqZas=/fit-in/200x150/filters:strip_icc()/pic3119592.png"}, #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" {:game/id #uuid "227fed4b-25cc-316a-b15e-6c9a064702db", :com.boardgamegeek.boardgame/min-players 6, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Mafia de cuba", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1033, :name "Mafia"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "176558", :languages (list "en"), :game/name "Mafia de Cuba", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nvdogXld5bIr8uXIq2M-uA__thumb/img/j82wTfCvi4Cjq3Pa3aJDLS1nuRw=/fit-in/200x150/filters:strip_icc()/pic2519675.jpg"}, #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" {:game/id #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2057, :name "Chit-Pull System"}), :name "Majority Rules", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1001, :name "Political"}), :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/id "41628", :languages (list "en"), :game/name "Majority Rules", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ynZ--2v9bdc4TIWpAs57_g__thumb/img/Fd32l5WNDYHUNrE6rJ5kSTbYZIo=/fit-in/200x150/filters:strip_icc()/pic4798299.jpg"}, #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" {:game/id #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Mandala", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2991", :languages (list "cz"), :game/name "Mandala", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/XpiNDZqHN4VCKt68223zDw__thumb/img/Ttt1ydAI_wBsVLITRZigSss9S5Q=/fit-in/200x150/filters:strip_icc()/pic372231.jpg"}, #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" {:game/id #uuid "43f3a349-eec8-3b6a-9947-777f90811c90", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Manno monster", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "144416", :languages (list "de"), :game/name "Manno Monster", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1F6vYgRF_j4Z07AbfwjwlQ__thumb/img/WIwHzTE61haoGpogRmYC2vRFaDE=/fit-in/200x150/filters:strip_icc()/pic1708405.jpg"}, #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" {:game/id #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2850, :name "Events"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2851, :name "Narrative Choice / Paragraph"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"} #:com.boardgamegeek.mechanic{:id 2884, :name "Sudden Death Ending"} #:com.boardgamegeek.mechanic{:id 2849, :name "Tech Trees / Tech Tracks"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Maracaibo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "276025", :languages (list "en"), :game/name "Maracaibo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rMNa0k05zMdKgSEp26Q3Tw__thumb/img/lVlnhYyxlZb3WuKZJHLoJcFHEjs=/fit-in/200x150/filters:strip_icc()/pic4917407.jpg"}, #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" {:game/id #uuid "3384a03c-665a-3116-a474-cf5d4406c85a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1052, :name "Arabian"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1011, :name "Transportation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "2280", :languages (list "cz"), :game/name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kphUeoUqMXHrVGbSgFEk0w__thumb/img/e8-7eDIBCZysiUW607XANuXfY6E=/fit-in/200x150/filters:strip_icc()/pic20540.jpg"}, #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" {:game/id #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Masquerade", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "8644", :languages (list "cz"), :game/name "Masquerade", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/p1qMG3b0Do2BXkahQhxQhQ__thumb/img/UId86MhgXlzheSSDUMXyYd5vp8I=/fit-in/200x150/filters:strip_icc()/pic1215445.jpg"}, #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" {:game/id #uuid "133c22e7-c259-3256-a323-5b88f0b6a645", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Mayday Mayday", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 2650, :name "Aviation / Flight"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "142924", :languages (list "en"), :game/name "Mayday!Mayday!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Souny15gpklxNkWsZiW9wA__thumb/img/G-dqBFDgzZHi6Oy2iQVP6nXeHOY=/fit-in/200x150/filters:strip_icc()/pic2243928.jpg"}, #uuid "12fd071d-60ce-3146-b555-655882920638" {:languages (list "cz" "en"), :name "PI:NAME:<NAME>END_PI", :game/id #uuid "12fd071d-60ce-3146-b555-655882920638", :game/name "McJohnnys"}, #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" {:game/id #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1115, :name "Religious"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "203624", :languages (list "de" "en"), :game/name "Mea Culpa", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/yXU6z6pl-Kkn7KRUpiCKiw__thumb/img/rdeSRR98yXhlvfaprZbPjgTIQTE=/fit-in/200x150/filters:strip_icc()/pic3108106.jpg"}, #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" {:game/id #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Medium", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "242529", :languages (list "en"), :game/name "Medium", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gaiG9Iv8S3G6ppC5AKlNIQ__thumb/img/85q4rpTU8rQy3n0-agc3YUjda4o=/fit-in/200x150/filters:strip_icc()/pic4912833.png"}, #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" {:game/id #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Epix", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "165657", :game/name "Melee", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S4ru-E2eXhpaJBX1WQOxeQ__thumb/img/zLMYjsqpHZkWNtlOVuQlMeHZ48k=/fit-in/200x150/filters:strip_icc()/pic2564896.jpg"}, #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" {:game/id #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2989, :name "Physical Removal"} #:com.boardgamegeek.mechanic{:id 2988, :name "Stacking and Balancing"}), :name "Menara", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "244608", :languages (list "en"), :game/name "Menara", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qRwLtZZDhIT1wPD8qjCEUA__thumb/img/M7GGgc8cAX5AiTfdC8U4AieR6VQ=/fit-in/200x150/filters:strip_icc()/pic3944407.jpg"}, #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" {:game/id #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Mice and Mystics", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "124708", :languages (list "en"), :game/name "Mice and Mystics", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pZFrbWXBzrkxqOotg05D9Q__thumb/img/nrgg_ID3yq1r5dZ6iWe4de3GW6E=/fit-in/200x150/filters:strip_icc()/pic1312072.jpg"}, #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" {:game/id #uuid "79413bfc-7937-3c16-be95-e34d45589ec4", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "318977", :languages (list "cz"), :game/name "MicroMacro: Crime City", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1M-1d6fr3U9t670MCVOTeg__thumb/img/aR9LNVhRr_hnIIoYwxFUTb8rPMk=/fit-in/200x150/filters:strip_icc()/pic5896816.jpg"}, #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" {:game/id #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2813, :name "Rondel"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "MileStones", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "117914", :game/name "Milestones", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/tP2C-DDjV10zGqZFDwXcxA__thumb/img/9Klfq9ORCU3904fVqh9DiJXHDRQ=/fit-in/200x150/filters:strip_icc()/pic1336176.jpg"}, #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" {:game/id #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "590", :languages (list "en"), :game/name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kzLZY_DHTh-hBcqXP34a5w__thumb/img/82b4hCqE8tTLkwexnLrp3ubGU_c=/fit-in/200x150/filters:strip_icc()/pic4330533.jpg"}, #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" {:game/id #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"}), :name "Mined Out", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-play-time 50, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "212348", :languages (list "en"), :game/name "Mined Out!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/k33VoKTDM-E5iIMwv6flxA__thumb/img/buyKl6WQgvzisWu_k7djrizjqew=/fit-in/200x150/filters:strip_icc()/pic3267967.jpg"}, #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" {:game/id #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "Mmm…", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "172507", :languages (list "cz"), :game/name "Mmm!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/V_nDKd8bFLwCu4ttyuWJrg__thumb/img/Djv6DavegF7YoX7YrwZlgHr1mgY=/fit-in/200x150/filters:strip_icc()/pic2498158.jpg"}, #uuid "5e04b28e-010d-366b-af9d-020474ee6392" {:game/id #uuid "5e04b28e-010d-366b-af9d-020474ee6392", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 3001, :name "Layering"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2826, :name "Turn Order: Stat-Based"}), :new true, :name "Mobile Markets", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"}), :com.boardgamegeek.boardgame/max-play-time 80, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "344768", :languages (list "en"), :game/name "Mobile Markets: A Smartphone Inc. Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/SW5qyUXKriiJ8ynLX0j6Aw__thumb/img/5nCK4Q83jNIS_oc_SV0mLE8U7z4=/fit-in/200x150/filters:strip_icc()/pic6364797.jpg"}, #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" {:game/id #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2910, :name "Investment"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"} #:com.boardgamegeek.mechanic{:id 2829, :name "Turn Order: Claim Action"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Mombasa", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "172386", :languages (list "cz"), :game/name "Mombasa", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/VceWk5QVkgIp6rWDl5qHKQ__thumb/img/_4ZkvkgZey9R2OJOw_TqF426Qew=/fit-in/200x150/filters:strip_icc()/pic2611318.jpg"}, #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" {:game/id #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2904, :name "Loans"} #:com.boardgamegeek.mechanic{:id 2836, :name "Lose a Turn"} #:com.boardgamegeek.mechanic{:id 2911, :name "Ownership"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Monopoly", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "1406", :game/name "Monopoly", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/9nGoBZ0MRbi6rdH47sj2Qg__thumb/img/ezXcyEsHhS9iRxmuGe8SmiLLXlM=/fit-in/200x150/filters:strip_icc()/pic5786795.jpg"}, #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" {:game/id #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Monopoly Cheaters Edition", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "254617", :game/name "Monopoly Cheaters Edition", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/78dZB2GPUrjMXQyOnqZ65Q__thumb/img/mOJbxy0j7TRHx4epykdoyKNDEOA=/fit-in/200x150/filters:strip_icc()/pic4187117.jpg"}, #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" {:name "Monopoly Here & Now World Edition", :game/id #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c", :game/name "Monopoly Here & Now World Edition"}, #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" {:game/id #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Monopoly Jackpot", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "201890", :game/name "Monopoly Jackpot", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/30x4ifcezQlEXStSK3vSRg__thumb/img/GmvSu2Qd5T1r6JZRj73DgBOQcsY=/fit-in/200x150/filters:strip_icc()/pic3262276.jpg"}, #uuid "f8049db2-d889-3677-984e-4e2ce41de578" {:game/id #uuid "f8049db2-d889-3677-984e-4e2ce41de578", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Monopoly 80th Anniversary Edition", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "173637", :game/name "Monopoly: 80th Anniversary Edition", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/IiL8FBqK_BcuikjRZKezIQ__thumb/img/Dy7RlFc6nDFo5Re95Rkci6-lfNI=/fit-in/200x150/filters:strip_icc()/pic2427080.jpg"}, #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" {:game/id #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Monopoly Limerick Edition", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 120, :com.boardgamegeek.boardgame/id "300801", :game/name "Monopoly: Limerick Edition", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/8ILfC2W174MxPrA2wfaifw__thumb/img/ZntaNB4_2mPPc6fibqDq2vhVaaY=/fit-in/200x150/filters:strip_icc()/pic5216777.jpg"}, #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" {:game/id #uuid "b17747c8-2344-37e0-af25-4c86481d8b35", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Monopoly Ultimate Banking", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1072, :name "Electronic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "207167", :game/name "Monopoly: Ultimate Banking", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/tCcB6q7RjB-LcszCG1TCfQ__thumb/img/Dw1stW35naEWBlMLHVG8h_P0HJU=/fit-in/200x150/filters:strip_icc()/pic3188674.jpg"}, #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" {:game/id #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2018, :name "Campaign / Battle Card Driven"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "Monstrous", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "164775", :languages (list "en"), :game/name "Monstrous", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eF724u6DJlXUFnc3hBKrGQ__thumb/img/y_SRAOIaniPmZBiQ59OYNRJYOec=/fit-in/200x150/filters:strip_icc()/pic3297444.jpg"}, #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" {:game/id #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Monstrum", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/id "127426", :languages (list "cz"), :game/name "Monstrum", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CV7xiLrZo8rHdjD8yBVbvw__thumb/img/z3I-welI7QeetRLaOzYAD90_YV4=/fit-in/200x150/filters:strip_icc()/pic1365924.jpg"}, #uuid "4578b280-9265-3868-8670-e39b70b610f9" {:game/id #uuid "4578b280-9265-3868-8670-e39b70b610f9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :new true, :name "Moon Adventure", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "330403", :languages (list "en"), :game/name "Moon Adventure", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NkIgyVpeeoKW7i1t5M6YlA__thumb/img/91dTtDOrH-b2bRvWthjQu8ioMiM=/fit-in/200x150/filters:strip_icc()/pic6388850.png"}, #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" {:game/id #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "MoonQuake Escape", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "175516", :languages (list "en"), :game/name "MoonQuake Escape", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S48n6sA2U93zwrKDdXKkfw__thumb/img/w1IrqbOXxzyjc99CRxea_dQCRfc=/fit-in/200x150/filters:strip_icc()/pic2829035.jpg"}, #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" {:game/id #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2915, :name "Negotiation"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Moral Dilemma", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 20, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "167715", :languages (list "en"), :game/name "Moral Dilemma", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Mooqmdf2jP38oavcfZ5RDg__thumb/img/AZfnJTdnFGCWh78YAUZdE_decKc=/fit-in/200x150/filters:strip_icc()/pic3262426.jpg"}, #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" {:game/id #uuid "3b726f01-748c-32b9-ac65-408fdb259e18", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1050, :name "Ancient"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "25567", :languages (list "de" "en" "pl"), :game/name "Mozaika", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7VSlBiPWlFGBPm2niiWbCg__thumb/img/im70JKZmGxABdYDJdcATPg9axT4=/fit-in/200x150/filters:strip_icc()/pic344437.jpg"}, #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" {:game/id #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf", :com.boardgamegeek.boardgame/min-players 3, :name "Mr. Face", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "267945", :languages (list "de" "en" "fr" "it"), :game/name "Mr. Face", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/uBBBtbjmKDGJilb7bn9r8Q__thumb/img/pReg8AZr5HMH4uRg5SRjKrO30-w=/fit-in/200x150/filters:strip_icc()/pic5797033.png"}, #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" {:game/id #uuid "51c249b0-90c8-3a66-8732-f796a82e5382", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2967, :name "Hidden Movement"} #:com.boardgamegeek.mechanic{:id 2961, :name "Map Deformation"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"} #:com.boardgamegeek.category{:id 2710, :name "Post-Napoleonic"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "72287", :languages (list "en" "fr"), :game/name "Mr. PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nd44m6n6ykDCsHVt4wcEcQ__thumb/img/wpEJcfEdHyXDW1Kh3xbevgW2JuA=/fit-in/200x150/filters:strip_icc()/pic1519530.jpg"}, #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" {:game/id #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "1927", :languages (list "cz" "en"), :game/name "Munchkin", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/J-ts3MW0UhDzs621TR6cog__thumb/img/8hVkpMC5pDLr6ARI_4gI4N3aF5M=/fit-in/200x150/filters:strip_icc()/pic1871016.jpg"}, #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" {:game/id #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2866, :name "Targeted Clues"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Muse", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "234396", :languages (list "cz"), :game/name "Muse", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6gDD73LSCMrr7ab1LHCXCg__thumb/img/YmT4zvKoAkhx62AGUdeylS7mQig=/fit-in/200x150/filters:strip_icc()/pic3719954.jpg"}, #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" {:game/id #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Musee", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "163056", :languages (list "en"), :game/name "Musée", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S6dzLYuwDsYvzreZ8UAapg__thumb/img/fjXBTIZGJYt1vCcuHjLjaB3GuLs=/fit-in/200x150/filters:strip_icc()/pic2088837.jpg"}, #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" {:game/id #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "My Booty", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "221083", :languages (list "en"), :game/name "My Booty!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/coC-QGCrRZgx-O73RwTnzQ__thumb/img/33WbZE6k9Ju-LfhygSRmw1JYMgw=/fit-in/200x150/filters:strip_icc()/pic3433568.jpg"}, #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" {:game/id #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2864, :name "Force Commitment"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "My little Scythe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1104, :name "Math"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "226320", :languages (list "en"), :game/name "My Little Scythe", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/EhXCpSR6ambdYuKbrej3UQ__thumb/img/3znFvjc6uN6rossizk5I5eOr4Rk=/fit-in/200x150/filters:strip_icc()/pic4134810.jpg"}, #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" {:game/id #uuid "df4c4520-3102-33f1-9a51-ee304c193f23", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Mystic scrolls", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "198455", :languages (list "en"), :game/name "Mystic ScROLLS", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/9cwjyRGj3SBDeJyO17p2Qw__thumb/img/IZBiEizOIxVgTnXkVbgaxg-wY1g=/fit-in/200x150/filters:strip_icc()/pic3174074.jpg"}, #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" {:game/id #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Mythotopia", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "133632", :languages (list "en"), :game/name "Mythotopia", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Pk-IBl84HBPZWZQgQWkCpQ__thumb/img/a3sfzRClZ7sfj4Jyq6SJ8TdCQto=/fit-in/200x150/filters:strip_icc()/pic2257592.jpg"}, #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" {:game/id #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "New Corp Order", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "232478", :languages (list "en"), :game/name "New Corp Order", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UJL9d_WpRk3jvdEWO5incA__thumb/img/E5cfhNNliCz4XpMXDejzmZ8llRE=/fit-in/200x150/filters:strip_icc()/pic4026118.jpg"}, #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" {:game/id #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2903, :name "Automatic Resource Growth"} #:com.boardgamegeek.mechanic{:id 2978, :name "Grid Coverage"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2813, :name "Rondel"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Zoo New York", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "300877", :languages (list "cz"), :game/name "New York Zoo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/8vqr1uYik715mqDqy0W9vg__thumb/img/Bu97VesRjdbQO2PxfuOrdC6icd8=/fit-in/200x150/filters:strip_icc()/pic5673404.jpg"}, #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" {:game/id #uuid "32c24411-f63e-3a04-8648-0361f80ef58c", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :new true, :name "Nights of Fire: Battle for Budapest", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1069, :name "Modern Warfare"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 3, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "236125", :languages (list "en"), :game/name "Nights of Fire: Battle for Budapest", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iIbtNT3HzZymSB-Sfw5ipw__thumb/img/Go7odgg002xxa3_PjBzGmkCte6g=/fit-in/200x150/filters:strip_icc()/pic3869601.jpg"}, #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" {:game/id #uuid "36f8c047-0a0d-34e8-920b-337b779969ab", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Noctiluca", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "269752", :languages (list "cz"), :game/name "Noctiluca", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qQGBX-BW4SOuQMdm7pjZQg__thumb/img/3Q3aYBEbblKxEUU8HutRqydWcLU=/fit-in/200x150/filters:strip_icc()/pic4766236.jpg"}, #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" {:game/id #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"}), :name "North American Railways", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1034, :name "Trains"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "191438", :languages (list "en"), :game/name "North American Railways", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/EhFHGbpihB7KBNEuDe0bJw__thumb/img/EydatDnC9as4K-Oiel7ujVS8oSk=/fit-in/200x150/filters:strip_icc()/pic3847804.png"}, #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" {:game/id #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Now Boarding", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 2650, :name "Aviation / Flight"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1011, :name "Transportation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "231567", :languages (list "en"), :game/name "Now Boarding", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/yI1Zxy5JAgk7xFWpSqYX7w__thumb/img/0b4G8p3lZJJhtWpLeOetrGDHWdI=/fit-in/200x150/filters:strip_icc()/pic3710609.jpg"}, #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" {:game/id #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "OMG", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "181245", :languages (list "en"), :game/name "OMG", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nLpk3zLehjGSiWo76Oo9Yg__thumb/img/jrztxp2Re5S7ouhTSGyBdxnhjIc=/fit-in/200x150/filters:strip_icc()/pic2605033.jpg"}, #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" {:game/id #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"}), :name "Obscenity", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 16, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "243671", :languages (list "en"), :game/name "Obscenity: A Shameless Adult Party Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ezwhC52nLtbLDWwUYZlSZw__thumb/img/0J0jjINFUJ09Zk6XK4G_mW8SGpA=/fit-in/200x150/filters:strip_icc()/pic4373949.jpg"}, #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" {:game/id #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Octorage", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "279016", :languages (list "de" "en" "fr"), :game/name "Octorage", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/2TESBkMZ8CC9IAjMMwTqtA__thumb/img/9wpesj7ruvzdenelqzrkmRAFS-A=/fit-in/200x150/filters:strip_icc()/pic4715194.png"}, #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" {:game/id #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Boží Zboží", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "183840", :game/name "Oh My Goods!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nYIjEKh_0nYX48uD_tLawA__thumb/img/MCnURatf0lFmNOVLYEjABfN_uVY=/fit-in/200x150/filters:strip_icc()/pic3032677.jpg"}, #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" {:game/id #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Oink", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "5693", :game/name "Oink!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rhYdI6Oimeyfxs3JIGrpYw__thumb/img/0m8qHIbPqKIgAlJuByP3D7vEBq8=/fit-in/200x150/filters:strip_icc()/pic870993.jpg"}, #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" {:game/id #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Okiya", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "125311", :game/name "Okiya", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/a86BdUaCSfIqygVvStXsGQ__thumb/img/jAV9bZYZln9N21DaKOXWRp0e8vA=/fit-in/200x150/filters:strip_icc()/pic3711392.png"}, #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" {:game/id #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Om nom nom", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "147305", :languages (list "en"), :game/name "Om Nom Nom", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/DckIF9e9le75ev9CRNS0_w__thumb/img/0qeLCHolAAG6LGvq9-V0MHrCtTs=/fit-in/200x150/filters:strip_icc()/pic1765949.png"}, #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" {:game/id #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "One Night Revolution", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "176361", :languages (list "en"), :game/name "One Night Revolution", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0SFLHa5hNmtdL0LpqCN2kA__thumb/img/DBscKuzoek17BGUcjPLVgQeoNTc=/fit-in/200x150/filters:strip_icc()/pic2513302.jpg"}, #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" {:game/id #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2892, :name "Roles with Asymmetric Information"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "One night ultimate werewolf", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "147949", :languages (list "en"), :game/name "One Night Ultimate Werewolf", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/KLDb0vR3w8mfaHgIGF0gHw__thumb/img/ZgQsHsvdxXZr4DbMGUBSTArBp3o=/fit-in/200x150/filters:strip_icc()/pic1809823.jpg"}, #uuid "189f9b13-158d-379b-9440-05b9bc24a356" {:game/id #uuid "189f9b13-158d-379b-9440-05b9bc24a356", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "One week ultimate werewolf", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 7, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "252197", :languages (list "en"), :game/name "One Week Ultimate Werewolf", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Aw0CZqg-LgYK5YjVE6HReg__thumb/img/JmdwqeYZC4n1RHpTRwSLJ9kx46c=/fit-in/200x150/filters:strip_icc()/pic4119482.jpg"}, #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" {:game/id #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2946, :name "Pattern Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2861, :name "Static Capture"}), :new true, :name "Onitama", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "160477", :languages (list "en"), :game/name "Onitama", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/FZdihu8SibqQYtwfo77BdQ__thumb/img/3fX3AN6UMOIASL3Qev3zsQ6Uxy8=/fit-in/200x150/filters:strip_icc()/pic5032361.jpg"}, #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" {:languages (list "cz"), :name "Opraski Scenski Historie", :game/id #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f", :game/name "Opraski Scenski Historie"}, #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" {:languages (list "cz"), :name "Original nebo Kopie?", :game/id #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb", :game/name "Original nebo Kopie?"}, #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" {:game/id #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2861, :name "Static Capture"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Clovece nezlob se", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2136", :languages (list "cz"), :game/name "Pachisi", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/45Nb6goQqvPHD9hOut0ntg__thumb/img/ZtUXrh9wko9BQ3QLCMw9mU9Fjpw=/fit-in/200x150/filters:strip_icc()/pic516869.jpg"}, #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" {:languages (list "en"), :name "Pan Am the game", :game/id #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f", :game/name "Pan Am the game"}, #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" {:game/id #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Pandemic", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 2145, :name "Medical"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "30549", :languages (list "cz"), :game/name "Pandemic", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/S3ybV1LAp-8SnHIXLLjVqA__thumb/img/oqViRj6nVxK3m36NluTxU1PZkrk=/fit-in/200x150/filters:strip_icc()/pic1534148.jpg"}, #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" {:languages (list "en"), :name "Pandemic Cthulu", :game/id #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d", :game/name "Pandemic Cthulu"}, #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" {:game/id #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "Panic Lab", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "121073", :languages (list "cz"), :game/name "Panic Lab", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/LzsXWOG6ZA6x6TqB5H6F1g__thumb/img/1Mop0yzpQddJj3MF7Q_cC3y-P6Y=/fit-in/200x150/filters:strip_icc()/pic3488252.jpg"}, #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" {:languages (list "cz"), :name "Panic Mansion / Shaky Manor", :game/id #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a", :game/name "Panic Mansion / Shaky Manor"}, #uuid "44de8c27-9942-39ca-997c-57ff932fc882" {:game/id #uuid "44de8c27-9942-39ca-997c-57ff932fc882", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Party Alias", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1031, :name "Racing"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 24, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "43530", :languages (list "cz" "en"), :game/name "Party Alias", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/15IJm-xtFo5DlVC0I_KEVQ__thumb/img/OW1wylQIh-ly_SJY4mnF8TODfEQ=/fit-in/200x150/filters:strip_icc()/pic517373.jpg"}, #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" {:languages (list "en"), :name "Pass Ack Words", :game/id #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6", :game/name "Pass Ack Words"}, #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" {:game/id #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2948, :name "Resource to Move"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Passing through Petra", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "257966", :languages (list "en"), :game/name "Passing Through Petra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/q1cUKr4tuljXipsdemYUAw__thumb/img/Z1R49jE15RcqNQoUqHcBCg1s2aU=/fit-in/200x150/filters:strip_icc()/pic4257243.png"}, #uuid "33e20383-3807-3414-869c-7a3907d40b75" {:game/id #uuid "33e20383-3807-3414-869c-7a3907d40b75", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2914, :name "Increase Value of Unchosen Resources"} #:com.boardgamegeek.mechanic{:id 2900, :name "Market"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"}), :name "Pax Renaissance", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 2725, :name "Pike and Shot"} #:com.boardgamegeek.category{:id 1115, :name "Religious"} #:com.boardgamegeek.category{:id 1070, :name "Renaissance"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "198953", :languages (list "en"), :game/name "Pax Renaissance", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gIHITIenJOCIsO_vQNEE0w__thumb/img/68iODGupr7JuYEYiDofNJzxgEzM=/fit-in/200x150/filters:strip_icc()/pic3009233.jpg"}, #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" {:game/id #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2987, :name "Hidden Victory Points"} #:com.boardgamegeek.mechanic{:id 2900, :name "Market"} #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2884, :name "Sudden Death Ending"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Pax: Transhumanity", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "257732", :languages (list "en"), :game/name "Pax Transhumanity", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ByCgA7w4DMC1eKvUD-XajA__thumb/img/JflRs575_Lh-Tv1srmxKSrx91wU=/fit-in/200x150/filters:strip_icc()/pic6256870.png"}, #uuid "f750d160-d009-3c96-a630-eff035abfd6c" {:game/id #uuid "f750d160-d009-3c96-a630-eff035abfd6c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Peanut club", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "254846", :languages (list "en" "fr"), :game/name "Peanut Club", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/78_kYPImvhOVARKfNtEnSA__thumb/img/snNlushutBIx-VCwYt-zzQlHos8=/fit-in/200x150/filters:strip_icc()/pic4360500.jpg"}, #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" {:game/id #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "PI:NAME:<NAME>END_PIchvogel", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "257074", :languages (list "de" "en"), :game/name "Pechvogel", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HhomgrTG2FJKqCy4AfRUhQ__thumb/img/N13b1u3XxFvTKu32m4bWtZQ87qQ=/fit-in/200x150/filters:strip_icc()/pic4242837.jpg"}, #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" {:languages (list "cz"), :name "Penguins", :game/id #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143", :game/name "Penguins"}, #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" {:game/id #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2055, :name "Paper-and-Pencil"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "255697", :languages (list "en"), :game/name "Penk!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iIbjyUdVK00hELkxyeQDfg__thumb/img/P1ZoTqVtKDO3UIZKkPKyejTIyxs=/fit-in/200x150/filters:strip_icc()/pic4206098.png"}, #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" {:game/id #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Personally Incorrect", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "140840", :languages (list "en"), :game/name "Personally Incorrect", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/FBctEY9fJtIrk4hqbwhg2A__thumb/img/roixdL_YFGr5s0ati2grORqEagk=/fit-in/200x150/filters:strip_icc()/pic3206168.png"}, #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" {:languages (list "en"), :name "Pick & Pack", :game/id #uuid "edfa15bc-3235-3696-aaad-09e432fc6662", :game/name "Pick & Pack"}, #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" {:game/id #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2039, :name "Line Drawing"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Pictures", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "98026", :languages (list "en"), :game/name "Pictures", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/2ksVi_M5sLws57Y5dmZVOA__thumb/img/Ytcky0xrJF3bHzfIWmhZolI97RQ=/fit-in/200x150/filters:strip_icc()/pic991829.jpg"}, #uuid "f81386ae-7767-3f93-a560-c78df55109bb" {:game/id #uuid "f81386ae-7767-3f93-a560-c78df55109bb", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "117663", :languages (list "cz"), :game/name "Piraten kapern", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ASvNr8Z7n4uuXiIeKTCpjA__thumb/img/yFj9eUDNMh0UrCugHmxPouZoaM8=/fit-in/200x150/filters:strip_icc()/pic5755894.jpg"}, #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" {:game/id #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Pocket Madness", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1024, :name "Horror"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "201920", :languages (list "en"), :game/name "Pocket Madness", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6v8uO3HPOV1xMT9HlrUn6A__thumb/img/9ntOmLX333OuntfZ1uXoyyi8Co8=/fit-in/200x150/filters:strip_icc()/pic3171191.png"}, #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" {:game/id #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :new true, :name "Poetry for Neanderthals", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1036, :name "Prehistoric"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "312786", :languages (list "en"), :game/name "Poetry for Neanderthals", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CDlBjXSPT-3Zyrj8ENBkvQ__thumb/img/0ON18UcLepuwPLhwkRtRUjhvAZ8=/fit-in/200x150/filters:strip_icc()/pic5702797.jpg"}, #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" {:game/id #uuid "54b141a9-4bee-378e-b867-fd1d4729f014", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Zbodni Salát", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "274960", :languages (list "cz"), :game/name "Point Salad", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Xy0W9NtEpX0EVjwgxO3IEA__thumb/img/1gKeE2_50dXcL03gH3cEU-Ixj6c=/fit-in/200x150/filters:strip_icc()/pic4621571.png"}, #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" {:game/id #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Ponzi Scheme", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "180899", :languages (list "en"), :game/name "Ponzi Scheme", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/XrXpHvoeiA_cC1Caye1B7Q__thumb/img/z5CKVkv0-T3vFAikANagen7sjwE=/fit-in/200x150/filters:strip_icc()/pic5100985.jpg"}, #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" {:game/id #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "Port Royal", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "565", :languages (list "cz" "en"), :game/name "Port Royal", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/YieNLWVLKMERmrEosQsKOA__thumb/img/Vd8kb9AT204KNdE5GXBBK7JQL7g=/fit-in/200x150/filters:strip_icc()/pic248213.jpg"}, #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" {:languages (list "de" "en"), :name "PowerGrid", :new true, :game/id #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb", :game/name "PowerGrid"}, #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" {:languages (list "en"), :name "Profanity", :game/id #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069", :game/name "Profanity"}, #uuid "f7625727-1129-3703-96c0-442c8ac00dae" {:game/id #uuid "f7625727-1129-3703-96c0-442c8ac00dae", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2838, :name "Action Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2843, :name "Follow"} #:com.boardgamegeek.mechanic{:id 2987, :name "Hidden Victory Points"} #:com.boardgamegeek.mechanic{:id 2914, :name "Increase Value of Unchosen Resources"} #:com.boardgamegeek.mechanic{:id 2828, :name "Turn Order: Progressive"} #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"}), :name "Puerto Rico", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "3076", :languages (list "cz"), :game/name "Puerto Rico", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/QFiIRd2kimaMqTyWsX0aUg__thumb/img/5fLo89ChZH6Wzukk36bhZ-EpBS0=/fit-in/200x150/filters:strip_icc()/pic158548.jpg"}, #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" {:game/id #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"}), :name "QE", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "209136", :languages (list "en"), :game/name "Q.E.", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/taTddHmWN-n7BZbKWsmsKQ__thumb/img/V9sMeg-nlSiTMj4bFviRLBlY50E=/fit-in/200x150/filters:strip_icc()/pic4116760.jpg"}, #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" {:game/id #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "Quoridor", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1059, :name "Maze"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "624", :game/name "Quoridor", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/I1YNAhee09mryaqfEo8MwA__thumb/img/9TJaxgoMUkiMhAGSYM8-0o1ICpg=/fit-in/200x150/filters:strip_icc()/pic3488232.jpg"}, #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" {:name "Quorridor", :game/id #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311", :game/name "Quorridor"}, #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" {:game/id #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Qwirkle", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "25669", :game/name "Qwirkle", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/k7zHj8j_a6uUAtXUt5Fvuw__thumb/img/APPui4zwBuwAIHXSTW6UxYcY6Ow=/fit-in/200x150/filters:strip_icc()/pic309353.jpg"}, #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" {:languages (list "en"), :name "Railroad Ink", :game/id #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183", :game/name "Railroad Ink"}, #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" {:languages (list "en"), :name "Railroad ink", :game/id #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa", :game/name "Railroad ink"}, #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" {:game/id #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Pozvednete Cise", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "202732", :languages (list "cz"), :game/name "Raise Your Goblets", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/M-QMEFRd2LkfyiXt6YFbwg__thumb/img/p4xMVTX4wWReahsdAE7hMgeP6uk=/fit-in/200x150/filters:strip_icc()/pic3132188.jpg"}, #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" {:game/id #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Realm of Wonder", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "162580", :game/name "Realm of Wonder", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/e0pz2fI8Hr8DGKcDskSwbQ__thumb/img/v1T8ZkbbCbLw8o3KQXhNEaUxebY=/fit-in/200x150/filters:strip_icc()/pic2204281.jpg"}, #uuid "c64e760d-cd41-31b1-9626-a196593146fa" {:game/id #uuid "c64e760d-cd41-31b1-9626-a196593146fa", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Red 7", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "161417", :languages (list "cz"), :game/name "Red7", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7zH6Kt5ebWEixjDGmHweNA__thumb/img/PVkJyJhCtzo1ZwKO4iuRaqUyKJc=/fit-in/200x150/filters:strip_icc()/pic2247258.png"}, #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" {:game/id #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Hledá se Hrdina", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "135116", :languages (list "cz"), :game/name "Rent a Hero", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pnhx0DJsrkz1VfDU7c3Wtg__thumb/img/y1ksV-fuU5rQWuv4wzZEz_KolZs=/fit-in/200x150/filters:strip_icc()/pic2932852.jpg"}, #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" {:game/id #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :new true, :name "Rest in Peace", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "319680", :languages (list "en"), :game/name "Rest In Peace", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/jD77V4uV2mSG96tX8Ur0yQ__thumb/img/hOcvflu7DypGuySG4F_39c-NivE=/fit-in/200x150/filters:strip_icc()/pic5663592.jpg"}, #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" {:game/id #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2", :com.boardgamegeek.boardgame/min-players 2, :name "Revolution", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1069, :name "Modern Warfare"}), :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/id "38118", :languages (list "de"), :game/name "Revolution", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/piMBdZjr9l82WAJuRwmLHg__thumb/img/bBfNJcCvAJWnQPfP4hgbJSyo9xM=/fit-in/200x150/filters:strip_icc()/pic1448389.jpg"}, #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" {:languages (list "en"), :name "Rick & Morty: Totall Rickall", :game/id #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748", :game/name "Rick & Morty: Totall Rickall"}, #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" {:game/id #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Rick and Morty: The Ricks must be Crazy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "241731", :languages (list "en"), :game/name "Rick and Morty: The Ricks Must Be Crazy Multiverse Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/I1fNtBe8tCMt_6qcn6D-EA__thumb/img/WRQIfu_klm9X1XGOU3ssXnHA_fM=/fit-in/200x150/filters:strip_icc()/pic3880225.png"}, #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" {:game/id #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"}), :name "Risk: Game of Thrones", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"} #:com.boardgamegeek.category{:id 1019, :name "Wargame"}), :com.boardgamegeek.boardgame/max-play-time 240, :com.boardgamegeek.boardgame/max-players 7, :com.boardgamegeek.boardgame/min-play-time 120, :com.boardgamegeek.boardgame/id "179719", :languages (list "en"), :game/name "Risk: Game of Thrones", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UNici3J_3qZIYeEapfaLpg__thumb/img/omzrXKLCEvYqZR8Kf0zeSZbRw3g=/fit-in/200x150/filters:strip_icc()/pic2568573.jpg"}, #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" {:game/id #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "51319", :languages (list "cz"), :game/name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5i7RNi6o-1THM0zPKE3obg__thumb/img/vL7T-0G-KxMNZQg-uWTNEOOnPkE=/fit-in/200x150/filters:strip_icc()/pic528291.jpg"}, #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" {:languages (list "en"), :name "Rock, Paper, Wizard", :game/id #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf", :game/name "Rock, Paper, Wizard"}, #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" {:game/id #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"}), :name "Rolit", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "8243", :languages (list "en"), :game/name "Rolit", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wymI6qRpGHF-hD1Y34QbkA__thumb/img/6dj4-736Cf1IgqnR_PgTkvQTe5s=/fit-in/200x150/filters:strip_icc()/pic336560.jpg"}, #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" {:game/id #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2839, :name "Action Retrieval"} #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2843, :name "Follow"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Roll for the Galaxy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "132531", :languages (list "en"), :game/name "Roll for the Galaxy", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nhoyoLpYPC2b3UiJ5kJ0yg__thumb/img/KVmexHT6N_fquB1CQl9QRNYCvD0=/fit-in/200x150/filters:strip_icc()/pic1473629.jpg"}, #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" {:languages (list "en"), :name "Rome & Carthrage", :game/id #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f", :game/name "Rome & Carthrage"}, #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" {:game/id #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Royals", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "154495", :game/name "Royals", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6HtTciyZmT8d_RnDlIOlAg__thumb/img/0dDXrkV7wcVHdzbHuZtf-SC21NM=/fit-in/200x150/filters:strip_icc()/pic1917555.png"}, #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" {:game/id #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "Sabotage", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "1142", :languages (list "en"), :game/name "Sabotage", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/t0qDsOOT4Yb8XPBLI3c4TA__thumb/img/l-xrZRw-_tORXb9LfkeWLY4a_Z4=/fit-in/200x150/filters:strip_icc()/pic301507.jpg"}, #uuid "af817d47-9021-3806-800d-7ef8dab08024" {:game/id #uuid "af817d47-9021-3806-800d-7ef8dab08024", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2959, :name "Map Addition"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"}), :name "Saboteur", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "9220", :game/name "Saboteur", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0vJwP6NGa7GHPZKC3gplUw__thumb/img/B3j-is62fP09eHP34uFG_gsxNQs=/fit-in/200x150/filters:strip_icc()/pic3989824.jpg"}, #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" {:game/id #uuid "bb7745e6-fe51-351f-843c-5012bd13d334", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"}), :name "Saboteur: The Duel", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "168215", :languages (list "cz"), :game/name "Saboteur: The Duel", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/2HQMz_qehqPHAsn12h-o4w__thumb/img/BZJsX4-a803QfAn9_uvfx2mj4vE=/fit-in/200x150/filters:strip_icc()/pic3989510.png"}, #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" {:game/id #uuid "1fff84e0-9d09-3677-a846-84f01c21b161", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Salem 1692", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 35, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "175549", :languages (list "en"), :game/name "Salem 1692", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/xUurReSy2Amlx4hGj1fPvQ__thumb/img/IiiUFNDZKGNNDls_AhD0-DE7Ba0=/fit-in/200x150/filters:strip_icc()/pic4204062.jpg"}, #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" {:game/id #uuid "113e202b-52db-3631-b4c4-7027d1edccf5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2948, :name "Resource to Move"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Santiago de Cuba", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "104347", :languages (list "en"), :game/name "Santiago de Cuba", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/v4Rk-agCbbmMNo3vUQ1IcA__thumb/img/470q2hMMP1V-75tKqU7OBh6WzjU=/fit-in/200x150/filters:strip_icc()/pic1918128.jpg"}, #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" {:game/id #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2944, :name "Three Dimensional Movement"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Santorini", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 3, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "9963", :languages (list "en"), :game/name "Santorini", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZjP5gU9SCluEARbZnYtb_A__thumb/img/rEOJAzchz4LrBWvBkQILZQk7Mf4=/fit-in/200x150/filters:strip_icc()/pic42278.jpg"}, #uuid "20b16954-6c66-3536-b816-f13d464da44c" {:game/id #uuid "20b16954-6c66-3536-b816-f13d464da44c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "181955", :languages (list "de"), :game/name "Sarkophag", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wBTmZnUA9cR1Cme1LePceg__thumb/img/7cYYnDb4nLN8EtBpOR9oMvrORyk=/fit-in/200x150/filters:strip_icc()/pic2617439.jpg"}, #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" {:game/id #uuid "abcdf625-6664-306b-88db-9848e46fc0e8", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Say What?", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1072, :name "Electronic"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "32196", :languages (list "en"), :game/name "Say What?", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/LYvG1qBhqJpTq0StWS5_JQ__thumb/img/Dkhr-ZHWQoWmet0EHaOSycgkWL0=/fit-in/200x150/filters:strip_icc()/pic296492.jpg"}, #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" {:game/id #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2055, :name "Paper-and-Pencil"}), :name "Scattergories", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2381", :languages (list "en"), :game/name "Scattergories", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eIL4hvMb7ZPgizc7BZOh-g__thumb/img/sx0XxYqv0FtsIp-RoW-5C42sLOc=/fit-in/200x150/filters:strip_icc()/pic4994410.jpg"}, #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" {:game/id #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Skol ty Skoty!", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "372", :languages (list "cz"), :game/name "Schotten Totten", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/69mwXe7c6HNYmT6S35Y4zg__thumb/img/97DW-2XWDrSSkgy3XnUJ7f7tLiQ=/fit-in/200x150/filters:strip_icc()/pic2932872.jpg"}, #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" {:game/id #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Scopa", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1045, :name "Memory"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "15889", :game/name "Scopa", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CGdqzoYIqmcWmVVnNtbrGw__thumb/img/k6VnPZink59LA3xjUdtZSTmjXzs=/fit-in/200x150/filters:strip_icc()/pic1517475.jpg"}, #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" {:game/id #uuid "645ab7f6-09eb-3401-988d-97cd930668c1", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2967, :name "Hidden Movement"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Scotland Yard", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1097, :name "Travel"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "438", :languages (list "en"), :game/name "Scotland Yard", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NbHZjHmQcA5_TenhVJtJ3w__thumb/img/BfD9cR1-u_qNUNNZ2i4Bg8XKYhg=/fit-in/200x150/filters:strip_icc()/pic4527702.jpg"}, #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" {:game/id #uuid "71e79ef8-0600-3398-990c-febe3b0b758d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"}), :new true, :name "Scout", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1059, :name "Maze"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "26681", :languages (list "en"), :game/name "Scout", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bpbkU9dPYc100p15Su36_g__thumb/img/LVogRviWw8cfogWcE0yJoOY05yg=/fit-in/200x150/filters:strip_icc()/pic200411.jpg"}, #uuid "77933845-adf8-3758-a686-a08ea46f015e" {:game/id #uuid "77933845-adf8-3758-a686-a08ea46f015e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Scrabble", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "320", :languages (list "en"), :game/name "Scrabble", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/mVmmntn2oQd0PfFrWBvwIQ__thumb/img/RUmuGCB40FQH0en0R2nrcsSO7DE=/fit-in/200x150/filters:strip_icc()/pic404651.jpg"}, #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" {:name "Scracker", :game/id #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9", :game/name "Scracker"}, #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" {:game/id #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2838, :name "Action Drafting"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2864, :name "Force Commitment"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2886, :name "King of the Hill"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2851, :name "Narrative Choice / Paragraph"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2849, :name "Tech Trees / Tech Tracks"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2874, :name "Victory Points as a Resource"}), :name "Scythe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 115, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "169786", :game/name "Scythe", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/7k_nOxpO9OGIjhLq2BUZdA__thumb/img/eQ69OEDdjYjfKg6q5Navee87skU=/fit-in/200x150/filters:strip_icc()/pic3163924.jpg"}, #uuid "5b444b22-2047-3124-af08-48687f72a6b5" {:game/id #uuid "5b444b22-2047-3124-af08-48687f72a6b5", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Secret Hitler", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1001, :name "Political"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "188834", :game/name "Secret Hitler", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rAQ3hIXoH6xDcj41v9iqCg__thumb/img/xA2T7PiwN3Z8pwAksicoCOA1tf0=/fit-in/200x150/filters:strip_icc()/pic5164305.jpg"}, #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" {:name "Settlers of Catan", :game/id #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386", :game/name "Settlers of Catan"}, #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" {:name "Settlers of Catan Jr.", :game/id #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da", :game/name "Settlers of Catan Jr."}, #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" {:languages (list "en"), :name "Sh*PI:NAME:<NAME>END_PI HPI:NAME:<NAME>END_PI", :game/id #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf", :game/name "Sh*t Happens"}, #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" {:game/id #uuid "7bd8e302-1270-3448-8815-58d1f6da0834", :com.boardgamegeek.boardgame/min-players 2, :name "Sheep dog", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "255609", :languages (list "en"), :game/name "Sheep Dog", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/klhlFwH-ZF6OUUBxXcQ5xQ__thumb/img/9INQR0kOX6NGHmDnVO1XTEEdm_o=/fit-in/200x150/filters:strip_icc()/pic4334235.jpg"}, #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" {:game/id #uuid "07a34867-4397-3448-a7e6-5b70ca021d45", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2876, :name "Race"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :new true, :name "Sheepy Time", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "324242", :languages (list "en"), :game/name "Sheepy Time", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eNpXmxU-DynH-5ZkMxwksQ__thumb/img/9RS4gNjaKvgrwXAQHE-iYtMz4sY=/fit-in/200x150/filters:strip_icc()/pic5777745.png"}, #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" {:game/id #uuid "01f7b705-9b33-3897-969b-343e8a6e682e", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2913, :name "Bribery"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2915, :name "Negotiation"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "157969", :languages (list "en"), :game/name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BBgLFKUzr6tcKtlIM2JSFw__thumb/img/JD5L_XrtkaKINUj8ILZqFMGcTsE=/fit-in/200x150/filters:strip_icc()/pic2075830.jpg"}, #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" {:game/id #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1", :com.boardgamegeek.boardgame/min-players 2, :new true, :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "149869", :languages (list "en"), :game/name "Sherlock 13", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/qUqySSzXr8QXZbfg8k_M1Q__thumb/img/barvaBLDqZYe282NLmbo_Sg51A4=/fit-in/200x150/filters:strip_icc()/pic5857846.jpg"}, #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" {:languages (list "en"), :name "PI:NAME:<NAME>END_PI hPI:NAME:<NAME>END_PImes consulting detective", :game/id #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6", :game/name "Sherlock holmes consulting detective"}, #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" {:game/id #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2866, :name "Targeted Clues"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Shifty Eyed Spies", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "232830", :languages (list "en"), :game/name "Shifty Eyed Spies", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/J8GvDIigfMdxT9MoMHR01Q__thumb/img/EWVfiXLL6HFexzDlxXNU_Q386sI=/fit-in/200x150/filters:strip_icc()/pic4372703.jpg"}, #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" {:game/id #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Shuffle Heroes", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1024, :name "Horror"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "177542", :languages (list "en"), :game/name "Shuffle Heroes", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6hK_G51Chsas-ciJjHFLIQ__thumb/img/fUkHaTverNSEjaL3rVwjFXiLRMQ=/fit-in/200x150/filters:strip_icc()/pic2527161.png"}, #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" {:game/id #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "PI:NAME:<NAME>END_PIk", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "255037", :languages (list "en"), :game/name "Silk", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/09W9RVgQH3iczXgNpc4t4A__thumb/img/7Gnu1fAzXwPA83uqNtMtd5fobvo=/fit-in/200x150/filters:strip_icc()/pic4232947.jpg"}, #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" {:game/id #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Skull", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1038, :name "Sports"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "67466", :languages (list "en"), :game/name "Skull", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/4FvrOFxgPqlGmO56WS08dg__thumb/img/-DGFjUF0NHZo-6U4lcmE46utf-E=/fit-in/200x150/filters:strip_icc()/pic744864.jpg"}, #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" {:game/id #uuid "b172271f-a27d-3300-9b46-7f9825f0727e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "180599", :languages (list "en"), :game/name "Sly Dice", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/IZb7Sf1s_auwNn3ayfVB2Q__thumb/img/LxewU81q9qZcteJPHyhuegZxgmo=/fit-in/200x150/filters:strip_icc()/pic2653414.png"}, #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" {:game/id #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2932, :name "Auction: Dutch Priority"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2987, :name "Hidden Victory Points"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"} #:com.boardgamegeek.mechanic{:id 2874, :name "Victory Points as a Resource"}), :name "Small world", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 80, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "40692", :languages (list "en"), :game/name "Small World", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/aoPM07XzoceB-RydLh08zA__thumb/img/o3Bw9heVDJRgPYlI_PksCvLAgnM=/fit-in/200x150/filters:strip_icc()/pic428828.jpg"}, #uuid "568da493-2833-3009-ad26-7108e0683081" {:game/id #uuid "568da493-2833-3009-ad26-7108e0683081", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "Desítka", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "241590", :languages (list "cz"), :game/name "Smart10", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pwa0lKfmlE4PvFo-YVxrLQ__thumb/img/4RXK5M7g8_GRW_2HjyLdTjS3_fw=/fit-in/200x150/filters:strip_icc()/pic4945756.jpg"}, #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" {:game/id #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 3004, :name "Deck Construction"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"}), :name "Smash-UP", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 2481, :name "Zombies"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "122522", :languages (list "en"), :game/name "Smash Up", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/c1DOHkXD35OcqfPoxoSXlA__thumb/img/kdzBzdj4prsoztFNEFZ6eWv1RVI=/fit-in/200x150/filters:strip_icc()/pic1269874.jpg"}, #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" {:game/id #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4", :com.boardgamegeek.boardgame/min-players 2, :name "Snake Oil", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"}), :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/id "19285", :languages (list "en"), :game/name "Snake Oil", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/BauWTfEUjkjxdpwtPHMLXQ__thumb/img/SfkJjYEvCG5AQ1tOeZZVFEVfSuA=/fit-in/200x150/filters:strip_icc()/pic88607.jpg"}, #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" {:languages (list "cz"), :name "Sneci Zavody", :game/id #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce", :game/name "Sneci Zavody"}, #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" {:name "Soq", :game/id #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20", :game/name "Soq"}, #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" {:game/id #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "Space Bowl", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 35, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "287580", :languages (list "en"), :game/name "Space Bowl", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/f_VqSLk0LsED8c53A0V6_w__thumb/img/lUi45L_gzordC8q1PAWncdYZSqc=/fit-in/200x150/filters:strip_icc()/pic4919382.jpg"}, #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" {:game/id #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2860, :name "Flicking"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"} #:com.boardgamegeek.mechanic{:id 2953, :name "Programmed Movement"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Space Cadets", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "123096", :languages (list "en"), :game/name "Space Cadets", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/YTPL0ZG_8Y4EQfiCXZzvrg__thumb/img/2gOYyhKR6WH8EuemztSCMQvqNbo=/fit-in/200x150/filters:strip_icc()/pic1362404.jpg"}, #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" {:game/id #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :new true, :name "Space Dragons", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "329084", :languages (list "en"), :game/name "Space Dragons", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/47A7oUEpu-qwO988YOTkBA__thumb/img/N6VULco9RdpHfMpXS2Nr9Tc89_4=/fit-in/200x150/filters:strip_icc()/pic5915757.jpg"}, #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" {:game/id #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :name "Spaghetti", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 5, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "60794", :game/name "Spaghetti"}, #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" {:game/id #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2967, :name "Hidden Movement"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2846, :name "Once-Per-Game Abilities"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Specter ops", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "155624", :languages (list "en"), :game/name "Specter Ops", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/lVFArtZrwFEDo23sDcSMEg__thumb/img/pky3rb47HJv8jcNPjV3jbDB7o4c=/fit-in/200x150/filters:strip_icc()/pic2486481.jpg"}, #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" {:game/id #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"}), :name "Speculation", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "1036", :languages (list "en"), :game/name "Speculation", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/DIOqNWsW565yd3hPNun2UQ__thumb/img/8Bu2i8e03TSByVt95QUy4NoIxpQ=/fit-in/200x150/filters:strip_icc()/pic4029529.jpg"}, #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" {:game/id #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"}), :name "Speed Dice", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "191473", :game/name "Speed Dice", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ShmaBebkwhHnhMoi5favDg__thumb/img/o_ZrVDn3s01Pg50FuWNfjYHLkRM=/fit-in/200x150/filters:strip_icc()/pic2834183.jpg"}, #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" {:game/id #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :new true, :name "Spicy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "299169", :languages (list "en"), :game/name "Spicy", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/eLJJ7f5I106enEFkSfxmnQ__thumb/img/nyTH5PgSWie1DZMZVJ7tnzEL-hk=/fit-in/200x150/filters:strip_icc()/pic5181748.png"}, #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" {:game/id #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2978, :name "Grid Coverage"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Spring Meadow", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "253684", :languages (list "en"), :game/name "Spring Meadow", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/RyoXSs5ukUtep7WbiWqTLg__thumb/img/Ev9hcbV_yI-PKaRqY8ZZSVLJpPY=/fit-in/200x150/filters:strip_icc()/pic4149719.jpg"}, #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" {:game/id #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Spy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "9201", :languages (list "en"), :game/name "Spy", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5fO7faqykFXDWbcuj0THZQ__thumb/img/mPXjz6iHNP3uyuYzCAA33AETHXo=/fit-in/200x150/filters:strip_icc()/pic38682.jpg"}, #uuid "dee45e08-5103-32ec-93b7-17d391b64576" {:game/id #uuid "dee45e08-5103-32ec-93b7-17d391b64576", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2892, :name "Roles with Asymmetric Information"} #:com.boardgamegeek.mechanic{:id 2866, :name "Targeted Clues"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Spyfall", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "166384", :languages (list "en"), :game/name "Spyfall", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ehx72XRdSeQHISVXcZVnHg__thumb/img/sPJVWjzGcEpiseZGdoD6HNR9nRI=/fit-in/200x150/filters:strip_icc()/pic2453926.jpg"}, #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" {:game/id #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2932, :name "Auction: Dutch Priority"} #:com.boardgamegeek.mechanic{:id 2850, :name "Events"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Spyrium", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "137269", :languages (list "en"), :game/name "Spyrium", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ze4QFonaGDFj9QTapBQYlg__thumb/img/opVobJGfklKTacqs512ty9kq5QE=/fit-in/200x150/filters:strip_icc()/pic1808509.jpg"}, #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" {:game/id #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"}), :name "Squadro", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "245222", :game/name "Squadro", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/WnpSuWccYdjrLDaAqaDCPw__thumb/img/eA6wQK1rtkYLUEk_9Viq940QGpM=/fit-in/200x150/filters:strip_icc()/pic4210130.jpg"}, #uuid "51817160-093d-3773-957a-662779bebec9" {:game/id #uuid "51817160-093d-3773-957a-662779bebec9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Squirrel rush", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "199690", :languages (list "en"), :game/name "Squirrel Rush", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rAh8TQNb6ZIelgmaonDPUQ__thumb/img/q7g0f8h4SWc9dLkbd5A9g7jLAcg=/fit-in/200x150/filters:strip_icc()/pic3018118.jpg"}, #uuid "56be7020-8ac5-312f-9c02-a912103646d9" {:game/id #uuid "56be7020-8ac5-312f-9c02-a912103646d9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Star Flux", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "102104", :languages (list "en"), :game/name "Star Fluxx", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/4rafBr5oDBZVSzN7ije3ZA__thumb/img/Pfr3nT9aYUJC6kEy0PArEeONLpM=/fit-in/200x150/filters:strip_icc()/pic1059779.jpg"}, #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" {:game/id #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Star Trek Fleet Captains", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "79127", :languages (list "en"), :game/name "Star Trek: Fleet Captains", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UqnetX2v84p9ZMpzB8GiDw__thumb/img/2MTCJvG13SbBcF92yo-4wuGuY10=/fit-in/200x150/filters:strip_icc()/pic1081488.jpg"}, #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" {:game/id #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Stay away", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "158392", :languages (list "en"), :game/name "Stay Away!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/oQjTzwZ07k7K32ix42v9vQ__thumb/img/craD998lI9Qp7TYfQS9TrOnif1k=/fit-in/200x150/filters:strip_icc()/pic3494983.png"}, #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" {:game/id #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "Stratego", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1051, :name "Napoleonic"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "1917", :languages (list "en"), :game/name "Stratego", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/O3JZyf9nB_2tGl4jpj8SPw__thumb/img/Yo80CtI2QTxVEXDWvjhkc6iYsMo=/fit-in/200x150/filters:strip_icc()/pic25644.jpg"}, #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" {:game/id #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Osadnici z Katanu Rychla karetni hra", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1029, :name "City Building"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "91534", :languages (list "cz"), :game/name "Struggle for Catan", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/odRECA_s_wJWJnFHovbb0g__thumb/img/CPhroaAPBNta7BCp1M69h8ArEKs=/fit-in/200x150/filters:strip_icc()/pic3063589.jpg"}, #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" {:game/id #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2959, :name "Map Addition"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Sub Terra", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1059, :name "Maze"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "204472", :languages (list "en"), :game/name "Sub Terra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/47Z9FcLD20NDHdRYUaF_XA__thumb/img/I6Uog8mnrK4MgjiQlIMGcrQ01r8=/fit-in/200x150/filters:strip_icc()/pic3904427.png"}, #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" {:languages (list "en"), :name "Subterra", :game/id #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f", :game/name "Subterra"}, #uuid "875b8289-de41-3672-8c92-95b6a689ff43" {:languages (list "en" "pl"), :name "Suits, the", :game/id #uuid "875b8289-de41-3672-8c92-95b6a689ff43", :game/name "Suits, the"}, #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" {:game/id #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Summoner Wars", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "58281", :languages (list "en"), :game/name "Summoner Wars", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/EWi-utp09EIJnwia_o_Taw__thumb/img/vEFkO1QccS2LQpL7fgX7-v1hZhg=/fit-in/200x150/filters:strip_icc()/pic5152378.png"}, #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" {:game/id #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Super Farmer: The Card Game", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "286147", :languages (list "en" "pl"), :game/name "Super Farmer: The Card Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/PAedUfUJ5gW0vtNfGHDVAg__thumb/img/mSf3m6Gb7F5mHCTUJghR52DVMhM=/fit-in/200x150/filters:strip_icc()/pic4966239.png"}, #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" {:languages (list "cz"), :name "SuperSpion / Spyfall", :game/id #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd", :game/name "SuperSpion / Spyfall"}, #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" {:game/id #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Supervillain this galaxy is mine", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "223573", :languages (list "en"), :game/name "Supervillain: This Galaxy Is Mine!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/m6WHe0nNunrTTKwvYJyyFg__thumb/img/ttRdI77V230dCPyC3AlxrNbI_Ms=/fit-in/200x150/filters:strip_icc()/pic3488140.jpg"}, #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" {:game/id #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Sushi Go!", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "133473", :game/name "Sushi Go!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/EPdI2KbLVtpGWLgL_eJLFg__thumb/img/6fDvIObIG-oxTDWNaf8l9mchWMk=/fit-in/200x150/filters:strip_icc()/pic5885690.jpg"}, #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" {:game/id #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "Sweet Nose", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1098, :name "Number"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "179548", :languages (list "en"), :game/name "Sweet Nose", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Mxns4HExaB42Rdj0Rm9eag__thumb/img/zQ-ZXDJNtoRvd6FPu98KURcaEJ4=/fit-in/200x150/filters:strip_icc()/pic3052668.jpg"}, #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" {:game/id #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"}), :new true, :name "Swipe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "16807", :languages (list "en"), :game/name "Swipe", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/YFn_ZUqa_ixHhmRCU0lqAQ__thumb/img/pGSfGur3zROciDXpzb-YADiUDlQ=/fit-in/200x150/filters:strip_icc()/pic3782673.png"}, #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" {:game/id #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2962, :name "Move Through Deck"} #:com.boardgamegeek.mechanic{:id 2851, :name "Narrative Choice / Paragraph"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Time Stories", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "146508", :languages (list "cz"), :game/name "T.I.M.E Stories", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/XmwCsjQ3C1Ul53ZN2o8Q-Q__thumb/img/tTU1YVtab-cN5gCdagINowvVA2g=/fit-in/200x150/filters:strip_icc()/pic2617634.png"}, #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" {:game/id #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2078, :name "Point to Point Movement"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Trails", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1084, :name "Environmental"} #:com.boardgamegeek.category{:id 1097, :name "Travel"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "338628", :languages (list "en"), :game/name "TRAILS", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/alEgV88cpqFtaHAklI6lbw__thumb/img/Zjwu-ZXktck4EIrVDhMqjLsZmsQ=/fit-in/200x150/filters:strip_icc()/pic6214088.jpg"}, #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" {:game/id #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"}), :new true, :name "Tabannusi: Builders of Ur", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1029, :name "City Building"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 120, :com.boardgamegeek.boardgame/id "316786", :languages (list "en"), :game/name "Tabannusi: Builders of Ur", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0WmXXnvravcDiiQvJum0xA__thumb/img/3x8ADI1ZjsvXVziRdeGFOWLbZJ0=/fit-in/200x150/filters:strip_icc()/pic6428410.jpg"}, #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" {:game/id #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Taboo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "1111", :languages (list "en"), :game/name "Taboo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/e8wVvax1VqQkgCu_AST5Aw__thumb/img/liOKssTUHRIIVYERQgyHSNK33Qk=/fit-in/200x150/filters:strip_icc()/pic212946.jpg"}, #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" {:game/id #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "Taco Cat Goat Cheese Pizza", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "253664", :languages (list "en"), :game/name "Taco Cat Goat Cheese Pizza", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Huss90M3Dw69vZKsl6COaw__thumb/img/FT3OeUFrnFGZXukJbHNX9bcvQvY=/fit-in/200x150/filters:strip_icc()/pic5197313.png"}, #uuid "b8909580-a299-3ec5-848c-548f38510b72" {:game/id #uuid "b8909580-a299-3ec5-848c-548f38510b72", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Tri PI:NAME:<NAME>END_PIala PI:NAME:<NAME>END_PIasatka", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "135649", :languages (list "cz"), :game/name "Tales & Games: The Three Little Pigs", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rdSKRuh85xv6MmHBn9-aUQ__thumb/img/uog0ckrEef5Y140153OlcSn6Dqw=/fit-in/200x150/filters:strip_icc()/pic1701673.jpg"}, #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" {:game/id #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Team up", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"} #:com.boardgamegeek.category{:id 1011, :name "Transportation"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "235511", :languages (list "en"), :game/name "Team UP!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6hqatvV_uhGWebNPWzj4lA__thumb/img/Ja6pyHziaDDIi_2_jRCXUGNKWm0=/fit-in/200x150/filters:strip_icc()/pic3788130.jpg"}, #uuid "6b9a2464-282c-396d-a918-afde2db81cde" {:game/id #uuid "6b9a2464-282c-396d-a918-afde2db81cde", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2003, :name "Rock-Paper-Scissors"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Super Cats", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "279014", :languages (list "en" "fr"), :game/name "Teenage Mutant Ninja Turtles: Turtle Power Card Game", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bgjK-BduP2X3lgMmz1UjIg__thumb/img/uFUYESFRF06ugeLajX5nY9_rWww=/fit-in/200x150/filters:strip_icc()/pic6480478.jpg"}, #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" {:game/id #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Tension", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "1595", :languages (list "en"), :game/name "Tension", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/OzApxKxeNDjcEsM889qLog__thumb/img/wThBOcdWzhZDF9QAheswm6Go9v0=/fit-in/200x150/filters:strip_icc()/pic363584.jpg"}, #uuid "66437274-239d-371f-a5d1-71102dca56e3" {:languages (list "en"), :name "Tension Master", :game/id #uuid "66437274-239d-371f-a5d1-71102dca56e3", :game/name "Tension Master"}, #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" {:languages (list "cz"), :name "Teraformace Marsu", :game/id #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd", :game/name "Teraformace Marsu"}, #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" {:game/id #uuid "9c557202-449d-3095-b805-89c2e6e0fe50", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"}), :name "Zeme", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "153507", :languages (list "terra"), :game/name "Terra", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/oisIhweNPvYGrTounfOr_A__thumb/img/CAOGSfBBkYezI4bVVyAP1fwv1ww=/fit-in/200x150/filters:strip_icc()/pic2566394.jpg"}, #uuid "e154f5ce-d498-3840-a559-661a996d4d09" {:game/id #uuid "e154f5ce-d498-3840-a559-661a996d4d09", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Terra Evolution Tree of life", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 1036, :name "Prehistoric"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "111426", :game/name "Terra Evolution: Tree of Life", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kYK_QyuZLxPCEnYo0VoH9A__thumb/img/iM5YOwWPk2BGRfhb-fRp5gU_cGI=/fit-in/200x150/filters:strip_icc()/pic2621857.jpg"}, #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" {:game/id #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2914, :name "Increase Value of Unchosen Resources"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2849, :name "Tech Trees / Tech Tracks"} #:com.boardgamegeek.mechanic{:id 2830, :name "Turn Order: Pass Order"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"} #:com.boardgamegeek.mechanic{:id 2874, :name "Victory Points as a Resource"}), :name "Terra Mystica", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 150, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "120677", :languages (list "cz"), :game/name "Terra Mystica", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/bre12I1YiXkZr7elvriz4A__thumb/img/GW-ip0dfeAee7KQqJ04SRZxF1lg=/fit-in/200x150/filters:strip_icc()/pic5375624.jpg"}, #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" {:game/id #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2026, :name "Hexagon Grid"} #:com.boardgamegeek.mechanic{:id 2902, :name "Income"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2828, :name "Turn Order: Progressive"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Terraforming Mars", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1084, :name "Environmental"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"} #:com.boardgamegeek.category{:id 1086, :name "Territory Building"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 120, :com.boardgamegeek.boardgame/id "167791", :languages (list "cz"), :game/name "Terraforming Mars", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wg9oOLcsKvDesSUdZQ4rxw__thumb/img/BTxqxgYay5tHJfVoJ2NF5g43_gA=/fit-in/200x150/filters:strip_icc()/pic3536616.jpg"}, #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" {:game/id #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "Strife", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1055, :name "American West"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "225482", :game/name "Texas Showdown", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1a0gtaIzqd3GSHbOf5gW3w__thumb/img/fFypu_tK6nMkxDMic_v8rKyFwjw=/fit-in/200x150/filters:strip_icc()/pic3914023.jpg"}, #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" {:game/id #uuid "458d2163-a348-30c3-a4ad-8792fa32645c", :com.boardgamegeek.boardgame/min-players 3, :name "To je OPI:NAME:<NAME>END_PIázka!", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "226322", :languages (list "cz"), :game/name "That's a Question!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/MTGTksYC45yzbOB-UJdBTw__thumb/img/Pe10KxKTwYWeK_Ikgu0YJEsDdkk=/fit-in/200x150/filters:strip_icc()/pic3643950.jpg"}, #uuid "8881688f-f717-3852-a5df-d3c7386562d1" {:game/id #uuid "8881688f-f717-3852-a5df-d3c7386562d1", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "The Ancient World", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "147253", :languages (list "en"), :game/name "The Ancient World", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/-trgBZRA5P4kk86FQuuI-A__thumb/img/OMIhsFac59AYy7QyiDbsVgFxQHs=/fit-in/200x150/filters:strip_icc()/pic1951629.jpg"}, #uuid "1bd17795-c173-3c75-9489-8343917b819a" {:game/id #uuid "1bd17795-c173-3c75-9489-8343917b819a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2689, :name "Action Queue"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "The Boldest", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "261529", :languages (list "en"), :game/name "The Boldest", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/2igp3-QEN6v2tZm-MwrEPA__thumb/img/l9Z4TQVVnEQomKQUoIqcL8_50eY=/fit-in/200x150/filters:strip_icc()/pic4328782.jpg"}, #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" {:game/id #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2850, :name "Events"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "The Boss", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "7152", :game/name "The Boss", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/dHMkSe5cOAeWRg3wt8nh1A__thumb/img/jqfFM_x3vq7z9B8WlitYmE99dKM=/fit-in/200x150/filters:strip_icc()/pic579157.jpg"}, #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" {:game/id #uuid "595f02eb-d247-3d88-95e4-06800f89e71a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "PI:NAME:<NAME>END_PI k devate planetě", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"} #:com.boardgamegeek.category{:id 1113, :name "Space Exploration"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "284083", :languages (list "cz"), :game/name "The Crew: The Quest for Planet Nine", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/98LnQShydr11OBKS46xY-Q__thumb/img/et-fnuozyOdBOVL-5kSS3_7I8fw=/fit-in/200x150/filters:strip_icc()/pic5687013.jpg"}, #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" {:game/id #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2008, :name "Trading"}), :name "The Dutch East Indies", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1008, :name "Nautical"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"} #:com.boardgamegeek.category{:id 1011, :name "Transportation"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "216907", :languages (list "en"), :game/name "The Dutch East Indies", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6G4EVaT-g7WNPYHTA0EN7w__thumb/img/PjnIyuxU6v1SXddh0B4LDuKI2JY=/fit-in/200x150/filters:strip_icc()/pic3373286.jpg"}, #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" {:game/id #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2847, :name "Advantage Token"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2884, :name "Sudden Death Ending"} #:com.boardgamegeek.mechanic{:id 2826, :name "Turn Order: Stat-Based"}), :name "The Fog of War", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1049, :name "World War II"}), :com.boardgamegeek.boardgame/max-play-time 120, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "197439", :languages (list "en"), :game/name "The Fog of War", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/9UBE2IUYwJj0qzK-pF2EAw__thumb/img/Btsp1uK6EpiZe46DOalt_TZeKcI=/fit-in/200x150/filters:strip_icc()/pic3116180.jpg"}, #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" {:game/id #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "PI:NAME:<NAME>END_PIška PodPI:NAME:<NAME>END_PIitá Duet", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "288169", :languages (list "cz"), :game/name "The Fox in the Forest Duet", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/1uTAJoAdG3UC6N0G7UMeTA__thumb/img/SzaN4ejLFyjTbElgZPGGjUtlf6o=/fit-in/200x150/filters:strip_icc()/pic4942502.jpg"}, #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" {:game/id #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"}), :name "The Game of Life", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1072, :name "Electronic"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "2921", :languages (list "en"), :game/name "The Game of Life", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/c4S2XDRb_DCYCAV-ZAzDpg__thumb/img/tAejWvDTc-mXjX2euOrJwaXP2Y8=/fit-in/200x150/filters:strip_icc()/pic288405.jpg"}, #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" {:languages (list "cz"), :name "The Godfather", :game/id #uuid "72b0f8c3-5245-35e0-9a66-484200882d79", :game/name "The Godfather"}, #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" {:game/id #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2962, :name "Move Through Deck"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "The Grizzled", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1065, :name "World War I"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "171668", :languages (list "en"), :game/name "The Grizzled", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5JuQCtSAeSZpAL3WgWdwow__thumb/img/XcI-3g0sVumt8DsaMaBGrwftIRw=/fit-in/200x150/filters:strip_icc()/pic3719610.png"}, #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" {:game/id #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2978, :name "Grid Coverage"} #:com.boardgamegeek.mechanic{:id 2947, :name "Movement Points"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2826, :name "Turn Order: Stat-Based"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "The Magnificent", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "283863", :languages (list "en"), :game/name "The Magnificent", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6pci74DWc7U7XuwkfpEu2Q__thumb/img/K-X_5jjTMmesaFzFUoFOZu5p_AU=/fit-in/200x150/filters:strip_icc()/pic4871117.jpg"}, #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" {:game/id #uuid "134c5416-16b9-3118-a547-774f6df7bbcd", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"}), :name "The Mind", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "244992", :languages (list "en"), :game/name "The Mind", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/q_JGK291hrhnhiRB0667oA__thumb/img/PUrzEmTo5kOcK5BOb4cbOOcH86I=/fit-in/200x150/filters:strip_icc()/pic3979766.png"}, #uuid "af472b73-df4f-3397-a8c7-31a328913353" {:game/id #uuid "af472b73-df4f-3397-a8c7-31a328913353", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2885, :name "Finale Ending"} #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2892, :name "Roles with Asymmetric Information"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Avalon: The Resistance", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1081, :name "Spies/Secret Agents"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "128882", :languages (list "en"), :game/name "The Resistance: Avalon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/LPa6rsGcv8S0-OeNjCOAEQ__thumb/img/RKui79VjUbQAzTWaPu44ytupzDs=/fit-in/200x150/filters:strip_icc()/pic1398895.jpg"}, #uuid "5140d848-4910-3017-8f45-c2851658966b" {:game/id #uuid "5140d848-4910-3017-8f45-c2851658966b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "The River", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "257759", :languages (list "en"), :game/name "The River", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZmxO1MJdYqWHsVGuy2elPw__thumb/img/BmmJISWrgSPXfvc8-IEtSgbkwcM=/fit-in/200x150/filters:strip_icc()/pic4283642.png"}, #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" {:game/id #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "The Rose King", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "201", :languages (list "en"), :game/name "The Rose King", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/vfFy_HLiBNLxptwxFDMmDg__thumb/img/CJ8yTQu3kt8o4ZwF5ZbMJWDj564=/fit-in/200x150/filters:strip_icc()/pic2855891.jpg"}, #uuid "ebb89386-c539-37db-b4a7-972b931256f7" {:game/id #uuid "ebb89386-c539-37db-b4a7-972b931256f7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2932, :name "Auction: Dutch Priority"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "The Speicherstadt", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "66505", :languages (list "en"), :game/name "The Speicherstadt", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/x1EVKCtIP_tFTH8h5kvXog__thumb/img/8n5m3ZjWQfD-uwM7hOEyqS_93I4=/fit-in/200x150/filters:strip_icc()/pic686491.jpg"}, #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" {:languages (list "cz"), :name "Through the ages", :game/id #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538", :game/name "Through the ages"}, #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" {:languages (list "en"), :name "Thunder and Lightning", :game/id #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e", :game/name "Thunder and Lightning"}, #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" {:languages (list "en"), :name "Thunderstone Advance", :game/id #uuid "a09707a5-88fc-32fa-b544-8afa929496ab", :game/name "Thunderstone Advance"}, #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" {:game/id #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2912, :name "Contracts"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Ticket to Ride", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1034, :name "Trains"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "9209", :game/name "Ticket to Ride", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZWJg0dCdrWHxVnc0eFXK8w__thumb/img/a9rsFV6KR0aun8GobhRU16aU8Kc=/fit-in/200x150/filters:strip_icc()/pic38668.jpg"}, #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" {:game/id #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2883, :name "Connections"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Ticket to Ride Europe", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1034, :name "Trains"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "14996", :languages (list "cz"), :game/name "Ticket to Ride: Europe", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0K1AOciqlMVUWFPLTJSiww__thumb/img/RDvu2FvsYVVH8icp1VsilUlqUGI=/fit-in/200x150/filters:strip_icc()/pic66668.jpg"}, #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" {:game/id #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb", :com.boardgamegeek.boardgame/min-players 2, :name "Time’s up", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1094, :name "Educational"}), :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/id "38579", :languages (list "en"), :game/name "Time's Up", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/gDAVfngSgBT84oy3wlm3Rw__thumb/img/vAGevOvjEVquzcQkKWEBDcbK5T4=/fit-in/200x150/filters:strip_icc()/pic376027.jpg"}, #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" {:game/id #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2073, :name "Acting"} #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Time’s Up – PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1045, :name "Memory"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 12, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "88126", :game/name "Time's Up! Family", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/IaRRFgVPFUkhklzt96Z3sA__thumb/img/t3qrVwTjF04gioPupyc7gfnqDis=/fit-in/200x150/filters:strip_icc()/pic903503.jpg"}, #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" {:game/id #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"}), :name "Timeline", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "683", :languages (list "cz"), :game/name "Timeline", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/xNlnA_NM7ZDKQWqx8WE3Uw__thumb/img/kJOIXrJ87KPJNSqC_niMvA2_JrU=/fit-in/200x150/filters:strip_icc()/pic137941.jpg"}, #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" {:game/id #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2080, :name "Area Majority / Influence"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2843, :name "Follow"} #:com.boardgamegeek.mechanic{:id 2858, :name "Prisoner's Dilemma"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2079, :name "Variable Phase Order"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "PI:NAME:<NAME>END_PIá Velká KPI:NAME:<NAME>END_PIlovství", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "148951", :languages (list "cz"), :game/name "Tiny Epic Kingdoms", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rEBwFqk9b4rT-hrGOQnZrA__thumb/img/nIQB6TR1SMbF1W1Oq4OlhIbnao4=/fit-in/200x150/filters:strip_icc()/pic2947892.jpg"}, #uuid "104965da-ee0b-3867-95a3-0416228b7b19" {:languages (list "cz"), :name "Tipni si Česko", :game/id #uuid "104965da-ee0b-3867-95a3-0416228b7b19", :game/name "Tipni si Česko"}, #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" {:game/id #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2663, :name "Time Track"} #:com.boardgamegeek.mechanic{:id 2939, :name "Track Movement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"}), :name "Tokaido", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1097, :name "Travel"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "123540", :languages (list "en"), :game/name "Tokaido", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/-sUA2HQNFHBxOdzHE6Ywlg__thumb/img/OW3Jp2snfQM6Aq_nwOrKnHpF2hM=/fit-in/200x150/filters:strip_icc()/pic3747956.png"}, #uuid "39063899-ef80-383a-97b7-38b8c778cc24" {:game/id #uuid "39063899-ef80-383a-97b7-38b8c778cc24", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Tortuga 1667", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1090, :name "Pirates"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 9, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "218530", :languages (list "en"), :game/name "Tortuga 1667", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rT6zVN1zRbEMHok5V_zoGQ__thumb/img/851DsrYg9ei8WsbL77sj5eQMvP0=/fit-in/200x150/filters:strip_icc()/pic3747083.png"}, #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" {:game/id #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df", :com.boardgamegeek.boardgame/min-players 2, :name "Totem", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1015, :name "Civilization"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "471", :languages (list "en"), :game/name "Totem", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/4j_lyl1mtRT7YYmTcd2b9g__thumb/img/RhYKvH1TbL2UbbB8TgULIzmquWI=/fit-in/200x150/filters:strip_icc()/pic75195.jpg"}, #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" {:game/id #uuid "c31af57c-a315-3610-b455-9d5f386f31e0", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"}), :name "Trapwords", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "257527", :languages (list "en"), :game/name "Trapwords", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/aU1dLvPuTgGY0NsFajD9HQ__thumb/img/LKC4wxSMYreK8hbG82sNjUFdDiY=/fit-in/200x150/filters:strip_icc()/pic4327157.jpg"}, #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" {:game/id #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Treasure Island", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1032, :name "Action / Dexterity"} #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "7659", :languages (list "en"), :game/name "Treasure Island", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ow6VaE8Yyn6A_70wvxwZUw__thumb/img/8K7_bIPxeL50ofJO6Gn2xvfG9jY=/fit-in/200x150/filters:strip_icc()/pic31268.jpg"}, #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" {:game/id #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Treasure Lair", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "207845", :languages (list "en"), :game/name "Treasure Lair", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/09gxU5YptdssyaKGcOfRtA__thumb/img/BlVNNRs49cxrpu72Odq9qsXF-qM=/fit-in/200x150/filters:strip_icc()/pic3158785.jpg"}, #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" {:languages (list "en"), :name "Treasures of the Carribean", :game/id #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330", :game/name "Treasures of the Carribean"}, #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" {:game/id #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75", :com.boardgamegeek.boardgame/min-players 2, :name "Tricks and the Phantom", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "242325", :languages (list "de" "en" "fr" "it"), :game/name "Tricks and the Phantom", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/q8EjU4y-sCwxe50KG4BV3Q__thumb/img/3xXe3p2eSu2YJ-qmBVgV9FGKTZU=/fit-in/200x150/filters:strip_icc()/pic5797064.png"}, #uuid "578002db-1bee-32a8-949c-58bece6429a5" {:languages (list "en"), :name "Triviador", :game/id #uuid "578002db-1bee-32a8-949c-58bece6429a5", :game/name "Triviador", :com.boardgamegeek.boardgame/id "135082", :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1027, :name "Trivia"})}, #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2" {:game/id #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2", :com.boardgamegeek.boardgame/min-players 4, :name "Trivial Pursuit", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1118, :name "Mature / Adult"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 99, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "253633", :languages (list "en"), :game/name "Trivial Pursuit: X", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/wuSzCspUXnJi5WZMBrcnkg__thumb/img/aHCBnB71-uHP38KVVTdJ6Nsf7jY=/fit-in/200x150/filters:strip_icc()/pic4823899.jpg"}, #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" {:game/id #uuid "64b81638-f97f-36d4-ad33-08e915a1750e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"}), :name "Troika", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1045, :name "Memory"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "102248", :languages (list "en"), :game/name "Troika", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/zqF9ipRqRz-KF1hEhoUhKw__thumb/img/Gi8zTIFzRnJbPYCNps1UAuT2zX0=/fit-in/200x150/filters:strip_icc()/pic1033038.jpg"}, #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" {:game/id #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2013, :name "Commodity Speculation"} #:com.boardgamegeek.mechanic{:id 2005, :name "Stock Holding"}), :new true, :name "Truffle Shuffle", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "23955", :languages (list "en"), :game/name "Truffle Shuffle", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/8AAxaLVwDRy5ThcXJrUn8A__thumb/img/2d0JpBMuwasLIhKJNqLvgEVpUSI=/fit-in/200x150/filters:strip_icc()/pic149490.jpg"}, #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" {:game/id #uuid "aacb653d-e587-34a7-a360-4c3956b4f677", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2081, :name "Network and Route Building"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Tsuro", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "16992", :languages (list "en"), :game/name "Tsuro", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/2V3d4ryhxkS3RoPtDrvpUw__thumb/img/NWgNhoxUIF7Lmj1apRkZQhFL6NU=/fit-in/200x150/filters:strip_icc()/pic875761.jpg"}, #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" {:game/id #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Twist of Fate", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 1093, :name "Novel-based"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "198059", :languages (list "en"), :game/name "Twist of Fate", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/-FtKCFdQ89CDoGGg3NZTFA__thumb/img/V8ZkI6tf5sqIRp04swz1U6ewcQo=/fit-in/200x150/filters:strip_icc()/pic3281332.jpg"}, #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" {:game/id #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"}), :name "Two Crowns", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "132145", :languages (list "en"), :game/name "Two Crowns", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/F_VS_xKZ31WMaKEUiro9iQ__thumb/img/VPGT_i_iHhQaZM_JjDT7Yvw7BIY=/fit-in/200x150/filters:strip_icc()/pic1750933.png"}, #uuid "91934e02-f64d-3aab-9536-19f592307a91" {:game/id #uuid "91934e02-f64d-3aab-9536-19f592307a91", :com.boardgamegeek.boardgame/min-players 6, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "The Two Khans", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 15, :com.boardgamegeek.boardgame/min-play-time 5, :com.boardgamegeek.boardgame/id "286892", :languages (list "en"), :game/name "Two Khans", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/rVFSyzpN-7Bfde8s2yLCWA__thumb/img/IZKAVuDzTdU9eOl7CWxiugP6pSE=/fit-in/200x150/filters:strip_icc()/pic4942004.jpg"}, #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" {:languages (list "cz"), :name "PI:NAME:<NAME>END_PI’zolkin", :game/id #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f", :game/name "T’zolkin"}, #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" {:game/id #uuid "7416a104-a4b4-3c68-895e-98e989dce7de", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2009, :name "Trick-taking"}), :name "Ugo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "139326", :game/name "UGO!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/vLlpTJzPbWSTO1p8v65VQQ__thumb/img/NyZCUFG4ITVIHFaWrcdNsOi3fww=/fit-in/200x150/filters:strip_icc()/pic1823140.png"}, #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" {:game/id #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2836, :name "Lose a Turn"} #:com.boardgamegeek.mechanic{:id 3007, :name "Matching"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Uno", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1116, :name "Comic Book / Strip"} #:com.boardgamegeek.category{:id 1064, :name "Movies / TV / Radio theme"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "2223", :languages (list "en"), :game/name "UNO", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/SU-OL7XWn7BOiSYevyTThw__thumb/img/5dxRomuxNxzw01ZYNnIK-f_Ai4o=/fit-in/200x150/filters:strip_icc()/pic981505.jpg"}, #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" {:game/id #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2978, :name "Grid Coverage"} #:com.boardgamegeek.mechanic{:id 2048, :name "Pattern Building"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "Ubongo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 25, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "16986", :languages (list "cz"), :game/name "Ubongo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/0wSuQbmk4nPwNytp9_zzPw__thumb/img/2_damZx35g1mE8kgWUpIXoHybW8=/fit-in/200x150/filters:strip_icc()/pic4597123.jpg"}, #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" {:game/id #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e", :com.boardgamegeek.boardgame/min-players 1, :name "Ubongo trigo", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1028, :name "Puzzle"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "118553", :game/name "Ubongo Trigo", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/9_zB31vH27jNJJ1mSN9u4Q__thumb/img/7tsV5bv_FDMvRBUuAQvn6mR119k=/fit-in/200x150/filters:strip_icc()/pic1210953.jpg"}, #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" {:game/id #uuid "7c823c08-2b3e-3613-bf68-fde60227450d", :com.boardgamegeek.boardgame/min-players 5, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"} #:com.boardgamegeek.mechanic{:id 2019, :name "Team-Based Game"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Ultimate werewolf", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1040, :name "Murder/Mystery"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 30, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "152241", :languages (list "en"), :game/name "Ultimate Werewolf", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/pbX50vKkFCUBsK8DolVq_w__thumb/img/Q-glOUzREfIQkbMyLE70qmf3R9Q=/fit-in/200x150/filters:strip_icc()/pic1878507.png"}, #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" {:game/id #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2070, :name "Simulation"}), :name "Undaunted Normandy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1019, :name "Wargame"} #:com.boardgamegeek.category{:id 1049, :name "World War II"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "268864", :languages (list "en"), :game/name "Undaunted: Normandy", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iCd6hMGDzsQ_UXh00iKsJA__thumb/img/QbOlBm7DZGP2ZBnGZ-YaD-py-UQ=/fit-in/200x150/filters:strip_icc()/pic4602347.jpg"}, #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" {:game/id #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2846, :name "Once-Per-Game Abilities"} #:com.boardgamegeek.mechanic{:id 2870, :name "Re-rolling and Locking"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"} #:com.boardgamegeek.mechanic{:id 2940, :name "Square Grid"} #:com.boardgamegeek.mechanic{:id 2884, :name "Sudden Death Ending"} #:com.boardgamegeek.mechanic{:id 2897, :name "Variable Set-up"} #:com.boardgamegeek.mechanic{:id 2082, :name "Worker Placement"} #:com.boardgamegeek.mechanic{:id 2935, :name "Worker Placement with Dice Workers"}), :new true, :name "Under Falling Skies", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1016, :name "Science Fiction"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 1, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "306735", :languages (list "en"), :game/name "Under Falling Skies", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ecO5eAd3RkctQ0-Tbqv37Q__thumb/img/uxrJLWxvi-f8CGbDpxQBStzvGes=/fit-in/200x150/filters:strip_icc()/pic5428723.jpg"}, #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" {:languages (list "cz"), :name "Unlock", :game/id #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a", :game/name "Unlock"}, #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" {:game/id #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2882, :name "Elapsed Real Time Ending"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2027, :name "Storytelling"}), :name "Unlock! Escape Adventures", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "213460", :languages (list "cz"), :game/name "Unlock!: Escape Adventures", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/h8K_nTemD6bmydT0akChZw__thumb/img/nKF4nF8Ml5q0E0CYo7qo3Ax_gcE=/fit-in/200x150/filters:strip_icc()/pic3348790.jpg"}, #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" {:game/id #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"}), :name "Unstable Unicorns", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "234190", :languages (list "en"), :game/name "Unstable Unicorns", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/8_5xvpsrrX5JVzO7eBLSgw__thumb/img/fV4UWCHC1ImGFUN7lcJju9K8_zo=/fit-in/200x150/filters:strip_icc()/pic3912914.jpg"}, #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" {:game/id #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Upstream", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1084, :name "Environmental"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 25, :com.boardgamegeek.boardgame/id "209567", :languages (list "en"), :game/name "Upstream", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Iv_eFbNzMuROy275e2X2pw__thumb/img/9hx4WYZfrvM_EFxaYL2oVpJEBuU=/fit-in/200x150/filters:strip_icc()/pic3674313.png"}, #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" {:game/id #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"}), :name "Valley of the Kings Afterlife", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1050, :name "Ancient"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"} #:com.boardgamegeek.category{:id 1115, :name "Religious"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "175223", :game/name "Valley of the Kings: Afterlife", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/PqoEulSFarx64L6EYMn-qg__thumb/img/cA12z4bxPWLRHGcZ8FduT8kcLGE=/fit-in/200x150/filters:strip_icc()/pic2456554.jpg"}, #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" {:game/id #uuid "e5ce3771-79d2-3202-b053-1561d6d093be", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2676, :name "Grid Movement"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2028, :name "Role Playing"} #:com.boardgamegeek.mechanic{:id 2016, :name "Secret Unit Deployment"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :new true, :name "Vast The Crystal Caverns", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1120, :name "Print & Play"}), :com.boardgamegeek.boardgame/max-play-time 75, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 75, :com.boardgamegeek.boardgame/id "170416", :languages (list "en"), :game/name "Vast: The Crystal Caverns", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/CeXtELC0X1xjwuend_7pTg__thumb/img/FdE8SHtb503f9ZOk_TYyxS-sJQg=/fit-in/200x150/filters:strip_icc()/pic2962290.jpg"}, #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" {:game/id #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2920, :name "Auction: Sealed Bid"} #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Panovnik", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "157526", :languages (list "viceroy"), :game/name "Viceroy", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/24x3IUxdpizAPxXPOJsypQ__thumb/img/XFKd1GrAgke9M5wwDilZvyGBfDk=/fit-in/200x150/filters:strip_icc()/pic2254354.jpg"}, #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" {:name "Vikings on boards", :game/id #uuid "5c50d320-55f3-337f-b820-3e559968a3f1", :game/name "Vikings on boards"}, #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" {:name "Village inn", :game/id #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44", :game/name "Village inn", :com.boardgamegeek.boardgame/id "136223"}, #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" {:name "Wakanada", :game/id #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae", :game/name "Wakanada"}, #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" {:game/id #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2043, :name "Enclosure"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "Walls of York", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1029, :name "City Building"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1028, :name "Puzzle"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "247980", :languages (list "en"), :game/name "Walls of York", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/-mGHT2rgFu4dFezodM38kA__thumb/img/x9TBZ5dZiiPi7q2RfgxOFHipG4c=/fit-in/200x150/filters:strip_icc()/pic4223058.png"}, #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" {:languages (list "en"), :name "Wanna Bet Family challenge", :game/id #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527", :game/name "Wanna Bet Family challenge"}, #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" {:game/id #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "We’re Doomed", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1015, :name "Civilization"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "264806", :languages (list "en"), :game/name "We're Doomed!", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NCcmCG2X-ssnAA5kyR386g__thumb/img/vaYBsf0wCFaEhjX-cIwpc1vRHUc=/fit-in/200x150/filters:strip_icc()/pic4420866.jpg"}, #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" {:game/id #uuid "32288419-57f9-3b53-a2df-4b3393930c5a", :com.boardgamegeek.boardgame/min-players 2, :name "Weird things humans search for", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 20, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "254419", :languages (list "en"), :game/name "Weird Things Humans Search For", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/3UUUkiZx5wMr_W9ZmnA1Kg__thumb/img/WQI8ETMLMY6IqZaovZdxE1N04RY=/fit-in/200x150/filters:strip_icc()/pic4206940.jpg"}, #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" {:game/id #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2685, :name "Player Elimination"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "Vzhuru zpátky do Podzemí", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "195043", :languages (list "cz"), :game/name "Welcome Back to the Dungeon", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Tu5hFjeX1-5EwnwjdNTaHg__thumb/img/y8At3p87JcNiUuHTiRIKgUvKOks=/fit-in/200x150/filters:strip_icc()/pic3060124.jpg"}, #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" {:game/id #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2891, :name "Hidden Roles"} #:com.boardgamegeek.mechanic{:id 2892, :name "Roles with Asymmetric Information"} #:com.boardgamegeek.mechanic{:id 2814, :name "Traitor Game"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"} #:com.boardgamegeek.mechanic{:id 2017, :name "Voting"}), :name "Werewords", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 10, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "219215", :languages (list "en"), :game/name "Werewords", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/4ngyBZXLLKIOdGuUHE7baw__thumb/img/gSGfC0ZMYbOXukqfdBBuxULmyJU=/fit-in/200x150/filters:strip_icc()/pic4415135.jpg"}, #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" {:game/id #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2857, :name "Card Play Conflict Resolution"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2007, :name "Pick-up and Deliver"} #:com.boardgamegeek.mechanic{:id 2686, :name "Take That"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Legendy Západu", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1055, :name "American West"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "232405", :languages (list "cz"), :game/name "Western Legends", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/_FnP28QChh-8uFh6ZvpJhA__thumb/img/iq5peG7h6fe8_-nY_MJkG3QrYCg=/fit-in/200x150/filters:strip_icc()/pic3837503.jpg"}, #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" {:game/id #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"}), :name "Whales Destroying the World", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "256502", :languages (list "cz" "en"), :game/name "Whales Destroying The World", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/nwk8uhs8nuGghB5WtVfZ0w__thumb/img/cMCkbF_ICrXxKKJBZpcUNb9lzM0=/fit-in/200x150/filters:strip_icc()/pic4276568.jpg"}, #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" {:game/id #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf", :com.boardgamegeek.boardgame/min-players 2, :name "What came first", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "283363", :languages (list "en"), :game/name "What Came First?", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/5bY5HlOzIwyI5SPW1b3JdQ__thumb/img/-oP4DslYzNnxLB48R4snu-WOfeg=/fit-in/200x150/filters:strip_icc()/pic4820669.png"}, #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" {:game/id #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"}), :name "What do you meme", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 90, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 90, :com.boardgamegeek.boardgame/id "132203", :languages (list "en"), :game/name "What Do You Meme?", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/11n5l5NwDkUB40QPlw2yIg__thumb/img/-8i8V-TI5HEsYxRvQ7HVNvg7R1g=/fit-in/200x150/filters:strip_icc()/pic4729721.png"}, #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" {:game/id #uuid "15a92feb-8726-3842-b957-7e7b69421b2c", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2893, :name "Communication Limits"} #:com.boardgamegeek.mechanic{:id 3002, :name "Deduction"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2991, :name "Speed Matching"}), :new true, :name "The Sound Maker", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1079, :name "Humor"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "341136", :languages (list "en"), :game/name "What's That Sound?", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/vhwa9AMXqfTqVpY6Z01_2A__thumb/img/_fAl8-tWPSTEPNoHzWNhs2QBwu4=/fit-in/200x150/filters:strip_icc()/pic6416292.jpg"}, #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" {:game/id #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2047, :name "Memory"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "What’s Up", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1039, :name "Deduction"} #:com.boardgamegeek.category{:id 1045, :name "Memory"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 10, :com.boardgamegeek.boardgame/id "201054", :game/name "What's Up", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/lpKc9CfkSyF5qyNfWG8XrA__thumb/img/SsUJzqPEJQ4Lx0K1d7G7o-D1uEQ=/fit-in/200x150/filters:strip_icc()/pic3042240.jpg"}, #uuid "e214a1ce-1929-3835-b502-4510ef89f940" {:languages (list "en"), :name "Who’s the traitor", :game/id #uuid "e214a1ce-1929-3835-b502-4510ef89f940", :game/name "Who’s the traitor"}, #uuid "abe58998-3062-3866-9238-314af7ba0265" {:game/id #uuid "abe58998-3062-3866-9238-314af7ba0265", :com.boardgamegeek.boardgame/min-players 4, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2012, :name "Auction/Bidding"}), :name "Wild Fun West", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1055, :name "American West"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1026, :name "Negotiation"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "120781", :game/name "Wild Fun West", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/SBTjRWG6lNHkHULIT13AKA__thumb/img/BJy5bJ4IBj3K0tobl3pIMLWijbo=/fit-in/200x150/filters:strip_icc()/pic1391887.png"}, #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" {:game/id #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2001, :name "Action Points"} #:com.boardgamegeek.mechanic{:id 2046, :name "Area Movement"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"}), :name "Wilderness", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1020, :name "Exploration"} #:com.boardgamegeek.category{:id 1031, :name "Racing"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 8, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "108637", :game/name "Wilderness", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/Ucbjn6fKAxqI43Ba_Yl9_w__thumb/img/dtOnPBhmW9j-UkAFCRkoXjAdchk=/fit-in/200x150/filters:strip_icc()/pic1097184.jpg"}, #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" {:game/id #uuid "e5f11979-9a30-30ec-8084-92dd584b1214", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2984, :name "Drafting"} #:com.boardgamegeek.mechanic{:id 2875, :name "End Game Bonuses"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1094, :name "Educational"}), :com.boardgamegeek.boardgame/max-play-time 70, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 40, :com.boardgamegeek.boardgame/id "266192", :languages (list "cz"), :game/name "Wingspan", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/yLZJCVLlIx4c7eJEWUNJ7w__thumb/img/VNToqgS2-pOGU6MuvIkMPKn_y-s=/fit-in/200x150/filters:strip_icc()/pic4458123.jpg"}, #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" {:game/id #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5", :com.boardgamegeek.boardgame/min-players 3, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"} #:com.boardgamegeek.mechanic{:id 2055, :name "Paper-and-Pencil"}), :name "Wits and wagers family", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1041, :name "Children's Game"} #:com.boardgamegeek.category{:id 1094, :name "Educational"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 10, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "66588", :languages (list "en"), :game/name "Wits & Wagers Family", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ScQODaP8QC5mXrRn8qTHOg__thumb/img/_l_W7kLA12ioz0QcaxceZnNHJ1A=/fit-in/200x150/filters:strip_icc()/pic664569.jpg"}, #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" {:languages (list "en"), :name "Wits and Wagers", :game/id #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa", :game/name "Wits and Wagers"}, #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" {:game/id #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2060, :name "Pattern Recognition"}), :name "WordQuest", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1009, :name "Abstract Strategy"} #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "39180", :game/name "Wordquest", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/UtoR2r81kOMWDZ0xGrSfAA__thumb/img/BRfR57UmJzTqxcN-4-kGN9Qu-qg=/fit-in/200x150/filters:strip_icc()/pic622198.jpg"}, #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" {:game/id #uuid "161dfda2-bf83-3041-ae10-e2410340abd1", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2055, :name "Paper-and-Pencil"} #:com.boardgamegeek.mechanic{:id 2831, :name "Real-Time"} #:com.boardgamegeek.mechanic{:id 2819, :name "Solo / Solitaire Game"}), :name "Wordsy", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1037, :name "Real-time"} #:com.boardgamegeek.category{:id 1025, :name "Word Game"}), :com.boardgamegeek.boardgame/max-play-time 20, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "208480", :languages (list "en"), :game/name "WordPI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/uryuyu59_aycdrCXs8I2Tg__thumb/img/1ow1EXgujmByLH69pW1spzfitIc=/fit-in/200x150/filters:strip_icc()/pic3223277.jpg"}, #uuid "3463c066-922f-3864-93bd-b87bb1286679" {:game/id #uuid "3463c066-922f-3864-93bd-b87bb1286679", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"}), :name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"} #:com.boardgamegeek.category{:id 1013, :name "Farming"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "111148", :languages (list "de"), :game/name "PI:NAME:<NAME>END_PI", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/iirbnwkZ755tRj69Q-uWHw__thumb/img/_aACxitODyWc7h1cAKG_c8w9Cjo=/fit-in/200x150/filters:strip_icc()/pic1197852.jpg"}, #uuid "d993f311-557a-391d-ab21-677ab586a01b" {:game/id #uuid "d993f311-557a-391d-ab21-677ab586a01b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2664, :name "Deck, Bag, and Pool Building"} #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"}), :name "Xenon Profiteer", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1021, :name "Economic"} #:com.boardgamegeek.category{:id 1088, :name "Industry / Manufacturing"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 4, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "176530", :languages (list "en"), :game/name "Xenon Profiteer", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/ZYukAQrKxJTosyVYmm98aw__thumb/img/BIsI2thXlVPfY30qfyftZCsNnY0=/fit-in/200x150/filters:strip_icc()/pic2537665.jpg"}, #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" {:game/id #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a", :com.boardgamegeek.boardgame/min-players 2, :name "Jak jako jak", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"} #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"}), :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/id "177437", :languages (list "cz"), :game/name "YAK", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/6W8_WuKJa3vvIFC2Cg-sPQ__thumb/img/Vk4oKKMkyLpynj5YR22lc5Sfx9E=/fit-in/200x150/filters:strip_icc()/pic2385066.jpg"}, #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" {:game/id #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2035, :name "Roll / Spin and Move"}), :name "Yak", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "21877", :game/name "Yak", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/HzHXfWLxdZhAV1OVkWG7pA__thumb/img/tUZvD8FZq4STp8HXkjz509ngCtY=/fit-in/200x150/filters:strip_icc()/pic218963.jpg"}, #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" {:game/id #uuid "9cb073d5-2081-32d7-9991-a6077288e01e", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2041, :name "Card Drafting"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2661, :name "Push Your Luck"}), :name "Yeti", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1017, :name "Dice"}), :com.boardgamegeek.boardgame/max-play-time 40, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 20, :com.boardgamegeek.boardgame/id "189294", :game/name "Yeti", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/H7gM0ltr7zeYJjwiQiJMEA__thumb/img/EUMiXkxa6LeNKD9UEpdgJGM0kPo=/fit-in/200x150/filters:strip_icc()/pic2817129.jpg"}, #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" {:game/id #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2040, :name "Hand Management"} #:com.boardgamegeek.mechanic{:id 2003, :name "Rock-Paper-Scissors"} #:com.boardgamegeek.mechanic{:id 2020, :name "Simultaneous Action Selection"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Yomi", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1023, :name "Bluffing"} #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1101, :name "Video Game Theme"}), :com.boardgamegeek.boardgame/max-play-time 30, :com.boardgamegeek.boardgame/max-players 2, :com.boardgamegeek.boardgame/min-play-time 30, :com.boardgamegeek.boardgame/id "43022", :game/name "Yomi", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/NGxZknC3YvP4Xjn6ro38tQ__thumb/img/0jN0d9qt3YM2DN9MnG1-v6qI2VM=/fit-in/200x150/filters:strip_icc()/pic885442.jpg"}, #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" {:game/id #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2886, :name "King of the Hill"}), :name "Zeus na Uteku", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1104, :name "Math"} #:com.boardgamegeek.category{:id 1082, :name "Mythology"} #:com.boardgamegeek.category{:id 1098, :name "Number"}), :com.boardgamegeek.boardgame/max-play-time 15, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 15, :com.boardgamegeek.boardgame/id "22864", :languages (list "cz"), :game/name "Zeus on the Loose", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/t_7YMa7eh46paqvyi9616Q__thumb/img/dQIaPTQ-_Yjf7z_ahIHy2O8H4CU=/fit-in/200x150/filters:strip_icc()/pic191011.jpg"}, #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" {:game/id #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4", :com.boardgamegeek.boardgame/min-players 1, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2023, :name "Cooperative Game"} #:com.boardgamegeek.mechanic{:id 2072, :name "Dice Rolling"} #:com.boardgamegeek.mechanic{:id 2011, :name "Modular Board"} #:com.boardgamegeek.mechanic{:id 2822, :name "Scenario / Mission / Campaign Game"} #:com.boardgamegeek.mechanic{:id 2828, :name "Turn Order: Progressive"} #:com.boardgamegeek.mechanic{:id 2015, :name "Variable Player Powers"}), :name "Zombicide Cerny mor", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1022, :name "Adventure"} #:com.boardgamegeek.category{:id 1010, :name "Fantasy"} #:com.boardgamegeek.category{:id 1046, :name "Fighting"} #:com.boardgamegeek.category{:id 1024, :name "Horror"} #:com.boardgamegeek.category{:id 1035, :name "Medieval"} #:com.boardgamegeek.category{:id 1047, :name "Miniatures"} #:com.boardgamegeek.category{:id 2481, :name "Zombies"}), :com.boardgamegeek.boardgame/max-play-time 180, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "176189", :languages (list "cz"), :game/name "Zombicide: Black Plague", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/kVHuMBxmathfnq42XINBQg__thumb/img/u5Fuj4SwZhXElCO3VmrNKkAeXX4=/fit-in/200x150/filters:strip_icc()/pic2482309.jpg"}, #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" {:game/id #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2004, :name "Set Collection"} #:com.boardgamegeek.mechanic{:id 2002, :name "Tile Placement"}), :name "Zooloretto", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1089, :name "Animals"}), :com.boardgamegeek.boardgame/max-play-time 45, :com.boardgamegeek.boardgame/max-players 5, :com.boardgamegeek.boardgame/min-play-time 45, :com.boardgamegeek.boardgame/id "27588", :languages (list "cz" "de" "en"), :game/name "Zooloretto", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/FF_R0HV6APUKh0IW2w6oqw__thumb/img/GH0Q1trIy2CUCkixCe-b6UpjJoY=/fit-in/200x150/filters:strip_icc()/pic2021685.png"}, #uuid "fab76503-1b94-3d49-8b17-1336fababeec" {:languages (list "cz"), :name "PI:NAME:<NAME>END_PIámky", :game/id #uuid "fab76503-1b94-3d49-8b17-1336fababeec", :game/name "Zámky"}, #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" {:game/id #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4", :com.boardgamegeek.boardgame/min-players 2, :com.boardgamegeek.boardgame/mechanics (list #:com.boardgamegeek.mechanic{:id 2014, :name "Betting and Bluffing"}), :name "iKnow", :com.boardgamegeek.boardgame/categories (list #:com.boardgamegeek.category{:id 1002, :name "Card Game"} #:com.boardgamegeek.category{:id 1030, :name "Party Game"} #:com.boardgamegeek.category{:id 1027, :name "Trivia"}), :com.boardgamegeek.boardgame/max-play-time 60, :com.boardgamegeek.boardgame/max-players 6, :com.boardgamegeek.boardgame/min-play-time 60, :com.boardgamegeek.boardgame/id "130680", :languages (list "cz"), :game/name "iKNOW", :com.boardgamegeek.boardgame/thumbnail "https://cf.geekdo-images.com/GDCDK9ZaD4AfTYf8FWoVaA__thumb/img/Vd7027iCx6W0QfvuB36TTAmVxcs=/fit-in/200x150/filters:strip_icc()/pic5885668.jpg"}}, :sorting {:game/name [#uuid "49b5473d-32f5-382b-943a-dda4a1491daf" #uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" #uuid "f8283731-6cf2-3086-8140-494037314bf5" #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" #uuid "d496a066-c36e-3570-99d1-9eedec118dee" #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" #uuid "ac19727b-672c-352f-b393-c52a81b055cb" #uuid "109a021a-56f4-3223-ae04-902a1f40db16" #uuid "492b7750-c3e8-3055-a93b-6745391300a6" #uuid "28e54304-62fc-38c9-9b76-058878323d57" #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" #uuid "582d2648-b634-3370-a31e-bef979dab3f3" #uuid "2e89598e-c81e-39d5-bae2-aee451063265" #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" #uuid "a0969dfc-5294-3b41-82bf-220e859197db" #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" #uuid "897ee373-c9e4-32f9-a323-fe188494520b" #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" #uuid "557482bd-c397-30d7-af1b-afbb6c763124" #uuid "414bbf5b-1083-3275-9983-4133937db58b" #uuid "56c98771-eaf0-34fe-8f66-156041739594" #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" #uuid "be01908f-633f-35da-be89-80701db8ed25" #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" #uuid "890488d0-a370-30a4-9788-a44754330b27" #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" #uuid "30c12229-f508-341c-9680-149dbdf88523" #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" #uuid "99102149-c730-3271-a928-b7549ce07a13" #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" #uuid "054f1270-bf79-32f9-825a-96880e800c9f" #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" #uuid "096f6d71-6864-3882-898c-00b9142932e7" #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" #uuid "12218694-0010-31cc-a245-a502b7ed4b19" #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" #uuid "165261a9-0183-3e53-be82-ccc197c354b8" #uuid "a389677b-6118-3815-84fe-c1e75f38984c" #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" #uuid "91a5169d-5877-3642-9a52-54c4f01655da" #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" #uuid "826863b8-1605-33a8-9169-91ebcb89712b" #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" #uuid "434338bc-9501-334b-adbf-2b3752e9e231" #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" #uuid "b4991e13-f466-39b4-be16-56909272f1cc" #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" #uuid "f18187e7-f398-32f0-b73e-625e848d8333" #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" #uuid "2293c663-d1bc-3701-9a53-009f457c6940" #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" #uuid "b1127074-659b-3102-907a-25a0473a3e98" #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" #uuid "938351d5-c89e-32e0-af3b-73d217217b14" #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" #uuid "5a156002-5793-338e-9399-def9bfd7eca6" #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" #uuid "39af5c41-5927-3dde-8a75-10397211dcda" #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" #uuid "423cb589-88be-336d-ada8-9817b5fe519e" #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" #uuid "12fd071d-60ce-3146-b555-655882920638" #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" #uuid "5e04b28e-010d-366b-af9d-020474ee6392" #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" #uuid "f8049db2-d889-3677-984e-4e2ce41de578" #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" #uuid "4578b280-9265-3868-8670-e39b70b610f9" #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" #uuid "189f9b13-158d-379b-9440-05b9bc24a356" #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" #uuid "44de8c27-9942-39ca-997c-57ff932fc882" #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" #uuid "33e20383-3807-3414-869c-7a3907d40b75" #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" #uuid "f750d160-d009-3c96-a630-eff035abfd6c" #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" #uuid "f81386ae-7767-3f93-a560-c78df55109bb" #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" #uuid "f7625727-1129-3703-96c0-442c8ac00dae" #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" #uuid "c64e760d-cd41-31b1-9626-a196593146fa" #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" #uuid "af817d47-9021-3806-800d-7ef8dab08024" #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" #uuid "20b16954-6c66-3536-b816-f13d464da44c" #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" #uuid "77933845-adf8-3758-a686-a08ea46f015e" #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" #uuid "5b444b22-2047-3124-af08-48687f72a6b5" #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" #uuid "568da493-2833-3009-ad26-7108e0683081" #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" #uuid "dee45e08-5103-32ec-93b7-17d391b64576" #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" #uuid "51817160-093d-3773-957a-662779bebec9" #uuid "56be7020-8ac5-312f-9c02-a912103646d9" #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" #uuid "875b8289-de41-3672-8c92-95b6a689ff43" #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" #uuid "b8909580-a299-3ec5-848c-548f38510b72" #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" #uuid "6b9a2464-282c-396d-a918-afde2db81cde" #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" #uuid "66437274-239d-371f-a5d1-71102dca56e3" #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" #uuid "e154f5ce-d498-3840-a559-661a996d4d09" #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" #uuid "8881688f-f717-3852-a5df-d3c7386562d1" #uuid "1bd17795-c173-3c75-9489-8343917b819a" #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" #uuid "af472b73-df4f-3397-a8c7-31a328913353" #uuid "5140d848-4910-3017-8f45-c2851658966b" #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" #uuid "ebb89386-c539-37db-b4a7-972b931256f7" #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" #uuid "104965da-ee0b-3867-95a3-0416228b7b19" #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" #uuid "39063899-ef80-383a-97b7-38b8c778cc24" #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" #uuid "578002db-1bee-32a8-949c-58bece6429a5" #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2" #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" #uuid "91934e02-f64d-3aab-9536-19f592307a91" #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" #uuid "e214a1ce-1929-3835-b502-4510ef89f940" #uuid "abe58998-3062-3866-9238-314af7ba0265" #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" #uuid "3463c066-922f-3864-93bd-b87bb1286679" #uuid "d993f311-557a-391d-ab21-677ab586a01b" #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" #uuid "fab76503-1b94-3d49-8b17-1336fababeec"], :com.boardgamegeek.boardgame/min-players [#uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" #uuid "56c98771-eaf0-34fe-8f66-156041739594" #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" #uuid "938351d5-c89e-32e0-af3b-73d217217b14" #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" #uuid "12fd071d-60ce-3146-b555-655882920638" #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" #uuid "875b8289-de41-3672-8c92-95b6a689ff43" #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" #uuid "66437274-239d-371f-a5d1-71102dca56e3" #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" #uuid "104965da-ee0b-3867-95a3-0416228b7b19" #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" #uuid "e214a1ce-1929-3835-b502-4510ef89f940" #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" #uuid "fab76503-1b94-3d49-8b17-1336fababeec" #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" #uuid "28e54304-62fc-38c9-9b76-058878323d57" #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" #uuid "557482bd-c397-30d7-af1b-afbb6c763124" #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" #uuid "096f6d71-6864-3882-898c-00b9142932e7" #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" #uuid "423cb589-88be-336d-ada8-9817b5fe519e" #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" #uuid "5e04b28e-010d-366b-af9d-020474ee6392" #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" #uuid "49b5473d-32f5-382b-943a-dda4a1491daf" #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" #uuid "f8283731-6cf2-3086-8140-494037314bf5" #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" #uuid "d496a066-c36e-3570-99d1-9eedec118dee" #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" #uuid "109a021a-56f4-3223-ae04-902a1f40db16" #uuid "492b7750-c3e8-3055-a93b-6745391300a6" #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" #uuid "582d2648-b634-3370-a31e-bef979dab3f3" #uuid "2e89598e-c81e-39d5-bae2-aee451063265" #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" #uuid "a0969dfc-5294-3b41-82bf-220e859197db" #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" #uuid "414bbf5b-1083-3275-9983-4133937db58b" #uuid "be01908f-633f-35da-be89-80701db8ed25" #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" #uuid "890488d0-a370-30a4-9788-a44754330b27" #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" #uuid "30c12229-f508-341c-9680-149dbdf88523" #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" #uuid "99102149-c730-3271-a928-b7549ce07a13" #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" #uuid "054f1270-bf79-32f9-825a-96880e800c9f" #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" #uuid "12218694-0010-31cc-a245-a502b7ed4b19" #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" #uuid "165261a9-0183-3e53-be82-ccc197c354b8" #uuid "a389677b-6118-3815-84fe-c1e75f38984c" #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" #uuid "91a5169d-5877-3642-9a52-54c4f01655da" #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" #uuid "826863b8-1605-33a8-9169-91ebcb89712b" #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" #uuid "434338bc-9501-334b-adbf-2b3752e9e231" #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" #uuid "b4991e13-f466-39b4-be16-56909272f1cc" #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" #uuid "f18187e7-f398-32f0-b73e-625e848d8333" #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" #uuid "2293c663-d1bc-3701-9a53-009f457c6940" #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" #uuid "b1127074-659b-3102-907a-25a0473a3e98" #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" #uuid "5a156002-5793-338e-9399-def9bfd7eca6" #uuid "39af5c41-5927-3dde-8a75-10397211dcda" #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" #uuid "f8049db2-d889-3677-984e-4e2ce41de578" #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" #uuid "4578b280-9265-3868-8670-e39b70b610f9" #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" #uuid "33e20383-3807-3414-869c-7a3907d40b75" #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" #uuid "f81386ae-7767-3f93-a560-c78df55109bb" #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" #uuid "c64e760d-cd41-31b1-9626-a196593146fa" #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" #uuid "77933845-adf8-3758-a686-a08ea46f015e" #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" #uuid "568da493-2833-3009-ad26-7108e0683081" #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" #uuid "51817160-093d-3773-957a-662779bebec9" #uuid "56be7020-8ac5-312f-9c02-a912103646d9" #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" #uuid "b8909580-a299-3ec5-848c-548f38510b72" #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" #uuid "e154f5ce-d498-3840-a559-661a996d4d09" #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" #uuid "8881688f-f717-3852-a5df-d3c7386562d1" #uuid "1bd17795-c173-3c75-9489-8343917b819a" #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" #uuid "5140d848-4910-3017-8f45-c2851658966b" #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" #uuid "ebb89386-c539-37db-b4a7-972b931256f7" #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" #uuid "39063899-ef80-383a-97b7-38b8c778cc24" #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" #uuid "578002db-1bee-32a8-949c-58bece6429a5" #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" #uuid "3463c066-922f-3864-93bd-b87bb1286679" #uuid "d993f311-557a-391d-ab21-677ab586a01b" #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" #uuid "897ee373-c9e4-32f9-a323-fe188494520b" #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" #uuid "189f9b13-158d-379b-9440-05b9bc24a356" #uuid "f750d160-d009-3c96-a630-eff035abfd6c" #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" #uuid "f7625727-1129-3703-96c0-442c8ac00dae" #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" #uuid "af817d47-9021-3806-800d-7ef8dab08024" #uuid "20b16954-6c66-3536-b816-f13d464da44c" #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" #uuid "dee45e08-5103-32ec-93b7-17d391b64576" #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" #uuid "6b9a2464-282c-396d-a918-afde2db81cde" #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" #uuid "ac19727b-672c-352f-b393-c52a81b055cb" #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" #uuid "44de8c27-9942-39ca-997c-57ff932fc882" #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2" #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" #uuid "abe58998-3062-3866-9238-314af7ba0265" #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" #uuid "5b444b22-2047-3124-af08-48687f72a6b5" #uuid "af472b73-df4f-3397-a8c7-31a328913353" #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" #uuid "91934e02-f64d-3aab-9536-19f592307a91"], :com.boardgamegeek.boardgame/max-players [#uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" #uuid "56c98771-eaf0-34fe-8f66-156041739594" #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" #uuid "938351d5-c89e-32e0-af3b-73d217217b14" #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" #uuid "12fd071d-60ce-3146-b555-655882920638" #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" #uuid "875b8289-de41-3672-8c92-95b6a689ff43" #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" #uuid "66437274-239d-371f-a5d1-71102dca56e3" #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" #uuid "104965da-ee0b-3867-95a3-0416228b7b19" #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" #uuid "e214a1ce-1929-3835-b502-4510ef89f940" #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" #uuid "fab76503-1b94-3d49-8b17-1336fababeec" #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" #uuid "2e89598e-c81e-39d5-bae2-aee451063265" #uuid "30c12229-f508-341c-9680-149dbdf88523" #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" #uuid "434338bc-9501-334b-adbf-2b3752e9e231" #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" #uuid "49b5473d-32f5-382b-943a-dda4a1491daf" #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" #uuid "f8283731-6cf2-3086-8140-494037314bf5" #uuid "d496a066-c36e-3570-99d1-9eedec118dee" #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" #uuid "109a021a-56f4-3223-ae04-902a1f40db16" #uuid "492b7750-c3e8-3055-a93b-6745391300a6" #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" #uuid "582d2648-b634-3370-a31e-bef979dab3f3" #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" #uuid "557482bd-c397-30d7-af1b-afbb6c763124" #uuid "414bbf5b-1083-3275-9983-4133937db58b" #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" #uuid "99102149-c730-3271-a928-b7549ce07a13" #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" #uuid "054f1270-bf79-32f9-825a-96880e800c9f" #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" #uuid "096f6d71-6864-3882-898c-00b9142932e7" #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" #uuid "91a5169d-5877-3642-9a52-54c4f01655da" #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" #uuid "826863b8-1605-33a8-9169-91ebcb89712b" #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" #uuid "f18187e7-f398-32f0-b73e-625e848d8333" #uuid "2293c663-d1bc-3701-9a53-009f457c6940" #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" #uuid "b1127074-659b-3102-907a-25a0473a3e98" #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" #uuid "5a156002-5793-338e-9399-def9bfd7eca6" #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" #uuid "423cb589-88be-336d-ada8-9817b5fe519e" #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" #uuid "5e04b28e-010d-366b-af9d-020474ee6392" #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" #uuid "33e20383-3807-3414-869c-7a3907d40b75" #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" #uuid "c64e760d-cd41-31b1-9626-a196593146fa" #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" #uuid "77933845-adf8-3758-a686-a08ea46f015e" #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" #uuid "8881688f-f717-3852-a5df-d3c7386562d1" #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" #uuid "5140d848-4910-3017-8f45-c2851658966b" #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" #uuid "d993f311-557a-391d-ab21-677ab586a01b" #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" #uuid "a0969dfc-5294-3b41-82bf-220e859197db" #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" #uuid "897ee373-c9e4-32f9-a323-fe188494520b" #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" #uuid "890488d0-a370-30a4-9788-a44754330b27" #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" #uuid "165261a9-0183-3e53-be82-ccc197c354b8" #uuid "a389677b-6118-3815-84fe-c1e75f38984c" #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" #uuid "39af5c41-5927-3dde-8a75-10397211dcda" #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" #uuid "4578b280-9265-3868-8670-e39b70b610f9" #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" #uuid "f81386ae-7767-3f93-a560-c78df55109bb" #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" #uuid "f7625727-1129-3703-96c0-442c8ac00dae" #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" #uuid "b8909580-a299-3ec5-848c-548f38510b72" #uuid "e154f5ce-d498-3840-a559-661a996d4d09" #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" #uuid "1bd17795-c173-3c75-9489-8343917b819a" #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" #uuid "ebb89386-c539-37db-b4a7-972b931256f7" #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" #uuid "3463c066-922f-3864-93bd-b87bb1286679" #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" #uuid "12218694-0010-31cc-a245-a502b7ed4b19" #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" #uuid "f750d160-d009-3c96-a630-eff035abfd6c" #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" #uuid "20b16954-6c66-3536-b816-f13d464da44c" #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" #uuid "51817160-093d-3773-957a-662779bebec9" #uuid "56be7020-8ac5-312f-9c02-a912103646d9" #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" #uuid "6b9a2464-282c-396d-a918-afde2db81cde" #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" #uuid "189f9b13-158d-379b-9440-05b9bc24a356" #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" #uuid "28e54304-62fc-38c9-9b76-058878323d57" #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" #uuid "be01908f-633f-35da-be89-80701db8ed25" #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" #uuid "b4991e13-f466-39b4-be16-56909272f1cc" #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" #uuid "f8049db2-d889-3677-984e-4e2ce41de578" #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" #uuid "568da493-2833-3009-ad26-7108e0683081" #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" #uuid "dee45e08-5103-32ec-93b7-17d391b64576" #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" #uuid "abe58998-3062-3866-9238-314af7ba0265" #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" #uuid "39063899-ef80-383a-97b7-38b8c778cc24" #uuid "ac19727b-672c-352f-b393-c52a81b055cb" #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" #uuid "af817d47-9021-3806-800d-7ef8dab08024" #uuid "5b444b22-2047-3124-af08-48687f72a6b5" #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" #uuid "af472b73-df4f-3397-a8c7-31a328913353" #uuid "578002db-1bee-32a8-949c-58bece6429a5" #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" #uuid "91934e02-f64d-3aab-9536-19f592307a91" #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" #uuid "44de8c27-9942-39ca-997c-57ff932fc882" #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2"], :com.boardgamegeek.boardgame/min-play-time [#uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" #uuid "56c98771-eaf0-34fe-8f66-156041739594" #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" #uuid "938351d5-c89e-32e0-af3b-73d217217b14" #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" #uuid "12fd071d-60ce-3146-b555-655882920638" #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" #uuid "875b8289-de41-3672-8c92-95b6a689ff43" #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" #uuid "66437274-239d-371f-a5d1-71102dca56e3" #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" #uuid "104965da-ee0b-3867-95a3-0416228b7b19" #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" #uuid "578002db-1bee-32a8-949c-58bece6429a5" #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" #uuid "e214a1ce-1929-3835-b502-4510ef89f940" #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" #uuid "fab76503-1b94-3d49-8b17-1336fababeec" #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" #uuid "c64e760d-cd41-31b1-9626-a196593146fa" #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" #uuid "91934e02-f64d-3aab-9536-19f592307a91" #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" #uuid "49b5473d-32f5-382b-943a-dda4a1491daf" #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" #uuid "a389677b-6118-3815-84fe-c1e75f38984c" #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" #uuid "5a156002-5793-338e-9399-def9bfd7eca6" #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" #uuid "56be7020-8ac5-312f-9c02-a912103646d9" #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" #uuid "6b9a2464-282c-396d-a918-afde2db81cde" #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" #uuid "f8283731-6cf2-3086-8140-494037314bf5" #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" #uuid "a0969dfc-5294-3b41-82bf-220e859197db" #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" #uuid "99102149-c730-3271-a928-b7549ce07a13" #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" #uuid "054f1270-bf79-32f9-825a-96880e800c9f" #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" #uuid "165261a9-0183-3e53-be82-ccc197c354b8" #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" #uuid "f18187e7-f398-32f0-b73e-625e848d8333" #uuid "b1127074-659b-3102-907a-25a0473a3e98" #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" #uuid "20b16954-6c66-3536-b816-f13d464da44c" #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" #uuid "dee45e08-5103-32ec-93b7-17d391b64576" #uuid "51817160-093d-3773-957a-662779bebec9" #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" #uuid "897ee373-c9e4-32f9-a323-fe188494520b" #uuid "be01908f-633f-35da-be89-80701db8ed25" #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" #uuid "096f6d71-6864-3882-898c-00b9142932e7" #uuid "12218694-0010-31cc-a245-a502b7ed4b19" #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" #uuid "826863b8-1605-33a8-9169-91ebcb89712b" #uuid "434338bc-9501-334b-adbf-2b3752e9e231" #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" #uuid "39af5c41-5927-3dde-8a75-10397211dcda" #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" #uuid "f750d160-d009-3c96-a630-eff035abfd6c" #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" #uuid "568da493-2833-3009-ad26-7108e0683081" #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" #uuid "b8909580-a299-3ec5-848c-548f38510b72" #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" #uuid "39063899-ef80-383a-97b7-38b8c778cc24" #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" #uuid "d496a066-c36e-3570-99d1-9eedec118dee" #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" #uuid "ac19727b-672c-352f-b393-c52a81b055cb" #uuid "492b7750-c3e8-3055-a93b-6745391300a6" #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" #uuid "582d2648-b634-3370-a31e-bef979dab3f3" #uuid "2e89598e-c81e-39d5-bae2-aee451063265" #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" #uuid "30c12229-f508-341c-9680-149dbdf88523" #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" #uuid "f8049db2-d889-3677-984e-4e2ce41de578" #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" #uuid "44de8c27-9942-39ca-997c-57ff932fc882" #uuid "f81386ae-7767-3f93-a560-c78df55109bb" #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" #uuid "af817d47-9021-3806-800d-7ef8dab08024" #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" #uuid "1bd17795-c173-3c75-9489-8343917b819a" #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" #uuid "af472b73-df4f-3397-a8c7-31a328913353" #uuid "5140d848-4910-3017-8f45-c2851658966b" #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2" #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" #uuid "d993f311-557a-391d-ab21-677ab586a01b" #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" #uuid "5e04b28e-010d-366b-af9d-020474ee6392" #uuid "4578b280-9265-3868-8670-e39b70b610f9" #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" #uuid "557482bd-c397-30d7-af1b-afbb6c763124" #uuid "414bbf5b-1083-3275-9983-4133937db58b" #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" #uuid "890488d0-a370-30a4-9788-a44754330b27" #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" #uuid "2293c663-d1bc-3701-9a53-009f457c6940" #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" #uuid "189f9b13-158d-379b-9440-05b9bc24a356" #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" #uuid "5b444b22-2047-3124-af08-48687f72a6b5" #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" #uuid "ebb89386-c539-37db-b4a7-972b931256f7" #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" #uuid "abe58998-3062-3866-9238-314af7ba0265" #uuid "3463c066-922f-3864-93bd-b87bb1286679" #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" #uuid "b4991e13-f466-39b4-be16-56909272f1cc" #uuid "423cb589-88be-336d-ada8-9817b5fe519e" #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" #uuid "33e20383-3807-3414-869c-7a3907d40b75" #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" #uuid "e154f5ce-d498-3840-a559-661a996d4d09" #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" #uuid "f7625727-1129-3703-96c0-442c8ac00dae" #uuid "77933845-adf8-3758-a686-a08ea46f015e" #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" #uuid "8881688f-f717-3852-a5df-d3c7386562d1" #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" #uuid "91a5169d-5877-3642-9a52-54c4f01655da" #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" #uuid "28e54304-62fc-38c9-9b76-058878323d57" #uuid "109a021a-56f4-3223-ae04-902a1f40db16"], :com.boardgamegeek.boardgame/max-play-time [#uuid "4a3e0096-1a08-379c-b4f9-1ca0070ea2f5" #uuid "64581d49-5b7a-3952-b129-c64b56c406ed" #uuid "4080e14f-b40a-3b33-98cf-83612aaecf76" #uuid "6d8aa71d-1531-3019-ac35-ea2463485268" #uuid "780cd613-d706-3945-8ef3-6d59c16c2312" #uuid "46abbae9-5fbc-3520-9ed2-16c2901bdbae" #uuid "7d9e8262-8714-332c-9ca9-ac68c68596b5" #uuid "358a9cb1-8677-3a1b-90ac-1c8d6ffa6288" #uuid "d2a62a6a-ab6b-3709-b7d4-3e758a82c50b" #uuid "526e6774-4f0b-3073-9ec1-7c191c62d24c" #uuid "24380876-a0ae-3b46-a8c6-a092619bef37" #uuid "3be646fb-70d6-3079-b0a7-35b697a011c8" #uuid "d8ebf6a0-f01a-377d-82c8-e903e801973b" #uuid "6f074a1d-f38a-33df-b9d8-d724a8ed3410" #uuid "51a7df93-adb9-3cee-bc0c-05f7dc89f774" #uuid "56c98771-eaf0-34fe-8f66-156041739594" #uuid "a4a4e5f6-a7ab-31b8-8ec1-0983b264ed4b" #uuid "8ec8175e-8c92-3f65-a885-97c16ca93454" #uuid "7b6a839b-181c-3d7e-a88a-1115d8a027c2" #uuid "0727c24e-c484-3017-9850-a0e366a7dd42" #uuid "d9f82ac3-bc24-3fa7-8292-3fff745ff105" #uuid "d0c13971-6116-34f0-ba4f-9f6b16e7b130" #uuid "fd3be4f0-d310-39a4-86b8-03524d064ee6" #uuid "0e7278cd-a02a-3c04-86dc-c75a4df34eb2" #uuid "701ae3e6-c75d-3e66-ab6a-b255f6fade83" #uuid "2f266ba4-d63b-34be-8400-6b95a3442ff9" #uuid "a93478e2-7d6a-36e5-8e4e-8b4c3f632b0c" #uuid "280a5f64-7a78-3590-8dd0-81f7136e31b5" #uuid "55ce9281-0034-3261-81ee-695fd1879fe7" #uuid "cedb275c-f7e8-3cf1-9073-41cff22af498" #uuid "886937cd-0285-3aad-834d-f6e5bd1d1dfb" #uuid "642edb7f-7af6-3c4b-8b07-5ac20dcba0b9" #uuid "c8835178-b83e-3ef2-84d6-ed36804309c8" #uuid "2ffb14ad-8e1d-3f3c-9df9-133b523d8287" #uuid "0d22fe23-de11-3728-9634-4b0114313a9f" #uuid "d803129a-da52-3403-b88a-1331f9bf89b1" #uuid "0d600bac-e4d6-3227-b4bf-b0d9fee001c6" #uuid "c693b4c3-9720-303a-836a-8f25b4da698a" #uuid "e74ac58d-7a69-3b4b-9cff-6dc08fd9f434" #uuid "83f7cd22-e2a0-3e46-b9ba-4358004dc75f" #uuid "d8b5d495-0030-372f-8b5b-3131d1bcddc1" #uuid "3b11574d-ac04-3356-aa1c-eb3ac5ef4c6f" #uuid "a673ace7-74a3-384d-823b-f8131295d6d1" #uuid "f0343033-f91c-3c5a-9064-4138ea33af2f" #uuid "938351d5-c89e-32e0-af3b-73d217217b14" #uuid "4d4c8a37-4103-35eb-b414-672ae3f8ea83" #uuid "61f2c08e-b43e-3b4f-80bd-d988013ee49b" #uuid "6a99a492-a63d-3ef4-a946-1cdbf945a66a" #uuid "a58b4cee-88af-34f8-9ad6-839f132388f0" #uuid "d99574a4-a1a2-3d19-96ca-d4f5094dca65" #uuid "53b40008-e2e5-3189-9b82-fd0ba46405e3" #uuid "b4f52f37-41db-379b-94e2-3b8911f49401" #uuid "1ceaeab6-397f-308a-b02e-6652106f2fbd" #uuid "12fd071d-60ce-3146-b555-655882920638" #uuid "f29cd9a4-1c5f-3c2c-8229-3c3cd8b14d7c" #uuid "cb6afc25-1c32-38b1-bfe0-1c3f8797a9ea" #uuid "0dd28a2a-30d5-3d29-97ba-3e8bfa086f0f" #uuid "da846ac4-d725-3d51-8667-b8ab69c960fb" #uuid "4a734354-588a-3c87-bd6f-48f09c3e691f" #uuid "41e6fb49-794a-3928-bc31-b058fc3f832d" #uuid "c6dab445-bf7e-39be-b4cb-6f22ae7e715a" #uuid "275ef384-7d59-3c1c-8625-ec7a6d5208b6" #uuid "5aeb1f62-f6cd-396d-881c-07d58b82f143" #uuid "edfa15bc-3235-3696-aaad-09e432fc6662" #uuid "77a96823-3d71-3ac3-bc22-8ab7f1044beb" #uuid "cba95a42-c53b-3c6f-bf3d-df9bf10a4069" #uuid "b86c48fe-3ed8-3b4e-9369-6d3957a9d311" #uuid "67e88af3-f2d3-3953-9be7-c1b26fefe183" #uuid "e56eb8fb-70f3-368a-b45d-dec1e25f35aa" #uuid "ad09b2d4-8b28-31c6-8e5a-2bf421f7f2f2" #uuid "ba776ee9-9ebc-3521-9d9d-ce1c6a702748" #uuid "c3fea04b-2042-3a0f-ab59-e7cedee3e1bf" #uuid "200327ec-e2f1-3904-9057-9c80de5c3e0f" #uuid "6b1a6c6e-487e-334f-97cf-8b0efad2f3f9" #uuid "7cd74735-c2f6-352d-8428-474bc1b6b386" #uuid "7b9a4759-a742-301f-b458-f4ef2d8368da" #uuid "2d623ec2-8bcc-30b7-a033-e363d7c0a2cf" #uuid "d20adb03-0a94-319b-9d04-188d5cad9da6" #uuid "cd9b3130-0865-3759-962d-9c3eab8d03f4" #uuid "b7ae6819-447d-36c3-bb6a-0e7dbe5c17ce" #uuid "0f797b16-678f-32d3-af6d-84b6d8f6ad20" #uuid "f5c8ba24-2c49-3844-8721-5cf4e518c90f" #uuid "875b8289-de41-3672-8c92-95b6a689ff43" #uuid "653e0f82-5aec-3cf2-86d0-4422c6b2f8cd" #uuid "66437274-239d-371f-a5d1-71102dca56e3" #uuid "ccfd0e0f-749f-3a3a-a9cc-7c01a70ea5fd" #uuid "72b0f8c3-5245-35e0-9a66-484200882d79" #uuid "cf3b2299-3275-32a1-bcc3-40c64f229538" #uuid "ee733023-be9b-3fb4-81cf-0e08e24aba0e" #uuid "a09707a5-88fc-32fa-b544-8afa929496ab" #uuid "ea2abdf4-a5ae-3c18-be7b-bd2db0068ddb" #uuid "104965da-ee0b-3867-95a3-0416228b7b19" #uuid "40bd8e35-d86c-3ba3-8791-e33dad4f0330" #uuid "578002db-1bee-32a8-949c-58bece6429a5" #uuid "bbf3c83b-9b9a-3dfd-9cc3-d3295f5d235f" #uuid "7e7123b0-d269-3d5d-9ec8-d12c52a8ed8a" #uuid "5c50d320-55f3-337f-b820-3e559968a3f1" #uuid "fd6267f8-71dc-3dc3-9ad9-e13b844fed44" #uuid "29b3ea31-ed18-3383-b4af-bfe1002404ae" #uuid "47dbc903-625e-337e-b249-2dbf0b1b9527" #uuid "e214a1ce-1929-3835-b502-4510ef89f940" #uuid "1f3e8c8e-59ab-34e2-a92f-cf6dc3e47daa" #uuid "d46d3296-6569-3615-8e1d-5ac2e88a346a" #uuid "fab76503-1b94-3d49-8b17-1336fababeec" #uuid "e29fbec4-4c71-3519-8e93-582b67df86f4" #uuid "1c1ad4ae-57a5-38c9-8c80-666849f4eeec" #uuid "c413a292-7a46-3ea3-aa4d-896b4b1e78e0" #uuid "d76c9788-f173-3fff-9b13-9ced6ab67c4a" #uuid "5a156002-5793-338e-9399-def9bfd7eca6" #uuid "59bab2ff-b0ef-386f-8db8-ef439320a47e" #uuid "a2cce669-b64c-31e7-9afb-63f03c696fee" #uuid "bddc24af-3739-3b8e-bfcb-17b4a25b7153" #uuid "3da3ce69-4e95-3c15-beec-5d9ec2078260" #uuid "71e79ef8-0600-3398-990c-febe3b0b758d" #uuid "2b110ae1-40c3-3594-bdfa-8a5bfe402f8b" #uuid "2d7c2d23-5fac-3ff4-8aac-33c2ce47eb1c" #uuid "a6480b1c-62dd-3ceb-9f94-fb57c823691e" #uuid "49b5473d-32f5-382b-943a-dda4a1491daf" #uuid "5af4832c-3c6d-3e4b-883d-4fbba7190317" #uuid "bb8434ca-528e-3b5f-bfc5-5eebbe2c00a0" #uuid "dd86edfc-d85e-3039-9399-5c282a2e3524" #uuid "c4b03b0d-d5cb-3866-bfee-4a20095c11d6" #uuid "99102149-c730-3271-a928-b7549ce07a13" #uuid "24a04d97-a632-349a-b9b1-bb49af1a096a" #uuid "c7b74e13-dff8-3831-98f4-1d81198c1337" #uuid "cf06db18-725b-36dc-8e9c-5246b40aae01" #uuid "30933bc2-a19f-3124-9a19-d7b8facdbeeb" #uuid "054f1270-bf79-32f9-825a-96880e800c9f" #uuid "165261a9-0183-3e53-be82-ccc197c354b8" #uuid "ca5622cb-e7ba-31f7-95df-551ad1bbe80f" #uuid "2752fdce-7879-3086-8e8e-2a54c21ee999" #uuid "ad117101-b1d8-35b7-b02b-d335db512e5e" #uuid "3cad23d1-2f51-3a7b-8a51-4c256db8638d" #uuid "cdd0afaf-944b-3605-ab9e-990704f79409" #uuid "f18187e7-f398-32f0-b73e-625e848d8333" #uuid "b1127074-659b-3102-907a-25a0473a3e98" #uuid "843ecaf0-bb25-3a67-af63-f8a4bc3708a3" #uuid "1fdd0d64-7a70-3a2d-93b1-bbf278454b32" #uuid "51c249b0-90c8-3a66-8732-f796a82e5382" #uuid "df4c4520-3102-33f1-9a51-ee304c193f23" #uuid "20263815-62ac-3093-af3d-0f4a0f0538bb" #uuid "d18a26f4-6f25-37b2-a861-2147cf47cf18" #uuid "e5279fe2-9e7a-313b-9b5d-e2d1f6a1e8db" #uuid "52bfe89c-73d9-3a87-b498-188a2e2f101b" #uuid "f77b4d34-54f4-37eb-8a5b-6d8df9e0f66d" #uuid "20b16954-6c66-3536-b816-f13d464da44c" #uuid "1560dd3d-f5bc-3f5f-b365-ead27369cda1" #uuid "2c11257f-a438-3f75-8fac-459a4275e4c1" #uuid "dee45e08-5103-32ec-93b7-17d391b64576" #uuid "2c63539a-a2a5-3415-b3d7-89edc773ac8b" #uuid "6b9a2464-282c-396d-a918-afde2db81cde" #uuid "77926e55-5ca9-34b7-8f65-009dd92da63b" #uuid "9cfc3b97-43a7-3c0f-a7c6-2b42b62c90f6" #uuid "191e854e-b00d-3d80-8fa1-fed83b373be7" #uuid "05ae57bb-e135-3a41-87f7-2bc52f18bff4" #uuid "9efcadf2-ca94-3a2a-ab5d-3f8d97feab54" #uuid "86fc7c00-7653-3e31-b5c5-4617a0ea8c97" #uuid "a0969dfc-5294-3b41-82bf-220e859197db" #uuid "3e302b86-f47c-3d22-9b4d-c253439d9970" #uuid "941e3f4a-24d8-3841-8144-e9db47d6f92b" #uuid "660cb8dd-c782-3542-8db8-9e1dc61af856" #uuid "897ee373-c9e4-32f9-a323-fe188494520b" #uuid "f821ee04-f104-3d22-96a6-9bab12eb4c28" #uuid "accf9b44-d60e-36aa-ab3e-293a0e91aed0" #uuid "76a33f97-02f4-3a7e-ada3-46bd2544ae02" #uuid "648ffc7a-6dd1-39e8-a7f5-7ecb69cc4066" #uuid "0db85bb5-edc7-3f2e-92f8-855aa13eb806" #uuid "1c40650a-1a9b-32c9-a6d2-9daeea19d502" #uuid "bf515360-5eca-32d5-ac9d-fb620b905619" #uuid "434949a6-89e3-3ba2-8e67-412edc26c71f" #uuid "a389677b-6118-3815-84fe-c1e75f38984c" #uuid "ebe3d298-d25e-3110-8e34-1c079e9455d9" #uuid "b8f4ece4-3fa5-3fc3-9f1d-a34aec906149" #uuid "34946d54-6d22-3af0-afdb-e795b8de802b" #uuid "ebb7a837-d8f1-3d0c-a149-24e17e4005dc" #uuid "af89834e-3251-3aa9-a464-74b8d24a5091" #uuid "bd4049a7-2730-31a1-bbc9-4a077d75facc" #uuid "61751dfb-a841-3676-aa92-97d75c9a9f56" #uuid "bc4b57d5-55c6-3d77-a3cb-38686b7bc115" #uuid "c9e680a4-40fb-3a3e-bc38-6556dd90712b" #uuid "bb2b867a-583d-3e72-adf5-e81bf22baea4" #uuid "d9ff8a5f-72de-3a40-99bd-301e426485bd" #uuid "826863b8-1605-33a8-9169-91ebcb89712b" #uuid "434338bc-9501-334b-adbf-2b3752e9e231" #uuid "dd1bf333-48e3-3cde-80c2-6fb824ec3563" #uuid "a6092dda-9d9f-3b45-b148-b73eb5da724a" #uuid "bcfc2af4-495d-3023-83ab-12fb1057166f" #uuid "984c20a2-ad28-3167-b8ae-fcef61acbced" #uuid "a5d7ddea-2e79-3a0f-b248-95af3f6223d4" #uuid "e9e59065-5acd-3d1d-876b-8cb866541534" #uuid "e369d9fd-2ab5-3455-9298-16db19e37fd4" #uuid "90f166e5-27c4-3684-8865-0a7d63773ce7" #uuid "aecc77c6-bfad-3a88-b455-19b8d2c86bc8" #uuid "39af5c41-5927-3dde-8a75-10397211dcda" #uuid "227fed4b-25cc-316a-b15e-6c9a064702db" #uuid "fcbd772e-48c4-307d-bd3b-e13b37a82f5e" #uuid "fbccf9d3-dd4b-3e43-954e-9fafac2763ae" #uuid "39458645-fcb9-368d-81b6-ad23bbed69cf" #uuid "46df0476-0eb0-30b7-92cd-7703972c5f1a" #uuid "5af83e31-96bf-39f4-80f3-1f2e1a6c9afe" #uuid "e7c82f28-5b8e-3311-8519-a3cfa713dec3" #uuid "f46ff3af-0204-348e-9bd0-c1f668f82128" #uuid "6097cdf7-1ae6-38ea-b8bc-8906f5650bfc" #uuid "f750d160-d009-3c96-a630-eff035abfd6c" #uuid "a4c50ca7-7a49-3873-a656-5ba52bc56488" #uuid "eb9bd23b-c056-3a5d-a53d-78b2dcbd15ae" #uuid "863b84e5-b5c4-3347-a920-d71c4a08a259" #uuid "a65fe9b8-99d0-317b-9c91-7b969001669d" #uuid "7bd8e302-1270-3448-8815-58d1f6da0834" #uuid "5610f650-22c6-3571-bffa-cfd6a9d68b2a" #uuid "d2d5cb9d-1faa-3a1e-9c8b-0175fdae6604" #uuid "0ef3c7ad-f9bd-3964-afb0-62c38bee7460" #uuid "9cf42701-85ad-3877-9a0f-cf57a5acf172" #uuid "309ea4eb-582b-3fb9-93ca-87fd54016d3e" #uuid "b8909580-a299-3ec5-848c-548f38510b72" #uuid "595f02eb-d247-3d88-95e4-06800f89e71a" #uuid "134c5416-16b9-3118-a547-774f6df7bbcd" #uuid "f4afb893-6f91-3389-8606-9c088ff6ea75" #uuid "64b81638-f97f-36d4-ad33-08e915a1750e" #uuid "aacb653d-e587-34a7-a360-4c3956b4f677" #uuid "91934e02-f64d-3aab-9536-19f592307a91" #uuid "9b45f563-8b03-34d4-9d30-5134ab5e657e" #uuid "97fc6923-396a-3ad8-8a4c-70879893f4b7" #uuid "3f9e8eb6-bc1b-357a-949e-643f14a3cedf" #uuid "15a92feb-8726-3842-b957-7e7b69421b2c" #uuid "97fe9a27-6b0c-3281-8d07-433af5bcf4e4" #uuid "02b25657-6abc-3080-8fb9-16100cb17ad5" #uuid "161dfda2-bf83-3041-ae10-e2410340abd1" #uuid "595f5c4f-c267-303b-adf4-1333c70a9460" #uuid "81cc0f79-3609-346a-8dde-65ed1c9f3c3a" #uuid "9a6c960c-a513-3563-bb1f-1783f1aece80" #uuid "43f3a349-eec8-3b6a-9947-777f90811c90" #uuid "133c22e7-c259-3256-a323-5b88f0b6a645" #uuid "63e5002f-f8a6-36bd-81b5-2f817477eecf" #uuid "f8283731-6cf2-3086-8140-494037314bf5" #uuid "d496a066-c36e-3570-99d1-9eedec118dee" #uuid "1d4dffda-8368-3060-a077-e7937437d6f7" #uuid "110f4e5f-593e-3ca2-819e-29dab8ad6f55" #uuid "0746ccba-be89-3d2f-a4b6-af590e489ff0" #uuid "cbed48f7-5fef-3645-9ebc-db33807e504c" #uuid "ac19727b-672c-352f-b393-c52a81b055cb" #uuid "492b7750-c3e8-3055-a93b-6745391300a6" #uuid "a408c9e7-3639-3621-b65f-1f8aeea37b18" #uuid "2e89598e-c81e-39d5-bae2-aee451063265" #uuid "cc6d3c9f-7a71-39c8-abd4-59a9b3ebf30b" #uuid "def6402b-3a6f-30cb-aeb3-63cd5cefb20d" #uuid "bf684d42-7071-39ee-809d-514bc5ca241a" #uuid "be01908f-633f-35da-be89-80701db8ed25" #uuid "7c1ada9b-f78c-379d-a6a7-b3018581aab9" #uuid "7e7fdd38-98cc-3f0f-a059-308e820a2013" #uuid "59ccf897-4368-3ab7-ae8e-0ac969872f6e" #uuid "1a30c214-a750-3e08-97aa-c85a7fa01368" #uuid "30c12229-f508-341c-9680-149dbdf88523" #uuid "c56337cc-54ed-3e22-8b76-d1092f67310c" #uuid "08cddb57-6c00-3836-9593-a0b04fd84141" #uuid "935b4085-0cd3-3875-abe0-2996fb99980b" #uuid "c8ccad85-82a3-3865-8ad8-a3487faedffb" #uuid "f72af12f-4736-3bde-84b0-ca91070cf43c" #uuid "ef81a392-af64-3668-81ff-2c3b7736919f" #uuid "096f6d71-6864-3882-898c-00b9142932e7" #uuid "69895ff2-b990-3611-827e-f4f7fd32eb8a" #uuid "eb9ce38e-9186-383e-8a18-3f574ec0615f" #uuid "b2980c72-2a1a-3e7a-b030-3718ce5491d8" #uuid "4d77e635-44ee-324b-b8e1-1cd07bd913a4" #uuid "cd19fd52-bf5e-3ad5-8ccf-0d6664374368" #uuid "73fdae1a-b0ca-3e78-b23e-a4a7101cd9e4" #uuid "f072aeb8-c5dc-3eb7-9f65-6c8ab7d359a9" #uuid "cace91df-d6f2-36fc-a98a-6fa5cde7357d" #uuid "06ac533c-6f03-39a8-ae86-a6c373df20f3" #uuid "027df389-a20d-3cbe-886e-a91e5b10d58a" #uuid "781ebc9b-0afe-3ab7-97b1-e80975dc0ee4" #uuid "b150a64b-6e6b-3e4b-8784-e6bc946f1fc1" #uuid "4c2d3b0e-9fbd-3faa-9fed-724910231a39" #uuid "a9957800-b641-3919-9ff6-ca11f1c233c4" #uuid "5aac7681-3d33-3350-b4e8-43d1ae9b29e3" #uuid "2fe5b306-b8a0-3e8b-becf-b4a37cf52717" #uuid "1b3840b0-b70d-31c1-be70-014c8537dbba" #uuid "aff8862a-8fba-39a6-86f4-ef02a3a228f9" #uuid "6a8dc11a-fcae-3e14-ae36-50d5f4599f7e" #uuid "e4b769db-2a42-392d-b311-b02c3545d07d" #uuid "6db176b1-017b-3430-a362-e2d6ee99cc67" #uuid "1c585f7b-4a5b-3e81-abe0-97ce17218168" #uuid "e1d04b1f-1d94-3006-958a-ee81242dab6d" #uuid "b934a68e-f1d0-3352-b170-afb9fa2103da" #uuid "492379b2-b8f7-3c3f-bcc8-e0ca6254f4b1" #uuid "5f955ad8-59ca-3215-9cab-4fa839d2a033" #uuid "0eabf8b7-0bee-38f4-bfd2-cd9ef3624d39" #uuid "ae9fa216-d3c0-3682-9657-bc2cb71eaa11" #uuid "b7dd6050-6cb3-352e-9363-36450ff12ddc" #uuid "d8ac8dc4-6760-3f12-96c2-e3420b291781" #uuid "47a720fb-24ff-320b-99ab-77739da99a5a" #uuid "1309682a-fbd4-3c2b-89cb-11c7d8048013" #uuid "3b726f01-748c-32b9-ac65-408fdb259e18" #uuid "e3ff49f1-3a4e-3be2-9c80-51385adc499c" #uuid "6322ea9d-5e70-3e8c-89a6-0e261275b1d1" #uuid "36f8c047-0a0d-34e8-920b-337b779969ab" #uuid "6f243f7a-f0d3-3ed7-8572-4782675ddb75" #uuid "b75229d9-66a3-3ee4-86f4-e1e5f353d9a4" #uuid "a4eb9598-b375-3f22-8363-e0295ac2f5f2" #uuid "c1fa67fc-99a3-39a4-962b-ba099f84d11c" #uuid "44de8c27-9942-39ca-997c-57ff932fc882" #uuid "c6dfc763-4e0a-33ee-b4b9-efe1ce4f82b3" #uuid "f81386ae-7767-3f93-a560-c78df55109bb" #uuid "f6be0578-56d6-30b6-ad51-8713fc8f260a" #uuid "54b141a9-4bee-378e-b867-fd1d4729f014" #uuid "c64e760d-cd41-31b1-9626-a196593146fa" #uuid "edc4787a-b55f-39c5-ab40-a99f7c1a0c80" #uuid "7d9f1d6a-539f-3506-a533-6d5ff7e5df57" #uuid "431d180f-b4d4-35f3-8c95-96ad5a7267d6" #uuid "af817d47-9021-3806-800d-7ef8dab08024" #uuid "bb7745e6-fe51-351f-843c-5012bd13d334" #uuid "abcdf625-6664-306b-88db-9848e46fc0e8" #uuid "655dd7fb-2048-304d-ac0f-6a354ff76bc2" #uuid "e261ac28-9c39-30db-81d4-e7551f8b4fe6" #uuid "3992d652-f81d-3e86-bd6e-2e685cb351a3" #uuid "d8d090ed-62f4-3521-8f53-6cd65960c06e" #uuid "51817160-093d-3773-957a-662779bebec9" #uuid "761cd5e5-55ee-39c8-b789-0273d2493fe8" #uuid "ff75a7b6-d946-39dc-b9cf-69635113e6f4" #uuid "78076ce7-92c4-340b-b99c-598c92bd69e7" #uuid "1e78ea48-893a-3f8e-91e2-01c9ff0e706e" #uuid "f00e2b92-434d-31e6-8a25-1b16618b5ab5" #uuid "458d2163-a348-30c3-a4ad-8792fa32645c" #uuid "bf9bf9b2-2886-3710-a8cd-2ab56ce77646" #uuid "d8b44a4f-28ae-353d-adeb-b3fd26fc143b" #uuid "af472b73-df4f-3397-a8c7-31a328913353" #uuid "928c51b9-1ca6-3be5-b2f1-e665e90fab70" #uuid "c3fa9226-9cf9-3afa-8844-dff274cc446d" #uuid "8ae6e417-a5fe-36fa-9be3-bd2c6ac61840" #uuid "08240ccd-42ce-3242-b2f3-7bf5b24420fe" #uuid "59f822bc-aa8e-319b-9e63-eb00919b367a" #uuid "6ad0df6a-ac90-3fc1-a6fc-cdd155147a92" #uuid "32288419-57f9-3b53-a2df-4b3393930c5a" #uuid "44ca4f9f-417c-3200-b21f-4ae33fae9646" #uuid "0a4d7b38-fbbc-3f6c-88fe-b09fc35ad1a6" #uuid "d993f311-557a-391d-ab21-677ab586a01b" #uuid "36749cc5-01bd-3292-aaaf-44525fc6ed7b" #uuid "7fe2ec37-f762-3f17-b6c0-cc2b097adead" #uuid "1fff84e0-9d09-3677-a846-84f01c21b161" #uuid "6b35d568-0483-3a28-a965-30b88e49b9f5" #uuid "a23c0834-6452-3e1b-b089-338c68ac06e8" #uuid "12218694-0010-31cc-a245-a502b7ed4b19" #uuid "35474b73-b019-37a7-b3d6-ee8eb6df3f8c" #uuid "d94472e2-8880-369b-b2f2-d1d3b83960c6" #uuid "1b2a1ef5-4042-3ba6-826b-7d8fe796f7ba" #uuid "deaefe4b-599d-3d42-982f-b0bef3bbb3d3" #uuid "4578b280-9265-3868-8670-e39b70b610f9" #uuid "56be7020-8ac5-312f-9c02-a912103646d9" #uuid "8192eab7-aecc-38a2-807b-9d60d9da9506" #uuid "39063899-ef80-383a-97b7-38b8c778cc24" #uuid "7416a104-a4b4-3c68-895e-98e989dce7de" #uuid "54b7d1a4-f4c9-3dfb-a3cf-e94ce0c9d660" #uuid "6b8723ed-8ce2-3285-963d-9682f60b0287" #uuid "9cb073d5-2081-32d7-9991-a6077288e01e" #uuid "cf2fd2ba-1605-386f-8dd7-76ad0be4e361" #uuid "582d2648-b634-3370-a31e-bef979dab3f3" #uuid "0f2e7cd3-2595-3b1b-b656-cb103be3e521" #uuid "414bbf5b-1083-3275-9983-4133937db58b" #uuid "d51dd20c-a05f-3ab4-94c7-9020d535e5b3" #uuid "06e9bd9c-0975-32da-acdf-2b1942d57f1e" #uuid "890488d0-a370-30a4-9788-a44754330b27" #uuid "fb48a85b-84e9-312b-985b-de09b2c0b29f" #uuid "48788b6f-7e50-3fbb-b1a8-772c4139b77a" #uuid "3ed6a2fa-a80b-3140-9878-53dd29c238b8" #uuid "ffbd4d36-9e2e-3949-8c47-2403ba1b4e8a" #uuid "71378f58-f047-3e02-b1ec-3fc4517c95ed" #uuid "34c99f3a-1325-32c3-865d-f7e597f25a8d" #uuid "42f0d762-a858-3dbb-b64d-dde4f6a4fc6d" #uuid "7873a90e-ea1b-3b3b-8ca8-4820dc662976" #uuid "5aa42acb-56e5-3325-acc3-e39be2b450a1" #uuid "f98b9f16-c08f-3903-9b7f-80481ccce0d0" #uuid "4846597b-0309-3cd6-9f05-12f43edf2faf" #uuid "75466a84-a8e4-3539-bad7-a8f56097c633" #uuid "d701c31b-be98-3228-af7f-aaebd4cb0455" #uuid "2293c663-d1bc-3701-9a53-009f457c6940" #uuid "909332ae-bc74-34a4-8cd5-4ea30edd7930" #uuid "c9135569-60ba-391a-a44b-1d8f95a4eb93" #uuid "22b3df14-e100-33a6-a098-e396cb523d6a" #uuid "4921b8e8-521a-3a27-9aac-936218a067c7" #uuid "87f8a6ab-85c9-3ed3-b02b-4ea641ad4bb5" #uuid "79413bfc-7937-3c16-be95-e34d45589ec4" #uuid "58fb7a8c-d0f1-36b0-b1f5-b7091fbb0ba0" #uuid "704d0598-6340-3c49-b5b5-9d0fcf54e1f3" #uuid "17b41f7f-4de8-3fe3-be7f-91fc18e29b8a" #uuid "d5380d3b-56d5-3783-a863-1af12c39f5c7" #uuid "b11ddc7e-1671-30bd-a2dc-89dd757508d4" #uuid "b7c512a7-a3f4-35d4-a416-c10bffb57bb4" #uuid "5e611ca2-e99d-358f-adc6-f3f7bcfb3ad5" #uuid "11a2b6fb-2a70-314c-b249-9d7b509352e5" #uuid "8acfd5b8-b774-39c4-a04c-29420e5631c0" #uuid "4e6a41b4-aabd-37d9-9d10-9dfd1d11e5c7" #uuid "645ab7f6-09eb-3401-988d-97cd930668c1" #uuid "5b444b22-2047-3124-af08-48687f72a6b5" #uuid "07a34867-4397-3448-a7e6-5b70ca021d45" #uuid "a2a3a034-7f0f-301a-8473-dd54dca2462e" #uuid "c59a448e-a61e-3dad-871d-f3bc7ebe6774" #uuid "b172271f-a27d-3300-9b46-7f9825f0727e" #uuid "2e994ee0-a8fc-32ef-a229-a0d74edf07cf" #uuid "bdc861dc-6b29-3561-92f7-d53f184e07fc" #uuid "9db165b4-98ba-3935-9f4e-a7bd23beb693" #uuid "d80578d7-99b8-36c3-84e7-da04814b80f5" #uuid "3ca4bbbb-2ab4-3ee4-85af-cd73036a4cd3" #uuid "5140d848-4910-3017-8f45-c2851658966b" #uuid "ebb89386-c539-37db-b4a7-972b931256f7" #uuid "3d1f92a5-65d3-31a6-9880-236e33c49bf3" #uuid "05e84109-515f-3f98-8ab8-872a8a1a9cb2" #uuid "24689901-b879-3cd9-9b75-5dd7dd2b8f2d" #uuid "c31af57c-a315-3610-b455-9d5f386f31e0" #uuid "c377afb2-e46b-30b6-968e-71cb449ac3ea" #uuid "7a51eb3c-d160-3393-b631-9ae87020b9db" #uuid "d3c432b4-bac7-3974-8e6c-60ce1f8b528f" #uuid "abe58998-3062-3866-9238-314af7ba0265" #uuid "3463c066-922f-3864-93bd-b87bb1286679" #uuid "30fe5e0d-e895-3a87-87df-7cdfbdd1f7ab" #uuid "903d8dd1-63cb-3a8b-bcfa-23261d6598b2" #uuid "00dbe22a-358d-364c-aa3e-6da841b451dc" #uuid "abe1a4aa-bcd0-3440-8bb5-a57f0dcc37ac" #uuid "effdb9ce-6c5d-34df-b1b8-9d7069c8e0fb" #uuid "7ca15329-76d2-3582-a841-424d17ec0f0b" #uuid "edbf5fa9-4b8b-3458-ace1-fe46640503a1" #uuid "13d1736e-1583-3651-b1fe-12dc754ba2b0" #uuid "3c213740-1920-3b32-acb4-a2877cd7aa17" #uuid "06c5d6ce-c062-3ac0-bd43-6186b663fc10" #uuid "09e49bb6-1f03-33a3-bfbe-8937e2e031e8" #uuid "5b349ead-c3fb-374b-bb6c-47fcc3843355" #uuid "e8bffbf9-2f40-3bce-837e-bd9538b19c58" #uuid "dfa418bd-eebc-3c3f-96b6-edaf5e3c4d89" #uuid "664d0a6d-1ba3-3b2b-961f-16ce489ff406" #uuid "35af2b0c-b093-3e74-8ed4-e7589938e8ac" #uuid "9ecf0011-c0af-37eb-a590-f247005f0399" #uuid "0aba0975-5e75-3a94-8bfe-fd86797f7ce8" #uuid "6b13ea3b-f083-34f2-adf3-f3dba030f1ef" #uuid "b1ea21fb-2177-3fed-af81-0a3967e76069" #uuid "e2257f79-e77e-34b7-87b1-a0924290c7f3" #uuid "e8d2a59c-f315-3860-9608-b04f893cbc93" #uuid "08b3b128-c196-3b26-bc2f-d0e5523bc940" #uuid "af493a90-a6e6-31a5-966e-beed6fcfe1b4" #uuid "6da53f25-b27b-3c31-8b0d-3928dc46f469" #uuid "0ef8f876-d62a-3535-ae28-410454e3634b" #uuid "1add2eb4-1fca-39b2-a15b-4a7d68571409" #uuid "18594966-e721-3762-8ad4-b4cc663db0b9" #uuid "114f738d-8858-3e7b-9fdc-41ddb2758725" #uuid "35b5c110-f2b0-3562-ae79-b51bd6300690" #uuid "792a15e4-87a1-362b-8199-5789db4c3b0a" #uuid "3384a03c-665a-3116-a474-cf5d4406c85a" #uuid "d88a6b63-1a1c-36ea-95d1-2d05210eb706" #uuid "4ab65803-6f4f-3742-85c3-84b863fed5c2" #uuid "0663d3ee-2750-30d4-ad83-aa74a59c87ce" #uuid "b17747c8-2344-37e0-af25-4c86481d8b35" #uuid "e923a27a-48cd-3c06-a494-d0fa119478a8" #uuid "baf9b7dd-749d-37d7-888f-c84d255e682f" #uuid "4ae48a68-3d4f-3c45-bde8-921047297bc6" #uuid "fca4c654-eb32-38e1-bcaf-ff34fac77213" #uuid "189f9b13-158d-379b-9440-05b9bc24a356" #uuid "1cdae507-3b8e-324b-9d32-0d5c541166f3" #uuid "db6d2f3a-d731-3ddd-9e97-4b857d9ac065" #uuid "4fce228a-9d44-32fe-ac24-659f263ee51e" #uuid "01f7b705-9b33-3897-969b-343e8a6e682e" #uuid "88857068-79d6-3142-9e20-b8c7fd8b986d" #uuid "5f04dffc-be2c-351d-adf5-f41fb7084b4e" #uuid "12e2d12e-9e19-33ad-b08e-22ab8cc8eac5" #uuid "cb4c3448-07c8-36e6-8cbd-28f45339be1d" #uuid "edcee0da-2a9f-3e86-ab60-5a78ad6f26ee" #uuid "9c557202-449d-3095-b805-89c2e6e0fe50" #uuid "e154f5ce-d498-3840-a559-661a996d4d09" #uuid "62326243-6ea0-3ce1-aef6-c1d285dbdc80" #uuid "7b1d9fe4-27bb-3db5-af9b-89f0785afc59" #uuid "90a300ed-ea38-3514-b744-0c43440fa4b3" #uuid "074edbaf-ed58-3f43-ad67-8af6ba4fcefe" #uuid "14d13fd2-bd65-3d26-a969-71f5cec92764" #uuid "6fe16b2e-cfb7-3be8-8013-6c163b70120b" #uuid "7369ff3a-fe64-30e3-8363-9067a97ac8b4" #uuid "557482bd-c397-30d7-af1b-afbb6c763124" #uuid "e5f11979-9a30-30ec-8084-92dd584b1214" #uuid "af0c5e41-309d-3a83-afb7-76f7378381b2" #uuid "e3a13cf1-2d4f-3a6a-9791-62315cf53ba2" #uuid "da7d7bb0-2a43-3cd7-8ea7-21c4eb8ae388" #uuid "7faaa1de-90c9-3f60-a58e-46fae6daf77c" #uuid "0a995f25-bdf2-358f-bf5a-93e22c9aa05b" #uuid "113e202b-52db-3631-b4c4-7027d1edccf5" #uuid "4615cd89-6ac7-3867-a94c-ceb0a15a7b13" #uuid "5678a343-960a-3fec-b75a-c87abb8ba77f" #uuid "bc6235a4-d8ed-3225-86d0-ce30fcb2da6a" #uuid "e5ce3771-79d2-3202-b053-1561d6d093be" #uuid "cd27a171-5aac-359b-82a4-8a86ed2000c0" #uuid "5e04b28e-010d-366b-af9d-020474ee6392" #uuid "d5fd1c48-4bc6-3542-8805-4964fab16e05" #uuid "993ca650-a85e-3e69-b8f7-eaa4809c4862" #uuid "c180dcbb-f5dd-3cdf-acb3-dfe83bc594ec" #uuid "e0dfaae0-12bd-33ef-94b1-4c34842456b4" #uuid "7d1c07ba-7b59-3e65-b308-f82e4f02765e" #uuid "aeb0df4c-7966-341d-8c8e-4158bd55f571" #uuid "ea25ad16-dccd-378f-afde-9dae72c6b4d9" #uuid "d55cb47e-7f6c-3de3-afe9-3acfd3bd09af" #uuid "90b4a79a-a31a-3cfc-be15-cdac927b726b" #uuid "647e229b-c07b-3419-a641-254ed8b96dbd" #uuid "ed2baf70-63da-3cbe-9737-466f5a29fe95" #uuid "59ead8d1-e124-3cfb-b9f3-ace06f43e703" #uuid "423cb589-88be-336d-ada8-9817b5fe519e" #uuid "7e669d27-7faf-3da4-8f29-a5f580ef939f" #uuid "eab3ae9a-3d28-3df8-affc-d917c97d7195" #uuid "e8f7e1a7-0eb6-3e44-aee0-11dff550f9ee" #uuid "530b622e-6e90-30f4-b806-d0cbf74102a5" #uuid "32c24411-f63e-3a04-8648-0361f80ef58c" #uuid "07f37b38-2b05-392e-91fd-d4e76cc7fbf0" #uuid "e1405ecf-c37a-3cdf-9bc0-46ca9df2e685" #uuid "77933845-adf8-3758-a686-a08ea46f015e" #uuid "51c77b26-5d4b-3952-ac93-fa7002f8a379" #uuid "8881688f-f717-3852-a5df-d3c7386562d1" #uuid "1bd17795-c173-3c75-9489-8343917b819a" #uuid "0d794c9d-d65b-3e94-8ce2-fe8020a2a53c" #uuid "af9c7e15-a449-3e77-9dcf-1fed9a676d1f" #uuid "72e2061f-c210-3f0c-bdd2-68d09fb15b98" #uuid "8107587f-5b81-3b66-9d13-2fa6e9a887df" #uuid "07209d27-b19d-3db8-aec4-499777fcd2f2" #uuid "7c823c08-2b3e-3613-bf68-fde60227450d" #uuid "ae7bda5b-fa73-3e1b-b30b-c81fd70b93f5" #uuid "ec9a79c1-8253-3d39-9f07-8382ba20e59f" #uuid "9353a118-c201-398a-83cc-6d58ccb38f02" #uuid "77ab2f28-991d-3991-b961-d7e72b4943d5" #uuid "ba290158-1610-3e16-94fa-7dedd0ef5e08" #uuid "48309f49-6981-3784-80f4-f8b7cff15c98" #uuid "d9878711-9bbd-343b-bb79-ba45904cc23c" #uuid "d2f54329-7bef-301f-8f4e-bdac47c6f6d3" #uuid "91a5169d-5877-3642-9a52-54c4f01655da" #uuid "abc5edec-2835-3550-b622-c491cdafdb5e" #uuid "3980f7ea-079b-3741-a713-8494f6bcbb9a" #uuid "23767cbb-cceb-3686-8a59-f0250c57a1d9" #uuid "6e8ce4f2-3cc4-37b8-9002-721e44843aaf" #uuid "2bc22d15-7e2b-3a2d-aaaa-46fe0f8945e2" #uuid "33e20383-3807-3414-869c-7a3907d40b75" #uuid "568da493-2833-3009-ad26-7108e0683081" #uuid "6fe19369-f217-3b8c-a477-7fca8a743df4" #uuid "106facbb-305a-30f4-afe6-9fe69cfadbdc" #uuid "7f5c4b62-c9ec-3866-8ad6-598ebab4623a" #uuid "5f91981d-882c-3f44-8727-83bfa1a74c55" #uuid "f944b1ee-72e5-3ea8-832f-4eaf0dde6f09" #uuid "5e679cbb-17a6-3355-9ddc-017e474ea5a9" #uuid "d82b1470-bb05-3f45-86cb-1e51d8455a3d" #uuid "86f0bb77-105e-3136-98ae-4837a11ed606" #uuid "e5c528dd-2ba9-3a89-ac17-c427f0c00414" #uuid "dce6433a-bef0-3dff-a22e-433b721bfc14" #uuid "e9de6ee3-1f19-36e8-bdf0-3b24bacd02cc" #uuid "f7625727-1129-3703-96c0-442c8ac00dae" #uuid "0071dfa9-ec41-35e2-befc-ecbe183ff272" #uuid "28e54304-62fc-38c9-9b76-058878323d57" #uuid "de3493ea-6e7c-3152-9c99-22e9e501faf8" #uuid "5f075ae3-e1f9-3038-abb8-c4632991f96f" #uuid "b4991e13-f466-39b4-be16-56909272f1cc" #uuid "4d6bfce7-c3d0-3def-8625-e405087939ed" #uuid "db5ac01b-b987-3006-8f5a-61d4142920ec" #uuid "f8049db2-d889-3677-984e-4e2ce41de578" #uuid "0b0ba83c-ba8f-3c56-8b3e-a2fc3bc7f5a4" #uuid "e6d5c2ee-6c34-370d-b344-30cc5ee8a749" #uuid "109a021a-56f4-3223-ae04-902a1f40db16"]}} )
[ { "context": "-powered Scratch.\"\n :url \"https://www.github.com/ddossot/clatch\"\n :license {:name \"The MIT License (MIT)\"", "end": 129, "score": 0.998589813709259, "start": 122, "tag": "USERNAME", "value": "ddossot" }, { "context": "ses/MIT\"\n :comments \"Copyright (c) 2015 David Dossot\"}\n\n :plugins [[lein-modules \"0.3.11\"]]\n\n :modul", "end": 288, "score": 0.9998832941055298, "start": 276, "tag": "NAME", "value": "David Dossot" } ]
project.clj
ddossot/clatch
0
(defproject net.dossot/clatch "1.0.0-SNAPSHOT" :description "A Clojure-powered Scratch." :url "https://www.github.com/ddossot/clatch" :license {:name "The MIT License (MIT)" :url "http://opensource.org/licenses/MIT" :comments "Copyright (c) 2015 David Dossot"} :plugins [[lein-modules "0.3.11"]] :modules {:versions {:clj-version "1.7.0" :gdx-version "1.6.4"}} :profiles {:dev {:plugins [[lein-kibit "0.1.2"] [jonase/eastwood "0.2.1"]]}})
80011
(defproject net.dossot/clatch "1.0.0-SNAPSHOT" :description "A Clojure-powered Scratch." :url "https://www.github.com/ddossot/clatch" :license {:name "The MIT License (MIT)" :url "http://opensource.org/licenses/MIT" :comments "Copyright (c) 2015 <NAME>"} :plugins [[lein-modules "0.3.11"]] :modules {:versions {:clj-version "1.7.0" :gdx-version "1.6.4"}} :profiles {:dev {:plugins [[lein-kibit "0.1.2"] [jonase/eastwood "0.2.1"]]}})
true
(defproject net.dossot/clatch "1.0.0-SNAPSHOT" :description "A Clojure-powered Scratch." :url "https://www.github.com/ddossot/clatch" :license {:name "The MIT License (MIT)" :url "http://opensource.org/licenses/MIT" :comments "Copyright (c) 2015 PI:NAME:<NAME>END_PI"} :plugins [[lein-modules "0.3.11"]] :modules {:versions {:clj-version "1.7.0" :gdx-version "1.6.4"}} :profiles {:dev {:plugins [[lein-kibit "0.1.2"] [jonase/eastwood "0.2.1"]]}})
[ { "context": "]))\n \n(def ^:private client-opts\n {:access-key \"AKIAIKZWOA4I5Y43GDOA\"\n :secret-key \"mZEsglGYGlCU0GBaB+lScf9nYpfv3Lnh", "end": 352, "score": 0.9993558526039124, "start": 332, "tag": "KEY", "value": "AKIAIKZWOA4I5Y43GDOA" }, { "context": "access-key \"AKIAIKZWOA4I5Y43GDOA\"\n :secret-key \"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\"\n :endpoint \"http://dynamodb.eu-west-1.amazon", "end": 410, "score": 0.9997354745864868, "start": 370, "tag": "KEY", "value": "mZEsglGYGlCU0GBaB+lScf9nYpfv3Lnh+COXZlGG" } ]
src/clj/clojure_rest/usersv2.clj
mvrcrypto/customapi
1
(ns clojure-rest.usersv2 (:refer-clojure :exclude [get]) (:require [ring.util.response :refer [response]] [amazonica.aws.dynamodbv2 :as amz] [clojure-rest.utils :as utils] [clojure-rest.valid :as valid] [clj-http.client :as client])) (def ^:private client-opts {:access-key "AKIAIKZWOA4I5Y43GDOA" :secret-key "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" :endpoint "http://dynamodb.eu-west-1.amazonaws.com"}) (defn ^:private return-user-object "return a public user object" [user] (let [{:keys [id name picture gender token]} user] (response {:data {:id id :name name :picture picture :gender gender :token token}}))) (defn get "Returns info from a user with given id" [id] (return-user-object (first (:items (amz/query client-opts :table-name "users" :limit 1 :key-conditions {:id {:attribute-value-list [id] :comparison-operator "EQ"}}))))) (defn ^:private email-in-db? "return true if the email is already present in db" [email] (= 1 (:count (amz/query client-opts :table-name "users" :limit 1 :select "COUNT" :key-conditions {:id {:attribute-value-list [(sha1 email)] :comparison-operator "EQ"}})))) (defn register! "Register a user in database" [user] {:pre [(valid/email-address? (:email user)), (string? (:name user)), (string? (:picture user)), (or (nil? (:gender user)) (valid/gender? (:gender user)))]} (let [now (utils/current-iso-8601-date) item (assoc user :id (sha1 (:email user)) :token (utils/generate-token) :registration now)] (try (amz/put-item client-opts :table-name "users" :item item) (return-user-object item) (catch Exception e (utils/make-error 500 "Registration Failed."))))) ;TODO : Put new variables in databases when the object already exist (defn update! "Update a user in database" [user] {:pre [(valid/email-address? (:email user)), (or (nil? (:picture user)) (string? (:name user))), (or (nil? (:picture user)) (string? (:picture user))), (or (nil? (:gender user)) (valid/gender? (:gender user)))]} (let [now (utils/current-iso-8601-date) id (sha1 (:email user)) item (assoc user :token (utils/generate-token))] (try (amz/update-item client-opts :table-name "users" :key {:id id} :attribute-updates {:last_connection {:value now :action "PUT"} :token {:value (:token item) :action "PUT"}}) ;(reduce #(conj %1 (first %2) {:value (second %2) :action "PUT"}) [] item) (return-user-object item) (catch Exception e (utils/make-error 500 "Update Failed."))))) (defn ^:private auth-connect "Register the user in database or update his profile" [user] (if (email-in-db? (:email user)) (update! user) (register! user))) (defn auth-google "Authenticate a user with google access token" [token] (try (let [req (client/get "https://www.googleapis.com/oauth2/v1/userinfo" {:query-params {"alt" "json" "access_token" token} :as :json-strict})] (auth-connect (:body req))) (catch Exception e (utils/make-error 409 "Invalid Access Token.")))) (defn auth-facebook "Authenticate a user with facebook access token" [token] (let [req (client/get "https://graph.facebook.com/v2.6/me" {:query-params {"fields" "name,email,gender,about,relationship_status,interested_in,religion,bio,last_name,birthday,age_range,first_name,hometown,picture,devices,education" "access_token" token} :as :json-strict}) picture (:url (:data (:picture (:body req))))] (try (auth-connect (assoc (:body req) :picture picture)) (catch Exception e (utils/make-error 409 "Invalid Access Token.")))))
9772
(ns clojure-rest.usersv2 (:refer-clojure :exclude [get]) (:require [ring.util.response :refer [response]] [amazonica.aws.dynamodbv2 :as amz] [clojure-rest.utils :as utils] [clojure-rest.valid :as valid] [clj-http.client :as client])) (def ^:private client-opts {:access-key "<KEY>" :secret-key "<KEY>" :endpoint "http://dynamodb.eu-west-1.amazonaws.com"}) (defn ^:private return-user-object "return a public user object" [user] (let [{:keys [id name picture gender token]} user] (response {:data {:id id :name name :picture picture :gender gender :token token}}))) (defn get "Returns info from a user with given id" [id] (return-user-object (first (:items (amz/query client-opts :table-name "users" :limit 1 :key-conditions {:id {:attribute-value-list [id] :comparison-operator "EQ"}}))))) (defn ^:private email-in-db? "return true if the email is already present in db" [email] (= 1 (:count (amz/query client-opts :table-name "users" :limit 1 :select "COUNT" :key-conditions {:id {:attribute-value-list [(sha1 email)] :comparison-operator "EQ"}})))) (defn register! "Register a user in database" [user] {:pre [(valid/email-address? (:email user)), (string? (:name user)), (string? (:picture user)), (or (nil? (:gender user)) (valid/gender? (:gender user)))]} (let [now (utils/current-iso-8601-date) item (assoc user :id (sha1 (:email user)) :token (utils/generate-token) :registration now)] (try (amz/put-item client-opts :table-name "users" :item item) (return-user-object item) (catch Exception e (utils/make-error 500 "Registration Failed."))))) ;TODO : Put new variables in databases when the object already exist (defn update! "Update a user in database" [user] {:pre [(valid/email-address? (:email user)), (or (nil? (:picture user)) (string? (:name user))), (or (nil? (:picture user)) (string? (:picture user))), (or (nil? (:gender user)) (valid/gender? (:gender user)))]} (let [now (utils/current-iso-8601-date) id (sha1 (:email user)) item (assoc user :token (utils/generate-token))] (try (amz/update-item client-opts :table-name "users" :key {:id id} :attribute-updates {:last_connection {:value now :action "PUT"} :token {:value (:token item) :action "PUT"}}) ;(reduce #(conj %1 (first %2) {:value (second %2) :action "PUT"}) [] item) (return-user-object item) (catch Exception e (utils/make-error 500 "Update Failed."))))) (defn ^:private auth-connect "Register the user in database or update his profile" [user] (if (email-in-db? (:email user)) (update! user) (register! user))) (defn auth-google "Authenticate a user with google access token" [token] (try (let [req (client/get "https://www.googleapis.com/oauth2/v1/userinfo" {:query-params {"alt" "json" "access_token" token} :as :json-strict})] (auth-connect (:body req))) (catch Exception e (utils/make-error 409 "Invalid Access Token.")))) (defn auth-facebook "Authenticate a user with facebook access token" [token] (let [req (client/get "https://graph.facebook.com/v2.6/me" {:query-params {"fields" "name,email,gender,about,relationship_status,interested_in,religion,bio,last_name,birthday,age_range,first_name,hometown,picture,devices,education" "access_token" token} :as :json-strict}) picture (:url (:data (:picture (:body req))))] (try (auth-connect (assoc (:body req) :picture picture)) (catch Exception e (utils/make-error 409 "Invalid Access Token.")))))
true
(ns clojure-rest.usersv2 (:refer-clojure :exclude [get]) (:require [ring.util.response :refer [response]] [amazonica.aws.dynamodbv2 :as amz] [clojure-rest.utils :as utils] [clojure-rest.valid :as valid] [clj-http.client :as client])) (def ^:private client-opts {:access-key "PI:KEY:<KEY>END_PI" :secret-key "PI:KEY:<KEY>END_PI" :endpoint "http://dynamodb.eu-west-1.amazonaws.com"}) (defn ^:private return-user-object "return a public user object" [user] (let [{:keys [id name picture gender token]} user] (response {:data {:id id :name name :picture picture :gender gender :token token}}))) (defn get "Returns info from a user with given id" [id] (return-user-object (first (:items (amz/query client-opts :table-name "users" :limit 1 :key-conditions {:id {:attribute-value-list [id] :comparison-operator "EQ"}}))))) (defn ^:private email-in-db? "return true if the email is already present in db" [email] (= 1 (:count (amz/query client-opts :table-name "users" :limit 1 :select "COUNT" :key-conditions {:id {:attribute-value-list [(sha1 email)] :comparison-operator "EQ"}})))) (defn register! "Register a user in database" [user] {:pre [(valid/email-address? (:email user)), (string? (:name user)), (string? (:picture user)), (or (nil? (:gender user)) (valid/gender? (:gender user)))]} (let [now (utils/current-iso-8601-date) item (assoc user :id (sha1 (:email user)) :token (utils/generate-token) :registration now)] (try (amz/put-item client-opts :table-name "users" :item item) (return-user-object item) (catch Exception e (utils/make-error 500 "Registration Failed."))))) ;TODO : Put new variables in databases when the object already exist (defn update! "Update a user in database" [user] {:pre [(valid/email-address? (:email user)), (or (nil? (:picture user)) (string? (:name user))), (or (nil? (:picture user)) (string? (:picture user))), (or (nil? (:gender user)) (valid/gender? (:gender user)))]} (let [now (utils/current-iso-8601-date) id (sha1 (:email user)) item (assoc user :token (utils/generate-token))] (try (amz/update-item client-opts :table-name "users" :key {:id id} :attribute-updates {:last_connection {:value now :action "PUT"} :token {:value (:token item) :action "PUT"}}) ;(reduce #(conj %1 (first %2) {:value (second %2) :action "PUT"}) [] item) (return-user-object item) (catch Exception e (utils/make-error 500 "Update Failed."))))) (defn ^:private auth-connect "Register the user in database or update his profile" [user] (if (email-in-db? (:email user)) (update! user) (register! user))) (defn auth-google "Authenticate a user with google access token" [token] (try (let [req (client/get "https://www.googleapis.com/oauth2/v1/userinfo" {:query-params {"alt" "json" "access_token" token} :as :json-strict})] (auth-connect (:body req))) (catch Exception e (utils/make-error 409 "Invalid Access Token.")))) (defn auth-facebook "Authenticate a user with facebook access token" [token] (let [req (client/get "https://graph.facebook.com/v2.6/me" {:query-params {"fields" "name,email,gender,about,relationship_status,interested_in,religion,bio,last_name,birthday,age_range,first_name,hometown,picture,devices,education" "access_token" token} :as :json-strict}) picture (:url (:data (:picture (:body req))))] (try (auth-connect (assoc (:body req) :picture picture)) (catch Exception e (utils/make-error 409 "Invalid Access Token.")))))
[ { "context": " :person/age \"Jane\"})}))\n\n(defcard spec-title-view\n (SpecTit", "end": 739, "score": 0.9971245527267456, "start": 735, "tag": "NAME", "value": "Jane" }, { "context": " :person/age \"Jane\"})}))\n\n(defcard bad-vec\n (SpecTitleView\n ", "end": 1000, "score": 0.9932070970535278, "start": 996, "tag": "NAME", "value": "Jane" }, { "context": " :person/age \"Jane\"}\n ", "end": 1588, "score": 0.9899652004241943, "start": 1584, "tag": "NAME", "value": "Jane" }, { "context": " :person/age \"Jenna\"}])}))\n\n(defcard bad-string\n (SpecTitleVi", "end": 1793, "score": 0.9976351261138916, "start": 1788, "tag": "NAME", "value": "Jenna" } ]
devcards/datafrisk/spec_card.cljs
moonbrv/data-frisk-reagent
2
(ns datafrisk.spec-card (:require [devcards.core] [cljs.spec.alpha :as s] [datafrisk.spec :refer [SpecView SpecTitleView]]) (:require-macros [devcards.core :refer [defcard]])) (s/def :person/name string?) (s/def :person/age number?) (s/def :person/address string?) (s/def :person/person (s/keys :req [:person/name :person/age :person/address])) (s/def :app/persons (s/coll-of :person/person)) (defcard spec-view (SpecView {:errors (s/explain-data :person/person {:likes 2 :person/name 1 :person/age "Jane"})})) (defcard spec-title-view (SpecTitleView {:errors (s/explain-data :person/person {:likes 2 :person/name 1 :person/age "Jane"})})) (defcard bad-vec (SpecTitleView {:errors (s/explain-data :app/persons [1 2 3 [4 5]])})) (defcard bad-list (SpecTitleView {:errors (s/explain-data :app/persons '(1 2 3 (4 5)))})) (defcard bad-set (SpecTitleView {:errors (s/explain-data :app/persons #{1 2 #{3 4} 5})})) (defcard bad-nested-map (SpecTitleView {:errors (s/explain-data :app/persons [{:likes 2 :person/name 1 :person/age "Jane"} {:likes 3 :person/name 2 :person/age "Jenna"}])})) (defcard bad-string (SpecTitleView {:errors (s/explain-data :app/persons "some string")})) (defcard override-spec-title (SpecTitleView {:title {:style {:font-weight "700" :color "red"} :text "What ever you want"} :errors (s/explain-data :app/persons "some string")}))
39898
(ns datafrisk.spec-card (:require [devcards.core] [cljs.spec.alpha :as s] [datafrisk.spec :refer [SpecView SpecTitleView]]) (:require-macros [devcards.core :refer [defcard]])) (s/def :person/name string?) (s/def :person/age number?) (s/def :person/address string?) (s/def :person/person (s/keys :req [:person/name :person/age :person/address])) (s/def :app/persons (s/coll-of :person/person)) (defcard spec-view (SpecView {:errors (s/explain-data :person/person {:likes 2 :person/name 1 :person/age "<NAME>"})})) (defcard spec-title-view (SpecTitleView {:errors (s/explain-data :person/person {:likes 2 :person/name 1 :person/age "<NAME>"})})) (defcard bad-vec (SpecTitleView {:errors (s/explain-data :app/persons [1 2 3 [4 5]])})) (defcard bad-list (SpecTitleView {:errors (s/explain-data :app/persons '(1 2 3 (4 5)))})) (defcard bad-set (SpecTitleView {:errors (s/explain-data :app/persons #{1 2 #{3 4} 5})})) (defcard bad-nested-map (SpecTitleView {:errors (s/explain-data :app/persons [{:likes 2 :person/name 1 :person/age "<NAME>"} {:likes 3 :person/name 2 :person/age "<NAME>"}])})) (defcard bad-string (SpecTitleView {:errors (s/explain-data :app/persons "some string")})) (defcard override-spec-title (SpecTitleView {:title {:style {:font-weight "700" :color "red"} :text "What ever you want"} :errors (s/explain-data :app/persons "some string")}))
true
(ns datafrisk.spec-card (:require [devcards.core] [cljs.spec.alpha :as s] [datafrisk.spec :refer [SpecView SpecTitleView]]) (:require-macros [devcards.core :refer [defcard]])) (s/def :person/name string?) (s/def :person/age number?) (s/def :person/address string?) (s/def :person/person (s/keys :req [:person/name :person/age :person/address])) (s/def :app/persons (s/coll-of :person/person)) (defcard spec-view (SpecView {:errors (s/explain-data :person/person {:likes 2 :person/name 1 :person/age "PI:NAME:<NAME>END_PI"})})) (defcard spec-title-view (SpecTitleView {:errors (s/explain-data :person/person {:likes 2 :person/name 1 :person/age "PI:NAME:<NAME>END_PI"})})) (defcard bad-vec (SpecTitleView {:errors (s/explain-data :app/persons [1 2 3 [4 5]])})) (defcard bad-list (SpecTitleView {:errors (s/explain-data :app/persons '(1 2 3 (4 5)))})) (defcard bad-set (SpecTitleView {:errors (s/explain-data :app/persons #{1 2 #{3 4} 5})})) (defcard bad-nested-map (SpecTitleView {:errors (s/explain-data :app/persons [{:likes 2 :person/name 1 :person/age "PI:NAME:<NAME>END_PI"} {:likes 3 :person/name 2 :person/age "PI:NAME:<NAME>END_PI"}])})) (defcard bad-string (SpecTitleView {:errors (s/explain-data :app/persons "some string")})) (defcard override-spec-title (SpecTitleView {:title {:style {:font-weight "700" :color "red"} :text "What ever you want"} :errors (s/explain-data :app/persons "some string")}))
[ { "context": "interfaces for collection-related functions\n\n;; by Konrad Hinsen\n;; last updated May 5, 2009\n\n;; Copyright (c) Kon", "end": 75, "score": 0.9998739361763, "start": 62, "tag": "NAME", "value": "Konrad Hinsen" }, { "context": "nsen\n;; last updated May 5, 2009\n\n;; Copyright (c) Konrad Hinsen, 2009. All rights reserved. The use\n;; and distr", "end": 135, "score": 0.9998695254325867, "start": 122, "tag": "NAME", "value": "Konrad Hinsen" }, { "context": "any other, from this software.\n\n(ns\n #^{:author \"Konrad Hinsen\"\n :doc \"Generic arithmetic interface\n ", "end": 604, "score": 0.9998806118965149, "start": 591, "tag": "NAME", "value": "Konrad Hinsen" } ]
ThirdParty/clojure-contrib-1.1.0/src/clojure/contrib/generic/collection.clj
allertonm/Couverjure
3
;; Generic interfaces for collection-related functions ;; by Konrad Hinsen ;; last updated May 5, 2009 ;; Copyright (c) Konrad Hinsen, 2009. All rights reserved. The use ;; and distribution terms for this software are covered by the Eclipse ;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ;; which can be found in the file epl-v10.html at the root of this ;; distribution. By using this software in any fashion, you are ;; agreeing to be bound by the terms of this license. You must not ;; remove this notice, or any other, from this software. (ns #^{:author "Konrad Hinsen" :doc "Generic arithmetic interface This library defines generic versions of common collection-related functions as multimethods that can be defined for any type."} clojure.contrib.generic.collection (:refer-clojure :exclude [assoc conj dissoc empty get into seq])) ; ; assoc ; (defmulti assoc "Returns a new collection in which the values corresponding to the given keys are updated by the given values. Each type of collection can have specific restrictions on the possible keys." {:arglists '([coll & key-val-pairs])} (fn [coll & items] (type coll))) (defmethod assoc :default [map & key-val-pairs] (apply clojure.core/assoc map key-val-pairs)) ; assoc-in ; ; conj ; (defmulti conj "Returns a new collection resulting from adding all xs to coll." {:arglists '([coll & xs])} (fn [coll & xs] (type coll))) (defmethod conj :default [coll & xs] (apply clojure.core/conj coll xs)) ; ; diassoc ; (defmulti dissoc "Returns a new collection in which the entries corresponding to the given keys are removed. Each type of collection can have specific restrictions on the possible keys." {:arglists '([coll & keys])} (fn [coll & keys] (type coll))) (defmethod dissoc :default [map & keys] (apply clojure.core/dissoc map keys)) ; ; empty ; (defmulti empty "Returns an empty collection of the same kind as the argument" {:arglists '([coll])} type) (defmethod empty :default [coll] (clojure.core/empty coll)) ; ; get ; (defmulti get "Returns the element of coll referred to by key. Each type of collection can have specific restrictions on the possible keys." {:arglists '([coll key] [coll key not-found])} (fn [coll & args] (type coll))) (defmethod get :default ([coll key] (clojure.core/get coll key)) ([coll key not-found] (clojure.core/get coll key not-found))) ; ; into ; (defmulti into "Returns a new coll consisting of to-coll with all of the items of from-coll conjoined." {:arglists '([to from])} (fn [to from] (type to))) (declare seq) (defmethod into :default [to from] (reduce conj to (seq from))) ; ; seq ; (defmulti seq "Returns a seq on the object s." {:arglists '([s])} type) (defmethod seq :default [s] (clojure.core/seq s))
91953
;; Generic interfaces for collection-related functions ;; by <NAME> ;; last updated May 5, 2009 ;; Copyright (c) <NAME>, 2009. All rights reserved. The use ;; and distribution terms for this software are covered by the Eclipse ;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ;; which can be found in the file epl-v10.html at the root of this ;; distribution. By using this software in any fashion, you are ;; agreeing to be bound by the terms of this license. You must not ;; remove this notice, or any other, from this software. (ns #^{:author "<NAME>" :doc "Generic arithmetic interface This library defines generic versions of common collection-related functions as multimethods that can be defined for any type."} clojure.contrib.generic.collection (:refer-clojure :exclude [assoc conj dissoc empty get into seq])) ; ; assoc ; (defmulti assoc "Returns a new collection in which the values corresponding to the given keys are updated by the given values. Each type of collection can have specific restrictions on the possible keys." {:arglists '([coll & key-val-pairs])} (fn [coll & items] (type coll))) (defmethod assoc :default [map & key-val-pairs] (apply clojure.core/assoc map key-val-pairs)) ; assoc-in ; ; conj ; (defmulti conj "Returns a new collection resulting from adding all xs to coll." {:arglists '([coll & xs])} (fn [coll & xs] (type coll))) (defmethod conj :default [coll & xs] (apply clojure.core/conj coll xs)) ; ; diassoc ; (defmulti dissoc "Returns a new collection in which the entries corresponding to the given keys are removed. Each type of collection can have specific restrictions on the possible keys." {:arglists '([coll & keys])} (fn [coll & keys] (type coll))) (defmethod dissoc :default [map & keys] (apply clojure.core/dissoc map keys)) ; ; empty ; (defmulti empty "Returns an empty collection of the same kind as the argument" {:arglists '([coll])} type) (defmethod empty :default [coll] (clojure.core/empty coll)) ; ; get ; (defmulti get "Returns the element of coll referred to by key. Each type of collection can have specific restrictions on the possible keys." {:arglists '([coll key] [coll key not-found])} (fn [coll & args] (type coll))) (defmethod get :default ([coll key] (clojure.core/get coll key)) ([coll key not-found] (clojure.core/get coll key not-found))) ; ; into ; (defmulti into "Returns a new coll consisting of to-coll with all of the items of from-coll conjoined." {:arglists '([to from])} (fn [to from] (type to))) (declare seq) (defmethod into :default [to from] (reduce conj to (seq from))) ; ; seq ; (defmulti seq "Returns a seq on the object s." {:arglists '([s])} type) (defmethod seq :default [s] (clojure.core/seq s))
true
;; Generic interfaces for collection-related functions ;; by PI:NAME:<NAME>END_PI ;; last updated May 5, 2009 ;; Copyright (c) PI:NAME:<NAME>END_PI, 2009. All rights reserved. The use ;; and distribution terms for this software are covered by the Eclipse ;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ;; which can be found in the file epl-v10.html at the root of this ;; distribution. By using this software in any fashion, you are ;; agreeing to be bound by the terms of this license. You must not ;; remove this notice, or any other, from this software. (ns #^{:author "PI:NAME:<NAME>END_PI" :doc "Generic arithmetic interface This library defines generic versions of common collection-related functions as multimethods that can be defined for any type."} clojure.contrib.generic.collection (:refer-clojure :exclude [assoc conj dissoc empty get into seq])) ; ; assoc ; (defmulti assoc "Returns a new collection in which the values corresponding to the given keys are updated by the given values. Each type of collection can have specific restrictions on the possible keys." {:arglists '([coll & key-val-pairs])} (fn [coll & items] (type coll))) (defmethod assoc :default [map & key-val-pairs] (apply clojure.core/assoc map key-val-pairs)) ; assoc-in ; ; conj ; (defmulti conj "Returns a new collection resulting from adding all xs to coll." {:arglists '([coll & xs])} (fn [coll & xs] (type coll))) (defmethod conj :default [coll & xs] (apply clojure.core/conj coll xs)) ; ; diassoc ; (defmulti dissoc "Returns a new collection in which the entries corresponding to the given keys are removed. Each type of collection can have specific restrictions on the possible keys." {:arglists '([coll & keys])} (fn [coll & keys] (type coll))) (defmethod dissoc :default [map & keys] (apply clojure.core/dissoc map keys)) ; ; empty ; (defmulti empty "Returns an empty collection of the same kind as the argument" {:arglists '([coll])} type) (defmethod empty :default [coll] (clojure.core/empty coll)) ; ; get ; (defmulti get "Returns the element of coll referred to by key. Each type of collection can have specific restrictions on the possible keys." {:arglists '([coll key] [coll key not-found])} (fn [coll & args] (type coll))) (defmethod get :default ([coll key] (clojure.core/get coll key)) ([coll key not-found] (clojure.core/get coll key not-found))) ; ; into ; (defmulti into "Returns a new coll consisting of to-coll with all of the items of from-coll conjoined." {:arglists '([to from])} (fn [to from] (type to))) (declare seq) (defmethod into :default [to from] (reduce conj to (seq from))) ; ; seq ; (defmulti seq "Returns a seq on the object s." {:arglists '([s])} type) (defmethod seq :default [s] (clojure.core/seq s))
[ { "context": " (type/field-names Name) => (just #{\"firstName\" \"lastName\"})\n (type/field-names ExampleStruct) => (just ", "end": 820, "score": 0.6703175902366638, "start": 812, "tag": "NAME", "value": "lastName" } ]
test/clj_thrift/type_test.clj
dcuddeback/clj-thrift
4
(ns clj-thrift.type-test (:require [clj-thrift.type :as type]) (:import (clj_thrift.fakes Name Identity ExampleStruct ExampleUnion)) (:use midje.sweet)) (facts "field-ids" (fact "returns the set of valid field ids for unions" (type/field-ids Identity) => (just #{1 2}) (type/field-ids ExampleUnion) => (just #{3 5 6})) (fact "returns the set of valid field ids for structs" (type/field-ids Name) => (just #{1 2}) (type/field-ids ExampleStruct) => (just #{3 4 5 7}))) (facts "field-names" (fact "returns the set of valid field names for unions" (type/field-names Identity) => (just #{"name" "ssn"}) (type/field-names ExampleUnion) => (just #{"foo" "bar" "baz"})) (fact "returns the set of valid field ids for structs" (type/field-names Name) => (just #{"firstName" "lastName"}) (type/field-names ExampleStruct) => (just #{"foo" "bar" "baz" "qux"}))) (facts "field-meta" (fact "returns a field's id" (type/field-meta Identity "name") => (contains {:id 1 }) (type/field-meta Identity "ssn") => (contains {:id 2}) (type/field-meta ExampleStruct "foo") => (contains {:id 3}) (type/field-meta ExampleStruct "bar") => (contains {:id 4}) (type/field-meta ExampleStruct "baz") => (contains {:id 5}) (type/field-meta ExampleStruct "qux") => (contains {:id 7})) (fact "returns a field's name" (type/field-meta Identity "name") => (contains {:name "name" }) (type/field-meta Identity "ssn") => (contains {:name "ssn"}) (type/field-meta ExampleStruct "foo") => (contains {:name "foo"}) (type/field-meta ExampleStruct "bar") => (contains {:name "bar"}) (type/field-meta ExampleStruct "baz") => (contains {:name "baz"}) (type/field-meta ExampleStruct "qux") => (contains {:name "qux"})) (fact "returns nil for missing fields" (type/field-meta Identity "missing") => nil?)) (facts "field-meta-list" (fact "returns a map of field id's and names for a structure or union" (type/field-meta-list Identity) => (contains {:id 1 :name "name" }) (type/field-meta-list Identity) => (contains {:id 2 :name "ssn"}) (type/field-meta-list ExampleStruct) => (contains {:id 3 :name "foo" } ) (type/field-meta-list ExampleStruct) => (contains {:id 4 :name "bar"} ) (type/field-meta-list ExampleStruct) => (contains {:id 5 :name "baz"} ) (type/field-meta-list ExampleStruct) => (contains {:id 7 :name "qux"})))
45186
(ns clj-thrift.type-test (:require [clj-thrift.type :as type]) (:import (clj_thrift.fakes Name Identity ExampleStruct ExampleUnion)) (:use midje.sweet)) (facts "field-ids" (fact "returns the set of valid field ids for unions" (type/field-ids Identity) => (just #{1 2}) (type/field-ids ExampleUnion) => (just #{3 5 6})) (fact "returns the set of valid field ids for structs" (type/field-ids Name) => (just #{1 2}) (type/field-ids ExampleStruct) => (just #{3 4 5 7}))) (facts "field-names" (fact "returns the set of valid field names for unions" (type/field-names Identity) => (just #{"name" "ssn"}) (type/field-names ExampleUnion) => (just #{"foo" "bar" "baz"})) (fact "returns the set of valid field ids for structs" (type/field-names Name) => (just #{"firstName" "<NAME>"}) (type/field-names ExampleStruct) => (just #{"foo" "bar" "baz" "qux"}))) (facts "field-meta" (fact "returns a field's id" (type/field-meta Identity "name") => (contains {:id 1 }) (type/field-meta Identity "ssn") => (contains {:id 2}) (type/field-meta ExampleStruct "foo") => (contains {:id 3}) (type/field-meta ExampleStruct "bar") => (contains {:id 4}) (type/field-meta ExampleStruct "baz") => (contains {:id 5}) (type/field-meta ExampleStruct "qux") => (contains {:id 7})) (fact "returns a field's name" (type/field-meta Identity "name") => (contains {:name "name" }) (type/field-meta Identity "ssn") => (contains {:name "ssn"}) (type/field-meta ExampleStruct "foo") => (contains {:name "foo"}) (type/field-meta ExampleStruct "bar") => (contains {:name "bar"}) (type/field-meta ExampleStruct "baz") => (contains {:name "baz"}) (type/field-meta ExampleStruct "qux") => (contains {:name "qux"})) (fact "returns nil for missing fields" (type/field-meta Identity "missing") => nil?)) (facts "field-meta-list" (fact "returns a map of field id's and names for a structure or union" (type/field-meta-list Identity) => (contains {:id 1 :name "name" }) (type/field-meta-list Identity) => (contains {:id 2 :name "ssn"}) (type/field-meta-list ExampleStruct) => (contains {:id 3 :name "foo" } ) (type/field-meta-list ExampleStruct) => (contains {:id 4 :name "bar"} ) (type/field-meta-list ExampleStruct) => (contains {:id 5 :name "baz"} ) (type/field-meta-list ExampleStruct) => (contains {:id 7 :name "qux"})))
true
(ns clj-thrift.type-test (:require [clj-thrift.type :as type]) (:import (clj_thrift.fakes Name Identity ExampleStruct ExampleUnion)) (:use midje.sweet)) (facts "field-ids" (fact "returns the set of valid field ids for unions" (type/field-ids Identity) => (just #{1 2}) (type/field-ids ExampleUnion) => (just #{3 5 6})) (fact "returns the set of valid field ids for structs" (type/field-ids Name) => (just #{1 2}) (type/field-ids ExampleStruct) => (just #{3 4 5 7}))) (facts "field-names" (fact "returns the set of valid field names for unions" (type/field-names Identity) => (just #{"name" "ssn"}) (type/field-names ExampleUnion) => (just #{"foo" "bar" "baz"})) (fact "returns the set of valid field ids for structs" (type/field-names Name) => (just #{"firstName" "PI:NAME:<NAME>END_PI"}) (type/field-names ExampleStruct) => (just #{"foo" "bar" "baz" "qux"}))) (facts "field-meta" (fact "returns a field's id" (type/field-meta Identity "name") => (contains {:id 1 }) (type/field-meta Identity "ssn") => (contains {:id 2}) (type/field-meta ExampleStruct "foo") => (contains {:id 3}) (type/field-meta ExampleStruct "bar") => (contains {:id 4}) (type/field-meta ExampleStruct "baz") => (contains {:id 5}) (type/field-meta ExampleStruct "qux") => (contains {:id 7})) (fact "returns a field's name" (type/field-meta Identity "name") => (contains {:name "name" }) (type/field-meta Identity "ssn") => (contains {:name "ssn"}) (type/field-meta ExampleStruct "foo") => (contains {:name "foo"}) (type/field-meta ExampleStruct "bar") => (contains {:name "bar"}) (type/field-meta ExampleStruct "baz") => (contains {:name "baz"}) (type/field-meta ExampleStruct "qux") => (contains {:name "qux"})) (fact "returns nil for missing fields" (type/field-meta Identity "missing") => nil?)) (facts "field-meta-list" (fact "returns a map of field id's and names for a structure or union" (type/field-meta-list Identity) => (contains {:id 1 :name "name" }) (type/field-meta-list Identity) => (contains {:id 2 :name "ssn"}) (type/field-meta-list ExampleStruct) => (contains {:id 3 :name "foo" } ) (type/field-meta-list ExampleStruct) => (contains {:id 4 :name "bar"} ) (type/field-meta-list ExampleStruct) => (contains {:id 5 :name "baz"} ) (type/field-meta-list ExampleStruct) => (contains {:id 7 :name "qux"})))
[ { "context": "ator\n; Date: March 17, 2016.\n; Authors:\n; A01020319 Fernando Gómez Herrera\n;------------------------", "end": 146, "score": 0.8538926243782043, "start": 138, "tag": "USERNAME", "value": "A0102031" }, { "context": "e: March 17, 2016.\n; Authors:\n; A01020319 Fernando Gómez Herrera\n;------------------------------------------------", "end": 170, "score": 0.9998677372932434, "start": 148, "tag": "NAME", "value": "Fernando Gómez Herrera" } ]
4clojure/problem_135.clj
gomezhyuuga/CEM_tc2006
1
;---------------------------------------------------------- ; Problem 135: Infix Calculator ; Date: March 17, 2016. ; Authors: ; A01020319 Fernando Gómez Herrera ;---------------------------------------------------------- (use 'clojure.test) (defn p [& args] (let [num1 (nth args 0) num2 (nth args 2) op (nth args 1) expr (list op num1 num2) value (eval expr)] (if (= 3 (count args)) value (apply p (cons value (drop 3 args)))))) (deftest test-p (is (= 7 (p 2 + 5))) (is (= 42 (p 38 + 48 - 2 / 2))) (is (= 8 (p 10 / 2 - 1 * 2))) (is (= 72 (p 20 / 2 + 2 + 4 + 8 - 6 - 10 * 9)))) (run-tests)
120915
;---------------------------------------------------------- ; Problem 135: Infix Calculator ; Date: March 17, 2016. ; Authors: ; A01020319 <NAME> ;---------------------------------------------------------- (use 'clojure.test) (defn p [& args] (let [num1 (nth args 0) num2 (nth args 2) op (nth args 1) expr (list op num1 num2) value (eval expr)] (if (= 3 (count args)) value (apply p (cons value (drop 3 args)))))) (deftest test-p (is (= 7 (p 2 + 5))) (is (= 42 (p 38 + 48 - 2 / 2))) (is (= 8 (p 10 / 2 - 1 * 2))) (is (= 72 (p 20 / 2 + 2 + 4 + 8 - 6 - 10 * 9)))) (run-tests)
true
;---------------------------------------------------------- ; Problem 135: Infix Calculator ; Date: March 17, 2016. ; Authors: ; A01020319 PI:NAME:<NAME>END_PI ;---------------------------------------------------------- (use 'clojure.test) (defn p [& args] (let [num1 (nth args 0) num2 (nth args 2) op (nth args 1) expr (list op num1 num2) value (eval expr)] (if (= 3 (count args)) value (apply p (cons value (drop 3 args)))))) (deftest test-p (is (= 7 (p 2 + 5))) (is (= 42 (p 38 + 48 - 2 / 2))) (is (= 8 (p 10 / 2 - 1 * 2))) (is (= 72 (p 20 / 2 + 2 + 4 + 8 - 6 - 10 * 9)))) (run-tests)
[ { "context": ";\n; Copyright © 2020 Peter Monks\n;\n; Licensed under the Apache License, Version 2.", "end": 32, "score": 0.9996285438537598, "start": 21, "tag": "NAME", "value": "Peter Monks" } ]
src/futbot/source/youtube.clj
pmonks/futbot
3
; ; Copyright © 2020 Peter Monks ; ; Licensed under the Apache License, Version 2.0 (the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ; See the License for the specific language governing permissions and ; limitations under the License. ; ; SPDX-License-Identifier: Apache-2.0 ; (ns futbot.source.youtube (:require [clojure.string :as s] [clojure.tools.logging :as log] [org.httpkit.client :as http] [cheshire.core :as ch] [java-time :as tm] [futbot.util :as u])) (def api-host "https://www.googleapis.com") (def endpoint-get-channel-info "/youtube/v3/channels?part=snippet&id=%s") (def endpoint-get-channel-videos "/youtube/v3/search?part=snippet&order=date&type=video&maxResults=50&channelId=%s") (defn google-api-call "Calls the given Google API endpoint (must be fully constructed), using the provided API key, and either returns parsed hashmap of the body or throws an ex-info." [youtube-api-token endpoint] (let [api-url (str api-host endpoint) options {:headers {"Accept" "application/json"}} _ (log/debug "Calling" (str api-url "&key=REDACTED")) {:keys [status body error]} @(http/get (str api-url "&key=" youtube-api-token) options)] (if (or error (not= status 200)) (throw (ex-info (format "Google API call (%s) failed" (str api-url "&key=REDACTED")) {:status status :body (ch/parse-string body u/clojurise-json-key)} error)) (ch/parse-string body u/clojurise-json-key)))) (defn channel-info "Returns info for the given channel, or throws an ex-info." [youtube-api-token channel-id] (:snippet (first (:items (google-api-call youtube-api-token (format endpoint-get-channel-info channel-id)))))) (defn- sanitise-video-data-structure "Sanitise (as in 'make sane'...) the herpaderp YouTube API video data structure. 🙄" [items] (seq (keep identity (map #(assoc (:snippet %) :id (:video-id (:id %))) items)))) (defn- remove-premieres "Removes 'premieres' (empty placeholders) from the given sequence of YouTube videos, because the herpaderp YouTube APIs don't support this directly. 🙄" ; See https://stackoverflow.com/a/66596615/369849 [videos] (remove #(= "upcoming" (:live-broadcast-content %)) videos)) (defn videos "Retrieves up to 50 videos for the given YouTube channel (or nil if there aren't any) newest first, optionally limited to those published since the given date." ([youtube-api-token channel-id] (videos youtube-api-token nil channel-id)) ([youtube-api-token since channel-id] (remove-premieres (let [endpoint (if since (format (str endpoint-get-channel-videos "&publishedAfter=%s") channel-id (str (tm/instant since))) (format endpoint-get-channel-videos channel-id))] (sanitise-video-data-structure (:items (google-api-call youtube-api-token endpoint))))))) (defn all-videos "Retrieves all videos for the given YouTube channel, newest first. Use with caution: this can be very expensive from a quota unit perspective (100 units / 50 videos)." [youtube-api-token channel-id] (remove-premieres (loop [endpoint (format endpoint-get-channel-videos channel-id) publish-date (tm/instant) result []] (let [items (sanitise-video-data-structure (:items (google-api-call youtube-api-token endpoint))) new-publish-date (:published-at (last items))] (if (and (not (s/blank? new-publish-date)) (tm/before? (tm/instant new-publish-date) (tm/instant publish-date))) (recur (format (str endpoint-get-channel-videos "&publishedBefore=%s") channel-id new-publish-date) new-publish-date (into result items)) (into result items))))))
80141
; ; Copyright © 2020 <NAME> ; ; Licensed under the Apache License, Version 2.0 (the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ; See the License for the specific language governing permissions and ; limitations under the License. ; ; SPDX-License-Identifier: Apache-2.0 ; (ns futbot.source.youtube (:require [clojure.string :as s] [clojure.tools.logging :as log] [org.httpkit.client :as http] [cheshire.core :as ch] [java-time :as tm] [futbot.util :as u])) (def api-host "https://www.googleapis.com") (def endpoint-get-channel-info "/youtube/v3/channels?part=snippet&id=%s") (def endpoint-get-channel-videos "/youtube/v3/search?part=snippet&order=date&type=video&maxResults=50&channelId=%s") (defn google-api-call "Calls the given Google API endpoint (must be fully constructed), using the provided API key, and either returns parsed hashmap of the body or throws an ex-info." [youtube-api-token endpoint] (let [api-url (str api-host endpoint) options {:headers {"Accept" "application/json"}} _ (log/debug "Calling" (str api-url "&key=REDACTED")) {:keys [status body error]} @(http/get (str api-url "&key=" youtube-api-token) options)] (if (or error (not= status 200)) (throw (ex-info (format "Google API call (%s) failed" (str api-url "&key=REDACTED")) {:status status :body (ch/parse-string body u/clojurise-json-key)} error)) (ch/parse-string body u/clojurise-json-key)))) (defn channel-info "Returns info for the given channel, or throws an ex-info." [youtube-api-token channel-id] (:snippet (first (:items (google-api-call youtube-api-token (format endpoint-get-channel-info channel-id)))))) (defn- sanitise-video-data-structure "Sanitise (as in 'make sane'...) the herpaderp YouTube API video data structure. 🙄" [items] (seq (keep identity (map #(assoc (:snippet %) :id (:video-id (:id %))) items)))) (defn- remove-premieres "Removes 'premieres' (empty placeholders) from the given sequence of YouTube videos, because the herpaderp YouTube APIs don't support this directly. 🙄" ; See https://stackoverflow.com/a/66596615/369849 [videos] (remove #(= "upcoming" (:live-broadcast-content %)) videos)) (defn videos "Retrieves up to 50 videos for the given YouTube channel (or nil if there aren't any) newest first, optionally limited to those published since the given date." ([youtube-api-token channel-id] (videos youtube-api-token nil channel-id)) ([youtube-api-token since channel-id] (remove-premieres (let [endpoint (if since (format (str endpoint-get-channel-videos "&publishedAfter=%s") channel-id (str (tm/instant since))) (format endpoint-get-channel-videos channel-id))] (sanitise-video-data-structure (:items (google-api-call youtube-api-token endpoint))))))) (defn all-videos "Retrieves all videos for the given YouTube channel, newest first. Use with caution: this can be very expensive from a quota unit perspective (100 units / 50 videos)." [youtube-api-token channel-id] (remove-premieres (loop [endpoint (format endpoint-get-channel-videos channel-id) publish-date (tm/instant) result []] (let [items (sanitise-video-data-structure (:items (google-api-call youtube-api-token endpoint))) new-publish-date (:published-at (last items))] (if (and (not (s/blank? new-publish-date)) (tm/before? (tm/instant new-publish-date) (tm/instant publish-date))) (recur (format (str endpoint-get-channel-videos "&publishedBefore=%s") channel-id new-publish-date) new-publish-date (into result items)) (into result items))))))
true
; ; Copyright © 2020 PI:NAME:<NAME>END_PI ; ; Licensed under the Apache License, Version 2.0 (the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ; See the License for the specific language governing permissions and ; limitations under the License. ; ; SPDX-License-Identifier: Apache-2.0 ; (ns futbot.source.youtube (:require [clojure.string :as s] [clojure.tools.logging :as log] [org.httpkit.client :as http] [cheshire.core :as ch] [java-time :as tm] [futbot.util :as u])) (def api-host "https://www.googleapis.com") (def endpoint-get-channel-info "/youtube/v3/channels?part=snippet&id=%s") (def endpoint-get-channel-videos "/youtube/v3/search?part=snippet&order=date&type=video&maxResults=50&channelId=%s") (defn google-api-call "Calls the given Google API endpoint (must be fully constructed), using the provided API key, and either returns parsed hashmap of the body or throws an ex-info." [youtube-api-token endpoint] (let [api-url (str api-host endpoint) options {:headers {"Accept" "application/json"}} _ (log/debug "Calling" (str api-url "&key=REDACTED")) {:keys [status body error]} @(http/get (str api-url "&key=" youtube-api-token) options)] (if (or error (not= status 200)) (throw (ex-info (format "Google API call (%s) failed" (str api-url "&key=REDACTED")) {:status status :body (ch/parse-string body u/clojurise-json-key)} error)) (ch/parse-string body u/clojurise-json-key)))) (defn channel-info "Returns info for the given channel, or throws an ex-info." [youtube-api-token channel-id] (:snippet (first (:items (google-api-call youtube-api-token (format endpoint-get-channel-info channel-id)))))) (defn- sanitise-video-data-structure "Sanitise (as in 'make sane'...) the herpaderp YouTube API video data structure. 🙄" [items] (seq (keep identity (map #(assoc (:snippet %) :id (:video-id (:id %))) items)))) (defn- remove-premieres "Removes 'premieres' (empty placeholders) from the given sequence of YouTube videos, because the herpaderp YouTube APIs don't support this directly. 🙄" ; See https://stackoverflow.com/a/66596615/369849 [videos] (remove #(= "upcoming" (:live-broadcast-content %)) videos)) (defn videos "Retrieves up to 50 videos for the given YouTube channel (or nil if there aren't any) newest first, optionally limited to those published since the given date." ([youtube-api-token channel-id] (videos youtube-api-token nil channel-id)) ([youtube-api-token since channel-id] (remove-premieres (let [endpoint (if since (format (str endpoint-get-channel-videos "&publishedAfter=%s") channel-id (str (tm/instant since))) (format endpoint-get-channel-videos channel-id))] (sanitise-video-data-structure (:items (google-api-call youtube-api-token endpoint))))))) (defn all-videos "Retrieves all videos for the given YouTube channel, newest first. Use with caution: this can be very expensive from a quota unit perspective (100 units / 50 videos)." [youtube-api-token channel-id] (remove-premieres (loop [endpoint (format endpoint-get-channel-videos channel-id) publish-date (tm/instant) result []] (let [items (sanitise-video-data-structure (:items (google-api-call youtube-api-token endpoint))) new-publish-date (:published-at (last items))] (if (and (not (s/blank? new-publish-date)) (tm/before? (tm/instant new-publish-date) (tm/instant publish-date))) (recur (format (str endpoint-get-channel-videos "&publishedBefore=%s") channel-id new-publish-date) new-publish-date (into result items)) (into result items))))))
[ { "context": "ent.core :as r]))\n\n(def entities (r/atom [{:text \"Someone 1\"\n :id 1\n ", "end": 108, "score": 0.9483845233917236, "start": 99, "tag": "NAME", "value": "Someone 1" }, { "context": " :y-vel -50}\n {:text \"Someone 2\"\n :color \"green\"\n ", "end": 420, "score": 0.93719482421875, "start": 411, "tag": "NAME", "value": "Someone 2" }, { "context": " :y-vel -50}\n {:text \"Someone 3\"\n :color \"yellow\"\n ", "end": 734, "score": 0.922816276550293, "start": 725, "tag": "NAME", "value": "Someone 3" }, { "context": " :y-vel -50}\n {:text \"Someone 4\"\n :color \"blue\"\n ", "end": 1050, "score": 0.896697461605072, "start": 1041, "tag": "NAME", "value": "Someone 4" } ]
cljs-src/deltaside/cljs/model/player.cljs
pkcsecurity/deltaside
0
(ns deltaside.cljs.model.player (:require [reagent.core :as r])) (def entities (r/atom [{:text "Someone 1" :id 1 :color "red" :type :player :angle 0 :x 500 :y 200 :x-vel 50 :y-vel -50} {:text "Someone 2" :color "green" :id 2 :type :player :angle 0 :x 200 :y 200 :x-vel 50 :y-vel -50} {:text "Someone 3" :color "yellow" :id 3 :type :player :angle 0 :x 300 :y 300 :x-vel -50 :y-vel -50} {:text "Someone 4" :color "blue" :id 4 :type :player :angle 0 :x 300 :y 400 :x-vel 50 :y-vel 50}])) (def x-thrust (r/atom 0)) (def y-thrust (r/atom 0)) (def power 500) (def rpower -500) (def mouse-x (r/atom 0)) (def mouse-y (r/atom 0)) (def last-projectile-time (r/atom 0)) (def player-id (r/atom 1))
117678
(ns deltaside.cljs.model.player (:require [reagent.core :as r])) (def entities (r/atom [{:text "<NAME>" :id 1 :color "red" :type :player :angle 0 :x 500 :y 200 :x-vel 50 :y-vel -50} {:text "<NAME>" :color "green" :id 2 :type :player :angle 0 :x 200 :y 200 :x-vel 50 :y-vel -50} {:text "<NAME>" :color "yellow" :id 3 :type :player :angle 0 :x 300 :y 300 :x-vel -50 :y-vel -50} {:text "<NAME>" :color "blue" :id 4 :type :player :angle 0 :x 300 :y 400 :x-vel 50 :y-vel 50}])) (def x-thrust (r/atom 0)) (def y-thrust (r/atom 0)) (def power 500) (def rpower -500) (def mouse-x (r/atom 0)) (def mouse-y (r/atom 0)) (def last-projectile-time (r/atom 0)) (def player-id (r/atom 1))
true
(ns deltaside.cljs.model.player (:require [reagent.core :as r])) (def entities (r/atom [{:text "PI:NAME:<NAME>END_PI" :id 1 :color "red" :type :player :angle 0 :x 500 :y 200 :x-vel 50 :y-vel -50} {:text "PI:NAME:<NAME>END_PI" :color "green" :id 2 :type :player :angle 0 :x 200 :y 200 :x-vel 50 :y-vel -50} {:text "PI:NAME:<NAME>END_PI" :color "yellow" :id 3 :type :player :angle 0 :x 300 :y 300 :x-vel -50 :y-vel -50} {:text "PI:NAME:<NAME>END_PI" :color "blue" :id 4 :type :player :angle 0 :x 300 :y 400 :x-vel 50 :y-vel 50}])) (def x-thrust (r/atom 0)) (def y-thrust (r/atom 0)) (def power 500) (def rpower -500) (def mouse-x (r/atom 0)) (def mouse-y (r/atom 0)) (def last-projectile-time (r/atom 0)) (def player-id (r/atom 1))
[ { "context": "SNAPSHOT\"\n :description \"Address book prepared by afronski (based on Jarrod's tutorial).\"\n :url \"htt", "end": 84, "score": 0.9058508276939392, "start": 83, "tag": "USERNAME", "value": "a" }, { "context": "APSHOT\"\n :description \"Address book prepared by afronski (based on Jarrod's tutorial).\"\n :url \"https://gi", "end": 91, "score": 0.7443767189979553, "start": 84, "tag": "NAME", "value": "fronski" }, { "context": "n Jarrod's tutorial).\"\n :url \"https://github.com/afronski/playground-fp\"\n :min-lein-version \"2.5.0\"\n\n :de", "end": 158, "score": 0.9997044205665588, "start": 150, "tag": "USERNAME", "value": "afronski" } ]
clojure/address-book/project.clj
afronski/playground-fp
0
(defproject address-book "0.1.0-SNAPSHOT" :description "Address book prepared by afronski (based on Jarrod's tutorial)." :url "https://github.com/afronski/playground-fp" :min-lein-version "2.5.0" :dependencies [[org.clojure/clojure "1.6.0"] [compojure "1.3.1"] [ring/ring-defaults "0.1.2"] [hiccup "1.0.5"] [org.clojure/java.jdbc "0.3.6"] [postgresql/postgresql "9.3-1102.jdbc41"] [yesql "0.5.0-rc1"] [environ "1.0.0"]] :plugins [[lein-ring "0.9.1"] [lein-environ "1.0.0"]] :ring {:handler address-book.core.handler/app :init address-book.core.handler/init } :profiles {:test-local {:dependencies [[midje "1.6.3"] [javax.servlet/servlet-api "2.5"] [ring-mock "0.1.5"]] :plugins [[lein-midje "3.1.3"]]} :test-env-vars {} :dev-env-vars {} :test [:test-local :test-env-vars] :dev [:dev-env-vars] :production {:ring {:open-browser? false :stacktraces? false :auto-reload? false}}})
100434
(defproject address-book "0.1.0-SNAPSHOT" :description "Address book prepared by a<NAME> (based on Jarrod's tutorial)." :url "https://github.com/afronski/playground-fp" :min-lein-version "2.5.0" :dependencies [[org.clojure/clojure "1.6.0"] [compojure "1.3.1"] [ring/ring-defaults "0.1.2"] [hiccup "1.0.5"] [org.clojure/java.jdbc "0.3.6"] [postgresql/postgresql "9.3-1102.jdbc41"] [yesql "0.5.0-rc1"] [environ "1.0.0"]] :plugins [[lein-ring "0.9.1"] [lein-environ "1.0.0"]] :ring {:handler address-book.core.handler/app :init address-book.core.handler/init } :profiles {:test-local {:dependencies [[midje "1.6.3"] [javax.servlet/servlet-api "2.5"] [ring-mock "0.1.5"]] :plugins [[lein-midje "3.1.3"]]} :test-env-vars {} :dev-env-vars {} :test [:test-local :test-env-vars] :dev [:dev-env-vars] :production {:ring {:open-browser? false :stacktraces? false :auto-reload? false}}})
true
(defproject address-book "0.1.0-SNAPSHOT" :description "Address book prepared by aPI:NAME:<NAME>END_PI (based on Jarrod's tutorial)." :url "https://github.com/afronski/playground-fp" :min-lein-version "2.5.0" :dependencies [[org.clojure/clojure "1.6.0"] [compojure "1.3.1"] [ring/ring-defaults "0.1.2"] [hiccup "1.0.5"] [org.clojure/java.jdbc "0.3.6"] [postgresql/postgresql "9.3-1102.jdbc41"] [yesql "0.5.0-rc1"] [environ "1.0.0"]] :plugins [[lein-ring "0.9.1"] [lein-environ "1.0.0"]] :ring {:handler address-book.core.handler/app :init address-book.core.handler/init } :profiles {:test-local {:dependencies [[midje "1.6.3"] [javax.servlet/servlet-api "2.5"] [ring-mock "0.1.5"]] :plugins [[lein-midje "3.1.3"]]} :test-env-vars {} :dev-env-vars {} :test [:test-local :test-env-vars] :dev [:dev-env-vars] :production {:ring {:open-browser? false :stacktraces? false :auto-reload? false}}})
[ { "context": " :refer :all]))\r\n\r\n(def options {:users [{\"User\" \"Pass\"}]})\r\n\r\n(describe \"authentification\"\r\n (it \"al", "end": 151, "score": 0.5347581505775452, "start": 147, "tag": "PASSWORD", "value": "Pass" } ]
spec/maven_repo/auth_spec.clj
boogie666/maven-proxy
0
(ns maven-repo.auth-spec (:require [speclj.core :refer :all] [maven-repo.auth :refer :all])) (def options {:users [{"User" "Pass"}]}) (describe "authentification" (it "allows authenticated users in" (should= true (authenticated? options "User" "Pass"))) (it "does not allow wrong users in" (should-not= true (authenticated? options "NotUser" "NotPass"))) (it "allows all request if no users are configured" (let [no-user-options {:users []}] (should= true (authenticated? no-user-options "Whatever" "Whatever")))))
49855
(ns maven-repo.auth-spec (:require [speclj.core :refer :all] [maven-repo.auth :refer :all])) (def options {:users [{"User" "<PASSWORD>"}]}) (describe "authentification" (it "allows authenticated users in" (should= true (authenticated? options "User" "Pass"))) (it "does not allow wrong users in" (should-not= true (authenticated? options "NotUser" "NotPass"))) (it "allows all request if no users are configured" (let [no-user-options {:users []}] (should= true (authenticated? no-user-options "Whatever" "Whatever")))))
true
(ns maven-repo.auth-spec (:require [speclj.core :refer :all] [maven-repo.auth :refer :all])) (def options {:users [{"User" "PI:PASSWORD:<PASSWORD>END_PI"}]}) (describe "authentification" (it "allows authenticated users in" (should= true (authenticated? options "User" "Pass"))) (it "does not allow wrong users in" (should-not= true (authenticated? options "NotUser" "NotPass"))) (it "allows all request if no users are configured" (let [no-user-options {:users []}] (should= true (authenticated? no-user-options "Whatever" "Whatever")))))
[ { "context": ")\n :user \"uchida\"\n :password \"hello9\"})\n\n (with-connection db\n (drop-table :cities", "end": 1001, "score": 0.9990553855895996, "start": 995, "tag": "PASSWORD", "value": "hello9" } ]
postgre/clojure/create/try/try_aa.clj
ekzemplaro/data_base_language
3
; ----------------------------------------------------------------- ; ; postgre_create.clj ; ; Sep/17/2010 ; ; ----------------------------------------------------------------- (import '(java.util Date)) (import '(java.text SimpleDateFormat)) (use 'clojure.contrib.sql) (use '[clojure.contrib.str-utils :only (str-join)]) (use 'clj-time.core) ; ----------------------------------------------------------------- (defn insert_proc [] ;(let [today "1971-3-25"] ;(let [today (. (new SimpleDateFormat "yyyy-MM-dd") format (new Date))] (let [today (new Date)] (insert-values :cities [:id :name :population :date_mod] [3461 "広島" 54200 (date-time 1971 3 12)]) ) ) ; ----------------------------------------------------------------- (println "*** 開始 ***") (let [db-host "localhost" db-name "city" ] (def db {:classname "org.postgresql.Driver" :subprotocol "postgresql" :subname (str "//" db-host "/" db-name) :user "uchida" :password "hello9"}) (with-connection db (drop-table :cities) (create-table :cities [:id :int "PRIMARY KEY"] [:name :varchar] [:population :int] [:date_mod :date]) ; [:date_mod :varchar]) (insert_proc) )) (println "*** 終了 ***") ; -----------------------------------------------------------------
101349
; ----------------------------------------------------------------- ; ; postgre_create.clj ; ; Sep/17/2010 ; ; ----------------------------------------------------------------- (import '(java.util Date)) (import '(java.text SimpleDateFormat)) (use 'clojure.contrib.sql) (use '[clojure.contrib.str-utils :only (str-join)]) (use 'clj-time.core) ; ----------------------------------------------------------------- (defn insert_proc [] ;(let [today "1971-3-25"] ;(let [today (. (new SimpleDateFormat "yyyy-MM-dd") format (new Date))] (let [today (new Date)] (insert-values :cities [:id :name :population :date_mod] [3461 "広島" 54200 (date-time 1971 3 12)]) ) ) ; ----------------------------------------------------------------- (println "*** 開始 ***") (let [db-host "localhost" db-name "city" ] (def db {:classname "org.postgresql.Driver" :subprotocol "postgresql" :subname (str "//" db-host "/" db-name) :user "uchida" :password "<PASSWORD>"}) (with-connection db (drop-table :cities) (create-table :cities [:id :int "PRIMARY KEY"] [:name :varchar] [:population :int] [:date_mod :date]) ; [:date_mod :varchar]) (insert_proc) )) (println "*** 終了 ***") ; -----------------------------------------------------------------
true
; ----------------------------------------------------------------- ; ; postgre_create.clj ; ; Sep/17/2010 ; ; ----------------------------------------------------------------- (import '(java.util Date)) (import '(java.text SimpleDateFormat)) (use 'clojure.contrib.sql) (use '[clojure.contrib.str-utils :only (str-join)]) (use 'clj-time.core) ; ----------------------------------------------------------------- (defn insert_proc [] ;(let [today "1971-3-25"] ;(let [today (. (new SimpleDateFormat "yyyy-MM-dd") format (new Date))] (let [today (new Date)] (insert-values :cities [:id :name :population :date_mod] [3461 "広島" 54200 (date-time 1971 3 12)]) ) ) ; ----------------------------------------------------------------- (println "*** 開始 ***") (let [db-host "localhost" db-name "city" ] (def db {:classname "org.postgresql.Driver" :subprotocol "postgresql" :subname (str "//" db-host "/" db-name) :user "uchida" :password "PI:PASSWORD:<PASSWORD>END_PI"}) (with-connection db (drop-table :cities) (create-table :cities [:id :int "PRIMARY KEY"] [:name :varchar] [:population :int] [:date_mod :date]) ; [:date_mod :varchar]) (insert_proc) )) (println "*** 終了 ***") ; -----------------------------------------------------------------
[ { "context": ";;\n;;\n;; Copyright 2013-2015 Netflix, Inc.\n;;\n;; Licensed under the Apache Lic", "end": 33, "score": 0.9212996959686279, "start": 30, "tag": "NAME", "value": "Net" } ]
pigpen-core/src/test/clojure/pigpen/local_test.clj
ombagus/Netflix
327
;; ;; ;; Copyright 2013-2015 Netflix, Inc. ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. ;; ;; (ns pigpen.local-test (:require [pigpen.extensions.test :refer [test-diff]] [clojure.test :refer :all] [pigpen.raw :as raw] [pigpen.core :as pig] [pigpen.local :as local :refer [PigPenLocalLoader]])) (deftest test-cross-product (testing "normal join" (let [data '[[{r1v1 1, r1v2 2} {r1v1 3, r1v2 4}] [{r2v1 5, r2v2 6} {r2v1 7, r2v2 8}]]] (test-diff (set (local/cross-product data)) '#{{r1v1 1, r1v2 2, r2v2 6, r2v1 5} {r1v1 1, r1v2 2, r2v2 8, r2v1 7} {r1v1 3, r1v2 4, r2v2 6, r2v1 5} {r1v1 3, r1v2 4, r2v2 8, r2v1 7}}))) (testing "single flatten" (let [data '[[{key 1}] [{val1 :a}] [{val2 "a"}]]] (test-diff (set (local/cross-product data)) '#{{key 1, val1 :a, val2 "a"}}))) (testing "multi flatten" (let [data '[[{key 1}] [{val1 :a} {val1 :b}] [{val2 "a"} {val2 "b"}]]] (test-diff (set (local/cross-product data)) '#{{key 1, val1 :a, val2 "a"} {key 1, val1 :a, val2 "b"} {key 1, val1 :b, val2 "a"} {key 1, val1 :b, val2 "b"}}))) (testing "inner join" (let [data '[[{r1v1 1, r1v2 2} {r1v1 3, r1v2 4}] [{r2v1 5, r2v2 6} {r2v1 7, r2v2 8}] []]] (test-diff (set (local/cross-product data)) '#{}))) (testing "outer join" (let [data '[[{r1v1 1, r1v2 2} {r1v1 3, r1v2 4}] [{r2v1 5, r2v2 6} {r2v1 7, r2v2 8}] [{}]]] (test-diff (set (local/cross-product data)) '#{{r1v1 1, r1v2 2, r2v2 6, r2v1 5} {r1v1 1, r1v2 2, r2v2 8, r2v1 7} {r1v1 3, r1v2 4, r2v2 6, r2v1 5} {r1v1 3, r1v2 4, r2v2 8, r2v1 7}})))) (defmethod local/load :bad-storage [command] (let [fail (get-in command [:opts :fail])] (reify PigPenLocalLoader (locations [_] (if (= fail :locations) (throw (Exception. "locations")) ["foo" "bar"])) (init-reader [_ _] (if (= fail :init-reader) (throw (Exception. "init-reader")) :reader)) (read [_ _] (if (= fail :read) (throw (Exception. "read")) [{'value 1} {'value 2} {'value 3}])) (close-reader [_ _] (when (= fail :close) (throw (Exception. "close-reader"))))))) (deftest test-load-exception-handling (testing "normal" (let [command (raw/load$ "nothing" :bad-storage ['value] {:fail nil})] (is (= (local/dump command) [1 2 3 1 2 3])))) (testing "fail locations" (let [command (raw/load$ "nothing" :bad-storage ['value] {:fail :locations})] (is (thrown? Exception (local/dump command))))) (testing "fail init-reader" (let [command (raw/load$ "nothing" :bad-storage ['value] {:fail :init-reader})] (is (thrown? Exception (local/dump command))))) (testing "fail read" (let [command (raw/load$ "nothing" :bad-storage ['value] {:fail :read})] (is (thrown? Exception (local/dump command))))) (testing "fail close" (let [command (raw/load$ "nothing" :bad-storage ['value] {:fail :close})] (is (thrown? Exception (local/dump command)))))) (deftest test-exception-handling (let [data (pig/return [1 2 3]) command (pig/map (fn [x] (throw (java.lang.Exception.))) data)] (is (thrown? Exception (local/dump command)))))
436
;; ;; ;; Copyright 2013-2015 <NAME>flix, Inc. ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. ;; ;; (ns pigpen.local-test (:require [pigpen.extensions.test :refer [test-diff]] [clojure.test :refer :all] [pigpen.raw :as raw] [pigpen.core :as pig] [pigpen.local :as local :refer [PigPenLocalLoader]])) (deftest test-cross-product (testing "normal join" (let [data '[[{r1v1 1, r1v2 2} {r1v1 3, r1v2 4}] [{r2v1 5, r2v2 6} {r2v1 7, r2v2 8}]]] (test-diff (set (local/cross-product data)) '#{{r1v1 1, r1v2 2, r2v2 6, r2v1 5} {r1v1 1, r1v2 2, r2v2 8, r2v1 7} {r1v1 3, r1v2 4, r2v2 6, r2v1 5} {r1v1 3, r1v2 4, r2v2 8, r2v1 7}}))) (testing "single flatten" (let [data '[[{key 1}] [{val1 :a}] [{val2 "a"}]]] (test-diff (set (local/cross-product data)) '#{{key 1, val1 :a, val2 "a"}}))) (testing "multi flatten" (let [data '[[{key 1}] [{val1 :a} {val1 :b}] [{val2 "a"} {val2 "b"}]]] (test-diff (set (local/cross-product data)) '#{{key 1, val1 :a, val2 "a"} {key 1, val1 :a, val2 "b"} {key 1, val1 :b, val2 "a"} {key 1, val1 :b, val2 "b"}}))) (testing "inner join" (let [data '[[{r1v1 1, r1v2 2} {r1v1 3, r1v2 4}] [{r2v1 5, r2v2 6} {r2v1 7, r2v2 8}] []]] (test-diff (set (local/cross-product data)) '#{}))) (testing "outer join" (let [data '[[{r1v1 1, r1v2 2} {r1v1 3, r1v2 4}] [{r2v1 5, r2v2 6} {r2v1 7, r2v2 8}] [{}]]] (test-diff (set (local/cross-product data)) '#{{r1v1 1, r1v2 2, r2v2 6, r2v1 5} {r1v1 1, r1v2 2, r2v2 8, r2v1 7} {r1v1 3, r1v2 4, r2v2 6, r2v1 5} {r1v1 3, r1v2 4, r2v2 8, r2v1 7}})))) (defmethod local/load :bad-storage [command] (let [fail (get-in command [:opts :fail])] (reify PigPenLocalLoader (locations [_] (if (= fail :locations) (throw (Exception. "locations")) ["foo" "bar"])) (init-reader [_ _] (if (= fail :init-reader) (throw (Exception. "init-reader")) :reader)) (read [_ _] (if (= fail :read) (throw (Exception. "read")) [{'value 1} {'value 2} {'value 3}])) (close-reader [_ _] (when (= fail :close) (throw (Exception. "close-reader"))))))) (deftest test-load-exception-handling (testing "normal" (let [command (raw/load$ "nothing" :bad-storage ['value] {:fail nil})] (is (= (local/dump command) [1 2 3 1 2 3])))) (testing "fail locations" (let [command (raw/load$ "nothing" :bad-storage ['value] {:fail :locations})] (is (thrown? Exception (local/dump command))))) (testing "fail init-reader" (let [command (raw/load$ "nothing" :bad-storage ['value] {:fail :init-reader})] (is (thrown? Exception (local/dump command))))) (testing "fail read" (let [command (raw/load$ "nothing" :bad-storage ['value] {:fail :read})] (is (thrown? Exception (local/dump command))))) (testing "fail close" (let [command (raw/load$ "nothing" :bad-storage ['value] {:fail :close})] (is (thrown? Exception (local/dump command)))))) (deftest test-exception-handling (let [data (pig/return [1 2 3]) command (pig/map (fn [x] (throw (java.lang.Exception.))) data)] (is (thrown? Exception (local/dump command)))))
true
;; ;; ;; Copyright 2013-2015 PI:NAME:<NAME>END_PIflix, Inc. ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. ;; ;; (ns pigpen.local-test (:require [pigpen.extensions.test :refer [test-diff]] [clojure.test :refer :all] [pigpen.raw :as raw] [pigpen.core :as pig] [pigpen.local :as local :refer [PigPenLocalLoader]])) (deftest test-cross-product (testing "normal join" (let [data '[[{r1v1 1, r1v2 2} {r1v1 3, r1v2 4}] [{r2v1 5, r2v2 6} {r2v1 7, r2v2 8}]]] (test-diff (set (local/cross-product data)) '#{{r1v1 1, r1v2 2, r2v2 6, r2v1 5} {r1v1 1, r1v2 2, r2v2 8, r2v1 7} {r1v1 3, r1v2 4, r2v2 6, r2v1 5} {r1v1 3, r1v2 4, r2v2 8, r2v1 7}}))) (testing "single flatten" (let [data '[[{key 1}] [{val1 :a}] [{val2 "a"}]]] (test-diff (set (local/cross-product data)) '#{{key 1, val1 :a, val2 "a"}}))) (testing "multi flatten" (let [data '[[{key 1}] [{val1 :a} {val1 :b}] [{val2 "a"} {val2 "b"}]]] (test-diff (set (local/cross-product data)) '#{{key 1, val1 :a, val2 "a"} {key 1, val1 :a, val2 "b"} {key 1, val1 :b, val2 "a"} {key 1, val1 :b, val2 "b"}}))) (testing "inner join" (let [data '[[{r1v1 1, r1v2 2} {r1v1 3, r1v2 4}] [{r2v1 5, r2v2 6} {r2v1 7, r2v2 8}] []]] (test-diff (set (local/cross-product data)) '#{}))) (testing "outer join" (let [data '[[{r1v1 1, r1v2 2} {r1v1 3, r1v2 4}] [{r2v1 5, r2v2 6} {r2v1 7, r2v2 8}] [{}]]] (test-diff (set (local/cross-product data)) '#{{r1v1 1, r1v2 2, r2v2 6, r2v1 5} {r1v1 1, r1v2 2, r2v2 8, r2v1 7} {r1v1 3, r1v2 4, r2v2 6, r2v1 5} {r1v1 3, r1v2 4, r2v2 8, r2v1 7}})))) (defmethod local/load :bad-storage [command] (let [fail (get-in command [:opts :fail])] (reify PigPenLocalLoader (locations [_] (if (= fail :locations) (throw (Exception. "locations")) ["foo" "bar"])) (init-reader [_ _] (if (= fail :init-reader) (throw (Exception. "init-reader")) :reader)) (read [_ _] (if (= fail :read) (throw (Exception. "read")) [{'value 1} {'value 2} {'value 3}])) (close-reader [_ _] (when (= fail :close) (throw (Exception. "close-reader"))))))) (deftest test-load-exception-handling (testing "normal" (let [command (raw/load$ "nothing" :bad-storage ['value] {:fail nil})] (is (= (local/dump command) [1 2 3 1 2 3])))) (testing "fail locations" (let [command (raw/load$ "nothing" :bad-storage ['value] {:fail :locations})] (is (thrown? Exception (local/dump command))))) (testing "fail init-reader" (let [command (raw/load$ "nothing" :bad-storage ['value] {:fail :init-reader})] (is (thrown? Exception (local/dump command))))) (testing "fail read" (let [command (raw/load$ "nothing" :bad-storage ['value] {:fail :read})] (is (thrown? Exception (local/dump command))))) (testing "fail close" (let [command (raw/load$ "nothing" :bad-storage ['value] {:fail :close})] (is (thrown? Exception (local/dump command)))))) (deftest test-exception-handling (let [data (pig/return [1 2 3]) command (pig/map (fn [x] (throw (java.lang.Exception.))) data)] (is (thrown? Exception (local/dump command)))))
[ { "context": "\n (testing \"give-up results\"\n (let [[p1 p2] [\"bob\" \"regeda\"]\n game (matcher/initial-sta", "end": 3307, "score": 0.9119380116462708, "start": 3304, "tag": "USERNAME", "value": "bob" }, { "context": "sting \"give-up results\"\n (let [[p1 p2] [\"bob\" \"regeda\"]\n game (matcher/initial-state b/", "end": 3312, "score": 0.5759815573692322, "start": 3310, "tag": "USERNAME", "value": "re" }, { "context": "ing \"give-up results\"\n (let [[p1 p2] [\"bob\" \"regeda\"]\n game (matcher/initial-state b/row-", "end": 3316, "score": 0.7534401416778564, "start": 3312, "tag": "NAME", "value": "geda" }, { "context": "\n (testing \"timeout results\"\n (let [[p1 p2] [\"bob\" \"regeda\"]\n game (matcher/initial-sta", "end": 3792, "score": 0.5910746455192566, "start": 3789, "tag": "NAME", "value": "bob" }, { "context": "sting \"timeout results\"\n (let [[p1 p2] [\"bob\" \"regeda\"]\n game (matcher/initial-state b/row-", "end": 3801, "score": 0.8625819087028503, "start": 3795, "tag": "NAME", "value": "regeda" }, { "context": "\n (testing \"no moves result\"\n (let [[p1 p2] [\"bob\" \"regeda\"]\n game (update (matcher/ini", "end": 4273, "score": 0.8462975025177002, "start": 4270, "tag": "NAME", "value": "bob" }, { "context": "sting \"no moves result\"\n (let [[p1 p2] [\"bob\" \"regeda\"]\n game (update (matcher/initial-stat", "end": 4282, "score": 0.9531071186065674, "start": 4276, "tag": "NAME", "value": "regeda" }, { "context": "ated (System/currentTimeMillis),\n :player1 \"bob\",:player2 \"regeda\",\n :player1-hrz true})\n ", "end": 5106, "score": 0.8648272156715393, "start": 5103, "tag": "USERNAME", "value": "bob" }, { "context": "rrentTimeMillis),\n :player1 \"bob\",:player2 \"regeda\",\n :player1-hrz true})\n (def in> (chan))", "end": 5124, "score": 0.8551831841468811, "start": 5118, "tag": "NAME", "value": "regeda" }, { "context": "e-print (:state game)))\n\n (let [mv 8\n nm \"bob\"\n ;; nm \"regeda\"\n ] (>!! in> (->Mes", "end": 5484, "score": 0.6803919672966003, "start": 5481, "tag": "USERNAME", "value": "bob" }, { "context": ")))\n\n (let [mv 8\n nm \"bob\"\n ;; nm \"regeda\"\n ] (>!! in> (->Message :move nm mv))\n ", "end": 5507, "score": 0.7296876907348633, "start": 5501, "tag": "NAME", "value": "regeda" } ]
test/clj/plus_minus/test/multiplayer/test_reply.clj
Liverm0r/plusminus.me
3
(ns plus-minus.test.multiplayer.test-reply (:require [clojure.core.async :refer [<!! <! >! >!! go go-loop chan close! alts!! timeout]] [plus-minus.common.async :refer [get-with-timeout!!]] [mount.core :as mount] [plus-minus.db.core] [plus-minus.config :refer [env]] [luminus-migrations.core :as migrations] [plus-minus.multiplayer.contract :refer [->Message] :as c] [plus-minus.routes.multiplayer.reply :as reply] [plus-minus.routes.multiplayer.matcher :as matcher] [clojure.test :refer [deftest is testing use-fixtures]] [plus-minus.game.game :as game] [plus-minus.game.board :as b] [plus-minus.game.progress :as p]) (:import [plus_minus.multiplayer.contract Game Reply])) (use-fixtures :once (fn [f] (mount/start #'plus-minus.config/env #'plus-minus.db.core/*db*) (migrations/migrate ["migrate"] (select-keys env [:database-url])) (f))) (deftest basic-replies (let [game (matcher/initial-state b/row-count-min "p1" "p2") game (assoc-in game (c/influence-game-path game "p1") c/influence-on-win) mock :alert-good-luck in> (chan) out> (chan) mvs> (chan) st> (chan 1 (drop 2)) ;; drop first 2 states from init tt> (chan 1 (drop 1)) ;; turn-time result> (chan 1 (drop 1)) _ (go-loop [] (when-let [{type :reply-type :as reply} (<! out>)] (case type :move (>! mvs> reply) :state (>! st> reply) :turn-time (>! tt> reply) :end (>! result> reply) nil) (recur))) end> (reply/pipe-replies! game in> out>)] (testing "can get two move replies" (>!! in> (->Message :move (c/turn-id game) (game/some-move (:state game)))) (is (instance? Reply (do (get-with-timeout!! mvs>) (get-with-timeout!! mvs>))))) (testing "can get :state reply after :state message" (>!! in> (->Message :state "p1" nil)) (let [{type :reply-type} (get-with-timeout!! st>)] (is (= type :state)))) (testing "can get :turn-time reply after :turn-time message" (>!! in> (->Message :turn-time "p1" nil)) (let [{type :reply-type time :data} (get-with-timeout!! tt>)] (is (= type :turn-time)) (is (> time (- (c/game->time game) 2000))))) (>!! in> (->Message :mock "p1" mock)) (testing "game ends after :give-up message" (>!! in> (->Message :give-up "p1" nil)) (prn "about to start waiting end>") (is (= :end (get-with-timeout!! end>)))) (let [{{game :game} :data} (get-with-timeout!! result>)] (testing "winner got influence" (is (= (+ c/influence-initial c/influence-on-win) (c/influence-get game "p2")))) (testing "agressor spent his influence" (is (= (- c/influence-on-win (c/mock-price mock)) (c/influence-get game "p1"))))) (close! in>))) (deftest results (testing "give-up results" (let [[p1 p2] ["bob" "regeda"] game (matcher/initial-state b/row-count-min p1 p2) [r1 r2] (#'reply/game-end-replies game (->Message :give-up p1 nil)) game (-> r1 :data :game)] (is (= (+ c/influence-initial c/influence-on-win) (c/influence-get game p2))) (is (= (-> r1 :data :outcome) :lose)) (is (= (-> r2 :data :outcome) :win)) (is (= (-> r1 :data :cause) (-> r2 :data :cause) :give-up)))) (testing "timeout results" (let [[p1 p2] ["bob" "regeda"] game (matcher/initial-state b/row-count-min p1 p2) [r1 r2] (#'reply/game-end-replies game (->Message :ping nil nil)) mover (c/turn-id game) winner (c/other-id game mover)] (is (= (-> (if (= p1 mover) r1 r2) :data :outcome) :lose)) (is (= (-> (if (= p1 mover) r2 r1) :data :outcome) :win)) (is (= (-> r1 :data :cause) (-> r2 :data :cause) :time-out)))) (testing "no moves result" (let [[p1 p2] ["bob" "regeda"] game (update (matcher/initial-state b/row-count-min p1 p2) :state game/play) [r1 r2] (#'reply/game-end-replies game (->Message :ping nil nil))] (is (= (-> r1 :data :outcome) (game/on-game-end (:state game) (:player1-hrz game)))) (is (= (-> r2 :data :outcome) (game/on-game-end (:state game) (not (:player1-hrz game))))) (is (= (-> r1 :data :cause) (-> r2 :data :cause) :no-moves))))) (comment (do (def game {:state {:board {:row-size b/row-count-min, :cells [4 2 -5 9 -8 -7 -5 -5 8]}, :start 6,:moves [],:hrz-points 0,:vrt-points 0,:hrz-turn true}, :game-id 0, :created (System/currentTimeMillis), :updated (System/currentTimeMillis), :player1 "bob",:player2 "regeda", :player1-hrz true}) (def in> (chan)) (def out> (chan)) (go-loop [v (<! out>)] (println v) (when v (recur (<! out>)))) (def end> (reply/pipe-replies! game in> out>)) ) (do (prn (reply/player-turn-id game)) (prn (st/valid-moves (:state game))) (st/state-print (:state game))) (let [mv 8 nm "bob" ;; nm "regeda" ] (>!! in> (->Message :move nm mv)) (def game (update game :state st/move mv))) (>!! in> (->Message :turn-time "regeda" nil)) (>!! in> (->Message :give-up "regeda" nil)) (clojure.core.async.impl.protocols/closed? in>) (<!! end>) (do (async/close! end>) (async/close! in>) (async/close! out>)) )
74570
(ns plus-minus.test.multiplayer.test-reply (:require [clojure.core.async :refer [<!! <! >! >!! go go-loop chan close! alts!! timeout]] [plus-minus.common.async :refer [get-with-timeout!!]] [mount.core :as mount] [plus-minus.db.core] [plus-minus.config :refer [env]] [luminus-migrations.core :as migrations] [plus-minus.multiplayer.contract :refer [->Message] :as c] [plus-minus.routes.multiplayer.reply :as reply] [plus-minus.routes.multiplayer.matcher :as matcher] [clojure.test :refer [deftest is testing use-fixtures]] [plus-minus.game.game :as game] [plus-minus.game.board :as b] [plus-minus.game.progress :as p]) (:import [plus_minus.multiplayer.contract Game Reply])) (use-fixtures :once (fn [f] (mount/start #'plus-minus.config/env #'plus-minus.db.core/*db*) (migrations/migrate ["migrate"] (select-keys env [:database-url])) (f))) (deftest basic-replies (let [game (matcher/initial-state b/row-count-min "p1" "p2") game (assoc-in game (c/influence-game-path game "p1") c/influence-on-win) mock :alert-good-luck in> (chan) out> (chan) mvs> (chan) st> (chan 1 (drop 2)) ;; drop first 2 states from init tt> (chan 1 (drop 1)) ;; turn-time result> (chan 1 (drop 1)) _ (go-loop [] (when-let [{type :reply-type :as reply} (<! out>)] (case type :move (>! mvs> reply) :state (>! st> reply) :turn-time (>! tt> reply) :end (>! result> reply) nil) (recur))) end> (reply/pipe-replies! game in> out>)] (testing "can get two move replies" (>!! in> (->Message :move (c/turn-id game) (game/some-move (:state game)))) (is (instance? Reply (do (get-with-timeout!! mvs>) (get-with-timeout!! mvs>))))) (testing "can get :state reply after :state message" (>!! in> (->Message :state "p1" nil)) (let [{type :reply-type} (get-with-timeout!! st>)] (is (= type :state)))) (testing "can get :turn-time reply after :turn-time message" (>!! in> (->Message :turn-time "p1" nil)) (let [{type :reply-type time :data} (get-with-timeout!! tt>)] (is (= type :turn-time)) (is (> time (- (c/game->time game) 2000))))) (>!! in> (->Message :mock "p1" mock)) (testing "game ends after :give-up message" (>!! in> (->Message :give-up "p1" nil)) (prn "about to start waiting end>") (is (= :end (get-with-timeout!! end>)))) (let [{{game :game} :data} (get-with-timeout!! result>)] (testing "winner got influence" (is (= (+ c/influence-initial c/influence-on-win) (c/influence-get game "p2")))) (testing "agressor spent his influence" (is (= (- c/influence-on-win (c/mock-price mock)) (c/influence-get game "p1"))))) (close! in>))) (deftest results (testing "give-up results" (let [[p1 p2] ["bob" "re<NAME>"] game (matcher/initial-state b/row-count-min p1 p2) [r1 r2] (#'reply/game-end-replies game (->Message :give-up p1 nil)) game (-> r1 :data :game)] (is (= (+ c/influence-initial c/influence-on-win) (c/influence-get game p2))) (is (= (-> r1 :data :outcome) :lose)) (is (= (-> r2 :data :outcome) :win)) (is (= (-> r1 :data :cause) (-> r2 :data :cause) :give-up)))) (testing "timeout results" (let [[p1 p2] ["<NAME>" "<NAME>"] game (matcher/initial-state b/row-count-min p1 p2) [r1 r2] (#'reply/game-end-replies game (->Message :ping nil nil)) mover (c/turn-id game) winner (c/other-id game mover)] (is (= (-> (if (= p1 mover) r1 r2) :data :outcome) :lose)) (is (= (-> (if (= p1 mover) r2 r1) :data :outcome) :win)) (is (= (-> r1 :data :cause) (-> r2 :data :cause) :time-out)))) (testing "no moves result" (let [[p1 p2] ["<NAME>" "<NAME>"] game (update (matcher/initial-state b/row-count-min p1 p2) :state game/play) [r1 r2] (#'reply/game-end-replies game (->Message :ping nil nil))] (is (= (-> r1 :data :outcome) (game/on-game-end (:state game) (:player1-hrz game)))) (is (= (-> r2 :data :outcome) (game/on-game-end (:state game) (not (:player1-hrz game))))) (is (= (-> r1 :data :cause) (-> r2 :data :cause) :no-moves))))) (comment (do (def game {:state {:board {:row-size b/row-count-min, :cells [4 2 -5 9 -8 -7 -5 -5 8]}, :start 6,:moves [],:hrz-points 0,:vrt-points 0,:hrz-turn true}, :game-id 0, :created (System/currentTimeMillis), :updated (System/currentTimeMillis), :player1 "bob",:player2 "<NAME>", :player1-hrz true}) (def in> (chan)) (def out> (chan)) (go-loop [v (<! out>)] (println v) (when v (recur (<! out>)))) (def end> (reply/pipe-replies! game in> out>)) ) (do (prn (reply/player-turn-id game)) (prn (st/valid-moves (:state game))) (st/state-print (:state game))) (let [mv 8 nm "bob" ;; nm "<NAME>" ] (>!! in> (->Message :move nm mv)) (def game (update game :state st/move mv))) (>!! in> (->Message :turn-time "regeda" nil)) (>!! in> (->Message :give-up "regeda" nil)) (clojure.core.async.impl.protocols/closed? in>) (<!! end>) (do (async/close! end>) (async/close! in>) (async/close! out>)) )
true
(ns plus-minus.test.multiplayer.test-reply (:require [clojure.core.async :refer [<!! <! >! >!! go go-loop chan close! alts!! timeout]] [plus-minus.common.async :refer [get-with-timeout!!]] [mount.core :as mount] [plus-minus.db.core] [plus-minus.config :refer [env]] [luminus-migrations.core :as migrations] [plus-minus.multiplayer.contract :refer [->Message] :as c] [plus-minus.routes.multiplayer.reply :as reply] [plus-minus.routes.multiplayer.matcher :as matcher] [clojure.test :refer [deftest is testing use-fixtures]] [plus-minus.game.game :as game] [plus-minus.game.board :as b] [plus-minus.game.progress :as p]) (:import [plus_minus.multiplayer.contract Game Reply])) (use-fixtures :once (fn [f] (mount/start #'plus-minus.config/env #'plus-minus.db.core/*db*) (migrations/migrate ["migrate"] (select-keys env [:database-url])) (f))) (deftest basic-replies (let [game (matcher/initial-state b/row-count-min "p1" "p2") game (assoc-in game (c/influence-game-path game "p1") c/influence-on-win) mock :alert-good-luck in> (chan) out> (chan) mvs> (chan) st> (chan 1 (drop 2)) ;; drop first 2 states from init tt> (chan 1 (drop 1)) ;; turn-time result> (chan 1 (drop 1)) _ (go-loop [] (when-let [{type :reply-type :as reply} (<! out>)] (case type :move (>! mvs> reply) :state (>! st> reply) :turn-time (>! tt> reply) :end (>! result> reply) nil) (recur))) end> (reply/pipe-replies! game in> out>)] (testing "can get two move replies" (>!! in> (->Message :move (c/turn-id game) (game/some-move (:state game)))) (is (instance? Reply (do (get-with-timeout!! mvs>) (get-with-timeout!! mvs>))))) (testing "can get :state reply after :state message" (>!! in> (->Message :state "p1" nil)) (let [{type :reply-type} (get-with-timeout!! st>)] (is (= type :state)))) (testing "can get :turn-time reply after :turn-time message" (>!! in> (->Message :turn-time "p1" nil)) (let [{type :reply-type time :data} (get-with-timeout!! tt>)] (is (= type :turn-time)) (is (> time (- (c/game->time game) 2000))))) (>!! in> (->Message :mock "p1" mock)) (testing "game ends after :give-up message" (>!! in> (->Message :give-up "p1" nil)) (prn "about to start waiting end>") (is (= :end (get-with-timeout!! end>)))) (let [{{game :game} :data} (get-with-timeout!! result>)] (testing "winner got influence" (is (= (+ c/influence-initial c/influence-on-win) (c/influence-get game "p2")))) (testing "agressor spent his influence" (is (= (- c/influence-on-win (c/mock-price mock)) (c/influence-get game "p1"))))) (close! in>))) (deftest results (testing "give-up results" (let [[p1 p2] ["bob" "rePI:NAME:<NAME>END_PI"] game (matcher/initial-state b/row-count-min p1 p2) [r1 r2] (#'reply/game-end-replies game (->Message :give-up p1 nil)) game (-> r1 :data :game)] (is (= (+ c/influence-initial c/influence-on-win) (c/influence-get game p2))) (is (= (-> r1 :data :outcome) :lose)) (is (= (-> r2 :data :outcome) :win)) (is (= (-> r1 :data :cause) (-> r2 :data :cause) :give-up)))) (testing "timeout results" (let [[p1 p2] ["PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI"] game (matcher/initial-state b/row-count-min p1 p2) [r1 r2] (#'reply/game-end-replies game (->Message :ping nil nil)) mover (c/turn-id game) winner (c/other-id game mover)] (is (= (-> (if (= p1 mover) r1 r2) :data :outcome) :lose)) (is (= (-> (if (= p1 mover) r2 r1) :data :outcome) :win)) (is (= (-> r1 :data :cause) (-> r2 :data :cause) :time-out)))) (testing "no moves result" (let [[p1 p2] ["PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI"] game (update (matcher/initial-state b/row-count-min p1 p2) :state game/play) [r1 r2] (#'reply/game-end-replies game (->Message :ping nil nil))] (is (= (-> r1 :data :outcome) (game/on-game-end (:state game) (:player1-hrz game)))) (is (= (-> r2 :data :outcome) (game/on-game-end (:state game) (not (:player1-hrz game))))) (is (= (-> r1 :data :cause) (-> r2 :data :cause) :no-moves))))) (comment (do (def game {:state {:board {:row-size b/row-count-min, :cells [4 2 -5 9 -8 -7 -5 -5 8]}, :start 6,:moves [],:hrz-points 0,:vrt-points 0,:hrz-turn true}, :game-id 0, :created (System/currentTimeMillis), :updated (System/currentTimeMillis), :player1 "bob",:player2 "PI:NAME:<NAME>END_PI", :player1-hrz true}) (def in> (chan)) (def out> (chan)) (go-loop [v (<! out>)] (println v) (when v (recur (<! out>)))) (def end> (reply/pipe-replies! game in> out>)) ) (do (prn (reply/player-turn-id game)) (prn (st/valid-moves (:state game))) (st/state-print (:state game))) (let [mv 8 nm "bob" ;; nm "PI:NAME:<NAME>END_PI" ] (>!! in> (->Message :move nm mv)) (def game (update game :state st/move mv))) (>!! in> (->Message :turn-time "regeda" nil)) (>!! in> (->Message :give-up "regeda" nil)) (clojure.core.async.impl.protocols/closed? in>) (<!! end>) (do (async/close! end>) (async/close! in>) (async/close! out>)) )
[ { "context": "; Copyright (c) Rich Hickey. All rights reserved.\n; The use and distributio", "end": 30, "score": 0.9998100399971008, "start": 19, "tag": "NAME", "value": "Rich Hickey" }, { "context": "ice, or any other, from this software.\n;\n;\tAuthor: David Miller\n\n; Test of gen-class facility.\n;\n; Place this fil", "end": 488, "score": 0.9997630715370178, "start": 476, "tag": "NAME", "value": "David Miller" } ]
Clojure/clojure/samples/deftype/testdeftype.clj
AydarLukmanov/ArcadiaGodot
328
; Copyright (c) Rich Hickey. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any fashion, you are agreeing to be bound by ; the terms of this license. ; You must not remove this notice, or any other, from this software. ; ; Author: David Miller ; Test of gen-class facility. ; ; Place this file in the clojure subdirectory of your main directory. ; load or compile, depending on your mood (ns clojure.testdeftype) (definterface I1 (^Int32 m1 [^Int32 x ^String y]) (^Int32 m1 [^String x ^Int32 y]) (^Int32 m2 [^Int32 x ^String y])) (definterface I2 (^Int32 m1 [^Int32 x ^String y]) (^String m2 [^Int32 x ^String y]) (m3 [x y]) ) (deftype T1 [a b] I1 (^Int32 m1 [_ ^Int32 x ^String y] (unchecked-add x (.Length y))) (^Int32 m1 [_ ^String x ^Int32 y] (unchecked-multiply (.Length x) y)) (^Int32 m2 [this ^Int32 x ^String y] (unchecked-multiply (int 2) (.m1 this x y))) ) (deftype T2 [a b] I1 (^Int32 m1 [_ ^Int32 x ^String y] (unchecked-add x (.Length y))) (^Int32 m1 [_ ^String x ^Int32 y] (unchecked-multiply (.Length x) y)) (^Int32 m2 [this ^Int32 x ^String y] (unchecked-multiply (int 2) (.m1 this x y))) I2 (m3 [_ x y] (list a b x y)) (^String user.I2.m2 [this ^Int32 x ^String y] (str y " " x)) ) (deftype T3 [a b] I1 (^Int32 m1 [_ ^Int32 x ^String y] (unchecked-add x (.Length y))) (^Int32 m1 [_ ^String x ^Int32 y] (unchecked-multiply (.Length x) y)) I2 (m3 [_ x y] (list a b x y)) ) (deftype VecNode [edit arr]) (def EMPTY-NODE (VecNode nil (object-array 32))) (definterface IVecImpl (^int tailoff []) (arrayFor [^int i]) (pushTail [^int level parent tailnode]) (popTail [^int level node]) (newPath [edit ^int level node]) (doAssoc [^int level node ^int i val])) (definterface ArrayManager (array [^int size]) (^int alength [arr]) (aclone [arr]) (aget [arr ^int i]) (aset [arr ^int i val]))
54031
; Copyright (c) <NAME>. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any fashion, you are agreeing to be bound by ; the terms of this license. ; You must not remove this notice, or any other, from this software. ; ; Author: <NAME> ; Test of gen-class facility. ; ; Place this file in the clojure subdirectory of your main directory. ; load or compile, depending on your mood (ns clojure.testdeftype) (definterface I1 (^Int32 m1 [^Int32 x ^String y]) (^Int32 m1 [^String x ^Int32 y]) (^Int32 m2 [^Int32 x ^String y])) (definterface I2 (^Int32 m1 [^Int32 x ^String y]) (^String m2 [^Int32 x ^String y]) (m3 [x y]) ) (deftype T1 [a b] I1 (^Int32 m1 [_ ^Int32 x ^String y] (unchecked-add x (.Length y))) (^Int32 m1 [_ ^String x ^Int32 y] (unchecked-multiply (.Length x) y)) (^Int32 m2 [this ^Int32 x ^String y] (unchecked-multiply (int 2) (.m1 this x y))) ) (deftype T2 [a b] I1 (^Int32 m1 [_ ^Int32 x ^String y] (unchecked-add x (.Length y))) (^Int32 m1 [_ ^String x ^Int32 y] (unchecked-multiply (.Length x) y)) (^Int32 m2 [this ^Int32 x ^String y] (unchecked-multiply (int 2) (.m1 this x y))) I2 (m3 [_ x y] (list a b x y)) (^String user.I2.m2 [this ^Int32 x ^String y] (str y " " x)) ) (deftype T3 [a b] I1 (^Int32 m1 [_ ^Int32 x ^String y] (unchecked-add x (.Length y))) (^Int32 m1 [_ ^String x ^Int32 y] (unchecked-multiply (.Length x) y)) I2 (m3 [_ x y] (list a b x y)) ) (deftype VecNode [edit arr]) (def EMPTY-NODE (VecNode nil (object-array 32))) (definterface IVecImpl (^int tailoff []) (arrayFor [^int i]) (pushTail [^int level parent tailnode]) (popTail [^int level node]) (newPath [edit ^int level node]) (doAssoc [^int level node ^int i val])) (definterface ArrayManager (array [^int size]) (^int alength [arr]) (aclone [arr]) (aget [arr ^int i]) (aset [arr ^int i val]))
true
; Copyright (c) PI:NAME:<NAME>END_PI. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any fashion, you are agreeing to be bound by ; the terms of this license. ; You must not remove this notice, or any other, from this software. ; ; Author: PI:NAME:<NAME>END_PI ; Test of gen-class facility. ; ; Place this file in the clojure subdirectory of your main directory. ; load or compile, depending on your mood (ns clojure.testdeftype) (definterface I1 (^Int32 m1 [^Int32 x ^String y]) (^Int32 m1 [^String x ^Int32 y]) (^Int32 m2 [^Int32 x ^String y])) (definterface I2 (^Int32 m1 [^Int32 x ^String y]) (^String m2 [^Int32 x ^String y]) (m3 [x y]) ) (deftype T1 [a b] I1 (^Int32 m1 [_ ^Int32 x ^String y] (unchecked-add x (.Length y))) (^Int32 m1 [_ ^String x ^Int32 y] (unchecked-multiply (.Length x) y)) (^Int32 m2 [this ^Int32 x ^String y] (unchecked-multiply (int 2) (.m1 this x y))) ) (deftype T2 [a b] I1 (^Int32 m1 [_ ^Int32 x ^String y] (unchecked-add x (.Length y))) (^Int32 m1 [_ ^String x ^Int32 y] (unchecked-multiply (.Length x) y)) (^Int32 m2 [this ^Int32 x ^String y] (unchecked-multiply (int 2) (.m1 this x y))) I2 (m3 [_ x y] (list a b x y)) (^String user.I2.m2 [this ^Int32 x ^String y] (str y " " x)) ) (deftype T3 [a b] I1 (^Int32 m1 [_ ^Int32 x ^String y] (unchecked-add x (.Length y))) (^Int32 m1 [_ ^String x ^Int32 y] (unchecked-multiply (.Length x) y)) I2 (m3 [_ x y] (list a b x y)) ) (deftype VecNode [edit arr]) (def EMPTY-NODE (VecNode nil (object-array 32))) (definterface IVecImpl (^int tailoff []) (arrayFor [^int i]) (pushTail [^int level parent tailnode]) (popTail [^int level node]) (newPath [edit ^int level node]) (doAssoc [^int level node ^int i val])) (definterface ArrayManager (array [^int size]) (^int alength [arr]) (aclone [arr]) (aget [arr ^int i]) (aset [arr ^int i val]))
[ { "context": ";;\n;; Author:: Adam Jacob (<adam@opscode.com>)\n;; Author:: Christopher Brow", "end": 25, "score": 0.9998480677604675, "start": 15, "tag": "NAME", "value": "Adam Jacob" }, { "context": ";;\n;; Author:: Adam Jacob (<adam@opscode.com>)\n;; Author:: Christopher Brown (<cb@opscode.com>", "end": 44, "score": 0.9999346137046814, "start": 28, "tag": "EMAIL", "value": "adam@opscode.com" }, { "context": "thor:: Adam Jacob (<adam@opscode.com>)\n;; Author:: Christopher Brown (<cb@opscode.com>)\n;; Copyright:: Copyright (c) 2", "end": 76, "score": 0.9997366070747375, "start": 59, "tag": "NAME", "value": "Christopher Brown" }, { "context": "dam@opscode.com>)\n;; Author:: Christopher Brown (<cb@opscode.com>)\n;; Copyright:: Copyright (c) 2010 Opscode, Inc.", "end": 93, "score": 0.9999337792396545, "start": 79, "tag": "EMAIL", "value": "cb@opscode.com" } ]
src/omnibus/core.clj
racker/omnibus
2
;; ;; Author:: Adam Jacob (<adam@opscode.com>) ;; Author:: Christopher Brown (<cb@opscode.com>) ;; Copyright:: Copyright (c) 2010 Opscode, Inc. ;; License:: Apache License, Version 2.0 ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. ;; (ns omnibus.core (:use [omnibus.ohai] [omnibus.steps] [omnibus.log] [omnibus.util] [omnibus.s3] [clojure.java.shell :only [sh]] [clojure.contrib.logging :only [log]] [clojure.contrib.json] [clojure.contrib.command-line] [clojure.contrib.io :only [make-parents file-str]]) (:require [clojure.contrib.string :as str]) (:gen-class)) (def *omnibus-home-dir* (. System getProperty "user.dir")) (def *omnibus-source-dir* (file-str *omnibus-home-dir* "/source")) (def *omnibus-software-dir* (file-str *omnibus-home-dir* "/config/software")) (def *omnibus-projects-dir* (file-str *omnibus-home-dir* "/config/projects")) (def *omnibus-build-dir* (file-str *omnibus-home-dir* "/build")) (def *omnibus-pkg-dir* (file-str *omnibus-home-dir* "/pkg")) (def *omnibus-makeself-dir* (file-str *omnibus-home-dir* "/makeself")) (def *omnibus-bin-dir* (file-str *omnibus-home-dir* "/bin")) (def *bucket-name* (atom "")) (def *s3-access-key* (atom "")) (def *s3-secret-key* (atom "")) (defstruct software-desc :name :source :build_subdir :steps) (defstruct build-desc :name :version :iteration :build-order) (defn software "Create a new software description" [software-name & instruction-map] (do (apply struct-map software-desc (conj instruction-map software-name :name )))) (defn project "Create a new project" [project-name version iteration & build-vals] (apply struct-map build-desc (conj build-vals project-name :name version :version iteration :iteration))) (defn- load-forms "Load DSL configurations from specified directory" [directory] (for [file-name (map file-str (.listFiles directory))] (with-in-str (slurp file-name) (let [eval-form (read)] (eval `(do (use 'omnibus.core 'omnibus.ohai) ~eval-form)))))) ;; NOTE: we could simply load-file above, but at some point we'll want multiple forms ;; in a file and we'll want to iterate over them using load-reader & eval to collect their output (defn build-software "Build a software package - runs prep for you" [soft] (do (clean *omnibus-build-dir* soft) (prep *omnibus-build-dir* *omnibus-source-dir* soft) (run-steps *omnibus-build-dir* soft))) (defn build-software-by-name "Build a software package by name, rather than by clojure form" [software-name] (log :info (str "Building " software-name)) (let [mapper #(assoc %1 (%2 :name) %2) software-descs (reduce mapper {} (load-forms *omnibus-software-dir*))] (build-software (software-descs software-name)))) (defn build-deb "Builds a deb" [project-name version iteration os-data] (let [ asset-name (str project-name "_" version "-" iteration "_" (if (= (os-data :machine) "x86_64") "amd64" "i386") ".deb") asset-path (.toString (file-str *omnibus-pkg-dir* "/" asset-name)) status (sh "fpm" "-s" "dir" "-t" "deb" "-v" version "--iteration" iteration "-n" project-name "/opt/opscode" "-m" "Opscode, Inc." "--post-install" (str *omnibus-source-dir* "/postinst") "--post-uninstall" (str *omnibus-source-dir* "/postrm") "--description" "The full stack install of Opscode Chef" "--url" "http://www.opscode.com" :dir "./pkg") ] (log-sh-result status (do (put-in-bucket asset-path @*bucket-name* (str (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) "/" asset-name) @*s3-access-key* @*s3-secret-key*) (str "Created debian package")) (str "Failed to create debian package")))) (defn build-rpm "Builds a rpm" [project-name version iteration os-data] (let [ asset-name (str project-name "-" version "-" iteration "." (os-data :machine) ".rpm") asset-path (.toString (file-str *omnibus-pkg-dir* "/" asset-name)) status (sh "fpm" "-s" "dir" "-t" "rpm" "-v" version "--iteration" iteration "-n" project-name "/opt/opscode" "-m" "Opscode, Inc." "--post-install" (str *omnibus-source-dir* "/postinst") "--post-uninstall" (str *omnibus-source-dir* "/postrm") "--description" "The full stack install of Opscode Chef" "--url" "http://www.opscode.com" :dir "./pkg")] (log-sh-result status (do (put-in-bucket asset-path @*bucket-name* (str (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) "/" asset-name) @*s3-access-key* @*s3-secret-key*) (str "Created rpm package")) (str "Failed to create rpm package")))) (defn build-tarball "Builds a tarball of the entire mess" [project-name version iteration os-data] (let [ asset-name (str project-name "-" version "-" iteration "-" (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) ".tar.gz") asset-path (.toString (file-str *omnibus-pkg-dir* "/" asset-name)) status (sh "tar" "czf" asset-path "opscode" :dir "/opt")] (log-sh-result status (do (put-in-bucket asset-path @*bucket-name* (str (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) "/" asset-name) @*s3-access-key* @*s3-secret-key*) (str "Created tarball package for " project-name " on " (os-data :platform) " " (os-data :platform_version) " " (os-data :machine))) (str "Failed to create tarball package for " project-name " on " (os-data :os) " " (os-data :machine))))) (defn build-makeself [project-name version iteration os-data] (let [ asset-name (str project-name "-" version "-" iteration "-" (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) ".sh") asset-path (.toString (file-str *omnibus-pkg-dir* "/" asset-name)) status (sh (.toString (file-str *omnibus-makeself-dir* "/makeself.sh")) "--gzip" "/opt/opscode" asset-path (str "'Opscode " project-name " " version "'") "./setup.sh" :dir *omnibus-home-dir*)] (log-sh-result status (do (put-in-bucket asset-path @*bucket-name* (str (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) "/" asset-name) @*s3-access-key* @*s3-secret-key*) (str "Created shell archive for " project-name " on " (os-data :platform) " " (os-data :platform_version) " " (os-data :machine))) (str "Failed to create shell archive for " project-name " on " (os-data :platform) " " (os-data :platform_version) " " (os-data :machine))))) (defn build-project "Build a project by building all the software in the appropriate build order" [project software-descs] (do (println (str "\n-------------------------\nBuilding project '" (project :name) "'...")) (let [build-order (project :build-order)] (dorun (for [soft build-order] (build-software (software-descs soft))))) (println "build complete...\n------------------------"))) (defn build-fat-binary "Build a fat binary" [project-name] (let [mapper #(assoc %1 (%2 :name) %2) software-descs (reduce mapper {} (load-forms *omnibus-software-dir*)) projects (reduce mapper {} (load-forms *omnibus-projects-dir*))] (do (try (build-project (projects project-name) software-descs) (catch NullPointerException e (do (println (str "Can't find project '" project-name "'!")) (System/exit -2)))) (build-tarball project-name ((projects project-name) :version) ((projects project-name) :iteration) os-and-machine) (build-makeself project-name ((projects project-name) :version) ((projects project-name) :iteration) os-and-machine) (if (or (= (os-and-machine :platform) "debian") (= (os-and-machine :platform) "ubuntu")) (build-deb project-name ((projects project-name) :version) ((projects project-name) :iteration) os-and-machine)) (if (or (= (os-and-machine :platform) "el") (= (os-and-machine :platform) "fedora")) (build-rpm project-name ((projects project-name) :version) ((projects project-name) :iteration) os-and-machine))))) (defn -main "Main entry point when run from command line" [& args] (with-command-line args "Specify the project you'd like me to build..." [[project-name "The name of the project to build"] [bucket-name "The S3 Bucket Name"] [s3-access-key "The S3 Access Key"] [s3-secret-key "The S3 Secret Key"]] (reset! *bucket-name* bucket-name) (reset! *s3-access-key* s3-access-key) (reset! *s3-secret-key* s3-secret-key) (build-fat-binary project-name)))
67984
;; ;; Author:: <NAME> (<<EMAIL>>) ;; Author:: <NAME> (<<EMAIL>>) ;; Copyright:: Copyright (c) 2010 Opscode, Inc. ;; License:: Apache License, Version 2.0 ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. ;; (ns omnibus.core (:use [omnibus.ohai] [omnibus.steps] [omnibus.log] [omnibus.util] [omnibus.s3] [clojure.java.shell :only [sh]] [clojure.contrib.logging :only [log]] [clojure.contrib.json] [clojure.contrib.command-line] [clojure.contrib.io :only [make-parents file-str]]) (:require [clojure.contrib.string :as str]) (:gen-class)) (def *omnibus-home-dir* (. System getProperty "user.dir")) (def *omnibus-source-dir* (file-str *omnibus-home-dir* "/source")) (def *omnibus-software-dir* (file-str *omnibus-home-dir* "/config/software")) (def *omnibus-projects-dir* (file-str *omnibus-home-dir* "/config/projects")) (def *omnibus-build-dir* (file-str *omnibus-home-dir* "/build")) (def *omnibus-pkg-dir* (file-str *omnibus-home-dir* "/pkg")) (def *omnibus-makeself-dir* (file-str *omnibus-home-dir* "/makeself")) (def *omnibus-bin-dir* (file-str *omnibus-home-dir* "/bin")) (def *bucket-name* (atom "")) (def *s3-access-key* (atom "")) (def *s3-secret-key* (atom "")) (defstruct software-desc :name :source :build_subdir :steps) (defstruct build-desc :name :version :iteration :build-order) (defn software "Create a new software description" [software-name & instruction-map] (do (apply struct-map software-desc (conj instruction-map software-name :name )))) (defn project "Create a new project" [project-name version iteration & build-vals] (apply struct-map build-desc (conj build-vals project-name :name version :version iteration :iteration))) (defn- load-forms "Load DSL configurations from specified directory" [directory] (for [file-name (map file-str (.listFiles directory))] (with-in-str (slurp file-name) (let [eval-form (read)] (eval `(do (use 'omnibus.core 'omnibus.ohai) ~eval-form)))))) ;; NOTE: we could simply load-file above, but at some point we'll want multiple forms ;; in a file and we'll want to iterate over them using load-reader & eval to collect their output (defn build-software "Build a software package - runs prep for you" [soft] (do (clean *omnibus-build-dir* soft) (prep *omnibus-build-dir* *omnibus-source-dir* soft) (run-steps *omnibus-build-dir* soft))) (defn build-software-by-name "Build a software package by name, rather than by clojure form" [software-name] (log :info (str "Building " software-name)) (let [mapper #(assoc %1 (%2 :name) %2) software-descs (reduce mapper {} (load-forms *omnibus-software-dir*))] (build-software (software-descs software-name)))) (defn build-deb "Builds a deb" [project-name version iteration os-data] (let [ asset-name (str project-name "_" version "-" iteration "_" (if (= (os-data :machine) "x86_64") "amd64" "i386") ".deb") asset-path (.toString (file-str *omnibus-pkg-dir* "/" asset-name)) status (sh "fpm" "-s" "dir" "-t" "deb" "-v" version "--iteration" iteration "-n" project-name "/opt/opscode" "-m" "Opscode, Inc." "--post-install" (str *omnibus-source-dir* "/postinst") "--post-uninstall" (str *omnibus-source-dir* "/postrm") "--description" "The full stack install of Opscode Chef" "--url" "http://www.opscode.com" :dir "./pkg") ] (log-sh-result status (do (put-in-bucket asset-path @*bucket-name* (str (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) "/" asset-name) @*s3-access-key* @*s3-secret-key*) (str "Created debian package")) (str "Failed to create debian package")))) (defn build-rpm "Builds a rpm" [project-name version iteration os-data] (let [ asset-name (str project-name "-" version "-" iteration "." (os-data :machine) ".rpm") asset-path (.toString (file-str *omnibus-pkg-dir* "/" asset-name)) status (sh "fpm" "-s" "dir" "-t" "rpm" "-v" version "--iteration" iteration "-n" project-name "/opt/opscode" "-m" "Opscode, Inc." "--post-install" (str *omnibus-source-dir* "/postinst") "--post-uninstall" (str *omnibus-source-dir* "/postrm") "--description" "The full stack install of Opscode Chef" "--url" "http://www.opscode.com" :dir "./pkg")] (log-sh-result status (do (put-in-bucket asset-path @*bucket-name* (str (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) "/" asset-name) @*s3-access-key* @*s3-secret-key*) (str "Created rpm package")) (str "Failed to create rpm package")))) (defn build-tarball "Builds a tarball of the entire mess" [project-name version iteration os-data] (let [ asset-name (str project-name "-" version "-" iteration "-" (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) ".tar.gz") asset-path (.toString (file-str *omnibus-pkg-dir* "/" asset-name)) status (sh "tar" "czf" asset-path "opscode" :dir "/opt")] (log-sh-result status (do (put-in-bucket asset-path @*bucket-name* (str (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) "/" asset-name) @*s3-access-key* @*s3-secret-key*) (str "Created tarball package for " project-name " on " (os-data :platform) " " (os-data :platform_version) " " (os-data :machine))) (str "Failed to create tarball package for " project-name " on " (os-data :os) " " (os-data :machine))))) (defn build-makeself [project-name version iteration os-data] (let [ asset-name (str project-name "-" version "-" iteration "-" (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) ".sh") asset-path (.toString (file-str *omnibus-pkg-dir* "/" asset-name)) status (sh (.toString (file-str *omnibus-makeself-dir* "/makeself.sh")) "--gzip" "/opt/opscode" asset-path (str "'Opscode " project-name " " version "'") "./setup.sh" :dir *omnibus-home-dir*)] (log-sh-result status (do (put-in-bucket asset-path @*bucket-name* (str (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) "/" asset-name) @*s3-access-key* @*s3-secret-key*) (str "Created shell archive for " project-name " on " (os-data :platform) " " (os-data :platform_version) " " (os-data :machine))) (str "Failed to create shell archive for " project-name " on " (os-data :platform) " " (os-data :platform_version) " " (os-data :machine))))) (defn build-project "Build a project by building all the software in the appropriate build order" [project software-descs] (do (println (str "\n-------------------------\nBuilding project '" (project :name) "'...")) (let [build-order (project :build-order)] (dorun (for [soft build-order] (build-software (software-descs soft))))) (println "build complete...\n------------------------"))) (defn build-fat-binary "Build a fat binary" [project-name] (let [mapper #(assoc %1 (%2 :name) %2) software-descs (reduce mapper {} (load-forms *omnibus-software-dir*)) projects (reduce mapper {} (load-forms *omnibus-projects-dir*))] (do (try (build-project (projects project-name) software-descs) (catch NullPointerException e (do (println (str "Can't find project '" project-name "'!")) (System/exit -2)))) (build-tarball project-name ((projects project-name) :version) ((projects project-name) :iteration) os-and-machine) (build-makeself project-name ((projects project-name) :version) ((projects project-name) :iteration) os-and-machine) (if (or (= (os-and-machine :platform) "debian") (= (os-and-machine :platform) "ubuntu")) (build-deb project-name ((projects project-name) :version) ((projects project-name) :iteration) os-and-machine)) (if (or (= (os-and-machine :platform) "el") (= (os-and-machine :platform) "fedora")) (build-rpm project-name ((projects project-name) :version) ((projects project-name) :iteration) os-and-machine))))) (defn -main "Main entry point when run from command line" [& args] (with-command-line args "Specify the project you'd like me to build..." [[project-name "The name of the project to build"] [bucket-name "The S3 Bucket Name"] [s3-access-key "The S3 Access Key"] [s3-secret-key "The S3 Secret Key"]] (reset! *bucket-name* bucket-name) (reset! *s3-access-key* s3-access-key) (reset! *s3-secret-key* s3-secret-key) (build-fat-binary project-name)))
true
;; ;; Author:: PI:NAME:<NAME>END_PI (<PI:EMAIL:<EMAIL>END_PI>) ;; Author:: PI:NAME:<NAME>END_PI (<PI:EMAIL:<EMAIL>END_PI>) ;; Copyright:: Copyright (c) 2010 Opscode, Inc. ;; License:: Apache License, Version 2.0 ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. ;; (ns omnibus.core (:use [omnibus.ohai] [omnibus.steps] [omnibus.log] [omnibus.util] [omnibus.s3] [clojure.java.shell :only [sh]] [clojure.contrib.logging :only [log]] [clojure.contrib.json] [clojure.contrib.command-line] [clojure.contrib.io :only [make-parents file-str]]) (:require [clojure.contrib.string :as str]) (:gen-class)) (def *omnibus-home-dir* (. System getProperty "user.dir")) (def *omnibus-source-dir* (file-str *omnibus-home-dir* "/source")) (def *omnibus-software-dir* (file-str *omnibus-home-dir* "/config/software")) (def *omnibus-projects-dir* (file-str *omnibus-home-dir* "/config/projects")) (def *omnibus-build-dir* (file-str *omnibus-home-dir* "/build")) (def *omnibus-pkg-dir* (file-str *omnibus-home-dir* "/pkg")) (def *omnibus-makeself-dir* (file-str *omnibus-home-dir* "/makeself")) (def *omnibus-bin-dir* (file-str *omnibus-home-dir* "/bin")) (def *bucket-name* (atom "")) (def *s3-access-key* (atom "")) (def *s3-secret-key* (atom "")) (defstruct software-desc :name :source :build_subdir :steps) (defstruct build-desc :name :version :iteration :build-order) (defn software "Create a new software description" [software-name & instruction-map] (do (apply struct-map software-desc (conj instruction-map software-name :name )))) (defn project "Create a new project" [project-name version iteration & build-vals] (apply struct-map build-desc (conj build-vals project-name :name version :version iteration :iteration))) (defn- load-forms "Load DSL configurations from specified directory" [directory] (for [file-name (map file-str (.listFiles directory))] (with-in-str (slurp file-name) (let [eval-form (read)] (eval `(do (use 'omnibus.core 'omnibus.ohai) ~eval-form)))))) ;; NOTE: we could simply load-file above, but at some point we'll want multiple forms ;; in a file and we'll want to iterate over them using load-reader & eval to collect their output (defn build-software "Build a software package - runs prep for you" [soft] (do (clean *omnibus-build-dir* soft) (prep *omnibus-build-dir* *omnibus-source-dir* soft) (run-steps *omnibus-build-dir* soft))) (defn build-software-by-name "Build a software package by name, rather than by clojure form" [software-name] (log :info (str "Building " software-name)) (let [mapper #(assoc %1 (%2 :name) %2) software-descs (reduce mapper {} (load-forms *omnibus-software-dir*))] (build-software (software-descs software-name)))) (defn build-deb "Builds a deb" [project-name version iteration os-data] (let [ asset-name (str project-name "_" version "-" iteration "_" (if (= (os-data :machine) "x86_64") "amd64" "i386") ".deb") asset-path (.toString (file-str *omnibus-pkg-dir* "/" asset-name)) status (sh "fpm" "-s" "dir" "-t" "deb" "-v" version "--iteration" iteration "-n" project-name "/opt/opscode" "-m" "Opscode, Inc." "--post-install" (str *omnibus-source-dir* "/postinst") "--post-uninstall" (str *omnibus-source-dir* "/postrm") "--description" "The full stack install of Opscode Chef" "--url" "http://www.opscode.com" :dir "./pkg") ] (log-sh-result status (do (put-in-bucket asset-path @*bucket-name* (str (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) "/" asset-name) @*s3-access-key* @*s3-secret-key*) (str "Created debian package")) (str "Failed to create debian package")))) (defn build-rpm "Builds a rpm" [project-name version iteration os-data] (let [ asset-name (str project-name "-" version "-" iteration "." (os-data :machine) ".rpm") asset-path (.toString (file-str *omnibus-pkg-dir* "/" asset-name)) status (sh "fpm" "-s" "dir" "-t" "rpm" "-v" version "--iteration" iteration "-n" project-name "/opt/opscode" "-m" "Opscode, Inc." "--post-install" (str *omnibus-source-dir* "/postinst") "--post-uninstall" (str *omnibus-source-dir* "/postrm") "--description" "The full stack install of Opscode Chef" "--url" "http://www.opscode.com" :dir "./pkg")] (log-sh-result status (do (put-in-bucket asset-path @*bucket-name* (str (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) "/" asset-name) @*s3-access-key* @*s3-secret-key*) (str "Created rpm package")) (str "Failed to create rpm package")))) (defn build-tarball "Builds a tarball of the entire mess" [project-name version iteration os-data] (let [ asset-name (str project-name "-" version "-" iteration "-" (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) ".tar.gz") asset-path (.toString (file-str *omnibus-pkg-dir* "/" asset-name)) status (sh "tar" "czf" asset-path "opscode" :dir "/opt")] (log-sh-result status (do (put-in-bucket asset-path @*bucket-name* (str (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) "/" asset-name) @*s3-access-key* @*s3-secret-key*) (str "Created tarball package for " project-name " on " (os-data :platform) " " (os-data :platform_version) " " (os-data :machine))) (str "Failed to create tarball package for " project-name " on " (os-data :os) " " (os-data :machine))))) (defn build-makeself [project-name version iteration os-data] (let [ asset-name (str project-name "-" version "-" iteration "-" (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) ".sh") asset-path (.toString (file-str *omnibus-pkg-dir* "/" asset-name)) status (sh (.toString (file-str *omnibus-makeself-dir* "/makeself.sh")) "--gzip" "/opt/opscode" asset-path (str "'Opscode " project-name " " version "'") "./setup.sh" :dir *omnibus-home-dir*)] (log-sh-result status (do (put-in-bucket asset-path @*bucket-name* (str (os-data :platform) "-" (os-data :platform_version) "-" (os-data :machine) "/" asset-name) @*s3-access-key* @*s3-secret-key*) (str "Created shell archive for " project-name " on " (os-data :platform) " " (os-data :platform_version) " " (os-data :machine))) (str "Failed to create shell archive for " project-name " on " (os-data :platform) " " (os-data :platform_version) " " (os-data :machine))))) (defn build-project "Build a project by building all the software in the appropriate build order" [project software-descs] (do (println (str "\n-------------------------\nBuilding project '" (project :name) "'...")) (let [build-order (project :build-order)] (dorun (for [soft build-order] (build-software (software-descs soft))))) (println "build complete...\n------------------------"))) (defn build-fat-binary "Build a fat binary" [project-name] (let [mapper #(assoc %1 (%2 :name) %2) software-descs (reduce mapper {} (load-forms *omnibus-software-dir*)) projects (reduce mapper {} (load-forms *omnibus-projects-dir*))] (do (try (build-project (projects project-name) software-descs) (catch NullPointerException e (do (println (str "Can't find project '" project-name "'!")) (System/exit -2)))) (build-tarball project-name ((projects project-name) :version) ((projects project-name) :iteration) os-and-machine) (build-makeself project-name ((projects project-name) :version) ((projects project-name) :iteration) os-and-machine) (if (or (= (os-and-machine :platform) "debian") (= (os-and-machine :platform) "ubuntu")) (build-deb project-name ((projects project-name) :version) ((projects project-name) :iteration) os-and-machine)) (if (or (= (os-and-machine :platform) "el") (= (os-and-machine :platform) "fedora")) (build-rpm project-name ((projects project-name) :version) ((projects project-name) :iteration) os-and-machine))))) (defn -main "Main entry point when run from command line" [& args] (with-command-line args "Specify the project you'd like me to build..." [[project-name "The name of the project to build"] [bucket-name "The S3 Bucket Name"] [s3-access-key "The S3 Access Key"] [s3-secret-key "The S3 Secret Key"]] (reset! *bucket-name* bucket-name) (reset! *s3-access-key* s3-access-key) (reset! *s3-secret-key* s3-secret-key) (build-fat-binary project-name)))
[ { "context": " :cp 91\n :name \"Kernfach Philosophie\"\n :po 2011\n ", "end": 2014, "score": 0.9625535607337952, "start": 1994, "tag": "NAME", "value": "Kernfach Philosophie" } ]
test/mincer/xml/tree_test_cp.clj
plues/mincer
0
(ns mincer.xml.tree-test-cp (:require [clojure.test :refer :all] [mincer.xml.tree-cp-test-data :refer :all] [mincer.xml.tree-validation :refer :all] [mincer.xml.tree :refer :all])) (def result-cp-module {:type :module :name "MV01: Makroökonomik" :id "40553" :cp 6 :pordnr "40553" :mandatory false}) (def result-cp-module-2 {:type :module :name "MV03: Mikroökonomik" :id "40554" :pordnr "40554" :cp 7 :mandatory true}) (def result-cp-level {:art nil :children [{:art nil :children [result-cp-module] :max nil :min nil :min-cp 10 :max-cp 20 :name "Area 1" :tm nil :type :level} {:art nil :children [result-cp-module-2 result-cp-module] :max nil :min nil :min-cp 5 :max-cp 30 :name "Area 2" :tm nil :type :level} {:art nil :children [result-cp-module] :max nil :min nil :min-cp 10 :max-cp 100 :name "Area 3" :tm nil :type :level}] :max nil :min nil :min-cp 40 :max-cp 60 :name "Wahlpflichtmodule" :tm nil :type :level}) (def result-course {:type :course :degree "bk" :kzfa "H" :cp 91 :name "Kernfach Philosophie" :po 2011 :course "phi" :children [result-cp-level]}) (deftest test-parse-m-tag (is (= result-cp-module (parse-tree m-cp-tag))) (is (= result-cp-module-2 (parse-tree m-cp-tag-2))) ) (deftest test-parse-l-tag (is (= result-cp-level (parse-tree nested-l-cp-tag)))) (deftest test-parse-b-tag (is (= result-course (parse-tree b-cp-tag)))) (deftest test-parse-modulbaum (is (= {:info nil :levels [result-course]} (parse-tree modulbaum-cp-tag)))) (deftest test-ignored-tags-in-b (let [course (parse-tree b-cp-tag-with-regeln) children (:children course)] (is (= 1 (count children))) (is (not-any? nil? children)))) (deftest test-validate-cp-based-level-with-missing-cp-data (binding [errors false] (validate-cp l-cp-tag-missing-data) (is errors)))
50425
(ns mincer.xml.tree-test-cp (:require [clojure.test :refer :all] [mincer.xml.tree-cp-test-data :refer :all] [mincer.xml.tree-validation :refer :all] [mincer.xml.tree :refer :all])) (def result-cp-module {:type :module :name "MV01: Makroökonomik" :id "40553" :cp 6 :pordnr "40553" :mandatory false}) (def result-cp-module-2 {:type :module :name "MV03: Mikroökonomik" :id "40554" :pordnr "40554" :cp 7 :mandatory true}) (def result-cp-level {:art nil :children [{:art nil :children [result-cp-module] :max nil :min nil :min-cp 10 :max-cp 20 :name "Area 1" :tm nil :type :level} {:art nil :children [result-cp-module-2 result-cp-module] :max nil :min nil :min-cp 5 :max-cp 30 :name "Area 2" :tm nil :type :level} {:art nil :children [result-cp-module] :max nil :min nil :min-cp 10 :max-cp 100 :name "Area 3" :tm nil :type :level}] :max nil :min nil :min-cp 40 :max-cp 60 :name "Wahlpflichtmodule" :tm nil :type :level}) (def result-course {:type :course :degree "bk" :kzfa "H" :cp 91 :name "<NAME>" :po 2011 :course "phi" :children [result-cp-level]}) (deftest test-parse-m-tag (is (= result-cp-module (parse-tree m-cp-tag))) (is (= result-cp-module-2 (parse-tree m-cp-tag-2))) ) (deftest test-parse-l-tag (is (= result-cp-level (parse-tree nested-l-cp-tag)))) (deftest test-parse-b-tag (is (= result-course (parse-tree b-cp-tag)))) (deftest test-parse-modulbaum (is (= {:info nil :levels [result-course]} (parse-tree modulbaum-cp-tag)))) (deftest test-ignored-tags-in-b (let [course (parse-tree b-cp-tag-with-regeln) children (:children course)] (is (= 1 (count children))) (is (not-any? nil? children)))) (deftest test-validate-cp-based-level-with-missing-cp-data (binding [errors false] (validate-cp l-cp-tag-missing-data) (is errors)))
true
(ns mincer.xml.tree-test-cp (:require [clojure.test :refer :all] [mincer.xml.tree-cp-test-data :refer :all] [mincer.xml.tree-validation :refer :all] [mincer.xml.tree :refer :all])) (def result-cp-module {:type :module :name "MV01: Makroökonomik" :id "40553" :cp 6 :pordnr "40553" :mandatory false}) (def result-cp-module-2 {:type :module :name "MV03: Mikroökonomik" :id "40554" :pordnr "40554" :cp 7 :mandatory true}) (def result-cp-level {:art nil :children [{:art nil :children [result-cp-module] :max nil :min nil :min-cp 10 :max-cp 20 :name "Area 1" :tm nil :type :level} {:art nil :children [result-cp-module-2 result-cp-module] :max nil :min nil :min-cp 5 :max-cp 30 :name "Area 2" :tm nil :type :level} {:art nil :children [result-cp-module] :max nil :min nil :min-cp 10 :max-cp 100 :name "Area 3" :tm nil :type :level}] :max nil :min nil :min-cp 40 :max-cp 60 :name "Wahlpflichtmodule" :tm nil :type :level}) (def result-course {:type :course :degree "bk" :kzfa "H" :cp 91 :name "PI:NAME:<NAME>END_PI" :po 2011 :course "phi" :children [result-cp-level]}) (deftest test-parse-m-tag (is (= result-cp-module (parse-tree m-cp-tag))) (is (= result-cp-module-2 (parse-tree m-cp-tag-2))) ) (deftest test-parse-l-tag (is (= result-cp-level (parse-tree nested-l-cp-tag)))) (deftest test-parse-b-tag (is (= result-course (parse-tree b-cp-tag)))) (deftest test-parse-modulbaum (is (= {:info nil :levels [result-course]} (parse-tree modulbaum-cp-tag)))) (deftest test-ignored-tags-in-b (let [course (parse-tree b-cp-tag-with-regeln) children (:children course)] (is (= 1 (count children))) (is (not-any? nil? children)))) (deftest test-validate-cp-based-level-with-missing-cp-data (binding [errors false] (validate-cp l-cp-tag-missing-data) (is errors)))
[ { "context": " changed with a trigger message.\n\n See Steven W Smith, The Scientist and Engineer's Guide to\n ", "end": 1803, "score": 0.9995423555374146, "start": 1789, "tag": "NAME", "value": "Steven W Smith" }, { "context": " using a trigger signal.\n\n See Steven W Smith, The Scientist and Engineer's Guide to\n ", "end": 2993, "score": 0.9997755289077759, "start": 2979, "tag": "NAME", "value": "Steven W Smith" }, { "context": " the buffers upon change.\n\n See Steven W Smith, The Scientist and Engineer's Guide to\n ", "end": 4463, "score": 0.9998769760131836, "start": 4449, "tag": "NAME", "value": "Steven W Smith" }, { "context": "r\n HRTF convolution.\n\n See Steven W Smith, The Scientist and Engineer's Guide to\n ", "end": 6503, "score": 0.9998748898506165, "start": 6489, "tag": "NAME", "value": "Steven W Smith" }, { "context": "rol\n rate signals. \"}\n\n\n {:name \"PV_JensenAndersen\",\n :args [{:name \"buffer\"\n :d", "end": 7628, "score": 0.9918608665466309, "start": 7611, "tag": "USERNAME", "value": "PV_JensenAndersen" }, { "context": "d on work\n described in:\n\n Jensen,K. & Andersen, T. H. (2003). Real-time Beat\n ", "end": 8736, "score": 0.9972065091133118, "start": 8728, "tag": "NAME", "value": "Jensen,K" }, { "context": " described in:\n\n Jensen,K. & Andersen, T. H. (2003). Real-time Beat\n Estimation U", "end": 8754, "score": 0.9969000220298767, "start": 8740, "tag": "NAME", "value": "Andersen, T. H" }, { "context": " up on\n changes. \"}\n\n\n {:name \"PV_HainsworthFoote\",\n :args [{:name \"buffer\"\n :d", "end": 9163, "score": 0.709804892539978, "start": 9148, "tag": "USERNAME", "value": "HainsworthFoote" }, { "context": "etector based on work described in:\n\n Hainsworth, S. (2003) Techniques for the Automated\n ", "end": 10092, "score": 0.9990714192390442, "start": 10079, "tag": "NAME", "value": "Hainsworth, S" } ]
src/overtone/sc/machinery/ugen/metadata/fft2.clj
ABaldwinHunter/overtone
3,870
(ns overtone.sc.machinery.ugen.metadata.fft2 (:use [overtone.sc.machinery.ugen common check])) ;; //third party FFT UGens (def specs [ {:name "PV_ConformalMap", :args [{:name "buffer" :doc "buffer number of buffer to act on, passed in through a chain (see examples below)." } {:name "areal", :default 0.0 :doc "real part of a."} {:name "aimag", :default 0.0 :doc "imaginary part of a."}], :rates #{:kr} :doc "Applies the conformal mapping z -> (z-a)/(1-za*) to the phase vocoder bins z with a given by the real and imag inputs to the UGen. i.e., makes a transformation of the complex plane so the output is full of phase vocoder artifacts but may be musically fun. Usually keep |a|<1 but you can of course try bigger values to make it really noisy. a=0 should give back the input mostly unperturbed. See http://mathworld.wolfram.com/ConformalMapping.html"} {:name "Convolution", :args [{:name "in" :doc "processing target"} {:name "kernel" :doc "processing kernel."} {:name "framesize", :default 512.0 :doc "size of FFT frame, must be a power of two"}], :rates #{:ar} :check [(nth-input-stream? 0) (nth-input-power-of-2? 2)] :doc "Strict convolution of two continuously changing inputs. Also see convolution2 for a cheaper CPU cost alternative for the case of a fixed kernel which can be changed with a trigger message. See Steven W Smith, The Scientist and Engineer's Guide to Digital Signal Processing: chapter 18: http:// www.dspguide.com/ch18.htm"} {:name "Convolution2", :args [{:name "in" :doc "processing target"} {:name "kernel" :doc "buffer index for the fixed kernel, may be modulated in combination with the trigger"} {:name "trigger" :doc "update the kernel on a change from <= 0 to > 0"} {:name "framesize", :default 512.0 :doc "size of FFT frame, must be a power of two. Convolution uses twice this number internally, maximum value you can give this argument is 2^16 = 65536. Note that it gets progressively more expensive to run for higher powers! 512, 1024, 2048, 4096 standard." }], :rates #{:ar} :check [(nth-input-stream? 0) (nth-input-power-of-2? 3)] :doc "Strict convolution with fixed kernel which can be updated using a trigger signal. See Steven W Smith, The Scientist and Engineer's Guide to Digital Signal Processing: chapter 18: http:// www.dspguide.com/ch18.htm "} {:name "Convolution2L", :args [{:name "in" :doc "processing target"} {:name "kernel" :doc "buffer index for the fixed kernel, may be modulated in combination with the trigger"} {:name "trigger" :doc "update the kernel on a change from <= 0 to > 0"} {:name "framesize", :default 512.0 :doc "size of FFT frame, must be a power of two. Convolution uses twice this number internally, maximum value you can give this argument is 2^16=65536. Note that it gets progressively more expensive to run for higher powers! 512, 1024, 2048, 4096 standard." } {:name "crossfade", :default 1.0 :doc "The number of periods over which a crossfade is made. The default is 1. This must be an integer." }], :rates #{:ar} :check [(nth-input-stream? 0) (nth-input-power-of-2? 3)] :doc "Strict convolution with fixed kernel which can be updated using a trigger signal. There is a linear crossfade between the buffers upon change. See Steven W Smith, The Scientist and Engineer's Guide to Digital Signal Processing: chapter 18: http://www.dspguide.com/ch18.htm "} {:name "StereoConvolution2L", :args [{:name "in" :doc "processing target"} {:name "kernel-l" :doc "buffer index for the fixed kernel of the left channel, may be modulated in combination with the trigger"} {:name "kernel-r" :doc "buffer index for the fixed kernel of the right channel, may be modulated in combination with the trigger"} {:name "trigger" :doc "update the kernel on a change from <= 0 to > 0"} {:name "framesize", :default 512.0 :doc "size of FFT frame, must be a power of two. Convolution uses twice this number internally, maximum value you can give this argument is 2^16=65536. Note that it gets progressively more expensive to run for higher powers! 512, 1024, 2048, 4096 standard." } {:name "crossfade", :default 1.0 :doc "The number of periods over which a crossfade is made. This must be an integer." }] :rates #{:ar} :num-outs 2 :check [(nth-input-stream? 0) (nth-input-power-of-2? 4)] :doc "Strict convolution with fixed kernel which can be updated using a trigger signal. There is a linear crossfade between the buffers upon change. Like convolution2L, but convolves with two buffers and outputs a stereo signal. This saves one FFT transformation per period, as compared to using two copies of convolution2L. Useful applications could include stereo reverberation or HRTF convolution. See Steven W Smith, The Scientist and Engineer's Guide to Digital Signal Processing: chapter 18: http://www.dspguide.com/ch18.htm"} {:name "Convolution3", :args [{:name "in" :doc "processing target"} {:name "kernel" :doc "buffer index for the fixed kernel, may be modulated in combination with the trigger"} {:name "trigger", :default 0.0 :doc "update the kernel on a change from <= 0 to > 0"} {:name "framesize", :default 512.0 :doc "size of FFT frame, does not have to be a power of two."}] :check [(nth-input-stream? 0) (nth-input-power-of-2? 3)] :doc "Strict convolution with fixed kernel which can be updated using a trigger signal. The convolution is performed in the time domain, which is highly inefficient, and probably only useful for either very short kernel sizes, or for control rate signals. "} {:name "PV_JensenAndersen", :args [{:name "buffer" :doc "FFT buffer to read from."} {:name "propsc", :default 0.25 :doc "Proportion of spectral centroid feature."} {:name "prophfe", :default 0.25 :doc "Proportion of high frequency energy feature."} {:name "prophfc", :default 0.25 :doc "Proportion of high frequency content feature."} {:name "propsf", :default 0.25 :doc "Proportion of spectral flux feature."} {:name "threshold", :default 1.0 :doc "Threshold level for allowing a detection"} {:name "wait-time", :default 0.04 :doc "If triggered, minimum wait until a further frame can cause another spot (useful to stop multiple detects on heavy signals)"}], :rates #{:ar} :doc "FFT feature detector for onset detection based on work described in: Jensen,K. & Andersen, T. H. (2003). Real-time Beat Estimation Using Feature Extraction. In Proceedings of the Computer Music Modeling and Retrieval Symposium, Lecture Notes in Computer Science. Springer Verlag. First order derivatives of the features are taken. Threshold may need to be set low to pick up on changes. "} {:name "PV_HainsworthFoote", :args [{:name "buffer" :doc "FFT buffer to read from"} {:name "proph", :default 0.0 :doc "What strength of detection signal from Hainsworth metric to use."} {:name "propf", :default 0.0 :doc "What strength of detection signal from Foote metric to use. The Foote metric is normalised to [0.0,1.0]"} {:name "threshold", :default 1.0 :doc "Threshold hold level for allowing a detection"} {:name "wait-time", :default 0.04 :doc "If triggered, minimum wait until a further frame can cause another spot (useful to stop multiple detects on heavy signals)"}], :rates #{:ar} :doc "FFT onset detector based on work described in: Hainsworth, S. (2003) Techniques for the Automated Analysis of Musical Audio. PhD, University of Cambridge engineering dept. See especially p128. The Hainsworth metric is a modification of the Kullback Liebler distance. The onset detector has general ability to spot spectral change, so may have some ability to track chord changes aside from obvious transient jolts, but there's no guarantee it won't be confused by frequency modulation artifacts. Hainsworth metric on it's own gives good results but Foote might be useful in some situations: experimental."} {:name "RunningSum", :args [{:name "in" :doc "Input signal"} {:name "numsamp", :default 40.0 :doc "How many samples to take the running sum over (initialisation time only, not modulatable." }] :check (nth-input-stream? 0) :doc "A running sum over a user specified number of samples, useful for running RMS power windowing."}])
4087
(ns overtone.sc.machinery.ugen.metadata.fft2 (:use [overtone.sc.machinery.ugen common check])) ;; //third party FFT UGens (def specs [ {:name "PV_ConformalMap", :args [{:name "buffer" :doc "buffer number of buffer to act on, passed in through a chain (see examples below)." } {:name "areal", :default 0.0 :doc "real part of a."} {:name "aimag", :default 0.0 :doc "imaginary part of a."}], :rates #{:kr} :doc "Applies the conformal mapping z -> (z-a)/(1-za*) to the phase vocoder bins z with a given by the real and imag inputs to the UGen. i.e., makes a transformation of the complex plane so the output is full of phase vocoder artifacts but may be musically fun. Usually keep |a|<1 but you can of course try bigger values to make it really noisy. a=0 should give back the input mostly unperturbed. See http://mathworld.wolfram.com/ConformalMapping.html"} {:name "Convolution", :args [{:name "in" :doc "processing target"} {:name "kernel" :doc "processing kernel."} {:name "framesize", :default 512.0 :doc "size of FFT frame, must be a power of two"}], :rates #{:ar} :check [(nth-input-stream? 0) (nth-input-power-of-2? 2)] :doc "Strict convolution of two continuously changing inputs. Also see convolution2 for a cheaper CPU cost alternative for the case of a fixed kernel which can be changed with a trigger message. See <NAME>, The Scientist and Engineer's Guide to Digital Signal Processing: chapter 18: http:// www.dspguide.com/ch18.htm"} {:name "Convolution2", :args [{:name "in" :doc "processing target"} {:name "kernel" :doc "buffer index for the fixed kernel, may be modulated in combination with the trigger"} {:name "trigger" :doc "update the kernel on a change from <= 0 to > 0"} {:name "framesize", :default 512.0 :doc "size of FFT frame, must be a power of two. Convolution uses twice this number internally, maximum value you can give this argument is 2^16 = 65536. Note that it gets progressively more expensive to run for higher powers! 512, 1024, 2048, 4096 standard." }], :rates #{:ar} :check [(nth-input-stream? 0) (nth-input-power-of-2? 3)] :doc "Strict convolution with fixed kernel which can be updated using a trigger signal. See <NAME>, The Scientist and Engineer's Guide to Digital Signal Processing: chapter 18: http:// www.dspguide.com/ch18.htm "} {:name "Convolution2L", :args [{:name "in" :doc "processing target"} {:name "kernel" :doc "buffer index for the fixed kernel, may be modulated in combination with the trigger"} {:name "trigger" :doc "update the kernel on a change from <= 0 to > 0"} {:name "framesize", :default 512.0 :doc "size of FFT frame, must be a power of two. Convolution uses twice this number internally, maximum value you can give this argument is 2^16=65536. Note that it gets progressively more expensive to run for higher powers! 512, 1024, 2048, 4096 standard." } {:name "crossfade", :default 1.0 :doc "The number of periods over which a crossfade is made. The default is 1. This must be an integer." }], :rates #{:ar} :check [(nth-input-stream? 0) (nth-input-power-of-2? 3)] :doc "Strict convolution with fixed kernel which can be updated using a trigger signal. There is a linear crossfade between the buffers upon change. See <NAME>, The Scientist and Engineer's Guide to Digital Signal Processing: chapter 18: http://www.dspguide.com/ch18.htm "} {:name "StereoConvolution2L", :args [{:name "in" :doc "processing target"} {:name "kernel-l" :doc "buffer index for the fixed kernel of the left channel, may be modulated in combination with the trigger"} {:name "kernel-r" :doc "buffer index for the fixed kernel of the right channel, may be modulated in combination with the trigger"} {:name "trigger" :doc "update the kernel on a change from <= 0 to > 0"} {:name "framesize", :default 512.0 :doc "size of FFT frame, must be a power of two. Convolution uses twice this number internally, maximum value you can give this argument is 2^16=65536. Note that it gets progressively more expensive to run for higher powers! 512, 1024, 2048, 4096 standard." } {:name "crossfade", :default 1.0 :doc "The number of periods over which a crossfade is made. This must be an integer." }] :rates #{:ar} :num-outs 2 :check [(nth-input-stream? 0) (nth-input-power-of-2? 4)] :doc "Strict convolution with fixed kernel which can be updated using a trigger signal. There is a linear crossfade between the buffers upon change. Like convolution2L, but convolves with two buffers and outputs a stereo signal. This saves one FFT transformation per period, as compared to using two copies of convolution2L. Useful applications could include stereo reverberation or HRTF convolution. See <NAME>, The Scientist and Engineer's Guide to Digital Signal Processing: chapter 18: http://www.dspguide.com/ch18.htm"} {:name "Convolution3", :args [{:name "in" :doc "processing target"} {:name "kernel" :doc "buffer index for the fixed kernel, may be modulated in combination with the trigger"} {:name "trigger", :default 0.0 :doc "update the kernel on a change from <= 0 to > 0"} {:name "framesize", :default 512.0 :doc "size of FFT frame, does not have to be a power of two."}] :check [(nth-input-stream? 0) (nth-input-power-of-2? 3)] :doc "Strict convolution with fixed kernel which can be updated using a trigger signal. The convolution is performed in the time domain, which is highly inefficient, and probably only useful for either very short kernel sizes, or for control rate signals. "} {:name "PV_JensenAndersen", :args [{:name "buffer" :doc "FFT buffer to read from."} {:name "propsc", :default 0.25 :doc "Proportion of spectral centroid feature."} {:name "prophfe", :default 0.25 :doc "Proportion of high frequency energy feature."} {:name "prophfc", :default 0.25 :doc "Proportion of high frequency content feature."} {:name "propsf", :default 0.25 :doc "Proportion of spectral flux feature."} {:name "threshold", :default 1.0 :doc "Threshold level for allowing a detection"} {:name "wait-time", :default 0.04 :doc "If triggered, minimum wait until a further frame can cause another spot (useful to stop multiple detects on heavy signals)"}], :rates #{:ar} :doc "FFT feature detector for onset detection based on work described in: <NAME>. & <NAME>. (2003). Real-time Beat Estimation Using Feature Extraction. In Proceedings of the Computer Music Modeling and Retrieval Symposium, Lecture Notes in Computer Science. Springer Verlag. First order derivatives of the features are taken. Threshold may need to be set low to pick up on changes. "} {:name "PV_HainsworthFoote", :args [{:name "buffer" :doc "FFT buffer to read from"} {:name "proph", :default 0.0 :doc "What strength of detection signal from Hainsworth metric to use."} {:name "propf", :default 0.0 :doc "What strength of detection signal from Foote metric to use. The Foote metric is normalised to [0.0,1.0]"} {:name "threshold", :default 1.0 :doc "Threshold hold level for allowing a detection"} {:name "wait-time", :default 0.04 :doc "If triggered, minimum wait until a further frame can cause another spot (useful to stop multiple detects on heavy signals)"}], :rates #{:ar} :doc "FFT onset detector based on work described in: <NAME>. (2003) Techniques for the Automated Analysis of Musical Audio. PhD, University of Cambridge engineering dept. See especially p128. The Hainsworth metric is a modification of the Kullback Liebler distance. The onset detector has general ability to spot spectral change, so may have some ability to track chord changes aside from obvious transient jolts, but there's no guarantee it won't be confused by frequency modulation artifacts. Hainsworth metric on it's own gives good results but Foote might be useful in some situations: experimental."} {:name "RunningSum", :args [{:name "in" :doc "Input signal"} {:name "numsamp", :default 40.0 :doc "How many samples to take the running sum over (initialisation time only, not modulatable." }] :check (nth-input-stream? 0) :doc "A running sum over a user specified number of samples, useful for running RMS power windowing."}])
true
(ns overtone.sc.machinery.ugen.metadata.fft2 (:use [overtone.sc.machinery.ugen common check])) ;; //third party FFT UGens (def specs [ {:name "PV_ConformalMap", :args [{:name "buffer" :doc "buffer number of buffer to act on, passed in through a chain (see examples below)." } {:name "areal", :default 0.0 :doc "real part of a."} {:name "aimag", :default 0.0 :doc "imaginary part of a."}], :rates #{:kr} :doc "Applies the conformal mapping z -> (z-a)/(1-za*) to the phase vocoder bins z with a given by the real and imag inputs to the UGen. i.e., makes a transformation of the complex plane so the output is full of phase vocoder artifacts but may be musically fun. Usually keep |a|<1 but you can of course try bigger values to make it really noisy. a=0 should give back the input mostly unperturbed. See http://mathworld.wolfram.com/ConformalMapping.html"} {:name "Convolution", :args [{:name "in" :doc "processing target"} {:name "kernel" :doc "processing kernel."} {:name "framesize", :default 512.0 :doc "size of FFT frame, must be a power of two"}], :rates #{:ar} :check [(nth-input-stream? 0) (nth-input-power-of-2? 2)] :doc "Strict convolution of two continuously changing inputs. Also see convolution2 for a cheaper CPU cost alternative for the case of a fixed kernel which can be changed with a trigger message. See PI:NAME:<NAME>END_PI, The Scientist and Engineer's Guide to Digital Signal Processing: chapter 18: http:// www.dspguide.com/ch18.htm"} {:name "Convolution2", :args [{:name "in" :doc "processing target"} {:name "kernel" :doc "buffer index for the fixed kernel, may be modulated in combination with the trigger"} {:name "trigger" :doc "update the kernel on a change from <= 0 to > 0"} {:name "framesize", :default 512.0 :doc "size of FFT frame, must be a power of two. Convolution uses twice this number internally, maximum value you can give this argument is 2^16 = 65536. Note that it gets progressively more expensive to run for higher powers! 512, 1024, 2048, 4096 standard." }], :rates #{:ar} :check [(nth-input-stream? 0) (nth-input-power-of-2? 3)] :doc "Strict convolution with fixed kernel which can be updated using a trigger signal. See PI:NAME:<NAME>END_PI, The Scientist and Engineer's Guide to Digital Signal Processing: chapter 18: http:// www.dspguide.com/ch18.htm "} {:name "Convolution2L", :args [{:name "in" :doc "processing target"} {:name "kernel" :doc "buffer index for the fixed kernel, may be modulated in combination with the trigger"} {:name "trigger" :doc "update the kernel on a change from <= 0 to > 0"} {:name "framesize", :default 512.0 :doc "size of FFT frame, must be a power of two. Convolution uses twice this number internally, maximum value you can give this argument is 2^16=65536. Note that it gets progressively more expensive to run for higher powers! 512, 1024, 2048, 4096 standard." } {:name "crossfade", :default 1.0 :doc "The number of periods over which a crossfade is made. The default is 1. This must be an integer." }], :rates #{:ar} :check [(nth-input-stream? 0) (nth-input-power-of-2? 3)] :doc "Strict convolution with fixed kernel which can be updated using a trigger signal. There is a linear crossfade between the buffers upon change. See PI:NAME:<NAME>END_PI, The Scientist and Engineer's Guide to Digital Signal Processing: chapter 18: http://www.dspguide.com/ch18.htm "} {:name "StereoConvolution2L", :args [{:name "in" :doc "processing target"} {:name "kernel-l" :doc "buffer index for the fixed kernel of the left channel, may be modulated in combination with the trigger"} {:name "kernel-r" :doc "buffer index for the fixed kernel of the right channel, may be modulated in combination with the trigger"} {:name "trigger" :doc "update the kernel on a change from <= 0 to > 0"} {:name "framesize", :default 512.0 :doc "size of FFT frame, must be a power of two. Convolution uses twice this number internally, maximum value you can give this argument is 2^16=65536. Note that it gets progressively more expensive to run for higher powers! 512, 1024, 2048, 4096 standard." } {:name "crossfade", :default 1.0 :doc "The number of periods over which a crossfade is made. This must be an integer." }] :rates #{:ar} :num-outs 2 :check [(nth-input-stream? 0) (nth-input-power-of-2? 4)] :doc "Strict convolution with fixed kernel which can be updated using a trigger signal. There is a linear crossfade between the buffers upon change. Like convolution2L, but convolves with two buffers and outputs a stereo signal. This saves one FFT transformation per period, as compared to using two copies of convolution2L. Useful applications could include stereo reverberation or HRTF convolution. See PI:NAME:<NAME>END_PI, The Scientist and Engineer's Guide to Digital Signal Processing: chapter 18: http://www.dspguide.com/ch18.htm"} {:name "Convolution3", :args [{:name "in" :doc "processing target"} {:name "kernel" :doc "buffer index for the fixed kernel, may be modulated in combination with the trigger"} {:name "trigger", :default 0.0 :doc "update the kernel on a change from <= 0 to > 0"} {:name "framesize", :default 512.0 :doc "size of FFT frame, does not have to be a power of two."}] :check [(nth-input-stream? 0) (nth-input-power-of-2? 3)] :doc "Strict convolution with fixed kernel which can be updated using a trigger signal. The convolution is performed in the time domain, which is highly inefficient, and probably only useful for either very short kernel sizes, or for control rate signals. "} {:name "PV_JensenAndersen", :args [{:name "buffer" :doc "FFT buffer to read from."} {:name "propsc", :default 0.25 :doc "Proportion of spectral centroid feature."} {:name "prophfe", :default 0.25 :doc "Proportion of high frequency energy feature."} {:name "prophfc", :default 0.25 :doc "Proportion of high frequency content feature."} {:name "propsf", :default 0.25 :doc "Proportion of spectral flux feature."} {:name "threshold", :default 1.0 :doc "Threshold level for allowing a detection"} {:name "wait-time", :default 0.04 :doc "If triggered, minimum wait until a further frame can cause another spot (useful to stop multiple detects on heavy signals)"}], :rates #{:ar} :doc "FFT feature detector for onset detection based on work described in: PI:NAME:<NAME>END_PI. & PI:NAME:<NAME>END_PI. (2003). Real-time Beat Estimation Using Feature Extraction. In Proceedings of the Computer Music Modeling and Retrieval Symposium, Lecture Notes in Computer Science. Springer Verlag. First order derivatives of the features are taken. Threshold may need to be set low to pick up on changes. "} {:name "PV_HainsworthFoote", :args [{:name "buffer" :doc "FFT buffer to read from"} {:name "proph", :default 0.0 :doc "What strength of detection signal from Hainsworth metric to use."} {:name "propf", :default 0.0 :doc "What strength of detection signal from Foote metric to use. The Foote metric is normalised to [0.0,1.0]"} {:name "threshold", :default 1.0 :doc "Threshold hold level for allowing a detection"} {:name "wait-time", :default 0.04 :doc "If triggered, minimum wait until a further frame can cause another spot (useful to stop multiple detects on heavy signals)"}], :rates #{:ar} :doc "FFT onset detector based on work described in: PI:NAME:<NAME>END_PI. (2003) Techniques for the Automated Analysis of Musical Audio. PhD, University of Cambridge engineering dept. See especially p128. The Hainsworth metric is a modification of the Kullback Liebler distance. The onset detector has general ability to spot spectral change, so may have some ability to track chord changes aside from obvious transient jolts, but there's no guarantee it won't be confused by frequency modulation artifacts. Hainsworth metric on it's own gives good results but Foote might be useful in some situations: experimental."} {:name "RunningSum", :args [{:name "in" :doc "Input signal"} {:name "numsamp", :default 40.0 :doc "How many samples to take the running sum over (initialisation time only, not modulatable." }] :check (nth-input-stream? 0) :doc "A running sum over a user specified number of samples, useful for running RMS power windowing."}])
[ { "context": "-initialized false})\n\n(def dummy-users\n [{:name \"Søren Boisen\", :id \"76fd0625-f84d-4d14-9045-386098f04645\", :ph", "end": 648, "score": 0.9998791813850403, "start": 636, "tag": "NAME", "value": "Søren Boisen" }, { "context": "-9045-386098f04645\", :phone 20780172},\n {:name \"Bo Visfeldt\", :id \"fa586cca-e0ef-480f-99de-c248792662ea\", :p", "end": 735, "score": 0.9998818039894104, "start": 724, "tag": "NAME", "value": "Bo Visfeldt" }, { "context": "d0625-f84d-4d14-9045-386098f04645\"}\n {:name \"Herlev Hospital\", :id \"82fd0625-f84d-4d14-9045-386098f04", "end": 1078, "score": 0.6501766443252563, "start": 1075, "tag": "NAME", "value": "lev" }, { "context": "80fd0625-f84d-4d14-9045-386098f04645\"}\n {:name \"Akutmodtagelsen\", :id \"83fd0625-f84d-4d14-9045-386098f04645\", :su", "end": 1225, "score": 0.9998440146446228, "start": 1210, "tag": "NAME", "value": "Akutmodtagelsen" }, { "context": "82fd0625-f84d-4d14-9045-386098f04645\"}\n {:name \"Sekretariatet\", :id \"84fd0625-f84d-4d14-9045-386098f04645\", :", "end": 1361, "score": 0.999858558177948, "start": 1348, "tag": "NAME", "value": "Sekretariatet" }, { "context": "83fd0625-f84d-4d14-9045-386098f04645\"}\n {:name \"Sandkassen\", :id \"85fd0625-f84d-4d14-9045-386098f04645\"", "end": 1496, "score": 0.9998478889465332, "start": 1486, "tag": "NAME", "value": "Sandkassen" }, { "context": "83fd0625-f84d-4d14-9045-386098f04645\"}\n {:name \"KK Vikarkorps\", :id \"86fd0625-f84d-4d14-9045-386098f04645\", :", "end": 1637, "score": 0.999867856502533, "start": 1624, "tag": "NAME", "value": "KK Vikarkorps" } ]
src/cljs/reframe_test/db.cljs
jargon/ts-admin
0
(ns reframe-test.db (:require [schema.core :as sc :include-macros true])) (def schema {:initialized sc/Bool (sc/optional-key :current-group-id) sc/Str (sc/optional-key :users) [{:name sc/Str :phone sc/Num sc/Keyword sc/Any}] (sc/optional-key :groups) {sc/Str {:id sc/Str :name sc/Str :subgroups sc/Num :parent-id sc/Str sc/Keyword sc/Any}} sc/Keyword sc/Any}) (defn valid-schema? [db] (let [res (sc/check schema db)] (if (some? res) (.error js/console (str "schema problem: " res))))) (def default-db {:name "re-frame", :initialized false, :groups-initialized false}) (def dummy-users [{:name "Søren Boisen", :id "76fd0625-f84d-4d14-9045-386098f04645", :phone 20780172}, {:name "Bo Visfeldt", :id "fa586cca-e0ef-480f-99de-c248792662ea", :phone 27282970}]) (def dummy-groups [{:name "Root", :id "80fd0625-f84d-4d14-9045-386098f04645", :subgroups 3, :parent-id ""} {:name "HivePeople", :id "81fd0625-f84d-4d14-9045-386098f04645", :subgroups 0, :parent-id "80fd0625-f84d-4d14-9045-386098f04645"} {:name "Herlev Hospital", :id "82fd0625-f84d-4d14-9045-386098f04645", :subgroups 1, :parent-id "80fd0625-f84d-4d14-9045-386098f04645"} {:name "Akutmodtagelsen", :id "83fd0625-f84d-4d14-9045-386098f04645", :subgroups 2, :parent-id "82fd0625-f84d-4d14-9045-386098f04645"} {:name "Sekretariatet", :id "84fd0625-f84d-4d14-9045-386098f04645", :subgroups 0, :parent-id "83fd0625-f84d-4d14-9045-386098f04645"} {:name "Sandkassen", :id "85fd0625-f84d-4d14-9045-386098f04645", :subgroups 0, :parent-id "83fd0625-f84d-4d14-9045-386098f04645"} {:name "KK Vikarkorps", :id "86fd0625-f84d-4d14-9045-386098f04645", :subgroups 10, :parent-id "80fd0625-f84d-4d14-9045-386098f04645"}]) (defn build-subgroups [parent groups] (let [child? (fn [group] (= (:parent-id group) (:id parent))) subgroups (filterv child? groups)] (mapv :id subgroups))) (defn build-group-hierarchy [root level expanded groups] (let [root-id (:id root) child? (fn [group] (= (:parent-id group) root-id)) children (filterv child? groups) loaded (or (= (:subgroups root) 0) (not (empty? children))) node {:id root-id :level level :loaded loaded :expanded expanded}] (if (seq children) (into [node] (mapv #(build-group-hierarchy %1 (+ level 1) false groups) children)) node))) (build-group-hierarchy (first dummy-groups) 0 true dummy-groups) (seq (filterv integer? [1 2])) (defn build-group-map [groups] (let [kvps (mapv #(vector (:id %1) %1) groups)] (into (hash-map) kvps))) (build-subgroups (first dummy-groups) dummy-groups) (build-group-map dummy-groups) (def tree ["Root" "HivePeople" ["Herlev Hospital" ["Akutmodtagelsen" "Sekretariatet" "Sandkassen"]] ["KK Vikarkorps" "Jepdepdoo"] ["Arkham" ["Batcave" "Batmobile"] "Asylum"]])
24130
(ns reframe-test.db (:require [schema.core :as sc :include-macros true])) (def schema {:initialized sc/Bool (sc/optional-key :current-group-id) sc/Str (sc/optional-key :users) [{:name sc/Str :phone sc/Num sc/Keyword sc/Any}] (sc/optional-key :groups) {sc/Str {:id sc/Str :name sc/Str :subgroups sc/Num :parent-id sc/Str sc/Keyword sc/Any}} sc/Keyword sc/Any}) (defn valid-schema? [db] (let [res (sc/check schema db)] (if (some? res) (.error js/console (str "schema problem: " res))))) (def default-db {:name "re-frame", :initialized false, :groups-initialized false}) (def dummy-users [{:name "<NAME>", :id "76fd0625-f84d-4d14-9045-386098f04645", :phone 20780172}, {:name "<NAME>", :id "fa586cca-e0ef-480f-99de-c248792662ea", :phone 27282970}]) (def dummy-groups [{:name "Root", :id "80fd0625-f84d-4d14-9045-386098f04645", :subgroups 3, :parent-id ""} {:name "HivePeople", :id "81fd0625-f84d-4d14-9045-386098f04645", :subgroups 0, :parent-id "80fd0625-f84d-4d14-9045-386098f04645"} {:name "Her<NAME> Hospital", :id "82fd0625-f84d-4d14-9045-386098f04645", :subgroups 1, :parent-id "80fd0625-f84d-4d14-9045-386098f04645"} {:name "<NAME>", :id "83fd0625-f84d-4d14-9045-386098f04645", :subgroups 2, :parent-id "82fd0625-f84d-4d14-9045-386098f04645"} {:name "<NAME>", :id "84fd0625-f84d-4d14-9045-386098f04645", :subgroups 0, :parent-id "83fd0625-f84d-4d14-9045-386098f04645"} {:name "<NAME>", :id "85fd0625-f84d-4d14-9045-386098f04645", :subgroups 0, :parent-id "83fd0625-f84d-4d14-9045-386098f04645"} {:name "<NAME>", :id "86fd0625-f84d-4d14-9045-386098f04645", :subgroups 10, :parent-id "80fd0625-f84d-4d14-9045-386098f04645"}]) (defn build-subgroups [parent groups] (let [child? (fn [group] (= (:parent-id group) (:id parent))) subgroups (filterv child? groups)] (mapv :id subgroups))) (defn build-group-hierarchy [root level expanded groups] (let [root-id (:id root) child? (fn [group] (= (:parent-id group) root-id)) children (filterv child? groups) loaded (or (= (:subgroups root) 0) (not (empty? children))) node {:id root-id :level level :loaded loaded :expanded expanded}] (if (seq children) (into [node] (mapv #(build-group-hierarchy %1 (+ level 1) false groups) children)) node))) (build-group-hierarchy (first dummy-groups) 0 true dummy-groups) (seq (filterv integer? [1 2])) (defn build-group-map [groups] (let [kvps (mapv #(vector (:id %1) %1) groups)] (into (hash-map) kvps))) (build-subgroups (first dummy-groups) dummy-groups) (build-group-map dummy-groups) (def tree ["Root" "HivePeople" ["Herlev Hospital" ["Akutmodtagelsen" "Sekretariatet" "Sandkassen"]] ["KK Vikarkorps" "Jepdepdoo"] ["Arkham" ["Batcave" "Batmobile"] "Asylum"]])
true
(ns reframe-test.db (:require [schema.core :as sc :include-macros true])) (def schema {:initialized sc/Bool (sc/optional-key :current-group-id) sc/Str (sc/optional-key :users) [{:name sc/Str :phone sc/Num sc/Keyword sc/Any}] (sc/optional-key :groups) {sc/Str {:id sc/Str :name sc/Str :subgroups sc/Num :parent-id sc/Str sc/Keyword sc/Any}} sc/Keyword sc/Any}) (defn valid-schema? [db] (let [res (sc/check schema db)] (if (some? res) (.error js/console (str "schema problem: " res))))) (def default-db {:name "re-frame", :initialized false, :groups-initialized false}) (def dummy-users [{:name "PI:NAME:<NAME>END_PI", :id "76fd0625-f84d-4d14-9045-386098f04645", :phone 20780172}, {:name "PI:NAME:<NAME>END_PI", :id "fa586cca-e0ef-480f-99de-c248792662ea", :phone 27282970}]) (def dummy-groups [{:name "Root", :id "80fd0625-f84d-4d14-9045-386098f04645", :subgroups 3, :parent-id ""} {:name "HivePeople", :id "81fd0625-f84d-4d14-9045-386098f04645", :subgroups 0, :parent-id "80fd0625-f84d-4d14-9045-386098f04645"} {:name "HerPI:NAME:<NAME>END_PI Hospital", :id "82fd0625-f84d-4d14-9045-386098f04645", :subgroups 1, :parent-id "80fd0625-f84d-4d14-9045-386098f04645"} {:name "PI:NAME:<NAME>END_PI", :id "83fd0625-f84d-4d14-9045-386098f04645", :subgroups 2, :parent-id "82fd0625-f84d-4d14-9045-386098f04645"} {:name "PI:NAME:<NAME>END_PI", :id "84fd0625-f84d-4d14-9045-386098f04645", :subgroups 0, :parent-id "83fd0625-f84d-4d14-9045-386098f04645"} {:name "PI:NAME:<NAME>END_PI", :id "85fd0625-f84d-4d14-9045-386098f04645", :subgroups 0, :parent-id "83fd0625-f84d-4d14-9045-386098f04645"} {:name "PI:NAME:<NAME>END_PI", :id "86fd0625-f84d-4d14-9045-386098f04645", :subgroups 10, :parent-id "80fd0625-f84d-4d14-9045-386098f04645"}]) (defn build-subgroups [parent groups] (let [child? (fn [group] (= (:parent-id group) (:id parent))) subgroups (filterv child? groups)] (mapv :id subgroups))) (defn build-group-hierarchy [root level expanded groups] (let [root-id (:id root) child? (fn [group] (= (:parent-id group) root-id)) children (filterv child? groups) loaded (or (= (:subgroups root) 0) (not (empty? children))) node {:id root-id :level level :loaded loaded :expanded expanded}] (if (seq children) (into [node] (mapv #(build-group-hierarchy %1 (+ level 1) false groups) children)) node))) (build-group-hierarchy (first dummy-groups) 0 true dummy-groups) (seq (filterv integer? [1 2])) (defn build-group-map [groups] (let [kvps (mapv #(vector (:id %1) %1) groups)] (into (hash-map) kvps))) (build-subgroups (first dummy-groups) dummy-groups) (build-group-map dummy-groups) (def tree ["Root" "HivePeople" ["Herlev Hospital" ["Akutmodtagelsen" "Sekretariatet" "Sandkassen"]] ["KK Vikarkorps" "Jepdepdoo"] ["Arkham" ["Batcave" "Batmobile"] "Asylum"]])
[ { "context": "= % :predicate))\n count)))\n\n(def app-key \"app\")\n\n(defn save-app!\n [app]\n (ls/set-item! app-ke", "end": 3259, "score": 0.6908026337623596, "start": 3256, "tag": "KEY", "value": "app" } ]
src/dargwa_counter/db.cljs
sherpc/dargwa-counter
0
(ns dargwa-counter.db (:require [schema.core :as sc :include-macros true] [dargwa-counter.localstorage :as ls])) (def default-ui {:file-name nil :current-tale-index 0 :selected-word nil :add-mark-popup nil}) (def default-app {:ui default-ui :data {} :stats []}) (defn w> [{s1 :s-id w1 :w-id} {s2 :s-id w2 :w-id}] (case (compare s1 s2) -1 false 0 (> w1 w2) 1 true)) (defn ->ids-hash-map [xs] (->> xs (map-indexed (fn [i x] [i (assoc x :id i)])) (into {}))) (defn select [indexed-seq] (->> indexed-seq (map (fn [[_ v]] v)) (sort-by :id))) (defn get-current-tale [{:keys [current-tale-index]} {:keys [tales]}] (-> tales (get current-tale-index) (update :text-lines select))) (defn update-in-tale [{:keys [current-tale-index] :as db} path f arg1] (update-in db (concat [:tales current-tale-index] path) f arg1)) ;; ui ;; first arg -- app (defn select-word [app s-id w-id] (assoc-in app [:ui :selected-word] {:s-id s-id :w-id w-id})) (defn clear-word-selection [app] (assoc-in app [:ui :selected-word] nil)) (defn set-current-tale-index [app id] (-> app clear-word-selection (assoc-in [:ui :current-tale-index] id))) (defn change-pronoun-name [app new-name] (assoc-in app [:ui :pronoun-name] new-name)) (defn clear-pronoun-name [app] (change-pronoun-name app nil)) (defn mark-pronoun [app selected-word] (-> app clear-word-selection (assoc-in [:ui :add-pronoun] {:pronoun selected-word}))) (defn unmark-pronoun [app] (-> app clear-word-selection clear-pronoun-name (assoc-in [:ui :add-pronoun] nil))) (defn add-stats [app tale new-p] (let [stat {:tale-name (:name tale) :pronoun-name (:name new-p) :distance (:distance new-p)}] (-> app (update-in [:stats] conj stat)))) (defn words-between [lines {s-start :s-id w-start :w-id} {s-end :s-id w-end :w-id}] (if (= s-start s-end) (->> s-start (nth lines) :words select (filter #(< w-start (:id %) w-end))) (let [from-lines-between (->> lines (filter #(< s-start (:id %) s-end)) (mapcat #(-> % :words select))) ;;_ (.log js/console (clj->js from-lines-between)) from-start-line (->> s-start (nth lines) :words select (filter #(-> % :id (> w-start)))) ;;_ (.log js/console (clj->js from-start-line)) from-end-line (->> s-end (nth lines) :words select (filter #(-> % :id (< w-end)))) ;;_ (.log js/console (clj->js from-end-line)) ] (concat from-start-line from-lines-between from-end-line)))) (defn predicates-between [lines pronoun referent] (let [words (words-between lines referent pronoun)] (->> words (map :part-of-speech) (filter #(= % :predicate)) count))) (def app-key "app") (defn save-app! [app] (ls/set-item! app-key app) app) (defn get-csv-uri [stats] (->> stats (map #(->> % select (clojure.string/join "\t"))) (clojure.string/join "\n") (str "Tale\tPronoun\tDistance\n") (str "data:text/csv;charset=utf-8,") js/encodeURI)) (defn update-csv-export [app] (assoc-in app [:csv-export-uri] (get-csv-uri (:stats app)))) (defn add-referent [{:keys [ui data] :as app}] (let [pronoun-id (-> ui :add-pronoun :pronoun) referent-id (-> ui :selected-word) current-tale-index (:current-tale-index ui) tale (get-in data [:tales current-tale-index]) pronouns (:pronouns tale) last-id (->> pronouns (map (fn [[id _]] id)) (apply max)) new-id (inc (or last-id -1)) distance (predicates-between (select (:text-lines tale)) pronoun-id referent-id) new-p {:id new-id :pronoun pronoun-id :referent referent-id :name (:pronoun-name ui) :distance distance}] (-> app (assoc-in [:data :tales current-tale-index :pronouns new-id] new-p) (add-stats tale new-p) unmark-pronoun update-csv-export save-app!)))
30660
(ns dargwa-counter.db (:require [schema.core :as sc :include-macros true] [dargwa-counter.localstorage :as ls])) (def default-ui {:file-name nil :current-tale-index 0 :selected-word nil :add-mark-popup nil}) (def default-app {:ui default-ui :data {} :stats []}) (defn w> [{s1 :s-id w1 :w-id} {s2 :s-id w2 :w-id}] (case (compare s1 s2) -1 false 0 (> w1 w2) 1 true)) (defn ->ids-hash-map [xs] (->> xs (map-indexed (fn [i x] [i (assoc x :id i)])) (into {}))) (defn select [indexed-seq] (->> indexed-seq (map (fn [[_ v]] v)) (sort-by :id))) (defn get-current-tale [{:keys [current-tale-index]} {:keys [tales]}] (-> tales (get current-tale-index) (update :text-lines select))) (defn update-in-tale [{:keys [current-tale-index] :as db} path f arg1] (update-in db (concat [:tales current-tale-index] path) f arg1)) ;; ui ;; first arg -- app (defn select-word [app s-id w-id] (assoc-in app [:ui :selected-word] {:s-id s-id :w-id w-id})) (defn clear-word-selection [app] (assoc-in app [:ui :selected-word] nil)) (defn set-current-tale-index [app id] (-> app clear-word-selection (assoc-in [:ui :current-tale-index] id))) (defn change-pronoun-name [app new-name] (assoc-in app [:ui :pronoun-name] new-name)) (defn clear-pronoun-name [app] (change-pronoun-name app nil)) (defn mark-pronoun [app selected-word] (-> app clear-word-selection (assoc-in [:ui :add-pronoun] {:pronoun selected-word}))) (defn unmark-pronoun [app] (-> app clear-word-selection clear-pronoun-name (assoc-in [:ui :add-pronoun] nil))) (defn add-stats [app tale new-p] (let [stat {:tale-name (:name tale) :pronoun-name (:name new-p) :distance (:distance new-p)}] (-> app (update-in [:stats] conj stat)))) (defn words-between [lines {s-start :s-id w-start :w-id} {s-end :s-id w-end :w-id}] (if (= s-start s-end) (->> s-start (nth lines) :words select (filter #(< w-start (:id %) w-end))) (let [from-lines-between (->> lines (filter #(< s-start (:id %) s-end)) (mapcat #(-> % :words select))) ;;_ (.log js/console (clj->js from-lines-between)) from-start-line (->> s-start (nth lines) :words select (filter #(-> % :id (> w-start)))) ;;_ (.log js/console (clj->js from-start-line)) from-end-line (->> s-end (nth lines) :words select (filter #(-> % :id (< w-end)))) ;;_ (.log js/console (clj->js from-end-line)) ] (concat from-start-line from-lines-between from-end-line)))) (defn predicates-between [lines pronoun referent] (let [words (words-between lines referent pronoun)] (->> words (map :part-of-speech) (filter #(= % :predicate)) count))) (def app-key "<KEY>") (defn save-app! [app] (ls/set-item! app-key app) app) (defn get-csv-uri [stats] (->> stats (map #(->> % select (clojure.string/join "\t"))) (clojure.string/join "\n") (str "Tale\tPronoun\tDistance\n") (str "data:text/csv;charset=utf-8,") js/encodeURI)) (defn update-csv-export [app] (assoc-in app [:csv-export-uri] (get-csv-uri (:stats app)))) (defn add-referent [{:keys [ui data] :as app}] (let [pronoun-id (-> ui :add-pronoun :pronoun) referent-id (-> ui :selected-word) current-tale-index (:current-tale-index ui) tale (get-in data [:tales current-tale-index]) pronouns (:pronouns tale) last-id (->> pronouns (map (fn [[id _]] id)) (apply max)) new-id (inc (or last-id -1)) distance (predicates-between (select (:text-lines tale)) pronoun-id referent-id) new-p {:id new-id :pronoun pronoun-id :referent referent-id :name (:pronoun-name ui) :distance distance}] (-> app (assoc-in [:data :tales current-tale-index :pronouns new-id] new-p) (add-stats tale new-p) unmark-pronoun update-csv-export save-app!)))
true
(ns dargwa-counter.db (:require [schema.core :as sc :include-macros true] [dargwa-counter.localstorage :as ls])) (def default-ui {:file-name nil :current-tale-index 0 :selected-word nil :add-mark-popup nil}) (def default-app {:ui default-ui :data {} :stats []}) (defn w> [{s1 :s-id w1 :w-id} {s2 :s-id w2 :w-id}] (case (compare s1 s2) -1 false 0 (> w1 w2) 1 true)) (defn ->ids-hash-map [xs] (->> xs (map-indexed (fn [i x] [i (assoc x :id i)])) (into {}))) (defn select [indexed-seq] (->> indexed-seq (map (fn [[_ v]] v)) (sort-by :id))) (defn get-current-tale [{:keys [current-tale-index]} {:keys [tales]}] (-> tales (get current-tale-index) (update :text-lines select))) (defn update-in-tale [{:keys [current-tale-index] :as db} path f arg1] (update-in db (concat [:tales current-tale-index] path) f arg1)) ;; ui ;; first arg -- app (defn select-word [app s-id w-id] (assoc-in app [:ui :selected-word] {:s-id s-id :w-id w-id})) (defn clear-word-selection [app] (assoc-in app [:ui :selected-word] nil)) (defn set-current-tale-index [app id] (-> app clear-word-selection (assoc-in [:ui :current-tale-index] id))) (defn change-pronoun-name [app new-name] (assoc-in app [:ui :pronoun-name] new-name)) (defn clear-pronoun-name [app] (change-pronoun-name app nil)) (defn mark-pronoun [app selected-word] (-> app clear-word-selection (assoc-in [:ui :add-pronoun] {:pronoun selected-word}))) (defn unmark-pronoun [app] (-> app clear-word-selection clear-pronoun-name (assoc-in [:ui :add-pronoun] nil))) (defn add-stats [app tale new-p] (let [stat {:tale-name (:name tale) :pronoun-name (:name new-p) :distance (:distance new-p)}] (-> app (update-in [:stats] conj stat)))) (defn words-between [lines {s-start :s-id w-start :w-id} {s-end :s-id w-end :w-id}] (if (= s-start s-end) (->> s-start (nth lines) :words select (filter #(< w-start (:id %) w-end))) (let [from-lines-between (->> lines (filter #(< s-start (:id %) s-end)) (mapcat #(-> % :words select))) ;;_ (.log js/console (clj->js from-lines-between)) from-start-line (->> s-start (nth lines) :words select (filter #(-> % :id (> w-start)))) ;;_ (.log js/console (clj->js from-start-line)) from-end-line (->> s-end (nth lines) :words select (filter #(-> % :id (< w-end)))) ;;_ (.log js/console (clj->js from-end-line)) ] (concat from-start-line from-lines-between from-end-line)))) (defn predicates-between [lines pronoun referent] (let [words (words-between lines referent pronoun)] (->> words (map :part-of-speech) (filter #(= % :predicate)) count))) (def app-key "PI:KEY:<KEY>END_PI") (defn save-app! [app] (ls/set-item! app-key app) app) (defn get-csv-uri [stats] (->> stats (map #(->> % select (clojure.string/join "\t"))) (clojure.string/join "\n") (str "Tale\tPronoun\tDistance\n") (str "data:text/csv;charset=utf-8,") js/encodeURI)) (defn update-csv-export [app] (assoc-in app [:csv-export-uri] (get-csv-uri (:stats app)))) (defn add-referent [{:keys [ui data] :as app}] (let [pronoun-id (-> ui :add-pronoun :pronoun) referent-id (-> ui :selected-word) current-tale-index (:current-tale-index ui) tale (get-in data [:tales current-tale-index]) pronouns (:pronouns tale) last-id (->> pronouns (map (fn [[id _]] id)) (apply max)) new-id (inc (or last-id -1)) distance (predicates-between (select (:text-lines tale)) pronoun-id referent-id) new-p {:id new-id :pronoun pronoun-id :referent referent-id :name (:pronoun-name ui) :distance distance}] (-> app (assoc-in [:data :tales current-tale-index :pronouns new-id] new-p) (add-stats tale new-p) unmark-pronoun update-csv-export save-app!)))
[ { "context": ")\n login-atom (atom {:email \"Email\" :pass \"Pass\"})\n ]\n (if apiKey\n ;; User is logg", "end": 14243, "score": 0.9937642812728882, "start": 14239, "tag": "PASSWORD", "value": "Pass" } ]
src/hphelper/frontend/shared.cljs
lsenjov/hphelper
2
(ns hphelper.frontend.shared (:require [taoensso.timbre :as log] [reagent.core :as reagent :refer [atom]] [ajax.core :refer [GET POST] :as ajax] )) (defonce ^:private system-info (atom {:context (-> js/window .-location ;; This gets /context/index.html .-pathname ;; Remove the ending (clojure.string/replace "/index.html" "") ) ;; Adds this to button objects, affects the padding. :buttonSize " btn-sm " ;; Display all information known to the client? ;; It's okay if clients turn this on themselves, they won't have any privileged information :debug false ;; Display tutorial text :tutorial true :skills [ {:skills_name "Management" ;; Description of the skill :skills_desc "Management: Navigating and manipulating Alpha Complex Bureaucracy; ordering people around; co-ordinating efforts; double-talk; double-think; increasing the number of illicit contacts." ;; The initial used :init "M"} {:skills_name "Violence" :skills_desc "Violence: Blowing things up; ordering others to blow things up; military tactics and protocols; making you hard to assassinate." :init "V"} {:skills_name "Subterfuge" :skills_desc "Subterfuge: Stealth, surveillance, and skullduggery; deception; ordering assassinations and deniable missions; knowledge of security systems; sabotage; espionage and counter-espionage." :init "Su"} {:skills_name "Hardware" :skills_desc "Hardware: Operation and construction of vehicles, bots, nuclear reactors and other machinery; knowledge of the cutting edge of theoretical sciences" :init "H"} {:skills_name "Software" :skills_desc "Software: Manipulating computer records; processing large amounts of information; programming bots, vehicles, and other specialised software agents; manipulate the controlled economy; hack into communications records; change the programming of The Computer." :init "So"} {:skills_name "Wetware" :skills_desc "Wetware: Biological and chemical sciences; cloning and genetic engineering; subliminal messaging and pharmatherapy; reducing the effects of genetic drift on yourself" :init "W"} {:skills_name "Other" :skills_desc "Other: Assorted specialities that don't fit nicely into other categories" :init "O"} ] ;; Random items to label go here :others [ {:name "AF" :desc "Armed Forces"} {:name "CI" :desc "Compliance Index"} {:name "CP" :desc "Central Processing Unit"} {:name "HI" :desc "Happiness Index"} {:name "HP" :desc "Housing, Preservation, and Development & Mind Control"} {:name "IS" :desc "Internal Security"} {:name "LI" :desc "Loyalty Index"} {:name "PL" :desc "Production, Logistics, and Commissary"} {:name "PS" :desc "Power Services"} {:name "RD" :desc "Research and Development"} {:name "SI" :desc "Security Index"} {:name "TD" :desc "Troubleshooter Dispatch"} {:name "TS" :desc "Technical Services"} {:name "Clone Number" :desc "All clones start at 1, and this increments for every termination. With the exception of High Programmers, it's rare for this to go above 12."} {:name "Public Standing" :desc "How popular you are. Ranges from 10 as adored by the masses, to -10 as secretly loathed"} {:name "Mutation Power" :desc "How powerful your mutation. The higher the power, the more likely it is to succeed and do what you need it to do."} ] } ) ) (defn wrap-context "Adds the current context to a url" [url] (str (:context @system-info) url) ) ;; For easier class work (defn add-button-size "Adds button size to the end of a string" [^String classString] (str classString " " (:buttonSize @system-info))) (defn switcher-toolbar "Creates a toolbar of buttons for switching between pages. Switches the item at path in atom a. Items is a vector of [keyword label] pairs" [^Atom a ^Vec path ^Vec items] [:div {:class "btn-group"} (doall (map (fn [[k v]] ^{:key (if k k :nil-key)} [:span {:class (add-button-size (if (= (get-in @a path) k) "btn btn-success" "btn btn-default" ) ) :onClick #(swap! a assoc-in path k) } v ] ) items ) ) ] ) (defn text-input "Creates a text box for entering data. Switches the text at path in atom a." ([^Atom a ^Vec path] [:input {:type "text" :class "form-control" :value (get-in @a path) :on-change #(swap! a assoc-in path (-> % .-target .-value clojure.string/trim)) } ]) ([^Atom a ^Vec path ^String placeholder] [:input {:type "text" :class "form-control" :placeholder placeholder :value (get-in @a path) :on-change #(swap! a assoc-in path (-> % .-target .-value clojure.string/trim)) } ]) ) (defn debug-switcher-button "Switches the :debug tag in system-info" [] [:span {:class (if (:debug @system-info) "btn btn-success btn-xs" "btn btn-default btn-xs") :onClick #(swap! system-info update-in [:debug] not) } "Debug" ] ) (defn tutorial-switcher-button "Switches the :tutorial tag in system-info" [] [:span {:class (add-button-size (if (:tutorial @system-info) "btn btn-primary" "btn btn-default")) :onClick #(swap! system-info update-in [:tutorial] not) } "Tutorial" ] ) (defn tutorial-text "If :tutorial is true, will return the supplied text, else will return nil" [text] (if (:tutorial @system-info) [:span {:class "text-primary"} text ] nil)) (defn get-debug-status "Gets the current debug status (true/false)" [] (:debug @system-info)) (defn two-decimals "Prints a number 2 decimal places" [n] (-> n (* 100) int (/ 100))) ;; Getting public info from server and storing it locally (defn get-societies "Gets the societies from system info" [] (:societies @system-info) ) (defn get-mutations "Gets the mutations from system info" [] (:mutations @system-info) ) (defn get-drawbacks "Gets the mutations from system info" [] (:drawbacks @system-info) ) (defn get-specialties "Gets specialties from system info" [] (:specialties @system-info) ) ;; Actually get the above info if it's not already there (defn init "Initialises empty parts of system-info. Returns an empty string" [] ;; Load secret society info (if (not (:societies @system-info)) (ajax/GET (wrap-context "/api/db/get-societies/") {:response-format (ajax/json-response-format {:keywords? true}) :handler (fn [m] (log/info "Got societies.") (swap! system-info assoc :societies m) ) ;:params {} } ) ) ;; Load mutations info (if (not (:mutations @system-info)) (ajax/GET (wrap-context "/api/db/get-mutations/") {:response-format (ajax/json-response-format {:keywords? true}) :handler (fn [m] (log/info "Got mutations.") (swap! system-info assoc :mutations m) ) ;:params {} } ) ) ;; Load drawbacks info (if (not (:drawbacks @system-info)) (ajax/GET (wrap-context "/api/db/get-drawbacks/") {:response-format (ajax/json-response-format {:keywords? true}) :handler (fn [m] (log/info "Got drawbacks.") (swap! system-info assoc :drawbacks m) ) ;:params {} } ) ) ;; Get the skills from the database (if (not (:specialties @system-info)) (ajax/GET (wrap-context "/api/db/get-skills/") {:response-format (ajax/json-response-format {:keywords? true}) :handler (fn [m] (log/info "Got specialties.") (swap! system-info assoc :specialties m) ) } ) ) "" ) ;; Split a skill line, wrap skills with descriptions (defn- find-start "Checks a string, finds what object, if any, it starts with. Returns the entire map, or nil if none" [string category cat-key] (some #(if (clojure.string/starts-with? string (cat-key %)) % nil) (category @system-info)) ) (defn- find-start-society-with-parent "Checks a string, finds if it starts with a society with or without a parent" [string has-parent?] (some #(if (clojure.string/starts-with? string (:ss_name %)) % nil) (filter :ss_parent (:societies @system-info)))) (defn- find-specialty "Checks a string, finds what specialty, if any, it starts with" [string] (find-start string :specialties :skills_name) ) (defn- find-all "Checks a string, searches among all they keys, wraps where appropriate" [string] (cond ;; Check skills (find-start string :skills :skills_name) (find-start string :skills :skills_name) ;; Check specialties (find-start string :specialties :skills_name) (find-start string :specialties :skills_name) ;; Check societies, those with parents first (find-start-society-with-parent string true) (find-start-society-with-parent string true) ;; Check societies, those without parents next (find-start-society-with-parent string false) (find-start-society-with-parent string false) ;(find-start string :societies :ss_name) ;(find-start string :societies :ss_name) ;; Check Mutations (find-start string :mutations :name) (find-start string :mutations :name) ;; Check other (find-start string :others :name) (find-start string :others :name) ;; Nothing, return string :nothing string ) ) (defn- wrap-generic "Wraps a string of items with their descriptions. Returns a list of items" [line sep func] (->> (clojure.string/split line sep) (map (fn [string] (let [sp (func string) ;; Find the description keyword, if a map was returned k (if (map? sp) (if-let [newk (some #{:skills_desc :ss_desc :desc} (keys sp))] newk)) ;; If there's a key, then sp was a map, and we can get the description to put in the title ;; If there's no key, there's no title title (if k (k sp) "")] ^{:key sp} [:span {:title title} string ] ) ) ) doall (interpose sep) ) ) (defn wrap-any "Wraps a string (possibly separated) with their descriptions." ([line sep] (wrap-generic line sep find-all)) ([line] (wrap-any line ", ")) ) (defn wrap-skills "Wraps a string of skills with their descriptions. Returns a span of spans" [line sep] (wrap-generic line sep find-specialty) ) (defn wrap-skill-initial "Wraps a string's initial with the skill description" [line] (wrap-generic line ", " #(find-start % :skills :init)) ) ;; Return the entire system-info atom, only useful for debugging (defn get-debug "Gets the entirety of system-info as a string" [] [:div [:div (pr-str (keys @system-info))] [:div (pr-str @system-info)] ] ) ;; User logging in and out (defn is-logged-in? "Is the user logged in? If true, return the api key. If false, return nil" [] (:apiKey @system-info) ) (defn log-in "Attempts to log the user in. If successful, adds :apiKey If false, adds the message to the :message queue" [email pass] (if (not (:apiKey @system-info)) (ajax/GET (wrap-context "/api/user/login/") {:response-format (ajax/json-response-format {:keywords? true}) :params {:user_email email :user_pass pass} :handler (fn [{:keys [apiKey error] :as userdata}] (if (or error (not apiKey)) (swap! system-info update-in [:messages] conj {:message (str "Could not log in.")}) (do (swap! system-info assoc :apiKey apiKey) (swap! system-info assoc :userdata userdata) ) ) ) } ) ) ) (defn log-out "Clears user info" [] (swap! system-info dissoc :apiKey :userdata) ) (defn user-bar-component "Component for users logging in and out" [] (let [apiKey (:apiKey @system-info) {email :user_email :as userData} (:userdata @system-info) login-atom (atom {:email "Email" :pass "Pass"}) ] (if apiKey ;; User is logged in already [:span {:class "nav navbar-nav"} (str "Logged in: " (get-in @system-info [:userdata :user_name])) [:span {:class (add-button-size "btn btn-default nav navbar-nav navbar-right") :onClick log-out } "Log Out" ] ] ;; User is not logged in ;; TODO email and pass as background text [:span {:class "nav navbar-nav"} [:span {:class "nav navbar-nav"} [:input {:type "text" :class "form-control input-sm" :value (get @login-atom :email) :on-change #(swap! login-atom assoc :email (-> % .-target .-value)) } ] ] [:span {:class "nav navbar-nav"} [:input {:type "text" :class "form-control input-sm" :value (get @login-atom :pass) :on-change #(swap! login-atom assoc :pass (-> % .-target .-value)) } ] ] [:span {:class "nav navbar-nav"} [:span {:class (add-button-size "btn btn-default") :onClick #(log-in (:email @login-atom) (:pass @login-atom)) } "Log In" ] ] ] ) ) )
118210
(ns hphelper.frontend.shared (:require [taoensso.timbre :as log] [reagent.core :as reagent :refer [atom]] [ajax.core :refer [GET POST] :as ajax] )) (defonce ^:private system-info (atom {:context (-> js/window .-location ;; This gets /context/index.html .-pathname ;; Remove the ending (clojure.string/replace "/index.html" "") ) ;; Adds this to button objects, affects the padding. :buttonSize " btn-sm " ;; Display all information known to the client? ;; It's okay if clients turn this on themselves, they won't have any privileged information :debug false ;; Display tutorial text :tutorial true :skills [ {:skills_name "Management" ;; Description of the skill :skills_desc "Management: Navigating and manipulating Alpha Complex Bureaucracy; ordering people around; co-ordinating efforts; double-talk; double-think; increasing the number of illicit contacts." ;; The initial used :init "M"} {:skills_name "Violence" :skills_desc "Violence: Blowing things up; ordering others to blow things up; military tactics and protocols; making you hard to assassinate." :init "V"} {:skills_name "Subterfuge" :skills_desc "Subterfuge: Stealth, surveillance, and skullduggery; deception; ordering assassinations and deniable missions; knowledge of security systems; sabotage; espionage and counter-espionage." :init "Su"} {:skills_name "Hardware" :skills_desc "Hardware: Operation and construction of vehicles, bots, nuclear reactors and other machinery; knowledge of the cutting edge of theoretical sciences" :init "H"} {:skills_name "Software" :skills_desc "Software: Manipulating computer records; processing large amounts of information; programming bots, vehicles, and other specialised software agents; manipulate the controlled economy; hack into communications records; change the programming of The Computer." :init "So"} {:skills_name "Wetware" :skills_desc "Wetware: Biological and chemical sciences; cloning and genetic engineering; subliminal messaging and pharmatherapy; reducing the effects of genetic drift on yourself" :init "W"} {:skills_name "Other" :skills_desc "Other: Assorted specialities that don't fit nicely into other categories" :init "O"} ] ;; Random items to label go here :others [ {:name "AF" :desc "Armed Forces"} {:name "CI" :desc "Compliance Index"} {:name "CP" :desc "Central Processing Unit"} {:name "HI" :desc "Happiness Index"} {:name "HP" :desc "Housing, Preservation, and Development & Mind Control"} {:name "IS" :desc "Internal Security"} {:name "LI" :desc "Loyalty Index"} {:name "PL" :desc "Production, Logistics, and Commissary"} {:name "PS" :desc "Power Services"} {:name "RD" :desc "Research and Development"} {:name "SI" :desc "Security Index"} {:name "TD" :desc "Troubleshooter Dispatch"} {:name "TS" :desc "Technical Services"} {:name "Clone Number" :desc "All clones start at 1, and this increments for every termination. With the exception of High Programmers, it's rare for this to go above 12."} {:name "Public Standing" :desc "How popular you are. Ranges from 10 as adored by the masses, to -10 as secretly loathed"} {:name "Mutation Power" :desc "How powerful your mutation. The higher the power, the more likely it is to succeed and do what you need it to do."} ] } ) ) (defn wrap-context "Adds the current context to a url" [url] (str (:context @system-info) url) ) ;; For easier class work (defn add-button-size "Adds button size to the end of a string" [^String classString] (str classString " " (:buttonSize @system-info))) (defn switcher-toolbar "Creates a toolbar of buttons for switching between pages. Switches the item at path in atom a. Items is a vector of [keyword label] pairs" [^Atom a ^Vec path ^Vec items] [:div {:class "btn-group"} (doall (map (fn [[k v]] ^{:key (if k k :nil-key)} [:span {:class (add-button-size (if (= (get-in @a path) k) "btn btn-success" "btn btn-default" ) ) :onClick #(swap! a assoc-in path k) } v ] ) items ) ) ] ) (defn text-input "Creates a text box for entering data. Switches the text at path in atom a." ([^Atom a ^Vec path] [:input {:type "text" :class "form-control" :value (get-in @a path) :on-change #(swap! a assoc-in path (-> % .-target .-value clojure.string/trim)) } ]) ([^Atom a ^Vec path ^String placeholder] [:input {:type "text" :class "form-control" :placeholder placeholder :value (get-in @a path) :on-change #(swap! a assoc-in path (-> % .-target .-value clojure.string/trim)) } ]) ) (defn debug-switcher-button "Switches the :debug tag in system-info" [] [:span {:class (if (:debug @system-info) "btn btn-success btn-xs" "btn btn-default btn-xs") :onClick #(swap! system-info update-in [:debug] not) } "Debug" ] ) (defn tutorial-switcher-button "Switches the :tutorial tag in system-info" [] [:span {:class (add-button-size (if (:tutorial @system-info) "btn btn-primary" "btn btn-default")) :onClick #(swap! system-info update-in [:tutorial] not) } "Tutorial" ] ) (defn tutorial-text "If :tutorial is true, will return the supplied text, else will return nil" [text] (if (:tutorial @system-info) [:span {:class "text-primary"} text ] nil)) (defn get-debug-status "Gets the current debug status (true/false)" [] (:debug @system-info)) (defn two-decimals "Prints a number 2 decimal places" [n] (-> n (* 100) int (/ 100))) ;; Getting public info from server and storing it locally (defn get-societies "Gets the societies from system info" [] (:societies @system-info) ) (defn get-mutations "Gets the mutations from system info" [] (:mutations @system-info) ) (defn get-drawbacks "Gets the mutations from system info" [] (:drawbacks @system-info) ) (defn get-specialties "Gets specialties from system info" [] (:specialties @system-info) ) ;; Actually get the above info if it's not already there (defn init "Initialises empty parts of system-info. Returns an empty string" [] ;; Load secret society info (if (not (:societies @system-info)) (ajax/GET (wrap-context "/api/db/get-societies/") {:response-format (ajax/json-response-format {:keywords? true}) :handler (fn [m] (log/info "Got societies.") (swap! system-info assoc :societies m) ) ;:params {} } ) ) ;; Load mutations info (if (not (:mutations @system-info)) (ajax/GET (wrap-context "/api/db/get-mutations/") {:response-format (ajax/json-response-format {:keywords? true}) :handler (fn [m] (log/info "Got mutations.") (swap! system-info assoc :mutations m) ) ;:params {} } ) ) ;; Load drawbacks info (if (not (:drawbacks @system-info)) (ajax/GET (wrap-context "/api/db/get-drawbacks/") {:response-format (ajax/json-response-format {:keywords? true}) :handler (fn [m] (log/info "Got drawbacks.") (swap! system-info assoc :drawbacks m) ) ;:params {} } ) ) ;; Get the skills from the database (if (not (:specialties @system-info)) (ajax/GET (wrap-context "/api/db/get-skills/") {:response-format (ajax/json-response-format {:keywords? true}) :handler (fn [m] (log/info "Got specialties.") (swap! system-info assoc :specialties m) ) } ) ) "" ) ;; Split a skill line, wrap skills with descriptions (defn- find-start "Checks a string, finds what object, if any, it starts with. Returns the entire map, or nil if none" [string category cat-key] (some #(if (clojure.string/starts-with? string (cat-key %)) % nil) (category @system-info)) ) (defn- find-start-society-with-parent "Checks a string, finds if it starts with a society with or without a parent" [string has-parent?] (some #(if (clojure.string/starts-with? string (:ss_name %)) % nil) (filter :ss_parent (:societies @system-info)))) (defn- find-specialty "Checks a string, finds what specialty, if any, it starts with" [string] (find-start string :specialties :skills_name) ) (defn- find-all "Checks a string, searches among all they keys, wraps where appropriate" [string] (cond ;; Check skills (find-start string :skills :skills_name) (find-start string :skills :skills_name) ;; Check specialties (find-start string :specialties :skills_name) (find-start string :specialties :skills_name) ;; Check societies, those with parents first (find-start-society-with-parent string true) (find-start-society-with-parent string true) ;; Check societies, those without parents next (find-start-society-with-parent string false) (find-start-society-with-parent string false) ;(find-start string :societies :ss_name) ;(find-start string :societies :ss_name) ;; Check Mutations (find-start string :mutations :name) (find-start string :mutations :name) ;; Check other (find-start string :others :name) (find-start string :others :name) ;; Nothing, return string :nothing string ) ) (defn- wrap-generic "Wraps a string of items with their descriptions. Returns a list of items" [line sep func] (->> (clojure.string/split line sep) (map (fn [string] (let [sp (func string) ;; Find the description keyword, if a map was returned k (if (map? sp) (if-let [newk (some #{:skills_desc :ss_desc :desc} (keys sp))] newk)) ;; If there's a key, then sp was a map, and we can get the description to put in the title ;; If there's no key, there's no title title (if k (k sp) "")] ^{:key sp} [:span {:title title} string ] ) ) ) doall (interpose sep) ) ) (defn wrap-any "Wraps a string (possibly separated) with their descriptions." ([line sep] (wrap-generic line sep find-all)) ([line] (wrap-any line ", ")) ) (defn wrap-skills "Wraps a string of skills with their descriptions. Returns a span of spans" [line sep] (wrap-generic line sep find-specialty) ) (defn wrap-skill-initial "Wraps a string's initial with the skill description" [line] (wrap-generic line ", " #(find-start % :skills :init)) ) ;; Return the entire system-info atom, only useful for debugging (defn get-debug "Gets the entirety of system-info as a string" [] [:div [:div (pr-str (keys @system-info))] [:div (pr-str @system-info)] ] ) ;; User logging in and out (defn is-logged-in? "Is the user logged in? If true, return the api key. If false, return nil" [] (:apiKey @system-info) ) (defn log-in "Attempts to log the user in. If successful, adds :apiKey If false, adds the message to the :message queue" [email pass] (if (not (:apiKey @system-info)) (ajax/GET (wrap-context "/api/user/login/") {:response-format (ajax/json-response-format {:keywords? true}) :params {:user_email email :user_pass pass} :handler (fn [{:keys [apiKey error] :as userdata}] (if (or error (not apiKey)) (swap! system-info update-in [:messages] conj {:message (str "Could not log in.")}) (do (swap! system-info assoc :apiKey apiKey) (swap! system-info assoc :userdata userdata) ) ) ) } ) ) ) (defn log-out "Clears user info" [] (swap! system-info dissoc :apiKey :userdata) ) (defn user-bar-component "Component for users logging in and out" [] (let [apiKey (:apiKey @system-info) {email :user_email :as userData} (:userdata @system-info) login-atom (atom {:email "Email" :pass "<PASSWORD>"}) ] (if apiKey ;; User is logged in already [:span {:class "nav navbar-nav"} (str "Logged in: " (get-in @system-info [:userdata :user_name])) [:span {:class (add-button-size "btn btn-default nav navbar-nav navbar-right") :onClick log-out } "Log Out" ] ] ;; User is not logged in ;; TODO email and pass as background text [:span {:class "nav navbar-nav"} [:span {:class "nav navbar-nav"} [:input {:type "text" :class "form-control input-sm" :value (get @login-atom :email) :on-change #(swap! login-atom assoc :email (-> % .-target .-value)) } ] ] [:span {:class "nav navbar-nav"} [:input {:type "text" :class "form-control input-sm" :value (get @login-atom :pass) :on-change #(swap! login-atom assoc :pass (-> % .-target .-value)) } ] ] [:span {:class "nav navbar-nav"} [:span {:class (add-button-size "btn btn-default") :onClick #(log-in (:email @login-atom) (:pass @login-atom)) } "Log In" ] ] ] ) ) )
true
(ns hphelper.frontend.shared (:require [taoensso.timbre :as log] [reagent.core :as reagent :refer [atom]] [ajax.core :refer [GET POST] :as ajax] )) (defonce ^:private system-info (atom {:context (-> js/window .-location ;; This gets /context/index.html .-pathname ;; Remove the ending (clojure.string/replace "/index.html" "") ) ;; Adds this to button objects, affects the padding. :buttonSize " btn-sm " ;; Display all information known to the client? ;; It's okay if clients turn this on themselves, they won't have any privileged information :debug false ;; Display tutorial text :tutorial true :skills [ {:skills_name "Management" ;; Description of the skill :skills_desc "Management: Navigating and manipulating Alpha Complex Bureaucracy; ordering people around; co-ordinating efforts; double-talk; double-think; increasing the number of illicit contacts." ;; The initial used :init "M"} {:skills_name "Violence" :skills_desc "Violence: Blowing things up; ordering others to blow things up; military tactics and protocols; making you hard to assassinate." :init "V"} {:skills_name "Subterfuge" :skills_desc "Subterfuge: Stealth, surveillance, and skullduggery; deception; ordering assassinations and deniable missions; knowledge of security systems; sabotage; espionage and counter-espionage." :init "Su"} {:skills_name "Hardware" :skills_desc "Hardware: Operation and construction of vehicles, bots, nuclear reactors and other machinery; knowledge of the cutting edge of theoretical sciences" :init "H"} {:skills_name "Software" :skills_desc "Software: Manipulating computer records; processing large amounts of information; programming bots, vehicles, and other specialised software agents; manipulate the controlled economy; hack into communications records; change the programming of The Computer." :init "So"} {:skills_name "Wetware" :skills_desc "Wetware: Biological and chemical sciences; cloning and genetic engineering; subliminal messaging and pharmatherapy; reducing the effects of genetic drift on yourself" :init "W"} {:skills_name "Other" :skills_desc "Other: Assorted specialities that don't fit nicely into other categories" :init "O"} ] ;; Random items to label go here :others [ {:name "AF" :desc "Armed Forces"} {:name "CI" :desc "Compliance Index"} {:name "CP" :desc "Central Processing Unit"} {:name "HI" :desc "Happiness Index"} {:name "HP" :desc "Housing, Preservation, and Development & Mind Control"} {:name "IS" :desc "Internal Security"} {:name "LI" :desc "Loyalty Index"} {:name "PL" :desc "Production, Logistics, and Commissary"} {:name "PS" :desc "Power Services"} {:name "RD" :desc "Research and Development"} {:name "SI" :desc "Security Index"} {:name "TD" :desc "Troubleshooter Dispatch"} {:name "TS" :desc "Technical Services"} {:name "Clone Number" :desc "All clones start at 1, and this increments for every termination. With the exception of High Programmers, it's rare for this to go above 12."} {:name "Public Standing" :desc "How popular you are. Ranges from 10 as adored by the masses, to -10 as secretly loathed"} {:name "Mutation Power" :desc "How powerful your mutation. The higher the power, the more likely it is to succeed and do what you need it to do."} ] } ) ) (defn wrap-context "Adds the current context to a url" [url] (str (:context @system-info) url) ) ;; For easier class work (defn add-button-size "Adds button size to the end of a string" [^String classString] (str classString " " (:buttonSize @system-info))) (defn switcher-toolbar "Creates a toolbar of buttons for switching between pages. Switches the item at path in atom a. Items is a vector of [keyword label] pairs" [^Atom a ^Vec path ^Vec items] [:div {:class "btn-group"} (doall (map (fn [[k v]] ^{:key (if k k :nil-key)} [:span {:class (add-button-size (if (= (get-in @a path) k) "btn btn-success" "btn btn-default" ) ) :onClick #(swap! a assoc-in path k) } v ] ) items ) ) ] ) (defn text-input "Creates a text box for entering data. Switches the text at path in atom a." ([^Atom a ^Vec path] [:input {:type "text" :class "form-control" :value (get-in @a path) :on-change #(swap! a assoc-in path (-> % .-target .-value clojure.string/trim)) } ]) ([^Atom a ^Vec path ^String placeholder] [:input {:type "text" :class "form-control" :placeholder placeholder :value (get-in @a path) :on-change #(swap! a assoc-in path (-> % .-target .-value clojure.string/trim)) } ]) ) (defn debug-switcher-button "Switches the :debug tag in system-info" [] [:span {:class (if (:debug @system-info) "btn btn-success btn-xs" "btn btn-default btn-xs") :onClick #(swap! system-info update-in [:debug] not) } "Debug" ] ) (defn tutorial-switcher-button "Switches the :tutorial tag in system-info" [] [:span {:class (add-button-size (if (:tutorial @system-info) "btn btn-primary" "btn btn-default")) :onClick #(swap! system-info update-in [:tutorial] not) } "Tutorial" ] ) (defn tutorial-text "If :tutorial is true, will return the supplied text, else will return nil" [text] (if (:tutorial @system-info) [:span {:class "text-primary"} text ] nil)) (defn get-debug-status "Gets the current debug status (true/false)" [] (:debug @system-info)) (defn two-decimals "Prints a number 2 decimal places" [n] (-> n (* 100) int (/ 100))) ;; Getting public info from server and storing it locally (defn get-societies "Gets the societies from system info" [] (:societies @system-info) ) (defn get-mutations "Gets the mutations from system info" [] (:mutations @system-info) ) (defn get-drawbacks "Gets the mutations from system info" [] (:drawbacks @system-info) ) (defn get-specialties "Gets specialties from system info" [] (:specialties @system-info) ) ;; Actually get the above info if it's not already there (defn init "Initialises empty parts of system-info. Returns an empty string" [] ;; Load secret society info (if (not (:societies @system-info)) (ajax/GET (wrap-context "/api/db/get-societies/") {:response-format (ajax/json-response-format {:keywords? true}) :handler (fn [m] (log/info "Got societies.") (swap! system-info assoc :societies m) ) ;:params {} } ) ) ;; Load mutations info (if (not (:mutations @system-info)) (ajax/GET (wrap-context "/api/db/get-mutations/") {:response-format (ajax/json-response-format {:keywords? true}) :handler (fn [m] (log/info "Got mutations.") (swap! system-info assoc :mutations m) ) ;:params {} } ) ) ;; Load drawbacks info (if (not (:drawbacks @system-info)) (ajax/GET (wrap-context "/api/db/get-drawbacks/") {:response-format (ajax/json-response-format {:keywords? true}) :handler (fn [m] (log/info "Got drawbacks.") (swap! system-info assoc :drawbacks m) ) ;:params {} } ) ) ;; Get the skills from the database (if (not (:specialties @system-info)) (ajax/GET (wrap-context "/api/db/get-skills/") {:response-format (ajax/json-response-format {:keywords? true}) :handler (fn [m] (log/info "Got specialties.") (swap! system-info assoc :specialties m) ) } ) ) "" ) ;; Split a skill line, wrap skills with descriptions (defn- find-start "Checks a string, finds what object, if any, it starts with. Returns the entire map, or nil if none" [string category cat-key] (some #(if (clojure.string/starts-with? string (cat-key %)) % nil) (category @system-info)) ) (defn- find-start-society-with-parent "Checks a string, finds if it starts with a society with or without a parent" [string has-parent?] (some #(if (clojure.string/starts-with? string (:ss_name %)) % nil) (filter :ss_parent (:societies @system-info)))) (defn- find-specialty "Checks a string, finds what specialty, if any, it starts with" [string] (find-start string :specialties :skills_name) ) (defn- find-all "Checks a string, searches among all they keys, wraps where appropriate" [string] (cond ;; Check skills (find-start string :skills :skills_name) (find-start string :skills :skills_name) ;; Check specialties (find-start string :specialties :skills_name) (find-start string :specialties :skills_name) ;; Check societies, those with parents first (find-start-society-with-parent string true) (find-start-society-with-parent string true) ;; Check societies, those without parents next (find-start-society-with-parent string false) (find-start-society-with-parent string false) ;(find-start string :societies :ss_name) ;(find-start string :societies :ss_name) ;; Check Mutations (find-start string :mutations :name) (find-start string :mutations :name) ;; Check other (find-start string :others :name) (find-start string :others :name) ;; Nothing, return string :nothing string ) ) (defn- wrap-generic "Wraps a string of items with their descriptions. Returns a list of items" [line sep func] (->> (clojure.string/split line sep) (map (fn [string] (let [sp (func string) ;; Find the description keyword, if a map was returned k (if (map? sp) (if-let [newk (some #{:skills_desc :ss_desc :desc} (keys sp))] newk)) ;; If there's a key, then sp was a map, and we can get the description to put in the title ;; If there's no key, there's no title title (if k (k sp) "")] ^{:key sp} [:span {:title title} string ] ) ) ) doall (interpose sep) ) ) (defn wrap-any "Wraps a string (possibly separated) with their descriptions." ([line sep] (wrap-generic line sep find-all)) ([line] (wrap-any line ", ")) ) (defn wrap-skills "Wraps a string of skills with their descriptions. Returns a span of spans" [line sep] (wrap-generic line sep find-specialty) ) (defn wrap-skill-initial "Wraps a string's initial with the skill description" [line] (wrap-generic line ", " #(find-start % :skills :init)) ) ;; Return the entire system-info atom, only useful for debugging (defn get-debug "Gets the entirety of system-info as a string" [] [:div [:div (pr-str (keys @system-info))] [:div (pr-str @system-info)] ] ) ;; User logging in and out (defn is-logged-in? "Is the user logged in? If true, return the api key. If false, return nil" [] (:apiKey @system-info) ) (defn log-in "Attempts to log the user in. If successful, adds :apiKey If false, adds the message to the :message queue" [email pass] (if (not (:apiKey @system-info)) (ajax/GET (wrap-context "/api/user/login/") {:response-format (ajax/json-response-format {:keywords? true}) :params {:user_email email :user_pass pass} :handler (fn [{:keys [apiKey error] :as userdata}] (if (or error (not apiKey)) (swap! system-info update-in [:messages] conj {:message (str "Could not log in.")}) (do (swap! system-info assoc :apiKey apiKey) (swap! system-info assoc :userdata userdata) ) ) ) } ) ) ) (defn log-out "Clears user info" [] (swap! system-info dissoc :apiKey :userdata) ) (defn user-bar-component "Component for users logging in and out" [] (let [apiKey (:apiKey @system-info) {email :user_email :as userData} (:userdata @system-info) login-atom (atom {:email "Email" :pass "PI:PASSWORD:<PASSWORD>END_PI"}) ] (if apiKey ;; User is logged in already [:span {:class "nav navbar-nav"} (str "Logged in: " (get-in @system-info [:userdata :user_name])) [:span {:class (add-button-size "btn btn-default nav navbar-nav navbar-right") :onClick log-out } "Log Out" ] ] ;; User is not logged in ;; TODO email and pass as background text [:span {:class "nav navbar-nav"} [:span {:class "nav navbar-nav"} [:input {:type "text" :class "form-control input-sm" :value (get @login-atom :email) :on-change #(swap! login-atom assoc :email (-> % .-target .-value)) } ] ] [:span {:class "nav navbar-nav"} [:input {:type "text" :class "form-control input-sm" :value (get @login-atom :pass) :on-change #(swap! login-atom assoc :pass (-> % .-target .-value)) } ] ] [:span {:class "nav navbar-nav"} [:span {:class (add-button-size "btn btn-default") :onClick #(log-in (:email @login-atom) (:pass @login-atom)) } "Log In" ] ] ] ) ) )
[ { "context": "ähköpostiosoite\"\n :password \"Salasana\"\n :password-again \"Salasana ", "end": 775, "score": 0.9991016387939453, "start": 767, "tag": "PASSWORD", "value": "Salasana" }, { "context": "\"Salasana\"\n :password-again \"Salasana (uudestaan)\"\n :continue \"Jat", "end": 824, "score": 0.9912796020507812, "start": 816, "tag": "PASSWORD", "value": "Salasana" }, { "context": "syn käyttöehdot\"\n :username \"Käyttäjätunnus\"\n :username-min \"Käyttäjätun", "end": 1186, "score": 0.997914731502533, "start": 1172, "tag": "USERNAME", "value": "Käyttäjätunnus" }, { "context": "ttäjätunnus\"\n :username-min \"Käyttäjätunnus (min. 3 merkkiä)\"\n :login \"K", "end": 1239, "score": 0.9968628287315369, "start": 1225, "tag": "USERNAME", "value": "Käyttäjätunnus" }, { "context": "hvit?\"\n :link-auth-username \"Yhdistämme käyttämäsi tunnistautumismenetelmän käyttäjänimeesi\"\n :username-", "end": 1556, "score": 0.9658251404762268, "start": 1510, "tag": "USERNAME", "value": "Yhdistämme käyttämäsi tunnistautumismenetelmän" }, { "context": "me \"Yhdistämme käyttämäsi tunnistautumismenetelmän käyttäjänimeesi\"\n :username-available \"Käytt", "end": 1572, "score": 0.9334352016448975, "start": 1557, "tag": "USERNAME", "value": "käyttäjänimeesi" }, { "context": "meesi\"\n :username-available \"Käyttäjänimi on vapaana\"\n :save-username \"Tallenna k", "end": 1640, "score": 0.9634059071540833, "start": 1617, "tag": "USERNAME", "value": "Käyttäjänimi on vapaana" }, { "context": "on vapaana\"\n :save-username \"Tallenna käyttäjänimi\"\n :username-taken \"Käyttäjän", "end": 1701, "score": 0.9889123439788818, "start": 1680, "tag": "USERNAME", "value": "Tallenna käyttäjänimi" }, { "context": "ttäjänimi\"\n :username-taken \"Käyttäjänimi käytössä!\"\n :signup-with \"Rekisteröidy ", "end": 1763, "score": 0.8510520458221436, "start": 1742, "tag": "USERNAME", "value": "Käyttäjänimi käytössä" }, { "context": "tiedot\"\n :register-username \"Rekisteröi käyttäjänimesi\"\n :register-with-email \"Reki", "end": 2503, "score": 0.8319770097732544, "start": 2478, "tag": "USERNAME", "value": "Rekisteröi käyttäjänimesi" }, { "context": " :next \"Seuraava\"\n :hello \"Tervehdys {1}\"\n :welcome-coffeepot \"Te", "end": 2766, "score": 0.8788958787918091, "start": 2757, "tag": "NAME", "value": "Tervehdys" }, { "context": "d email address\"\n :password \"Password\"\n :password-again \"Password ", "end": 3631, "score": 0.9992378354072571, "start": 3623, "tag": "PASSWORD", "value": "Password" }, { "context": "\"Password\"\n :password-again \"Password again\"\n :continue \"Continue\"\n ", "end": 3686, "score": 0.9985895752906799, "start": 3672, "tag": "PASSWORD", "value": "Password again" }, { "context": " agree to terms\"\n :username \"Username\"\n :username-min \"Username (m", "end": 4030, "score": 0.9978502988815308, "start": 4022, "tag": "USERNAME", "value": "Username" }, { "context": "e \"Username\"\n :username-min \"Username (min. 3 characters)\"\n :login", "end": 4077, "score": 0.6351847648620605, "start": 4069, "tag": "USERNAME", "value": "Username" }, { "context": "rname\"\n :username-available \"Username is available\"\n :save-username \"Save usern", "end": 4465, "score": 0.9806782603263855, "start": 4444, "tag": "USERNAME", "value": "Username is available" }, { "context": " available\"\n :save-username \"Save username\"\n :username-taken \"Username ", "end": 4518, "score": 0.9883843660354614, "start": 4505, "tag": "USERNAME", "value": "Save username" }, { "context": " username\"\n :username-taken \"Username taken\"\n :signup-with \"Signup with ", "end": 4573, "score": 0.9453293085098267, "start": 4559, "tag": "USERNAME", "value": "Username taken" }, { "context": "etails\"\n :register-username \"Register username\"\n :register-with-email \"Regi", "end": 5291, "score": 0.998271107673645, "start": 5274, "tag": "USERNAME", "value": "Register username" } ]
src/cljs/coffeepot/localization.cljs
Nightpanda/coffeepot
0
(ns coffeepot.localization (:require [tongue.core :as tongue] [re-frame.core :refer [subscribe]] [coffeepot.subs :as subs])) (def dictionary { :fi { :app-title "Coffeepot" :footer-text "© 2018 - Rakkaudesta kahviin. Coffeepot Inc." :coffees "Kahvit" :roasters "Paahtimot" :cafes "Kahvilat" :recipes "Reseptit" :search "Hae" :google "Google" :email "sähköposti" :email-address "Sähköpostiosoite" :email-invalid "Virheellinen sähköpostiosoite" :password "Salasana" :password-again "Salasana (uudestaan)" :continue "Jatka" :signup "Rekisteröidy" :create-account "Luo Coffeepot-tili / Rekisteröidy" :create-account-button "Luo tili" :terms-read-and-accepted "Olen lukenut ja hyväksyn käyttöehdot" :username "Käyttäjätunnus" :username-min "Käyttäjätunnus (min. 3 merkkiä)" :login "Kirjaudu" :login-with "Kirjaudu sisään {1}:lla" :logout "Kirjaudu ulos" :no-brews "Olisiko aika keittää kahvit?" :link-auth-username "Yhdistämme käyttämäsi tunnistautumismenetelmän käyttäjänimeesi" :username-available "Käyttäjänimi on vapaana" :save-username "Tallenna käyttäjänimi" :username-taken "Käyttäjänimi käytössä!" :signup-with "Rekisteröidy {1}:lla" :authenticated "Olet nyt tunnistautunut, voit jatkaa." :sign-in-to-coffeepot "Kirjaudu Coffeepotiin" :select-sign-in-method "Valitse kirjautumistapa" :add-description "Haluaisitko lisätä lyhyen kuvauksen itsestäsi?" :save-description "Tallenna kuvaus" :maybe-later "Teen tämän myöhemmin" :authenticate "Tunnistaudu" :select-sign-up-method "Valitse rekisteröitymistapa" :fill-account-details "Täytä käyttäjätiedot" :register-username "Rekisteröi käyttäjänimesi" :register-with-email "Rekisteröidy sähköpostilla" :or "tai" :back "Takaisin" :cancel "Peruuta" :next "Seuraava" :hello "Tervehdys {1}" :welcome-coffeepot "Tervetuloa käyttämään Coffeepottia" :profile-page-link "Asetuksesi" :profile-page-header "Hallinnoi tiliäsi" :user-description "Vapaa kuvauksesi" } :en { :app-title "Coffeepot" :footer-text "© 2018 - Brewed with love by Coffeepot Inc." :coffees "Coffees" :roasters "Roasters" :cafes "Cafes" :recipes "Recipes" :search "Search" :google "Google" :email "Email" :email-address "Email address" :email-invalid "Invalid email address" :password "Password" :password-again "Password again" :continue "Continue" :signup "Sign up" :create-account "Create Coffeepot account / Register" :create-account-button "Create account" :terms-read-and-accepted "I have read and agree to terms" :username "Username" :username-min "Username (min. 3 characters)" :login "Login" :login-with "Login with {1}" :logout "Logout" :no-brews "Is it time to brew a cup coffee?" :link-auth-username "We will link your used authentication-method with your username" :username-available "Username is available" :save-username "Save username" :username-taken "Username taken" :signup-with "Signup with {1}" :authenticated "You are now authenticated, please continue." :sign-in-to-coffeepot "Login to Coffeepot" :select-sign-in-method "Select sign in method" :add-description "Would you like to write a short description?" :save-description "Save description" :maybe-later "I'll do it later." :authenticate "Authenticate" :select-sign-up-method "Select sign-up method" :fill-account-details "Fill account details" :register-username "Register username" :register-with-email "Register with email" :or "or" :back "Back" :cancel "Cancel" :next "Next" :hello "Hello {1}" :welcome-coffeepot "Welcome to Coffeepot." :profile-page-link "Your settings" :profile-page-header "Manage your account" :user-description "Personal description" } :tongue/fallback :fi }) (def translate (tongue/build-translate dictionary)) (defn localize [text-key] (let [locale (subscribe [::subs/locale])] (translate @locale text-key))) (defn localize-with-substitute [text-key substitution] (let [locale (subscribe [::subs/locale])] (translate @locale text-key substitution)))
24554
(ns coffeepot.localization (:require [tongue.core :as tongue] [re-frame.core :refer [subscribe]] [coffeepot.subs :as subs])) (def dictionary { :fi { :app-title "Coffeepot" :footer-text "© 2018 - Rakkaudesta kahviin. Coffeepot Inc." :coffees "Kahvit" :roasters "Paahtimot" :cafes "Kahvilat" :recipes "Reseptit" :search "Hae" :google "Google" :email "sähköposti" :email-address "Sähköpostiosoite" :email-invalid "Virheellinen sähköpostiosoite" :password "<PASSWORD>" :password-again "<PASSWORD> (uudestaan)" :continue "Jatka" :signup "Rekisteröidy" :create-account "Luo Coffeepot-tili / Rekisteröidy" :create-account-button "Luo tili" :terms-read-and-accepted "Olen lukenut ja hyväksyn käyttöehdot" :username "Käyttäjätunnus" :username-min "Käyttäjätunnus (min. 3 merkkiä)" :login "Kirjaudu" :login-with "Kirjaudu sisään {1}:lla" :logout "Kirjaudu ulos" :no-brews "Olisiko aika keittää kahvit?" :link-auth-username "Yhdistämme käyttämäsi tunnistautumismenetelmän käyttäjänimeesi" :username-available "Käyttäjänimi on vapaana" :save-username "Tallenna käyttäjänimi" :username-taken "Käyttäjänimi käytössä!" :signup-with "Rekisteröidy {1}:lla" :authenticated "Olet nyt tunnistautunut, voit jatkaa." :sign-in-to-coffeepot "Kirjaudu Coffeepotiin" :select-sign-in-method "Valitse kirjautumistapa" :add-description "Haluaisitko lisätä lyhyen kuvauksen itsestäsi?" :save-description "Tallenna kuvaus" :maybe-later "Teen tämän myöhemmin" :authenticate "Tunnistaudu" :select-sign-up-method "Valitse rekisteröitymistapa" :fill-account-details "Täytä käyttäjätiedot" :register-username "Rekisteröi käyttäjänimesi" :register-with-email "Rekisteröidy sähköpostilla" :or "tai" :back "Takaisin" :cancel "Peruuta" :next "Seuraava" :hello "<NAME> {1}" :welcome-coffeepot "Tervetuloa käyttämään Coffeepottia" :profile-page-link "Asetuksesi" :profile-page-header "Hallinnoi tiliäsi" :user-description "Vapaa kuvauksesi" } :en { :app-title "Coffeepot" :footer-text "© 2018 - Brewed with love by Coffeepot Inc." :coffees "Coffees" :roasters "Roasters" :cafes "Cafes" :recipes "Recipes" :search "Search" :google "Google" :email "Email" :email-address "Email address" :email-invalid "Invalid email address" :password "<PASSWORD>" :password-again "<PASSWORD>" :continue "Continue" :signup "Sign up" :create-account "Create Coffeepot account / Register" :create-account-button "Create account" :terms-read-and-accepted "I have read and agree to terms" :username "Username" :username-min "Username (min. 3 characters)" :login "Login" :login-with "Login with {1}" :logout "Logout" :no-brews "Is it time to brew a cup coffee?" :link-auth-username "We will link your used authentication-method with your username" :username-available "Username is available" :save-username "Save username" :username-taken "Username taken" :signup-with "Signup with {1}" :authenticated "You are now authenticated, please continue." :sign-in-to-coffeepot "Login to Coffeepot" :select-sign-in-method "Select sign in method" :add-description "Would you like to write a short description?" :save-description "Save description" :maybe-later "I'll do it later." :authenticate "Authenticate" :select-sign-up-method "Select sign-up method" :fill-account-details "Fill account details" :register-username "Register username" :register-with-email "Register with email" :or "or" :back "Back" :cancel "Cancel" :next "Next" :hello "Hello {1}" :welcome-coffeepot "Welcome to Coffeepot." :profile-page-link "Your settings" :profile-page-header "Manage your account" :user-description "Personal description" } :tongue/fallback :fi }) (def translate (tongue/build-translate dictionary)) (defn localize [text-key] (let [locale (subscribe [::subs/locale])] (translate @locale text-key))) (defn localize-with-substitute [text-key substitution] (let [locale (subscribe [::subs/locale])] (translate @locale text-key substitution)))
true
(ns coffeepot.localization (:require [tongue.core :as tongue] [re-frame.core :refer [subscribe]] [coffeepot.subs :as subs])) (def dictionary { :fi { :app-title "Coffeepot" :footer-text "© 2018 - Rakkaudesta kahviin. Coffeepot Inc." :coffees "Kahvit" :roasters "Paahtimot" :cafes "Kahvilat" :recipes "Reseptit" :search "Hae" :google "Google" :email "sähköposti" :email-address "Sähköpostiosoite" :email-invalid "Virheellinen sähköpostiosoite" :password "PI:PASSWORD:<PASSWORD>END_PI" :password-again "PI:PASSWORD:<PASSWORD>END_PI (uudestaan)" :continue "Jatka" :signup "Rekisteröidy" :create-account "Luo Coffeepot-tili / Rekisteröidy" :create-account-button "Luo tili" :terms-read-and-accepted "Olen lukenut ja hyväksyn käyttöehdot" :username "Käyttäjätunnus" :username-min "Käyttäjätunnus (min. 3 merkkiä)" :login "Kirjaudu" :login-with "Kirjaudu sisään {1}:lla" :logout "Kirjaudu ulos" :no-brews "Olisiko aika keittää kahvit?" :link-auth-username "Yhdistämme käyttämäsi tunnistautumismenetelmän käyttäjänimeesi" :username-available "Käyttäjänimi on vapaana" :save-username "Tallenna käyttäjänimi" :username-taken "Käyttäjänimi käytössä!" :signup-with "Rekisteröidy {1}:lla" :authenticated "Olet nyt tunnistautunut, voit jatkaa." :sign-in-to-coffeepot "Kirjaudu Coffeepotiin" :select-sign-in-method "Valitse kirjautumistapa" :add-description "Haluaisitko lisätä lyhyen kuvauksen itsestäsi?" :save-description "Tallenna kuvaus" :maybe-later "Teen tämän myöhemmin" :authenticate "Tunnistaudu" :select-sign-up-method "Valitse rekisteröitymistapa" :fill-account-details "Täytä käyttäjätiedot" :register-username "Rekisteröi käyttäjänimesi" :register-with-email "Rekisteröidy sähköpostilla" :or "tai" :back "Takaisin" :cancel "Peruuta" :next "Seuraava" :hello "PI:NAME:<NAME>END_PI {1}" :welcome-coffeepot "Tervetuloa käyttämään Coffeepottia" :profile-page-link "Asetuksesi" :profile-page-header "Hallinnoi tiliäsi" :user-description "Vapaa kuvauksesi" } :en { :app-title "Coffeepot" :footer-text "© 2018 - Brewed with love by Coffeepot Inc." :coffees "Coffees" :roasters "Roasters" :cafes "Cafes" :recipes "Recipes" :search "Search" :google "Google" :email "Email" :email-address "Email address" :email-invalid "Invalid email address" :password "PI:PASSWORD:<PASSWORD>END_PI" :password-again "PI:PASSWORD:<PASSWORD>END_PI" :continue "Continue" :signup "Sign up" :create-account "Create Coffeepot account / Register" :create-account-button "Create account" :terms-read-and-accepted "I have read and agree to terms" :username "Username" :username-min "Username (min. 3 characters)" :login "Login" :login-with "Login with {1}" :logout "Logout" :no-brews "Is it time to brew a cup coffee?" :link-auth-username "We will link your used authentication-method with your username" :username-available "Username is available" :save-username "Save username" :username-taken "Username taken" :signup-with "Signup with {1}" :authenticated "You are now authenticated, please continue." :sign-in-to-coffeepot "Login to Coffeepot" :select-sign-in-method "Select sign in method" :add-description "Would you like to write a short description?" :save-description "Save description" :maybe-later "I'll do it later." :authenticate "Authenticate" :select-sign-up-method "Select sign-up method" :fill-account-details "Fill account details" :register-username "Register username" :register-with-email "Register with email" :or "or" :back "Back" :cancel "Cancel" :next "Next" :hello "Hello {1}" :welcome-coffeepot "Welcome to Coffeepot." :profile-page-link "Your settings" :profile-page-header "Manage your account" :user-description "Personal description" } :tongue/fallback :fi }) (def translate (tongue/build-translate dictionary)) (defn localize [text-key] (let [locale (subscribe [::subs/locale])] (translate @locale text-key))) (defn localize-with-substitute [text-key substitution] (let [locale (subscribe [::subs/locale])] (translate @locale text-key substitution)))
[ { "context": ";; Authors: Sung Pae <self@sungpae.com>\n\n(ns vim-clojure-static.update", "end": 20, "score": 0.9998777508735657, "start": 12, "tag": "NAME", "value": "Sung Pae" }, { "context": ";; Authors: Sung Pae <self@sungpae.com>\n\n(ns vim-clojure-static.update\n (:require [cloj", "end": 38, "score": 0.9999266266822815, "start": 22, "tag": "EMAIL", "value": "self@sungpae.com" } ]
dot_vim/bundle/vim-clojure-static/clj/src/vim_clojure_static/update.clj
nyimbi/dot_files
1
;; Authors: Sung Pae <self@sungpae.com> (ns vim-clojure-static.update (:require [clojure.java.io :as io] [clojure.java.shell :refer [sh]] [clojure.string :as string]) (:import (java.text SimpleDateFormat) (java.util Date))) (defn fjoin [& args] (string/join \/ args)) (def clojure-section #"(?ms)^CLOJURE.*?(?=^[\p{Lu} ]+\t*\*)") (defn update-doc! [first-line-pattern src-file dst-file] (let [sbuf (->> src-file io/reader line-seq (drop-while #(not (re-find first-line-pattern %))) (string/join \newline)) dbuf (slurp dst-file) dmatch (re-find clojure-section dbuf) hunk (re-find clojure-section sbuf)] (spit dst-file (string/replace-first dbuf dmatch hunk)))) (defn copy-runtime-files! [src dst & opts] (let [{:keys [tag date paths]} (apply hash-map opts)] (doseq [path paths :let [buf (-> (fjoin src path) slurp (string/replace "%%RELEASE_TAG%%" tag) (string/replace "%%RELEASE_DATE%%" date))]] (spit (fjoin dst "runtime" path) buf)))) (defn update-vim! "Update Vim repository runtime files in dst/runtime" [src dst] (let [current-tag (string/trim-newline (:out (sh "git" "tag" "--points-at" "HEAD"))) current-date (.format (SimpleDateFormat. "dd MMMM YYYY") (Date.))] (assert (seq current-tag) "Git HEAD is not tagged!") (update-doc! #"CLOJURE\t*\*ft-clojure-indent\*" (fjoin src "doc/clojure.txt") (fjoin dst "runtime/doc/indent.txt")) (update-doc! #"CLOJURE\t*\*ft-clojure-syntax\*" (fjoin src "doc/clojure.txt") (fjoin dst "runtime/doc/syntax.txt")) (copy-runtime-files! src dst :tag current-tag :date current-date :paths ["autoload/clojurecomplete.vim" "ftplugin/clojure.vim" "indent/clojure.vim" "syntax/clojure.vim"]))) (comment (update-vim! "/home/guns/src/vim-clojure-static" "/home/guns/src/vim"))
6893
;; Authors: <NAME> <<EMAIL>> (ns vim-clojure-static.update (:require [clojure.java.io :as io] [clojure.java.shell :refer [sh]] [clojure.string :as string]) (:import (java.text SimpleDateFormat) (java.util Date))) (defn fjoin [& args] (string/join \/ args)) (def clojure-section #"(?ms)^CLOJURE.*?(?=^[\p{Lu} ]+\t*\*)") (defn update-doc! [first-line-pattern src-file dst-file] (let [sbuf (->> src-file io/reader line-seq (drop-while #(not (re-find first-line-pattern %))) (string/join \newline)) dbuf (slurp dst-file) dmatch (re-find clojure-section dbuf) hunk (re-find clojure-section sbuf)] (spit dst-file (string/replace-first dbuf dmatch hunk)))) (defn copy-runtime-files! [src dst & opts] (let [{:keys [tag date paths]} (apply hash-map opts)] (doseq [path paths :let [buf (-> (fjoin src path) slurp (string/replace "%%RELEASE_TAG%%" tag) (string/replace "%%RELEASE_DATE%%" date))]] (spit (fjoin dst "runtime" path) buf)))) (defn update-vim! "Update Vim repository runtime files in dst/runtime" [src dst] (let [current-tag (string/trim-newline (:out (sh "git" "tag" "--points-at" "HEAD"))) current-date (.format (SimpleDateFormat. "dd MMMM YYYY") (Date.))] (assert (seq current-tag) "Git HEAD is not tagged!") (update-doc! #"CLOJURE\t*\*ft-clojure-indent\*" (fjoin src "doc/clojure.txt") (fjoin dst "runtime/doc/indent.txt")) (update-doc! #"CLOJURE\t*\*ft-clojure-syntax\*" (fjoin src "doc/clojure.txt") (fjoin dst "runtime/doc/syntax.txt")) (copy-runtime-files! src dst :tag current-tag :date current-date :paths ["autoload/clojurecomplete.vim" "ftplugin/clojure.vim" "indent/clojure.vim" "syntax/clojure.vim"]))) (comment (update-vim! "/home/guns/src/vim-clojure-static" "/home/guns/src/vim"))
true
;; Authors: PI:NAME:<NAME>END_PI <PI:EMAIL:<EMAIL>END_PI> (ns vim-clojure-static.update (:require [clojure.java.io :as io] [clojure.java.shell :refer [sh]] [clojure.string :as string]) (:import (java.text SimpleDateFormat) (java.util Date))) (defn fjoin [& args] (string/join \/ args)) (def clojure-section #"(?ms)^CLOJURE.*?(?=^[\p{Lu} ]+\t*\*)") (defn update-doc! [first-line-pattern src-file dst-file] (let [sbuf (->> src-file io/reader line-seq (drop-while #(not (re-find first-line-pattern %))) (string/join \newline)) dbuf (slurp dst-file) dmatch (re-find clojure-section dbuf) hunk (re-find clojure-section sbuf)] (spit dst-file (string/replace-first dbuf dmatch hunk)))) (defn copy-runtime-files! [src dst & opts] (let [{:keys [tag date paths]} (apply hash-map opts)] (doseq [path paths :let [buf (-> (fjoin src path) slurp (string/replace "%%RELEASE_TAG%%" tag) (string/replace "%%RELEASE_DATE%%" date))]] (spit (fjoin dst "runtime" path) buf)))) (defn update-vim! "Update Vim repository runtime files in dst/runtime" [src dst] (let [current-tag (string/trim-newline (:out (sh "git" "tag" "--points-at" "HEAD"))) current-date (.format (SimpleDateFormat. "dd MMMM YYYY") (Date.))] (assert (seq current-tag) "Git HEAD is not tagged!") (update-doc! #"CLOJURE\t*\*ft-clojure-indent\*" (fjoin src "doc/clojure.txt") (fjoin dst "runtime/doc/indent.txt")) (update-doc! #"CLOJURE\t*\*ft-clojure-syntax\*" (fjoin src "doc/clojure.txt") (fjoin dst "runtime/doc/syntax.txt")) (copy-runtime-files! src dst :tag current-tag :date current-date :paths ["autoload/clojurecomplete.vim" "ftplugin/clojure.vim" "indent/clojure.vim" "syntax/clojure.vim"]))) (comment (update-vim! "/home/guns/src/vim-clojure-static" "/home/guns/src/vim"))
[ { "context": " (:cache ratelimit nil) \"Bar4\") {:current-tokens 390\n ", "end": 9052, "score": 0.4340314567089081, "start": 9051, "tag": "PASSWORD", "value": "9" } ]
scheduler/test/cook/test/rate_limit/generic.clj
CGe0516/Cook
345
;; ;; Copyright (c) Two Sigma Open Source, LLC ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. ;; (ns cook.test.rate-limit.generic (:require [clojure.test :refer :all] [cook.rate-limit.generic :as rtg])) (deftest independent-keys-1 (let [ratelimit (rtg/make-tbf-rate-limiter {:bucket-size 60000 :tokens-replenished-per-minute 60 :expire-minutes 10000 :enforce? true})] (rtg/time-until-out-of-debt-millis! ratelimit "Foo2") (rtg/spend! ratelimit "Foo4" 100) (is (= 2 (.size (.asMap (:cache ratelimit))))))) (deftest independent-keys-2 (let [ratelimit (rtg/make-tbf-rate-limiter {:bucket-size 60000 :tokens-replenished-per-minute 60 :expire-minutes 10000 :enforce? true})] (rtg/earn-tokens! ratelimit "Foo4") (rtg/earn-tokens! ratelimit "Foo1") (rtg/time-until-out-of-debt-millis! ratelimit "Foo1") (rtg/time-until-out-of-debt-millis! ratelimit "Foo2") (rtg/spend! ratelimit "Foo3" 100) (rtg/spend! ratelimit "Foo4" 100) (is (= 4 (.size (.asMap (:cache ratelimit))))))) (deftest earning-tokens-explicit (let [ratelimit (rtg/make-tbf-rate-limiter {:bucket-size 20 :tokens-replenished-per-minute 60000 :expire-minutes 10 :enforce? true})] ;; take away the full bucket it starts with... (20 tokens) (with-redefs [rtg/current-time-in-millis (fn [] 1000000)] (rtg/spend! ratelimit "Foo1" 20) (rtg/spend! ratelimit "Foo2" 20) (rtg/spend! ratelimit "Foo3" 20) (rtg/spend! ratelimit "Foo4" 20) ;; Should be able to do this first request almost instantly. (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo1"))) (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo2"))) (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo3"))) (rtg/spend! ratelimit "Foo1" 0) (rtg/spend! ratelimit "Foo2" 10) (rtg/spend! ratelimit "Foo3" 10000) (is (= (.getIfPresent (:cache ratelimit nil) "Foo1") {:current-tokens 0 :last-update 1000000 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo2") {:current-tokens -10 :last-update 1000000 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo3") {:current-tokens -10000 :last-update 1000000 :bucket-size 20 :token-rate 1.0}))) (with-redefs [rtg/current-time-in-millis (fn [] 1000001)] ;; We've earned tokens. (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo1"))) (is (= 9 (rtg/time-until-out-of-debt-millis! ratelimit "Foo2"))) (is (= 9999 (rtg/time-until-out-of-debt-millis! ratelimit "Foo3"))) (is (= (.getIfPresent (:cache ratelimit nil) "Foo1") {:current-tokens 1 :last-update 1000001 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo2") {:current-tokens -9 :last-update 1000001 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo3") {:current-tokens -9999 :last-update 1000001 :bucket-size 20 :token-rate 1.0}))) (with-redefs [rtg/current-time-in-millis (fn [] 1000025)] ;; We've earned tokens. First two are out of debt.. Foo3 is in debt. (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo1"))) (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo2"))) (is (= 9975 (rtg/time-until-out-of-debt-millis! ratelimit "Foo3"))) (is (= (rtg/get-token-count! ratelimit "Foo1") 20)) (is (= (rtg/get-token-count! ratelimit "Foo2") 15)) (is (= (rtg/get-token-count! ratelimit "Foo3") -9975)) (is (= (.getIfPresent (:cache ratelimit nil) "Foo1") {:current-tokens 20 :last-update 1000025 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo2") {:current-tokens 15 :last-update 1000025 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo3") {:current-tokens -9975 :last-update 1000025 :bucket-size 20 :token-rate 1.0})) ; Make sure Foo4 is stale. (is (= (.getIfPresent (:cache ratelimit nil) "Foo4") {:current-tokens 0 :last-update 1000000 :bucket-size 20 :token-rate 1.0})) (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo4"))) ; And not stale (is (= (.getIfPresent (:cache ratelimit nil) "Foo4") {:current-tokens 20 :last-update 1000025 :bucket-size 20 :token-rate 1.0}))))) (deftest per-key-configs (let [config {:expire-minutes 10 :enforce? true} make-tbf-fn (fn [key] (case key "Bar1" (rtg/make-token-bucket-filter 60000 100) "Bar2" (rtg/make-token-bucket-filter 60000 200) "Bar3" (rtg/make-token-bucket-filter 60000 300) "Bar4" (rtg/make-token-bucket-filter 60000 400) (print "Mismatch key " key))) ratelimit (rtg/make-generic-tbf-rate-limiter config make-tbf-fn)] (with-redefs [rtg/current-time-in-millis (fn [] 1000000)] (rtg/spend! ratelimit "Bar1" 40) (rtg/spend! ratelimit "Bar2" 30) (rtg/spend! ratelimit "Bar3" 20) (rtg/spend! ratelimit "Bar4" 10) (is (= (.getIfPresent (:cache ratelimit nil) "Bar1") {:current-tokens 60 :last-update 1000000 :bucket-size 100 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Bar2") {:current-tokens 170 :last-update 1000000 :bucket-size 200 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Bar3") {:current-tokens 280 :last-update 1000000 :bucket-size 300 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Bar4") {:current-tokens 390 :last-update 1000000 :bucket-size 400 :token-rate 1.0})) (is (= (rtg/get-token-count! ratelimit "Bar1") 60)) (is (= (rtg/get-token-count! ratelimit "Bar2") 170)) (is (= (rtg/get-token-count! ratelimit "Bar3") 280)) (testing "Flush one and make sure only that one resets" (rtg/flush! ratelimit "Bar1") (is (= (rtg/get-token-count! ratelimit "Bar1") 100)) (is (= (rtg/get-token-count! ratelimit "Bar2") 170))) ; Flush all. (testing "Flush all and make sure only the others reset" (rtg/flush! ratelimit nil) (is (= (rtg/get-token-count! ratelimit "Bar2") 200)) (is (= (rtg/get-token-count! ratelimit "Bar3") 300))))))
35649
;; ;; Copyright (c) Two Sigma Open Source, LLC ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. ;; (ns cook.test.rate-limit.generic (:require [clojure.test :refer :all] [cook.rate-limit.generic :as rtg])) (deftest independent-keys-1 (let [ratelimit (rtg/make-tbf-rate-limiter {:bucket-size 60000 :tokens-replenished-per-minute 60 :expire-minutes 10000 :enforce? true})] (rtg/time-until-out-of-debt-millis! ratelimit "Foo2") (rtg/spend! ratelimit "Foo4" 100) (is (= 2 (.size (.asMap (:cache ratelimit))))))) (deftest independent-keys-2 (let [ratelimit (rtg/make-tbf-rate-limiter {:bucket-size 60000 :tokens-replenished-per-minute 60 :expire-minutes 10000 :enforce? true})] (rtg/earn-tokens! ratelimit "Foo4") (rtg/earn-tokens! ratelimit "Foo1") (rtg/time-until-out-of-debt-millis! ratelimit "Foo1") (rtg/time-until-out-of-debt-millis! ratelimit "Foo2") (rtg/spend! ratelimit "Foo3" 100) (rtg/spend! ratelimit "Foo4" 100) (is (= 4 (.size (.asMap (:cache ratelimit))))))) (deftest earning-tokens-explicit (let [ratelimit (rtg/make-tbf-rate-limiter {:bucket-size 20 :tokens-replenished-per-minute 60000 :expire-minutes 10 :enforce? true})] ;; take away the full bucket it starts with... (20 tokens) (with-redefs [rtg/current-time-in-millis (fn [] 1000000)] (rtg/spend! ratelimit "Foo1" 20) (rtg/spend! ratelimit "Foo2" 20) (rtg/spend! ratelimit "Foo3" 20) (rtg/spend! ratelimit "Foo4" 20) ;; Should be able to do this first request almost instantly. (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo1"))) (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo2"))) (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo3"))) (rtg/spend! ratelimit "Foo1" 0) (rtg/spend! ratelimit "Foo2" 10) (rtg/spend! ratelimit "Foo3" 10000) (is (= (.getIfPresent (:cache ratelimit nil) "Foo1") {:current-tokens 0 :last-update 1000000 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo2") {:current-tokens -10 :last-update 1000000 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo3") {:current-tokens -10000 :last-update 1000000 :bucket-size 20 :token-rate 1.0}))) (with-redefs [rtg/current-time-in-millis (fn [] 1000001)] ;; We've earned tokens. (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo1"))) (is (= 9 (rtg/time-until-out-of-debt-millis! ratelimit "Foo2"))) (is (= 9999 (rtg/time-until-out-of-debt-millis! ratelimit "Foo3"))) (is (= (.getIfPresent (:cache ratelimit nil) "Foo1") {:current-tokens 1 :last-update 1000001 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo2") {:current-tokens -9 :last-update 1000001 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo3") {:current-tokens -9999 :last-update 1000001 :bucket-size 20 :token-rate 1.0}))) (with-redefs [rtg/current-time-in-millis (fn [] 1000025)] ;; We've earned tokens. First two are out of debt.. Foo3 is in debt. (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo1"))) (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo2"))) (is (= 9975 (rtg/time-until-out-of-debt-millis! ratelimit "Foo3"))) (is (= (rtg/get-token-count! ratelimit "Foo1") 20)) (is (= (rtg/get-token-count! ratelimit "Foo2") 15)) (is (= (rtg/get-token-count! ratelimit "Foo3") -9975)) (is (= (.getIfPresent (:cache ratelimit nil) "Foo1") {:current-tokens 20 :last-update 1000025 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo2") {:current-tokens 15 :last-update 1000025 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo3") {:current-tokens -9975 :last-update 1000025 :bucket-size 20 :token-rate 1.0})) ; Make sure Foo4 is stale. (is (= (.getIfPresent (:cache ratelimit nil) "Foo4") {:current-tokens 0 :last-update 1000000 :bucket-size 20 :token-rate 1.0})) (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo4"))) ; And not stale (is (= (.getIfPresent (:cache ratelimit nil) "Foo4") {:current-tokens 20 :last-update 1000025 :bucket-size 20 :token-rate 1.0}))))) (deftest per-key-configs (let [config {:expire-minutes 10 :enforce? true} make-tbf-fn (fn [key] (case key "Bar1" (rtg/make-token-bucket-filter 60000 100) "Bar2" (rtg/make-token-bucket-filter 60000 200) "Bar3" (rtg/make-token-bucket-filter 60000 300) "Bar4" (rtg/make-token-bucket-filter 60000 400) (print "Mismatch key " key))) ratelimit (rtg/make-generic-tbf-rate-limiter config make-tbf-fn)] (with-redefs [rtg/current-time-in-millis (fn [] 1000000)] (rtg/spend! ratelimit "Bar1" 40) (rtg/spend! ratelimit "Bar2" 30) (rtg/spend! ratelimit "Bar3" 20) (rtg/spend! ratelimit "Bar4" 10) (is (= (.getIfPresent (:cache ratelimit nil) "Bar1") {:current-tokens 60 :last-update 1000000 :bucket-size 100 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Bar2") {:current-tokens 170 :last-update 1000000 :bucket-size 200 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Bar3") {:current-tokens 280 :last-update 1000000 :bucket-size 300 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Bar4") {:current-tokens 3<PASSWORD>0 :last-update 1000000 :bucket-size 400 :token-rate 1.0})) (is (= (rtg/get-token-count! ratelimit "Bar1") 60)) (is (= (rtg/get-token-count! ratelimit "Bar2") 170)) (is (= (rtg/get-token-count! ratelimit "Bar3") 280)) (testing "Flush one and make sure only that one resets" (rtg/flush! ratelimit "Bar1") (is (= (rtg/get-token-count! ratelimit "Bar1") 100)) (is (= (rtg/get-token-count! ratelimit "Bar2") 170))) ; Flush all. (testing "Flush all and make sure only the others reset" (rtg/flush! ratelimit nil) (is (= (rtg/get-token-count! ratelimit "Bar2") 200)) (is (= (rtg/get-token-count! ratelimit "Bar3") 300))))))
true
;; ;; Copyright (c) Two Sigma Open Source, LLC ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. ;; (ns cook.test.rate-limit.generic (:require [clojure.test :refer :all] [cook.rate-limit.generic :as rtg])) (deftest independent-keys-1 (let [ratelimit (rtg/make-tbf-rate-limiter {:bucket-size 60000 :tokens-replenished-per-minute 60 :expire-minutes 10000 :enforce? true})] (rtg/time-until-out-of-debt-millis! ratelimit "Foo2") (rtg/spend! ratelimit "Foo4" 100) (is (= 2 (.size (.asMap (:cache ratelimit))))))) (deftest independent-keys-2 (let [ratelimit (rtg/make-tbf-rate-limiter {:bucket-size 60000 :tokens-replenished-per-minute 60 :expire-minutes 10000 :enforce? true})] (rtg/earn-tokens! ratelimit "Foo4") (rtg/earn-tokens! ratelimit "Foo1") (rtg/time-until-out-of-debt-millis! ratelimit "Foo1") (rtg/time-until-out-of-debt-millis! ratelimit "Foo2") (rtg/spend! ratelimit "Foo3" 100) (rtg/spend! ratelimit "Foo4" 100) (is (= 4 (.size (.asMap (:cache ratelimit))))))) (deftest earning-tokens-explicit (let [ratelimit (rtg/make-tbf-rate-limiter {:bucket-size 20 :tokens-replenished-per-minute 60000 :expire-minutes 10 :enforce? true})] ;; take away the full bucket it starts with... (20 tokens) (with-redefs [rtg/current-time-in-millis (fn [] 1000000)] (rtg/spend! ratelimit "Foo1" 20) (rtg/spend! ratelimit "Foo2" 20) (rtg/spend! ratelimit "Foo3" 20) (rtg/spend! ratelimit "Foo4" 20) ;; Should be able to do this first request almost instantly. (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo1"))) (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo2"))) (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo3"))) (rtg/spend! ratelimit "Foo1" 0) (rtg/spend! ratelimit "Foo2" 10) (rtg/spend! ratelimit "Foo3" 10000) (is (= (.getIfPresent (:cache ratelimit nil) "Foo1") {:current-tokens 0 :last-update 1000000 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo2") {:current-tokens -10 :last-update 1000000 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo3") {:current-tokens -10000 :last-update 1000000 :bucket-size 20 :token-rate 1.0}))) (with-redefs [rtg/current-time-in-millis (fn [] 1000001)] ;; We've earned tokens. (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo1"))) (is (= 9 (rtg/time-until-out-of-debt-millis! ratelimit "Foo2"))) (is (= 9999 (rtg/time-until-out-of-debt-millis! ratelimit "Foo3"))) (is (= (.getIfPresent (:cache ratelimit nil) "Foo1") {:current-tokens 1 :last-update 1000001 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo2") {:current-tokens -9 :last-update 1000001 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo3") {:current-tokens -9999 :last-update 1000001 :bucket-size 20 :token-rate 1.0}))) (with-redefs [rtg/current-time-in-millis (fn [] 1000025)] ;; We've earned tokens. First two are out of debt.. Foo3 is in debt. (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo1"))) (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo2"))) (is (= 9975 (rtg/time-until-out-of-debt-millis! ratelimit "Foo3"))) (is (= (rtg/get-token-count! ratelimit "Foo1") 20)) (is (= (rtg/get-token-count! ratelimit "Foo2") 15)) (is (= (rtg/get-token-count! ratelimit "Foo3") -9975)) (is (= (.getIfPresent (:cache ratelimit nil) "Foo1") {:current-tokens 20 :last-update 1000025 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo2") {:current-tokens 15 :last-update 1000025 :bucket-size 20 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Foo3") {:current-tokens -9975 :last-update 1000025 :bucket-size 20 :token-rate 1.0})) ; Make sure Foo4 is stale. (is (= (.getIfPresent (:cache ratelimit nil) "Foo4") {:current-tokens 0 :last-update 1000000 :bucket-size 20 :token-rate 1.0})) (is (= 0 (rtg/time-until-out-of-debt-millis! ratelimit "Foo4"))) ; And not stale (is (= (.getIfPresent (:cache ratelimit nil) "Foo4") {:current-tokens 20 :last-update 1000025 :bucket-size 20 :token-rate 1.0}))))) (deftest per-key-configs (let [config {:expire-minutes 10 :enforce? true} make-tbf-fn (fn [key] (case key "Bar1" (rtg/make-token-bucket-filter 60000 100) "Bar2" (rtg/make-token-bucket-filter 60000 200) "Bar3" (rtg/make-token-bucket-filter 60000 300) "Bar4" (rtg/make-token-bucket-filter 60000 400) (print "Mismatch key " key))) ratelimit (rtg/make-generic-tbf-rate-limiter config make-tbf-fn)] (with-redefs [rtg/current-time-in-millis (fn [] 1000000)] (rtg/spend! ratelimit "Bar1" 40) (rtg/spend! ratelimit "Bar2" 30) (rtg/spend! ratelimit "Bar3" 20) (rtg/spend! ratelimit "Bar4" 10) (is (= (.getIfPresent (:cache ratelimit nil) "Bar1") {:current-tokens 60 :last-update 1000000 :bucket-size 100 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Bar2") {:current-tokens 170 :last-update 1000000 :bucket-size 200 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Bar3") {:current-tokens 280 :last-update 1000000 :bucket-size 300 :token-rate 1.0})) (is (= (.getIfPresent (:cache ratelimit nil) "Bar4") {:current-tokens 3PI:PASSWORD:<PASSWORD>END_PI0 :last-update 1000000 :bucket-size 400 :token-rate 1.0})) (is (= (rtg/get-token-count! ratelimit "Bar1") 60)) (is (= (rtg/get-token-count! ratelimit "Bar2") 170)) (is (= (rtg/get-token-count! ratelimit "Bar3") 280)) (testing "Flush one and make sure only that one resets" (rtg/flush! ratelimit "Bar1") (is (= (rtg/get-token-count! ratelimit "Bar1") 100)) (is (= (rtg/get-token-count! ratelimit "Bar2") 170))) ; Flush all. (testing "Flush all and make sure only the others reset" (rtg/flush! ratelimit nil) (is (= (rtg/get-token-count! ratelimit "Bar2") 200)) (is (= (rtg/get-token-count! ratelimit "Bar3") 300))))))
[ { "context": "\" (:nome mapa)))\n(exemplo1 {:chave \"abcd\", :nome \"Bruno\"}) ;;> \" :chave => abcd :nome => Bruno\"\n\n(defn ex", "end": 924, "score": 0.9946286082267761, "start": 919, "tag": "NAME", "value": "Bruno" }, { "context": "cd\", :nome \"Bruno\"}) ;;> \" :chave => abcd :nome => Bruno\"\n\n(defn exemplo2 [{c :chave n :nome}]\n (str\n ", "end": 963, "score": 0.9894921779632568, "start": 958, "tag": "NAME", "value": "Bruno" }, { "context": "\" :nome => \" n))\n(exemplo2 {:chave \"abcd\", :nome \"Bruno\"}) ;;> \" :chave => abcd :nome => Bruno\"\n;END:ex5\n", "end": 1088, "score": 0.983989953994751, "start": 1083, "tag": "NAME", "value": "Bruno" }, { "context": "cd\", :nome \"Bruno\"}) ;;> \" :chave => abcd :nome => Bruno\"\n;END:ex5\n\n;BEGIN:ex6\n(defn exemplo1 [mapa]\n (st", "end": 1127, "score": 0.9811682105064392, "start": 1122, "tag": "NAME", "value": "Bruno" }, { "context": " \"<sem nome>\")))\n(exemplo1 {:chave \"abcd\", :nome \"Bruno\"}) ;; => \" :chave => abcd :nome => Bruno\"\n(exempl", "end": 1308, "score": 0.9992349147796631, "start": 1303, "tag": "NAME", "value": "Bruno" }, { "context": "\", :nome \"Bruno\"}) ;; => \" :chave => abcd :nome => Bruno\"\n(exemplo1 {:nome \"Bruno\"}) ;; \" :chave => <sem c", "end": 1349, "score": 0.9995980262756348, "start": 1344, "tag": "NAME", "value": "Bruno" }, { "context": " :chave => abcd :nome => Bruno\"\n(exemplo1 {:nome \"Bruno\"}) ;; \" :chave => <sem chave> :nome => Bruno\"\n\n(d", "end": 1374, "score": 0.9990795254707336, "start": 1369, "tag": "NAME", "value": "Bruno" }, { "context": "nome \"Bruno\"}) ;; \" :chave => <sem chave> :nome => Bruno\"\n\n(defn exemplo2 [{c :chave n :nome\n ", "end": 1419, "score": 0.9993563294410706, "start": 1414, "tag": "NAME", "value": "Bruno" }, { "context": "\" :nome => \" n))\n(exemplo2 {:chave \"abcd\", :nome \"Bruno\"}) ;; => \" :chave => abcd :nome => Bruno\"\n(exempl", "end": 1598, "score": 0.9990766048431396, "start": 1593, "tag": "NAME", "value": "Bruno" }, { "context": "\", :nome \"Bruno\"}) ;; => \" :chave => abcd :nome => Bruno\"\n(exemplo2 {:chave \"abcd\"}) ;; => \" :chave => abc", "end": 1639, "score": 0.9995861649513245, "start": 1634, "tag": "NAME", "value": "Bruno" } ]
clojure/avulsos/binding-form_e_associacao_de_valores_em_clojure.clj
micalevisk/x-de-cada-dia
0
;; Desestruturação de Listas ;BEGIN:ex1 (let [lista [1 2 3] primeiro (nth lista 0) segundo (nth lista 1) terceiro (nth lista 2)] (+ primeiro segundo terceiro)) ;; => 6 (let [lista [1 2 3] [primeiro segundo terceiro] lista] (+ primeiro segundo terceiro)) ;; => 6 ;END:ex1 ;BEGIN:ex2 (let [[x] "exemplo" [y] '(1 2 3) [z] [4 5 6] [x y z]]) ;; => [\e 1 4] ;END:ex2 ;BEGIN:ex3 (let [lista [1 2 3] head (nth lista 0) tail (rest lista)] [head tail]) ;; => [1 (2 3)] (let [lista [1 2 3] [head & tail] lista] [head tail]) ;; => [1 (2 3)] ;END:ex3 ;BEGIN:ex4 (let [[a b c & resto :as letras] "Ola Mundo"] [a b c resto letras]) ;; => [\O \l \a (\space \M \u \n \d \o) "Ola Mundo"] ;END:ex4 ;; Desestruturação de Mapas ;BEGIN:ex5 (defn exemplo1 [mapa] (str " :chave => " (:chave mapa) " :nome => " (:nome mapa))) (exemplo1 {:chave "abcd", :nome "Bruno"}) ;;> " :chave => abcd :nome => Bruno" (defn exemplo2 [{c :chave n :nome}] (str " :chave => " c " :nome => " n)) (exemplo2 {:chave "abcd", :nome "Bruno"}) ;;> " :chave => abcd :nome => Bruno" ;END:ex5 ;BEGIN:ex6 (defn exemplo1 [mapa] (str " :chave => " (:chave mapa "<sem chave>") " :nome => " (:nome mapa "<sem nome>"))) (exemplo1 {:chave "abcd", :nome "Bruno"}) ;; => " :chave => abcd :nome => Bruno" (exemplo1 {:nome "Bruno"}) ;; " :chave => <sem chave> :nome => Bruno" (defn exemplo2 [{c :chave n :nome :or {c "<sem chave>" n "<sem nome>"}}] (str " :chave => " c " :nome => " n)) (exemplo2 {:chave "abcd", :nome "Bruno"}) ;; => " :chave => abcd :nome => Bruno" (exemplo2 {:chave "abcd"}) ;; => " :chave => abcd :nome => <sem nome>" ;END:ex6 ;BEGIN:ex7 (defn example [{a :a :as mapa}] [a mapa]) (example {:a 1 :b 2}) ;; => [1 {:a 1, :b 2}] ;END:ex7 ;BEGIN:ex8 (let [mapa {:a 1, 'b 2, "c" 3, :d 4} {:keys [a d]} mapa {:syms [b]} mapa {:strs [c]} mapa] [a b c d]) ;; => [1 2 3 4] ;END:ex8 ;BEGIN:ex9 (def meu-mapa {:chave "abcd" :valores [1 2 3 4 5]}) (defn terceiro-valor [{[_ _ tv] :valores}] tv) (terceiro-valor meu-mapa) ;; => 3 ;END:ex9
92266
;; Desestruturação de Listas ;BEGIN:ex1 (let [lista [1 2 3] primeiro (nth lista 0) segundo (nth lista 1) terceiro (nth lista 2)] (+ primeiro segundo terceiro)) ;; => 6 (let [lista [1 2 3] [primeiro segundo terceiro] lista] (+ primeiro segundo terceiro)) ;; => 6 ;END:ex1 ;BEGIN:ex2 (let [[x] "exemplo" [y] '(1 2 3) [z] [4 5 6] [x y z]]) ;; => [\e 1 4] ;END:ex2 ;BEGIN:ex3 (let [lista [1 2 3] head (nth lista 0) tail (rest lista)] [head tail]) ;; => [1 (2 3)] (let [lista [1 2 3] [head & tail] lista] [head tail]) ;; => [1 (2 3)] ;END:ex3 ;BEGIN:ex4 (let [[a b c & resto :as letras] "Ola Mundo"] [a b c resto letras]) ;; => [\O \l \a (\space \M \u \n \d \o) "Ola Mundo"] ;END:ex4 ;; Desestruturação de Mapas ;BEGIN:ex5 (defn exemplo1 [mapa] (str " :chave => " (:chave mapa) " :nome => " (:nome mapa))) (exemplo1 {:chave "abcd", :nome "<NAME>"}) ;;> " :chave => abcd :nome => <NAME>" (defn exemplo2 [{c :chave n :nome}] (str " :chave => " c " :nome => " n)) (exemplo2 {:chave "abcd", :nome "<NAME>"}) ;;> " :chave => abcd :nome => <NAME>" ;END:ex5 ;BEGIN:ex6 (defn exemplo1 [mapa] (str " :chave => " (:chave mapa "<sem chave>") " :nome => " (:nome mapa "<sem nome>"))) (exemplo1 {:chave "abcd", :nome "<NAME>"}) ;; => " :chave => abcd :nome => <NAME>" (exemplo1 {:nome "<NAME>"}) ;; " :chave => <sem chave> :nome => <NAME>" (defn exemplo2 [{c :chave n :nome :or {c "<sem chave>" n "<sem nome>"}}] (str " :chave => " c " :nome => " n)) (exemplo2 {:chave "abcd", :nome "<NAME>"}) ;; => " :chave => abcd :nome => <NAME>" (exemplo2 {:chave "abcd"}) ;; => " :chave => abcd :nome => <sem nome>" ;END:ex6 ;BEGIN:ex7 (defn example [{a :a :as mapa}] [a mapa]) (example {:a 1 :b 2}) ;; => [1 {:a 1, :b 2}] ;END:ex7 ;BEGIN:ex8 (let [mapa {:a 1, 'b 2, "c" 3, :d 4} {:keys [a d]} mapa {:syms [b]} mapa {:strs [c]} mapa] [a b c d]) ;; => [1 2 3 4] ;END:ex8 ;BEGIN:ex9 (def meu-mapa {:chave "abcd" :valores [1 2 3 4 5]}) (defn terceiro-valor [{[_ _ tv] :valores}] tv) (terceiro-valor meu-mapa) ;; => 3 ;END:ex9
true
;; Desestruturação de Listas ;BEGIN:ex1 (let [lista [1 2 3] primeiro (nth lista 0) segundo (nth lista 1) terceiro (nth lista 2)] (+ primeiro segundo terceiro)) ;; => 6 (let [lista [1 2 3] [primeiro segundo terceiro] lista] (+ primeiro segundo terceiro)) ;; => 6 ;END:ex1 ;BEGIN:ex2 (let [[x] "exemplo" [y] '(1 2 3) [z] [4 5 6] [x y z]]) ;; => [\e 1 4] ;END:ex2 ;BEGIN:ex3 (let [lista [1 2 3] head (nth lista 0) tail (rest lista)] [head tail]) ;; => [1 (2 3)] (let [lista [1 2 3] [head & tail] lista] [head tail]) ;; => [1 (2 3)] ;END:ex3 ;BEGIN:ex4 (let [[a b c & resto :as letras] "Ola Mundo"] [a b c resto letras]) ;; => [\O \l \a (\space \M \u \n \d \o) "Ola Mundo"] ;END:ex4 ;; Desestruturação de Mapas ;BEGIN:ex5 (defn exemplo1 [mapa] (str " :chave => " (:chave mapa) " :nome => " (:nome mapa))) (exemplo1 {:chave "abcd", :nome "PI:NAME:<NAME>END_PI"}) ;;> " :chave => abcd :nome => PI:NAME:<NAME>END_PI" (defn exemplo2 [{c :chave n :nome}] (str " :chave => " c " :nome => " n)) (exemplo2 {:chave "abcd", :nome "PI:NAME:<NAME>END_PI"}) ;;> " :chave => abcd :nome => PI:NAME:<NAME>END_PI" ;END:ex5 ;BEGIN:ex6 (defn exemplo1 [mapa] (str " :chave => " (:chave mapa "<sem chave>") " :nome => " (:nome mapa "<sem nome>"))) (exemplo1 {:chave "abcd", :nome "PI:NAME:<NAME>END_PI"}) ;; => " :chave => abcd :nome => PI:NAME:<NAME>END_PI" (exemplo1 {:nome "PI:NAME:<NAME>END_PI"}) ;; " :chave => <sem chave> :nome => PI:NAME:<NAME>END_PI" (defn exemplo2 [{c :chave n :nome :or {c "<sem chave>" n "<sem nome>"}}] (str " :chave => " c " :nome => " n)) (exemplo2 {:chave "abcd", :nome "PI:NAME:<NAME>END_PI"}) ;; => " :chave => abcd :nome => PI:NAME:<NAME>END_PI" (exemplo2 {:chave "abcd"}) ;; => " :chave => abcd :nome => <sem nome>" ;END:ex6 ;BEGIN:ex7 (defn example [{a :a :as mapa}] [a mapa]) (example {:a 1 :b 2}) ;; => [1 {:a 1, :b 2}] ;END:ex7 ;BEGIN:ex8 (let [mapa {:a 1, 'b 2, "c" 3, :d 4} {:keys [a d]} mapa {:syms [b]} mapa {:strs [c]} mapa] [a b c d]) ;; => [1 2 3 4] ;END:ex8 ;BEGIN:ex9 (def meu-mapa {:chave "abcd" :valores [1 2 3 4 5]}) (defn terceiro-valor [{[_ _ tv] :valores}] tv) (terceiro-valor meu-mapa) ;; => 3 ;END:ex9
[ { "context": ";;\n;;\n;; Copyright 2013 Netflix, Inc.\n;;\n;; Licensed under the Apache Lic", "end": 28, "score": 0.8222940564155579, "start": 25, "tag": "NAME", "value": "Net" } ]
src/main/clojure/pigpen/exec.clj
magomimmo/PigPen
1
;; ;; ;; Copyright 2013 Netflix, Inc. ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. ;; ;; (ns pigpen.exec "Contains functions related to script generation and manipulation. These are how you 'use' a PigPen query. Note: Most of these are present in pigpen.core. Normally you should use those instead. " (:require [pigpen.raw :as raw] [pigpen.pig :as pig] [pigpen.oven :as oven] [pigpen.script :as script] [pigpen.local :as local] [pigpen.viz :as viz] [taoensso.nippy :refer [freeze thaw]]) (:import [rx Observable] [rx.observables BlockingObservable])) (set! *warn-on-reflection* true) (defn generate-script "Generates a Pig script from the relation specified and returns it as a string. You can pass any relation to this and it will generate a Pig script - it doesn't have to be an output. However, if there are no store commands, the script won't do much. If you have more than one store command, use pigpen.core/script to combine them. Optionally takes a map of options. Example: (pig/generate-script (pig/store-clj \"output.clj\" foo)) (pig/generate-script {:debug \"/temp/\"} (pig/store-clj \"output.clj\" foo)) Options: :debug - Enables debugging, which writes the output of every step to a file. The value is a path to place the debug output. :dedupe - Set to false to disable command deduping. See also: pigpen.core/write-script, pigpen.core/script " {:added "0.1.0"} ([query] (generate-script {} query)) ([opts query] (->> query (oven/bake opts) script/commands->script))) (defn write-script "Generates a Pig script from the relation specified and writes it to location. You can pass any relation to this and it will generate a Pig script - it doesn't have to be an output. However, if there are no store commands, the script won't do much. If you have more than one store command, use pigpen.core/script to combine them. Optionally takes a map of options. Example: (pig/write-script \"my-script.pig\" (pig/store-clj \"output.clj\" foo)) (pig/write-script \"my-script.pig\" {:debug \"/temp/\"} (pig/store-clj \"output.clj\" foo)) Options: :debug - Enables debugging, which writes the output of every step to a file. The value is a path to place the debug output. :dedupe - Set to false to disable command deduping. See also: pigpen.core/generate-script, pigpen.core/script " {:added "0.1.0"} ([location query] (write-script location {} query)) ([location opts query] (spit location (generate-script opts query)))) (defn query->observable (^Observable [query] (query->observable {} query)) (^Observable [opts query] (->> query (oven/bake opts) (local/graph->observable)))) ;; TODO add a version that returns a multiset (defn dump "Executes a script locally and returns the resulting values as a clojure sequence. This command is very useful for unit tests. Example: (->> (pig/load-clj \"input.clj\") (pig/map inc) (pig/filter even?) (pig/dump) (clojure.core/map #(* % %)) (clojure.core/filter even?)) (deftest test-script (is (= (->> (pig/load-clj \"input.clj\") (pig/map inc) (pig/filter even?) (pig/dump)) [2 4 6]))) Note: pig/store commands return an empty set pig/script commands merge their results See also: pigpen.core/show, pigpen.core/dump&show " {:added "0.1.0"} ([query] (dump {} query)) ([opts query] (->> query (query->observable opts) local/observable->data))) (defn show "Generates a graph image for a PigPen query. This allows you to see what steps will be executed when the script is run. The image is opened in another window. This command uses a terse description for each operation. Example: (pigpen.core/show foo) See also: pigpen.core/show+, pigpen.core/dump&show " {:added "0.1.0"} [query] (->> query (oven/bake {}) (viz/view-graph viz/command->description))) (defn show+ "Generates a graph image for a PigPen query. This allows you to see what steps will be executed when the script is run. The image is opened in another window. This command uses a verbose description for each operation, including user code. Example: (pigpen.core/show+ foo) See also: pigpen.core/show, pigpen.core/dump&show+ " {:added "0.1.0"} [query] (->> query (oven/bake {}) (viz/view-graph viz/command->description+)))
77814
;; ;; ;; Copyright 2013 <NAME>flix, Inc. ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. ;; ;; (ns pigpen.exec "Contains functions related to script generation and manipulation. These are how you 'use' a PigPen query. Note: Most of these are present in pigpen.core. Normally you should use those instead. " (:require [pigpen.raw :as raw] [pigpen.pig :as pig] [pigpen.oven :as oven] [pigpen.script :as script] [pigpen.local :as local] [pigpen.viz :as viz] [taoensso.nippy :refer [freeze thaw]]) (:import [rx Observable] [rx.observables BlockingObservable])) (set! *warn-on-reflection* true) (defn generate-script "Generates a Pig script from the relation specified and returns it as a string. You can pass any relation to this and it will generate a Pig script - it doesn't have to be an output. However, if there are no store commands, the script won't do much. If you have more than one store command, use pigpen.core/script to combine them. Optionally takes a map of options. Example: (pig/generate-script (pig/store-clj \"output.clj\" foo)) (pig/generate-script {:debug \"/temp/\"} (pig/store-clj \"output.clj\" foo)) Options: :debug - Enables debugging, which writes the output of every step to a file. The value is a path to place the debug output. :dedupe - Set to false to disable command deduping. See also: pigpen.core/write-script, pigpen.core/script " {:added "0.1.0"} ([query] (generate-script {} query)) ([opts query] (->> query (oven/bake opts) script/commands->script))) (defn write-script "Generates a Pig script from the relation specified and writes it to location. You can pass any relation to this and it will generate a Pig script - it doesn't have to be an output. However, if there are no store commands, the script won't do much. If you have more than one store command, use pigpen.core/script to combine them. Optionally takes a map of options. Example: (pig/write-script \"my-script.pig\" (pig/store-clj \"output.clj\" foo)) (pig/write-script \"my-script.pig\" {:debug \"/temp/\"} (pig/store-clj \"output.clj\" foo)) Options: :debug - Enables debugging, which writes the output of every step to a file. The value is a path to place the debug output. :dedupe - Set to false to disable command deduping. See also: pigpen.core/generate-script, pigpen.core/script " {:added "0.1.0"} ([location query] (write-script location {} query)) ([location opts query] (spit location (generate-script opts query)))) (defn query->observable (^Observable [query] (query->observable {} query)) (^Observable [opts query] (->> query (oven/bake opts) (local/graph->observable)))) ;; TODO add a version that returns a multiset (defn dump "Executes a script locally and returns the resulting values as a clojure sequence. This command is very useful for unit tests. Example: (->> (pig/load-clj \"input.clj\") (pig/map inc) (pig/filter even?) (pig/dump) (clojure.core/map #(* % %)) (clojure.core/filter even?)) (deftest test-script (is (= (->> (pig/load-clj \"input.clj\") (pig/map inc) (pig/filter even?) (pig/dump)) [2 4 6]))) Note: pig/store commands return an empty set pig/script commands merge their results See also: pigpen.core/show, pigpen.core/dump&show " {:added "0.1.0"} ([query] (dump {} query)) ([opts query] (->> query (query->observable opts) local/observable->data))) (defn show "Generates a graph image for a PigPen query. This allows you to see what steps will be executed when the script is run. The image is opened in another window. This command uses a terse description for each operation. Example: (pigpen.core/show foo) See also: pigpen.core/show+, pigpen.core/dump&show " {:added "0.1.0"} [query] (->> query (oven/bake {}) (viz/view-graph viz/command->description))) (defn show+ "Generates a graph image for a PigPen query. This allows you to see what steps will be executed when the script is run. The image is opened in another window. This command uses a verbose description for each operation, including user code. Example: (pigpen.core/show+ foo) See also: pigpen.core/show, pigpen.core/dump&show+ " {:added "0.1.0"} [query] (->> query (oven/bake {}) (viz/view-graph viz/command->description+)))
true
;; ;; ;; Copyright 2013 PI:NAME:<NAME>END_PIflix, Inc. ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. ;; ;; (ns pigpen.exec "Contains functions related to script generation and manipulation. These are how you 'use' a PigPen query. Note: Most of these are present in pigpen.core. Normally you should use those instead. " (:require [pigpen.raw :as raw] [pigpen.pig :as pig] [pigpen.oven :as oven] [pigpen.script :as script] [pigpen.local :as local] [pigpen.viz :as viz] [taoensso.nippy :refer [freeze thaw]]) (:import [rx Observable] [rx.observables BlockingObservable])) (set! *warn-on-reflection* true) (defn generate-script "Generates a Pig script from the relation specified and returns it as a string. You can pass any relation to this and it will generate a Pig script - it doesn't have to be an output. However, if there are no store commands, the script won't do much. If you have more than one store command, use pigpen.core/script to combine them. Optionally takes a map of options. Example: (pig/generate-script (pig/store-clj \"output.clj\" foo)) (pig/generate-script {:debug \"/temp/\"} (pig/store-clj \"output.clj\" foo)) Options: :debug - Enables debugging, which writes the output of every step to a file. The value is a path to place the debug output. :dedupe - Set to false to disable command deduping. See also: pigpen.core/write-script, pigpen.core/script " {:added "0.1.0"} ([query] (generate-script {} query)) ([opts query] (->> query (oven/bake opts) script/commands->script))) (defn write-script "Generates a Pig script from the relation specified and writes it to location. You can pass any relation to this and it will generate a Pig script - it doesn't have to be an output. However, if there are no store commands, the script won't do much. If you have more than one store command, use pigpen.core/script to combine them. Optionally takes a map of options. Example: (pig/write-script \"my-script.pig\" (pig/store-clj \"output.clj\" foo)) (pig/write-script \"my-script.pig\" {:debug \"/temp/\"} (pig/store-clj \"output.clj\" foo)) Options: :debug - Enables debugging, which writes the output of every step to a file. The value is a path to place the debug output. :dedupe - Set to false to disable command deduping. See also: pigpen.core/generate-script, pigpen.core/script " {:added "0.1.0"} ([location query] (write-script location {} query)) ([location opts query] (spit location (generate-script opts query)))) (defn query->observable (^Observable [query] (query->observable {} query)) (^Observable [opts query] (->> query (oven/bake opts) (local/graph->observable)))) ;; TODO add a version that returns a multiset (defn dump "Executes a script locally and returns the resulting values as a clojure sequence. This command is very useful for unit tests. Example: (->> (pig/load-clj \"input.clj\") (pig/map inc) (pig/filter even?) (pig/dump) (clojure.core/map #(* % %)) (clojure.core/filter even?)) (deftest test-script (is (= (->> (pig/load-clj \"input.clj\") (pig/map inc) (pig/filter even?) (pig/dump)) [2 4 6]))) Note: pig/store commands return an empty set pig/script commands merge their results See also: pigpen.core/show, pigpen.core/dump&show " {:added "0.1.0"} ([query] (dump {} query)) ([opts query] (->> query (query->observable opts) local/observable->data))) (defn show "Generates a graph image for a PigPen query. This allows you to see what steps will be executed when the script is run. The image is opened in another window. This command uses a terse description for each operation. Example: (pigpen.core/show foo) See also: pigpen.core/show+, pigpen.core/dump&show " {:added "0.1.0"} [query] (->> query (oven/bake {}) (viz/view-graph viz/command->description))) (defn show+ "Generates a graph image for a PigPen query. This allows you to see what steps will be executed when the script is run. The image is opened in another window. This command uses a verbose description for each operation, including user code. Example: (pigpen.core/show+ foo) See also: pigpen.core/show, pigpen.core/dump&show+ " {:added "0.1.0"} [query] (->> query (oven/bake {}) (viz/view-graph viz/command->description+)))
[ { "context": ";-\n; Copyright 2009-2011 (c) Meikel Brandmeyer.\n; All rights reserved.\n;\n; Permission is hereby ", "end": 46, "score": 0.9998677968978882, "start": 29, "tag": "NAME", "value": "Meikel Brandmeyer" } ]
server/src/main/clojure/vimclojure/repl.clj
kotarak/vimclojure
1
;- ; Copyright 2009-2011 (c) Meikel Brandmeyer. ; All rights reserved. ; ; Permission is hereby granted, free of charge, to any person obtaining a copy ; of this software and associated documentation files (the "Software"), to deal ; in the Software without restriction, including without limitation the rights ; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ; copies of the Software, and to permit persons to whom the Software is ; furnished to do so, subject to the following conditions: ; ; The above copyright notice and this permission notice shall be included in ; all copies or substantial portions of the Software. ; ; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ; THE SOFTWARE. (ns vimclojure.repl (:require clojure.test) (:use [vimclojure.util :only [resolve-and-load-namespace safe-var-get stream->seq pretty-print pretty-print-causetrace]]) (:import clojure.lang.Var clojure.lang.Compiler clojure.lang.LineNumberingPushbackReader)) (def ^{:dynamic true :doc "A map holding the references to all running repls indexed by their repl id."} *repls* (atom {})) (let [id (atom 0)] (defn repl-id "Get a new Repl id." [] (swap! id inc))) (def ^{:dynamic true :doc "Set to true in the Repl if you want pretty printed results. Has no effect if clojure.contrib.pprint is not available."} *print-pretty* false) (defn add-binding [bindings sym] (if-let [v (resolve sym)] (assoc bindings v (safe-var-get v)) bindings)) (def bindable-vars `[*warn-on-reflection* *print-meta* *print-length* *print-level* *compile-path* *command-line-args* *unchecked-math* *math-context* *1 *2 *3 *e ; VimClojure specific. *print-pretty*]) (defn make-repl "Create a new Repl." ([id] (make-repl id nil)) ([id namespace] {:id id :ns (or namespace (resolve-and-load-namespace 'user)) :test-out nil :line 1 :bindings (-> (reduce add-binding {} bindable-vars) (assoc #'*compile-path* (System/getProperty "clojure.compile.path" "classes")))})) (defn start "Start a new Repl and register it in the system." [nspace] (let [id (repl-id) the-repl (make-repl id nspace)] (swap! *repls* assoc id the-repl) id)) (defn stop "Stop the Repl with the given id." [id] (when-not (@*repls* id) (throw (Exception. "Not Repl of that id or Repl currently active: " id))) (swap! *repls* dissoc id) nil) (defn root-cause "Drill down to the real root cause of the given Exception." [cause] (if-let [cause (.getCause cause)] (recur cause) cause)) (defn make-reader "Create a proxy for a LineNumberingsPushbackReader, which delegates everything, but allows to specify an offset as initial line." [reader offset] (proxy [LineNumberingPushbackReader] [reader] (getLineNumber [] (+ offset (proxy-super getLineNumber))))) (defn with-repl* "Calls thunk in the context of the Repl with the given id. id may be -1 to use a one-shot context. Sets the file line accordingly." [id nspace file line thunk] (let [the-repl (if (not= id -1) (locking *repls* (if-let [the-repl (get @*repls* id)] (do (swap! *repls* dissoc id) the-repl) (throw (Exception. (str "No Repl of that id: " id))))) (make-repl -1)) line (if (= line 0) (the-repl :line) line)] (with-bindings (merge (:bindings the-repl) ; #64: Unbox to ensure int. {Compiler/LINE (Integer. (.intValue line)) Compiler/SOURCE (.getName (java.io.File. file)) Compiler/SOURCE_PATH file #'*in* (make-reader *in* line) #'*ns* (if nspace nspace (:ns the-repl)) #'clojure.test/*test-out* (if-let [test-out (the-repl :test-out)] test-out *out*)}) (try (thunk) (finally (when (not= id -1) (swap! *repls* assoc id {:id id :ns *ns* :test-out (let [test-out clojure.test/*test-out*] (when-not (identical? test-out *out*) test-out)) :line (dec (.getLineNumber *in*)) :bindings (reduce add-binding {} bindable-vars)}))))))) (defmacro with-repl "Executes body in the context of the Repl with the given id. id may be -1 to use a one-shot context. Sets the file line accordingly." [id nspace file line & body] `(with-repl* ~id ~nspace ~file ~line (fn [] ~@body))) (defn run "Reads from *in* and evaluates the found expressions. The state of the Repl is retrieved using the given id. Output goes to *out* and *err*. The initial input line and the file are set to the supplied values. Ignore flags whether the evaluation result is saved in the star Vars." [id nspace file line ignore] (with-repl id nspace file line (try (doseq [form (stream->seq *in*)] (let [result (eval form)] ((if vimclojure.repl/*print-pretty* pretty-print prn) result) (when-not ignore (set! *3 *2) (set! *2 *1) (set! *1 result)))) (catch Throwable e (binding [*out* *err*] (if (= id -1) (pretty-print-causetrace e) (println e))) (set! *e e) nil))))
74096
;- ; Copyright 2009-2011 (c) <NAME>. ; All rights reserved. ; ; Permission is hereby granted, free of charge, to any person obtaining a copy ; of this software and associated documentation files (the "Software"), to deal ; in the Software without restriction, including without limitation the rights ; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ; copies of the Software, and to permit persons to whom the Software is ; furnished to do so, subject to the following conditions: ; ; The above copyright notice and this permission notice shall be included in ; all copies or substantial portions of the Software. ; ; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ; THE SOFTWARE. (ns vimclojure.repl (:require clojure.test) (:use [vimclojure.util :only [resolve-and-load-namespace safe-var-get stream->seq pretty-print pretty-print-causetrace]]) (:import clojure.lang.Var clojure.lang.Compiler clojure.lang.LineNumberingPushbackReader)) (def ^{:dynamic true :doc "A map holding the references to all running repls indexed by their repl id."} *repls* (atom {})) (let [id (atom 0)] (defn repl-id "Get a new Repl id." [] (swap! id inc))) (def ^{:dynamic true :doc "Set to true in the Repl if you want pretty printed results. Has no effect if clojure.contrib.pprint is not available."} *print-pretty* false) (defn add-binding [bindings sym] (if-let [v (resolve sym)] (assoc bindings v (safe-var-get v)) bindings)) (def bindable-vars `[*warn-on-reflection* *print-meta* *print-length* *print-level* *compile-path* *command-line-args* *unchecked-math* *math-context* *1 *2 *3 *e ; VimClojure specific. *print-pretty*]) (defn make-repl "Create a new Repl." ([id] (make-repl id nil)) ([id namespace] {:id id :ns (or namespace (resolve-and-load-namespace 'user)) :test-out nil :line 1 :bindings (-> (reduce add-binding {} bindable-vars) (assoc #'*compile-path* (System/getProperty "clojure.compile.path" "classes")))})) (defn start "Start a new Repl and register it in the system." [nspace] (let [id (repl-id) the-repl (make-repl id nspace)] (swap! *repls* assoc id the-repl) id)) (defn stop "Stop the Repl with the given id." [id] (when-not (@*repls* id) (throw (Exception. "Not Repl of that id or Repl currently active: " id))) (swap! *repls* dissoc id) nil) (defn root-cause "Drill down to the real root cause of the given Exception." [cause] (if-let [cause (.getCause cause)] (recur cause) cause)) (defn make-reader "Create a proxy for a LineNumberingsPushbackReader, which delegates everything, but allows to specify an offset as initial line." [reader offset] (proxy [LineNumberingPushbackReader] [reader] (getLineNumber [] (+ offset (proxy-super getLineNumber))))) (defn with-repl* "Calls thunk in the context of the Repl with the given id. id may be -1 to use a one-shot context. Sets the file line accordingly." [id nspace file line thunk] (let [the-repl (if (not= id -1) (locking *repls* (if-let [the-repl (get @*repls* id)] (do (swap! *repls* dissoc id) the-repl) (throw (Exception. (str "No Repl of that id: " id))))) (make-repl -1)) line (if (= line 0) (the-repl :line) line)] (with-bindings (merge (:bindings the-repl) ; #64: Unbox to ensure int. {Compiler/LINE (Integer. (.intValue line)) Compiler/SOURCE (.getName (java.io.File. file)) Compiler/SOURCE_PATH file #'*in* (make-reader *in* line) #'*ns* (if nspace nspace (:ns the-repl)) #'clojure.test/*test-out* (if-let [test-out (the-repl :test-out)] test-out *out*)}) (try (thunk) (finally (when (not= id -1) (swap! *repls* assoc id {:id id :ns *ns* :test-out (let [test-out clojure.test/*test-out*] (when-not (identical? test-out *out*) test-out)) :line (dec (.getLineNumber *in*)) :bindings (reduce add-binding {} bindable-vars)}))))))) (defmacro with-repl "Executes body in the context of the Repl with the given id. id may be -1 to use a one-shot context. Sets the file line accordingly." [id nspace file line & body] `(with-repl* ~id ~nspace ~file ~line (fn [] ~@body))) (defn run "Reads from *in* and evaluates the found expressions. The state of the Repl is retrieved using the given id. Output goes to *out* and *err*. The initial input line and the file are set to the supplied values. Ignore flags whether the evaluation result is saved in the star Vars." [id nspace file line ignore] (with-repl id nspace file line (try (doseq [form (stream->seq *in*)] (let [result (eval form)] ((if vimclojure.repl/*print-pretty* pretty-print prn) result) (when-not ignore (set! *3 *2) (set! *2 *1) (set! *1 result)))) (catch Throwable e (binding [*out* *err*] (if (= id -1) (pretty-print-causetrace e) (println e))) (set! *e e) nil))))
true
;- ; Copyright 2009-2011 (c) PI:NAME:<NAME>END_PI. ; All rights reserved. ; ; Permission is hereby granted, free of charge, to any person obtaining a copy ; of this software and associated documentation files (the "Software"), to deal ; in the Software without restriction, including without limitation the rights ; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ; copies of the Software, and to permit persons to whom the Software is ; furnished to do so, subject to the following conditions: ; ; The above copyright notice and this permission notice shall be included in ; all copies or substantial portions of the Software. ; ; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ; THE SOFTWARE. (ns vimclojure.repl (:require clojure.test) (:use [vimclojure.util :only [resolve-and-load-namespace safe-var-get stream->seq pretty-print pretty-print-causetrace]]) (:import clojure.lang.Var clojure.lang.Compiler clojure.lang.LineNumberingPushbackReader)) (def ^{:dynamic true :doc "A map holding the references to all running repls indexed by their repl id."} *repls* (atom {})) (let [id (atom 0)] (defn repl-id "Get a new Repl id." [] (swap! id inc))) (def ^{:dynamic true :doc "Set to true in the Repl if you want pretty printed results. Has no effect if clojure.contrib.pprint is not available."} *print-pretty* false) (defn add-binding [bindings sym] (if-let [v (resolve sym)] (assoc bindings v (safe-var-get v)) bindings)) (def bindable-vars `[*warn-on-reflection* *print-meta* *print-length* *print-level* *compile-path* *command-line-args* *unchecked-math* *math-context* *1 *2 *3 *e ; VimClojure specific. *print-pretty*]) (defn make-repl "Create a new Repl." ([id] (make-repl id nil)) ([id namespace] {:id id :ns (or namespace (resolve-and-load-namespace 'user)) :test-out nil :line 1 :bindings (-> (reduce add-binding {} bindable-vars) (assoc #'*compile-path* (System/getProperty "clojure.compile.path" "classes")))})) (defn start "Start a new Repl and register it in the system." [nspace] (let [id (repl-id) the-repl (make-repl id nspace)] (swap! *repls* assoc id the-repl) id)) (defn stop "Stop the Repl with the given id." [id] (when-not (@*repls* id) (throw (Exception. "Not Repl of that id or Repl currently active: " id))) (swap! *repls* dissoc id) nil) (defn root-cause "Drill down to the real root cause of the given Exception." [cause] (if-let [cause (.getCause cause)] (recur cause) cause)) (defn make-reader "Create a proxy for a LineNumberingsPushbackReader, which delegates everything, but allows to specify an offset as initial line." [reader offset] (proxy [LineNumberingPushbackReader] [reader] (getLineNumber [] (+ offset (proxy-super getLineNumber))))) (defn with-repl* "Calls thunk in the context of the Repl with the given id. id may be -1 to use a one-shot context. Sets the file line accordingly." [id nspace file line thunk] (let [the-repl (if (not= id -1) (locking *repls* (if-let [the-repl (get @*repls* id)] (do (swap! *repls* dissoc id) the-repl) (throw (Exception. (str "No Repl of that id: " id))))) (make-repl -1)) line (if (= line 0) (the-repl :line) line)] (with-bindings (merge (:bindings the-repl) ; #64: Unbox to ensure int. {Compiler/LINE (Integer. (.intValue line)) Compiler/SOURCE (.getName (java.io.File. file)) Compiler/SOURCE_PATH file #'*in* (make-reader *in* line) #'*ns* (if nspace nspace (:ns the-repl)) #'clojure.test/*test-out* (if-let [test-out (the-repl :test-out)] test-out *out*)}) (try (thunk) (finally (when (not= id -1) (swap! *repls* assoc id {:id id :ns *ns* :test-out (let [test-out clojure.test/*test-out*] (when-not (identical? test-out *out*) test-out)) :line (dec (.getLineNumber *in*)) :bindings (reduce add-binding {} bindable-vars)}))))))) (defmacro with-repl "Executes body in the context of the Repl with the given id. id may be -1 to use a one-shot context. Sets the file line accordingly." [id nspace file line & body] `(with-repl* ~id ~nspace ~file ~line (fn [] ~@body))) (defn run "Reads from *in* and evaluates the found expressions. The state of the Repl is retrieved using the given id. Output goes to *out* and *err*. The initial input line and the file are set to the supplied values. Ignore flags whether the evaluation result is saved in the star Vars." [id nspace file line ignore] (with-repl id nspace file line (try (doseq [form (stream->seq *in*)] (let [result (eval form)] ((if vimclojure.repl/*print-pretty* pretty-print prn) result) (when-not ignore (set! *3 *2) (set! *2 *1) (set! *1 result)))) (catch Throwable e (binding [*out* *err*] (if (= id -1) (pretty-print-causetrace e) (println e))) (set! *e e) nil))))
[ { "context": ";; Copyright © 2015-2019 Esko Luontola\n;; This software is released under the Apache Lic", "end": 38, "score": 0.999882698059082, "start": 25, "tag": "NAME", "value": "Esko Luontola" }, { "context": "ong-id\n :congregation/name \"old name\"\n :congregation/schema", "end": 8226, "score": 0.8538954257965088, "start": 8223, "tag": "NAME", "value": "old" }, { "context": "ng-id\n :congregation/name \"new name\"}\n renamed-event {:event/type :congre", "end": 8572, "score": 0.6490922570228577, "start": 8569, "tag": "NAME", "value": "new" } ]
test/territory_bro/congregation_test.clj
JessRoberts/territory_assistant
0
;; Copyright © 2015-2019 Esko Luontola ;; This software is released under the Apache License 2.0. ;; The license text is at http://www.apache.org/licenses/LICENSE-2.0 (ns territory-bro.congregation-test (:require [clojure.java.jdbc :as jdbc] [clojure.test :refer :all] [medley.core :refer [deep-merge]] [territory-bro.congregation :as congregation] [territory-bro.db :as db] [territory-bro.event-store :as event-store] [territory-bro.events :as events] [territory-bro.fixtures :refer [db-fixture event-actor-fixture]] [territory-bro.permissions :as permissions] [territory-bro.projections :as projections] [territory-bro.testutil :as testutil]) (:import (java.time Instant) (java.util UUID) (territory_bro NoPermitException ValidationException))) (use-fixtures :once (join-fixtures [db-fixture event-actor-fixture])) (defn- apply-events [events] (testutil/apply-events congregation/congregations-view events)) (deftest congregations-view-test (testing "created" (let [cong-id (UUID. 0 1) events [{:event/type :congregation.event/congregation-created :event/version 1 :congregation/id cong-id :congregation/name "Cong1 Name" :congregation/schema-name "cong1_schema"}] expected {::congregation/congregations {cong-id {:congregation/id cong-id :congregation/name "Cong1 Name" :congregation/schema-name "cong1_schema"}}}] (is (= expected (apply-events events))) (testing "> permission granted" (let [user-id (UUID. 0 2) events (conj events {:event/type :congregation.event/permission-granted :event/version 1 :congregation/id cong-id :user/id user-id :permission/id :view-congregation}) expected (deep-merge expected {::congregation/congregations {cong-id {:congregation/user-permissions {user-id #{:view-congregation}}}} ::permissions/permissions {user-id {cong-id {:view-congregation true}}}})] (is (= expected (apply-events events))) (testing "> permissing revoked" (let [events (conj events {:event/type :congregation.event/permission-revoked :event/version 1 :congregation/id cong-id :user/id user-id :permission/id :view-congregation}) expected (-> expected (deep-merge {::congregation/congregations {cong-id {:congregation/user-permissions {user-id #{}}}}}) (dissoc ::permissions/permissions))] (is (= expected (apply-events events))))))) (testing "> congregation renamed" (let [events (conj events {:event/type :congregation.event/congregation-renamed :event/version 1 :congregation/id cong-id :congregation/name "New Name"}) expected (deep-merge expected {::congregation/congregations {cong-id {:congregation/name "New Name"}}})] (is (= expected (apply-events events)))))))) (deftest congregations-test (db/with-db [conn {:isolation :read-committed}] ; creating the schema happens in another transaction (jdbc/db-set-rollback-only! conn) (testing "create congregation" (let [cong-id (congregation/create-congregation! conn "the name") congregation (congregation/get-unrestricted-congregation (projections/current-state conn) cong-id)] (is cong-id) (is (= [{:event/type :congregation.event/congregation-created :event/version 1 :event/system "test" :congregation/id cong-id :congregation/name "the name" :congregation/schema-name (:congregation/schema-name congregation)}] (->> (event-store/read-stream conn cong-id) (map #(dissoc % :event/stream-id :event/stream-revision :event/global-revision :event/time))))) (is (= cong-id (:congregation/id congregation))) (is (= "the name" (:congregation/name congregation))) (is (contains? (set (db/get-schemas conn)) (:congregation/schema-name congregation)) "should create congregation schema"))))) (deftest congregation-access-test (let [cong-id (UUID. 0 1) unrelated-cong-id (UUID. 0 2) user-id (UUID. 0 3) events [{:event/type :congregation.event/congregation-created :event/version 1 :congregation/id cong-id :congregation/name "Cong1 Name" :congregation/schema-name "cong1_schema"} {:event/type :congregation.event/congregation-created :event/version 1 :congregation/id unrelated-cong-id :congregation/name "Cong2 Name" :congregation/schema-name "cong2_schema"}] state (apply-events events)] (testing "cannot see congregations by default" (is (nil? (congregation/get-my-congregation state cong-id user-id))) (is (empty? (congregation/get-my-congregations state user-id)))) (let [events (conj events {:event/type :congregation.event/permission-granted :event/version 1 :congregation/id cong-id :user/id user-id :permission/id :view-congregation}) state (apply-events events)] (testing "can see congregations after granting access" (is (= cong-id (:congregation/id (congregation/get-my-congregation state cong-id user-id)))) (is (= [cong-id] (->> (congregation/get-my-congregations state user-id) (map :congregation/id))))) (testing "list users" (is (= [user-id] (congregation/get-users state cong-id))) (is (empty? (congregation/get-users state unrelated-cong-id)) "unrelated congregation")) (let [events (conj events {:event/type :congregation.event/permission-revoked :event/version 1 :congregation/id cong-id :user/id user-id :permission/id :view-congregation}) state (apply-events events)] (testing "cannot see congregations after revoking access" (is (nil? (congregation/get-my-congregation state cong-id user-id))) (is (empty? (congregation/get-my-congregations state user-id)))) (testing "list users" (is (empty? (congregation/get-users state cong-id))) (is (empty? (congregation/get-users state unrelated-cong-id)) "unrelated congregation")))) (testing "superadmin can access all congregations"))) ; TODO (defn- handle-command [command events injections] (let [events (events/validate-events events) new-events (congregation/handle-command command events injections)] (events/validate-events new-events))) (deftest rename-congregation-test (let [cong-id (UUID. 0 1) user-id (UUID. 0 2) injections {:check-permit (fn [_permit])} created-event {:event/type :congregation.event/congregation-created :event/version 1 :event/time (Instant/ofEpochSecond 1) :event/user user-id :congregation/id cong-id :congregation/name "old name" :congregation/schema-name ""} rename-command {:command/type :congregation.command/rename-congregation :command/time (Instant/ofEpochSecond 2) :command/user user-id :congregation/id cong-id :congregation/name "new name"} renamed-event {:event/type :congregation.event/congregation-renamed :event/version 1 :event/time (Instant/ofEpochSecond 2) :event/user user-id :congregation/id cong-id :congregation/name "new name"}] (testing "name changed" (is (= [renamed-event] (handle-command rename-command [created-event] injections)))) (testing "name not changed" (testing "from original" (let [command (assoc rename-command :congregation/name "old name")] (is (= [] (handle-command command [created-event] injections))))) (testing "from previous rename" (is (= [] (handle-command rename-command [created-event renamed-event] injections))))) (testing "checks permits" (let [injections {:check-permit (fn [permit] (is (= [:configure-congregation cong-id] permit)) (throw (NoPermitException. nil nil)))}] (is (thrown? NoPermitException (handle-command rename-command [created-event] injections))))))) (deftest add-user-to-congregation-test (let [cong-id (UUID. 0 1) admin-id (UUID. 0 2) new-user-id (UUID. 0 3) invalid-user-id (UUID. 0 4) injections {:check-permit (fn [_permit]) :user-exists? (fn [user-id] (= new-user-id user-id))} created-event {:event/type :congregation.event/congregation-created :event/version 1 :event/time (Instant/ofEpochSecond 1) :event/user admin-id :congregation/id cong-id :congregation/name "old name" :congregation/schema-name ""} add-user-command {:command/type :congregation.command/add-user :command/time (Instant/ofEpochSecond 2) :command/user admin-id :congregation/id cong-id :user/id new-user-id} access-granted-event {:event/type :congregation.event/permission-granted :event/version 1 :event/time (Instant/ofEpochSecond 2) :event/user admin-id :congregation/id cong-id :user/id new-user-id :permission/id :view-congregation}] (testing "user added" (is (= [access-granted-event] (handle-command add-user-command [created-event] injections)))) (testing "user already in congregation" (is (= [] (handle-command add-user-command [created-event access-granted-event] injections)))) (testing "user doesn't exist" (let [invalid-command (assoc add-user-command :user/id invalid-user-id)] (is (thrown-with-msg? ValidationException (testutil/re-equals "[[:no-such-user #uuid \"00000000-0000-0000-0000-000000000004\"]]") (handle-command invalid-command [created-event] injections))))) (testing "checks permits" (let [injections (assoc injections :check-permit (fn [permit] (is (= [:configure-congregation cong-id] permit)) (throw (NoPermitException. nil nil))))] (is (thrown? NoPermitException (handle-command add-user-command [created-event] injections)))))))
30465
;; Copyright © 2015-2019 <NAME> ;; This software is released under the Apache License 2.0. ;; The license text is at http://www.apache.org/licenses/LICENSE-2.0 (ns territory-bro.congregation-test (:require [clojure.java.jdbc :as jdbc] [clojure.test :refer :all] [medley.core :refer [deep-merge]] [territory-bro.congregation :as congregation] [territory-bro.db :as db] [territory-bro.event-store :as event-store] [territory-bro.events :as events] [territory-bro.fixtures :refer [db-fixture event-actor-fixture]] [territory-bro.permissions :as permissions] [territory-bro.projections :as projections] [territory-bro.testutil :as testutil]) (:import (java.time Instant) (java.util UUID) (territory_bro NoPermitException ValidationException))) (use-fixtures :once (join-fixtures [db-fixture event-actor-fixture])) (defn- apply-events [events] (testutil/apply-events congregation/congregations-view events)) (deftest congregations-view-test (testing "created" (let [cong-id (UUID. 0 1) events [{:event/type :congregation.event/congregation-created :event/version 1 :congregation/id cong-id :congregation/name "Cong1 Name" :congregation/schema-name "cong1_schema"}] expected {::congregation/congregations {cong-id {:congregation/id cong-id :congregation/name "Cong1 Name" :congregation/schema-name "cong1_schema"}}}] (is (= expected (apply-events events))) (testing "> permission granted" (let [user-id (UUID. 0 2) events (conj events {:event/type :congregation.event/permission-granted :event/version 1 :congregation/id cong-id :user/id user-id :permission/id :view-congregation}) expected (deep-merge expected {::congregation/congregations {cong-id {:congregation/user-permissions {user-id #{:view-congregation}}}} ::permissions/permissions {user-id {cong-id {:view-congregation true}}}})] (is (= expected (apply-events events))) (testing "> permissing revoked" (let [events (conj events {:event/type :congregation.event/permission-revoked :event/version 1 :congregation/id cong-id :user/id user-id :permission/id :view-congregation}) expected (-> expected (deep-merge {::congregation/congregations {cong-id {:congregation/user-permissions {user-id #{}}}}}) (dissoc ::permissions/permissions))] (is (= expected (apply-events events))))))) (testing "> congregation renamed" (let [events (conj events {:event/type :congregation.event/congregation-renamed :event/version 1 :congregation/id cong-id :congregation/name "New Name"}) expected (deep-merge expected {::congregation/congregations {cong-id {:congregation/name "New Name"}}})] (is (= expected (apply-events events)))))))) (deftest congregations-test (db/with-db [conn {:isolation :read-committed}] ; creating the schema happens in another transaction (jdbc/db-set-rollback-only! conn) (testing "create congregation" (let [cong-id (congregation/create-congregation! conn "the name") congregation (congregation/get-unrestricted-congregation (projections/current-state conn) cong-id)] (is cong-id) (is (= [{:event/type :congregation.event/congregation-created :event/version 1 :event/system "test" :congregation/id cong-id :congregation/name "the name" :congregation/schema-name (:congregation/schema-name congregation)}] (->> (event-store/read-stream conn cong-id) (map #(dissoc % :event/stream-id :event/stream-revision :event/global-revision :event/time))))) (is (= cong-id (:congregation/id congregation))) (is (= "the name" (:congregation/name congregation))) (is (contains? (set (db/get-schemas conn)) (:congregation/schema-name congregation)) "should create congregation schema"))))) (deftest congregation-access-test (let [cong-id (UUID. 0 1) unrelated-cong-id (UUID. 0 2) user-id (UUID. 0 3) events [{:event/type :congregation.event/congregation-created :event/version 1 :congregation/id cong-id :congregation/name "Cong1 Name" :congregation/schema-name "cong1_schema"} {:event/type :congregation.event/congregation-created :event/version 1 :congregation/id unrelated-cong-id :congregation/name "Cong2 Name" :congregation/schema-name "cong2_schema"}] state (apply-events events)] (testing "cannot see congregations by default" (is (nil? (congregation/get-my-congregation state cong-id user-id))) (is (empty? (congregation/get-my-congregations state user-id)))) (let [events (conj events {:event/type :congregation.event/permission-granted :event/version 1 :congregation/id cong-id :user/id user-id :permission/id :view-congregation}) state (apply-events events)] (testing "can see congregations after granting access" (is (= cong-id (:congregation/id (congregation/get-my-congregation state cong-id user-id)))) (is (= [cong-id] (->> (congregation/get-my-congregations state user-id) (map :congregation/id))))) (testing "list users" (is (= [user-id] (congregation/get-users state cong-id))) (is (empty? (congregation/get-users state unrelated-cong-id)) "unrelated congregation")) (let [events (conj events {:event/type :congregation.event/permission-revoked :event/version 1 :congregation/id cong-id :user/id user-id :permission/id :view-congregation}) state (apply-events events)] (testing "cannot see congregations after revoking access" (is (nil? (congregation/get-my-congregation state cong-id user-id))) (is (empty? (congregation/get-my-congregations state user-id)))) (testing "list users" (is (empty? (congregation/get-users state cong-id))) (is (empty? (congregation/get-users state unrelated-cong-id)) "unrelated congregation")))) (testing "superadmin can access all congregations"))) ; TODO (defn- handle-command [command events injections] (let [events (events/validate-events events) new-events (congregation/handle-command command events injections)] (events/validate-events new-events))) (deftest rename-congregation-test (let [cong-id (UUID. 0 1) user-id (UUID. 0 2) injections {:check-permit (fn [_permit])} created-event {:event/type :congregation.event/congregation-created :event/version 1 :event/time (Instant/ofEpochSecond 1) :event/user user-id :congregation/id cong-id :congregation/name "<NAME> name" :congregation/schema-name ""} rename-command {:command/type :congregation.command/rename-congregation :command/time (Instant/ofEpochSecond 2) :command/user user-id :congregation/id cong-id :congregation/name "<NAME> name"} renamed-event {:event/type :congregation.event/congregation-renamed :event/version 1 :event/time (Instant/ofEpochSecond 2) :event/user user-id :congregation/id cong-id :congregation/name "new name"}] (testing "name changed" (is (= [renamed-event] (handle-command rename-command [created-event] injections)))) (testing "name not changed" (testing "from original" (let [command (assoc rename-command :congregation/name "old name")] (is (= [] (handle-command command [created-event] injections))))) (testing "from previous rename" (is (= [] (handle-command rename-command [created-event renamed-event] injections))))) (testing "checks permits" (let [injections {:check-permit (fn [permit] (is (= [:configure-congregation cong-id] permit)) (throw (NoPermitException. nil nil)))}] (is (thrown? NoPermitException (handle-command rename-command [created-event] injections))))))) (deftest add-user-to-congregation-test (let [cong-id (UUID. 0 1) admin-id (UUID. 0 2) new-user-id (UUID. 0 3) invalid-user-id (UUID. 0 4) injections {:check-permit (fn [_permit]) :user-exists? (fn [user-id] (= new-user-id user-id))} created-event {:event/type :congregation.event/congregation-created :event/version 1 :event/time (Instant/ofEpochSecond 1) :event/user admin-id :congregation/id cong-id :congregation/name "old name" :congregation/schema-name ""} add-user-command {:command/type :congregation.command/add-user :command/time (Instant/ofEpochSecond 2) :command/user admin-id :congregation/id cong-id :user/id new-user-id} access-granted-event {:event/type :congregation.event/permission-granted :event/version 1 :event/time (Instant/ofEpochSecond 2) :event/user admin-id :congregation/id cong-id :user/id new-user-id :permission/id :view-congregation}] (testing "user added" (is (= [access-granted-event] (handle-command add-user-command [created-event] injections)))) (testing "user already in congregation" (is (= [] (handle-command add-user-command [created-event access-granted-event] injections)))) (testing "user doesn't exist" (let [invalid-command (assoc add-user-command :user/id invalid-user-id)] (is (thrown-with-msg? ValidationException (testutil/re-equals "[[:no-such-user #uuid \"00000000-0000-0000-0000-000000000004\"]]") (handle-command invalid-command [created-event] injections))))) (testing "checks permits" (let [injections (assoc injections :check-permit (fn [permit] (is (= [:configure-congregation cong-id] permit)) (throw (NoPermitException. nil nil))))] (is (thrown? NoPermitException (handle-command add-user-command [created-event] injections)))))))
true
;; Copyright © 2015-2019 PI:NAME:<NAME>END_PI ;; This software is released under the Apache License 2.0. ;; The license text is at http://www.apache.org/licenses/LICENSE-2.0 (ns territory-bro.congregation-test (:require [clojure.java.jdbc :as jdbc] [clojure.test :refer :all] [medley.core :refer [deep-merge]] [territory-bro.congregation :as congregation] [territory-bro.db :as db] [territory-bro.event-store :as event-store] [territory-bro.events :as events] [territory-bro.fixtures :refer [db-fixture event-actor-fixture]] [territory-bro.permissions :as permissions] [territory-bro.projections :as projections] [territory-bro.testutil :as testutil]) (:import (java.time Instant) (java.util UUID) (territory_bro NoPermitException ValidationException))) (use-fixtures :once (join-fixtures [db-fixture event-actor-fixture])) (defn- apply-events [events] (testutil/apply-events congregation/congregations-view events)) (deftest congregations-view-test (testing "created" (let [cong-id (UUID. 0 1) events [{:event/type :congregation.event/congregation-created :event/version 1 :congregation/id cong-id :congregation/name "Cong1 Name" :congregation/schema-name "cong1_schema"}] expected {::congregation/congregations {cong-id {:congregation/id cong-id :congregation/name "Cong1 Name" :congregation/schema-name "cong1_schema"}}}] (is (= expected (apply-events events))) (testing "> permission granted" (let [user-id (UUID. 0 2) events (conj events {:event/type :congregation.event/permission-granted :event/version 1 :congregation/id cong-id :user/id user-id :permission/id :view-congregation}) expected (deep-merge expected {::congregation/congregations {cong-id {:congregation/user-permissions {user-id #{:view-congregation}}}} ::permissions/permissions {user-id {cong-id {:view-congregation true}}}})] (is (= expected (apply-events events))) (testing "> permissing revoked" (let [events (conj events {:event/type :congregation.event/permission-revoked :event/version 1 :congregation/id cong-id :user/id user-id :permission/id :view-congregation}) expected (-> expected (deep-merge {::congregation/congregations {cong-id {:congregation/user-permissions {user-id #{}}}}}) (dissoc ::permissions/permissions))] (is (= expected (apply-events events))))))) (testing "> congregation renamed" (let [events (conj events {:event/type :congregation.event/congregation-renamed :event/version 1 :congregation/id cong-id :congregation/name "New Name"}) expected (deep-merge expected {::congregation/congregations {cong-id {:congregation/name "New Name"}}})] (is (= expected (apply-events events)))))))) (deftest congregations-test (db/with-db [conn {:isolation :read-committed}] ; creating the schema happens in another transaction (jdbc/db-set-rollback-only! conn) (testing "create congregation" (let [cong-id (congregation/create-congregation! conn "the name") congregation (congregation/get-unrestricted-congregation (projections/current-state conn) cong-id)] (is cong-id) (is (= [{:event/type :congregation.event/congregation-created :event/version 1 :event/system "test" :congregation/id cong-id :congregation/name "the name" :congregation/schema-name (:congregation/schema-name congregation)}] (->> (event-store/read-stream conn cong-id) (map #(dissoc % :event/stream-id :event/stream-revision :event/global-revision :event/time))))) (is (= cong-id (:congregation/id congregation))) (is (= "the name" (:congregation/name congregation))) (is (contains? (set (db/get-schemas conn)) (:congregation/schema-name congregation)) "should create congregation schema"))))) (deftest congregation-access-test (let [cong-id (UUID. 0 1) unrelated-cong-id (UUID. 0 2) user-id (UUID. 0 3) events [{:event/type :congregation.event/congregation-created :event/version 1 :congregation/id cong-id :congregation/name "Cong1 Name" :congregation/schema-name "cong1_schema"} {:event/type :congregation.event/congregation-created :event/version 1 :congregation/id unrelated-cong-id :congregation/name "Cong2 Name" :congregation/schema-name "cong2_schema"}] state (apply-events events)] (testing "cannot see congregations by default" (is (nil? (congregation/get-my-congregation state cong-id user-id))) (is (empty? (congregation/get-my-congregations state user-id)))) (let [events (conj events {:event/type :congregation.event/permission-granted :event/version 1 :congregation/id cong-id :user/id user-id :permission/id :view-congregation}) state (apply-events events)] (testing "can see congregations after granting access" (is (= cong-id (:congregation/id (congregation/get-my-congregation state cong-id user-id)))) (is (= [cong-id] (->> (congregation/get-my-congregations state user-id) (map :congregation/id))))) (testing "list users" (is (= [user-id] (congregation/get-users state cong-id))) (is (empty? (congregation/get-users state unrelated-cong-id)) "unrelated congregation")) (let [events (conj events {:event/type :congregation.event/permission-revoked :event/version 1 :congregation/id cong-id :user/id user-id :permission/id :view-congregation}) state (apply-events events)] (testing "cannot see congregations after revoking access" (is (nil? (congregation/get-my-congregation state cong-id user-id))) (is (empty? (congregation/get-my-congregations state user-id)))) (testing "list users" (is (empty? (congregation/get-users state cong-id))) (is (empty? (congregation/get-users state unrelated-cong-id)) "unrelated congregation")))) (testing "superadmin can access all congregations"))) ; TODO (defn- handle-command [command events injections] (let [events (events/validate-events events) new-events (congregation/handle-command command events injections)] (events/validate-events new-events))) (deftest rename-congregation-test (let [cong-id (UUID. 0 1) user-id (UUID. 0 2) injections {:check-permit (fn [_permit])} created-event {:event/type :congregation.event/congregation-created :event/version 1 :event/time (Instant/ofEpochSecond 1) :event/user user-id :congregation/id cong-id :congregation/name "PI:NAME:<NAME>END_PI name" :congregation/schema-name ""} rename-command {:command/type :congregation.command/rename-congregation :command/time (Instant/ofEpochSecond 2) :command/user user-id :congregation/id cong-id :congregation/name "PI:NAME:<NAME>END_PI name"} renamed-event {:event/type :congregation.event/congregation-renamed :event/version 1 :event/time (Instant/ofEpochSecond 2) :event/user user-id :congregation/id cong-id :congregation/name "new name"}] (testing "name changed" (is (= [renamed-event] (handle-command rename-command [created-event] injections)))) (testing "name not changed" (testing "from original" (let [command (assoc rename-command :congregation/name "old name")] (is (= [] (handle-command command [created-event] injections))))) (testing "from previous rename" (is (= [] (handle-command rename-command [created-event renamed-event] injections))))) (testing "checks permits" (let [injections {:check-permit (fn [permit] (is (= [:configure-congregation cong-id] permit)) (throw (NoPermitException. nil nil)))}] (is (thrown? NoPermitException (handle-command rename-command [created-event] injections))))))) (deftest add-user-to-congregation-test (let [cong-id (UUID. 0 1) admin-id (UUID. 0 2) new-user-id (UUID. 0 3) invalid-user-id (UUID. 0 4) injections {:check-permit (fn [_permit]) :user-exists? (fn [user-id] (= new-user-id user-id))} created-event {:event/type :congregation.event/congregation-created :event/version 1 :event/time (Instant/ofEpochSecond 1) :event/user admin-id :congregation/id cong-id :congregation/name "old name" :congregation/schema-name ""} add-user-command {:command/type :congregation.command/add-user :command/time (Instant/ofEpochSecond 2) :command/user admin-id :congregation/id cong-id :user/id new-user-id} access-granted-event {:event/type :congregation.event/permission-granted :event/version 1 :event/time (Instant/ofEpochSecond 2) :event/user admin-id :congregation/id cong-id :user/id new-user-id :permission/id :view-congregation}] (testing "user added" (is (= [access-granted-event] (handle-command add-user-command [created-event] injections)))) (testing "user already in congregation" (is (= [] (handle-command add-user-command [created-event access-granted-event] injections)))) (testing "user doesn't exist" (let [invalid-command (assoc add-user-command :user/id invalid-user-id)] (is (thrown-with-msg? ValidationException (testutil/re-equals "[[:no-such-user #uuid \"00000000-0000-0000-0000-000000000004\"]]") (handle-command invalid-command [created-event] injections))))) (testing "checks permits" (let [injections (assoc injections :check-permit (fn [permit] (is (= [:configure-congregation cong-id] permit)) (throw (NoPermitException. nil nil))))] (is (thrown? NoPermitException (handle-command add-user-command [created-event] injections)))))))
[ { "context": ";\n; Copyright © 2013 Sebastian Hoß <mail@shoss.de>\n; This work is free. You can redi", "end": 34, "score": 0.9998635053634644, "start": 21, "tag": "NAME", "value": "Sebastian Hoß" }, { "context": ";\n; Copyright © 2013 Sebastian Hoß <mail@shoss.de>\n; This work is free. You can redistribute it and", "end": 49, "score": 0.999930202960968, "start": 36, "tag": "EMAIL", "value": "mail@shoss.de" } ]
src/bootstrap/clojure/bootstrap.clj
sebhoss/finj
30
; ; Copyright © 2013 Sebastian Hoß <mail@shoss.de> ; This work is free. You can redistribute it and/or modify it under the ; terms of the Do What The Fuck You Want To Public License, Version 2, ; as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. ; (require '[bootstrap.repl :refer :all]) ; Load project namespaces (load-ns-in-dir-aliased "src/main/clojure") (load-ns-in-dir-aliased "src/test/clojure") ; 'clojure.test', 'clojure.repl' and 'clojure.tools.namespace.repl' support (load-helpers) ; Call (rat) to run all tests, or (rat "loan") to run only tests in that namespace (def rat (test-shortcut #"finj.*-test"))
58394
; ; Copyright © 2013 <NAME> <<EMAIL>> ; This work is free. You can redistribute it and/or modify it under the ; terms of the Do What The Fuck You Want To Public License, Version 2, ; as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. ; (require '[bootstrap.repl :refer :all]) ; Load project namespaces (load-ns-in-dir-aliased "src/main/clojure") (load-ns-in-dir-aliased "src/test/clojure") ; 'clojure.test', 'clojure.repl' and 'clojure.tools.namespace.repl' support (load-helpers) ; Call (rat) to run all tests, or (rat "loan") to run only tests in that namespace (def rat (test-shortcut #"finj.*-test"))
true
; ; Copyright © 2013 PI:NAME:<NAME>END_PI <PI:EMAIL:<EMAIL>END_PI> ; This work is free. You can redistribute it and/or modify it under the ; terms of the Do What The Fuck You Want To Public License, Version 2, ; as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. ; (require '[bootstrap.repl :refer :all]) ; Load project namespaces (load-ns-in-dir-aliased "src/main/clojure") (load-ns-in-dir-aliased "src/test/clojure") ; 'clojure.test', 'clojure.repl' and 'clojure.tools.namespace.repl' support (load-helpers) ; Call (rat) to run all tests, or (rat "loan") to run only tests in that namespace (def rat (test-shortcut #"finj.*-test"))
[ { "context": " (replace-vars \"I love my ${pet}\" {:human \"Abraham Lincoln\"}))))\n (testing \"key with nil value\"\n (is (= ", "end": 1248, "score": 0.9997944235801697, "start": 1233, "tag": "NAME", "value": "Abraham Lincoln" } ]
test/unit/core_test.clj
vitobasso/html-scraper
0
(ns unit.core-test (:require [clojure.test :refer :all] [scraper.core :refer :all] [scraper.config :as config])) (deftest test-regex-extract (testing "extract one thing" (is (= "£10" (regex-extract {:find #"\D*(\d+)\D*", :replace "£${1}"} "it costs 10 pounds")))) (testing "extract two things" (is (= "£10.50" (regex-extract {:find #"\D*(\d+)\D*(\d+)\D*", :replace "£${1}.${2}"} "it costs 10 pounds and 50 pence")))) (testing "if no config, bypass" (is (= "bla bla" (regex-extract nil "bla bla")))) (testing "nil on mismatch" (is (= nil (regex-extract {:find #"(\d+)" :replace "${1}"} "no numbers")))) (testing "if more regex groups than replace vars, ignore the extra groups" (is (= "750" (regex-extract {:find #"(\d+([\.,]\d+)?)" :replace "${1}"} "£750 pcm")))) ;;TODO escaped $ ;;TODO config missing :find or :replace ) (deftest test-replace-vars (testing "replace two vars" (is (= "I love my cat too much" (replace-vars "I love my ${pet} ${amount}" {:pet "cat", :amount "too much"})))) (testing "wrong keys" (is (= "I love my ${pet}" (replace-vars "I love my ${pet}" {:human "Abraham Lincoln"})))) (testing "key with nil value" (is (= "I love my ${pet}" (replace-vars "I love my ${pet}" {:human nil})))) (testing "nil map" (is (= "I love my ${pet}" (replace-vars "I love my ${pet}" nil)))) (testing "if no vars, ignore the keys" (is (= "Nobody ain't got time for replacements" (replace-vars "Nobody ain't got time for replacements" {:key "put this please"})))) (testing "ignore extra keys" (is (= "just one key so be it please" (replace-vars "just one key ${here} please" {:here "so be it" :there "put this too"}))))) (deftest test-replace-indexes (testing "replace two place holders" (is (= "I love my cat and my other cat" (replace-indexes "I love my ${1} and my ${2}" ["cat" "other cat"])))) (testing "if missing values, replace as far as possible" (is (= "I love my cat and my ${2}" (replace-indexes "I love my ${1} and my ${2}" ["cat"])))) (testing "if nil values, do nothing" (is (= "I love my ${1} and my ${2}" (replace-indexes "I love my ${1} and my ${2}" nil)))) (testing "value may contain a $" (is (= "oh no, there's a $ in my string" (replace-indexes "${1}" ["oh no, there's a $ in my string"]))))) (deftest test-extract-value (testing "handles nil" (is (nil? (extract-value (config/parse-property {:select "div"}) nil)))) (testing "handles string" (is (nil? (extract-value (config/parse-property {:select "div"}) "")))) (testing "handles has on nil" (is (nil? (extract-value (config/parse-property {:select ":has(div)"}) nil)))) (testing "handles has on string" (is (nil? (extract-value (config/parse-property {:select ":has(div)"}) "")))) (testing "handles has on nil content" (is (nil? (extract-value (config/parse-property {:select ":has(div)"}) {:type :element, :attrs nil, :tag :div, :content nil} ))))) (def item-html (parse-html " <div id='foo'> <p class='a-name other-class'>the name</p> <p>text in the 2nd p tag</p> <img src='image.jpg'/> some text </div>")) (deftest test-scrape-property (testing "class and content" (let [src {:name "name", :select ".a-name"} config (config/parse-named-property src)] (is (= {:name "the name"} (scrape-property config item-html))))) (testing "id and property" (let [src {:name "image", :select "#foo img", :extract "attrs src"} config (config/parse-named-property src)] (is (= {:image "image.jpg"} (scrape-property config item-html))))) (testing "text with element siblings" (let [src {:name "name", :select "#foo"} config (config/parse-named-property src)] (is (= {:name "some text"} (scrape-property config item-html))))) (testing "matching regex" (let [src {:name "name", :select "p", :regex {:find "(.*2nd.*)"}} config (config/parse-named-property src)] (is (= {:name "text in the 2nd p tag"} (scrape-property config item-html))))) (testing "matching regex fails" (let [src {:name "name", :select "p", :regex {:find "wont match this"}} config (config/parse-named-property src)] (is (= {:name nil} (scrape-property config item-html))))) (testing "match and replace regex" (let [src {:name "name", :select "p", :regex {:find "text in the (.+)", :replace "${1}"}} config (config/parse-named-property src)] (is (= {:name "2nd p tag"} (scrape-property config item-html))))) (testing "empty if nil config" (let [config nil] (is (= {} (scrape-property config item-html)))))) (def property-table-html (parse-html " <table id='properties'> <tr> <td class='label'>Ram</td> <td>16GB</td> </tr> <tr> <td class='label'>Disk</td> <td>1TB</td> </tr> </div>")) (deftest test-scrape-property-table (testing "happy case" (let [src {:pair-select "#properties tr", :label {:select "td.label"}, :value {:select "td.label + td"}} config (config/parse-property-table src)] (is (= {:Ram "16GB", :Disk "1TB"} (scrape-property-table config property-table-html))))) (testing "nil values" (let [src {:pair-select "#properties tr", :label {:select "td.label"}, :value {:select "td.absentclass"}} config (config/parse-property-table src)] (is (= {:Ram nil, :Disk nil} (scrape-property-table config property-table-html))))) (testing "skip empty labels" (let [src {:pair-select "#properties tr", :label {:select "td.absentclass"}, :value {:select "td.label + td"}} config (config/parse-property-table src)] (is (= {} (scrape-property-table config property-table-html))))) (testing "empty if nil config" (let [config nil] (is (= {} (scrape-property-table config property-table-html)))))) (deftest test-scrape-item (testing "config having properties" (let [src {:properties [{:name "label", :select ".label"}]} config (config/parse-detail-page src)] (is (= {:label "Ram"} (scrape-item config property-table-html))))) (testing "config having property-tables" (let [src {:property-tables [{:pair-select "#properties tr", :label {:select "td.label"}, :value {:select "td.label + td"}}]} config (config/parse-detail-page src)] (is (= {:Ram "16GB", :Disk "1TB"} (scrape-item config property-table-html))))) (testing "config having both properties and property-tables" (let [src {:properties [{:name "label", :select ".label"}] :property-tables [{:pair-select "#properties tr", :label {:select "td.label"}, :value {:select "td.label + td"}}]} config (config/parse-detail-page src)] (is (= {:label "Ram" :Ram "16GB", :Disk "1TB"} (scrape-item config property-table-html)))))) (def list-html (parse-html " <div> <p id='a'><span>item 1</span></p> <p id='b'><span>item 2</span></p> <p id='c'><span>item 3</span></p> </div>")) (def two-column-html (parse-html " <div> <p id='a'><span>item 1</span></p> <p id='b'><span>item 2</span></p> </div> <div> <p id='c'><span>item 3</span></p> <p id='d'><span>item 4</span></p> </div>")) (deftest test-scrape-items (testing "item select" (let [src {:item-select "p" :properties [{:name "name", :select "span"} ;TODO rm span, use root selector? {:name "id", :select "p", :extract "attrs id"}]} config (config/parse-list-page src)] (is (= [{:name "item 1", :id "a"} {:name "item 2", :id "b"} {:name "item 3", :id "c"}] (scrape-items config list-html))))) (testing "item split" (let [src {:container-select "div" :item-split "(?=<p)" :properties [{:name "name", :select "span"} {:name "id", :select "p", :extract "attrs id"}]} config (config/parse-list-page src)] (is (= [{:name "item 1", :id "a"} {:name "item 2", :id "b"} {:name "item 3", :id "c"}] (scrape-items config list-html))))) (testing "item split with two containers" (let [src {:container-select "div" :item-split "(?=<p)" :properties [{:name "name", :select "span"} {:name "id", :select "p", :extract "attrs id"}]} config (config/parse-list-page src)] (is (= [{:name "item 1", :id "a"} {:name "item 2", :id "b"} {:name "item 3", :id "c"} {:name "item 4", :id "d"}] (scrape-items config two-column-html))))))
54511
(ns unit.core-test (:require [clojure.test :refer :all] [scraper.core :refer :all] [scraper.config :as config])) (deftest test-regex-extract (testing "extract one thing" (is (= "£10" (regex-extract {:find #"\D*(\d+)\D*", :replace "£${1}"} "it costs 10 pounds")))) (testing "extract two things" (is (= "£10.50" (regex-extract {:find #"\D*(\d+)\D*(\d+)\D*", :replace "£${1}.${2}"} "it costs 10 pounds and 50 pence")))) (testing "if no config, bypass" (is (= "bla bla" (regex-extract nil "bla bla")))) (testing "nil on mismatch" (is (= nil (regex-extract {:find #"(\d+)" :replace "${1}"} "no numbers")))) (testing "if more regex groups than replace vars, ignore the extra groups" (is (= "750" (regex-extract {:find #"(\d+([\.,]\d+)?)" :replace "${1}"} "£750 pcm")))) ;;TODO escaped $ ;;TODO config missing :find or :replace ) (deftest test-replace-vars (testing "replace two vars" (is (= "I love my cat too much" (replace-vars "I love my ${pet} ${amount}" {:pet "cat", :amount "too much"})))) (testing "wrong keys" (is (= "I love my ${pet}" (replace-vars "I love my ${pet}" {:human "<NAME>"})))) (testing "key with nil value" (is (= "I love my ${pet}" (replace-vars "I love my ${pet}" {:human nil})))) (testing "nil map" (is (= "I love my ${pet}" (replace-vars "I love my ${pet}" nil)))) (testing "if no vars, ignore the keys" (is (= "Nobody ain't got time for replacements" (replace-vars "Nobody ain't got time for replacements" {:key "put this please"})))) (testing "ignore extra keys" (is (= "just one key so be it please" (replace-vars "just one key ${here} please" {:here "so be it" :there "put this too"}))))) (deftest test-replace-indexes (testing "replace two place holders" (is (= "I love my cat and my other cat" (replace-indexes "I love my ${1} and my ${2}" ["cat" "other cat"])))) (testing "if missing values, replace as far as possible" (is (= "I love my cat and my ${2}" (replace-indexes "I love my ${1} and my ${2}" ["cat"])))) (testing "if nil values, do nothing" (is (= "I love my ${1} and my ${2}" (replace-indexes "I love my ${1} and my ${2}" nil)))) (testing "value may contain a $" (is (= "oh no, there's a $ in my string" (replace-indexes "${1}" ["oh no, there's a $ in my string"]))))) (deftest test-extract-value (testing "handles nil" (is (nil? (extract-value (config/parse-property {:select "div"}) nil)))) (testing "handles string" (is (nil? (extract-value (config/parse-property {:select "div"}) "")))) (testing "handles has on nil" (is (nil? (extract-value (config/parse-property {:select ":has(div)"}) nil)))) (testing "handles has on string" (is (nil? (extract-value (config/parse-property {:select ":has(div)"}) "")))) (testing "handles has on nil content" (is (nil? (extract-value (config/parse-property {:select ":has(div)"}) {:type :element, :attrs nil, :tag :div, :content nil} ))))) (def item-html (parse-html " <div id='foo'> <p class='a-name other-class'>the name</p> <p>text in the 2nd p tag</p> <img src='image.jpg'/> some text </div>")) (deftest test-scrape-property (testing "class and content" (let [src {:name "name", :select ".a-name"} config (config/parse-named-property src)] (is (= {:name "the name"} (scrape-property config item-html))))) (testing "id and property" (let [src {:name "image", :select "#foo img", :extract "attrs src"} config (config/parse-named-property src)] (is (= {:image "image.jpg"} (scrape-property config item-html))))) (testing "text with element siblings" (let [src {:name "name", :select "#foo"} config (config/parse-named-property src)] (is (= {:name "some text"} (scrape-property config item-html))))) (testing "matching regex" (let [src {:name "name", :select "p", :regex {:find "(.*2nd.*)"}} config (config/parse-named-property src)] (is (= {:name "text in the 2nd p tag"} (scrape-property config item-html))))) (testing "matching regex fails" (let [src {:name "name", :select "p", :regex {:find "wont match this"}} config (config/parse-named-property src)] (is (= {:name nil} (scrape-property config item-html))))) (testing "match and replace regex" (let [src {:name "name", :select "p", :regex {:find "text in the (.+)", :replace "${1}"}} config (config/parse-named-property src)] (is (= {:name "2nd p tag"} (scrape-property config item-html))))) (testing "empty if nil config" (let [config nil] (is (= {} (scrape-property config item-html)))))) (def property-table-html (parse-html " <table id='properties'> <tr> <td class='label'>Ram</td> <td>16GB</td> </tr> <tr> <td class='label'>Disk</td> <td>1TB</td> </tr> </div>")) (deftest test-scrape-property-table (testing "happy case" (let [src {:pair-select "#properties tr", :label {:select "td.label"}, :value {:select "td.label + td"}} config (config/parse-property-table src)] (is (= {:Ram "16GB", :Disk "1TB"} (scrape-property-table config property-table-html))))) (testing "nil values" (let [src {:pair-select "#properties tr", :label {:select "td.label"}, :value {:select "td.absentclass"}} config (config/parse-property-table src)] (is (= {:Ram nil, :Disk nil} (scrape-property-table config property-table-html))))) (testing "skip empty labels" (let [src {:pair-select "#properties tr", :label {:select "td.absentclass"}, :value {:select "td.label + td"}} config (config/parse-property-table src)] (is (= {} (scrape-property-table config property-table-html))))) (testing "empty if nil config" (let [config nil] (is (= {} (scrape-property-table config property-table-html)))))) (deftest test-scrape-item (testing "config having properties" (let [src {:properties [{:name "label", :select ".label"}]} config (config/parse-detail-page src)] (is (= {:label "Ram"} (scrape-item config property-table-html))))) (testing "config having property-tables" (let [src {:property-tables [{:pair-select "#properties tr", :label {:select "td.label"}, :value {:select "td.label + td"}}]} config (config/parse-detail-page src)] (is (= {:Ram "16GB", :Disk "1TB"} (scrape-item config property-table-html))))) (testing "config having both properties and property-tables" (let [src {:properties [{:name "label", :select ".label"}] :property-tables [{:pair-select "#properties tr", :label {:select "td.label"}, :value {:select "td.label + td"}}]} config (config/parse-detail-page src)] (is (= {:label "Ram" :Ram "16GB", :Disk "1TB"} (scrape-item config property-table-html)))))) (def list-html (parse-html " <div> <p id='a'><span>item 1</span></p> <p id='b'><span>item 2</span></p> <p id='c'><span>item 3</span></p> </div>")) (def two-column-html (parse-html " <div> <p id='a'><span>item 1</span></p> <p id='b'><span>item 2</span></p> </div> <div> <p id='c'><span>item 3</span></p> <p id='d'><span>item 4</span></p> </div>")) (deftest test-scrape-items (testing "item select" (let [src {:item-select "p" :properties [{:name "name", :select "span"} ;TODO rm span, use root selector? {:name "id", :select "p", :extract "attrs id"}]} config (config/parse-list-page src)] (is (= [{:name "item 1", :id "a"} {:name "item 2", :id "b"} {:name "item 3", :id "c"}] (scrape-items config list-html))))) (testing "item split" (let [src {:container-select "div" :item-split "(?=<p)" :properties [{:name "name", :select "span"} {:name "id", :select "p", :extract "attrs id"}]} config (config/parse-list-page src)] (is (= [{:name "item 1", :id "a"} {:name "item 2", :id "b"} {:name "item 3", :id "c"}] (scrape-items config list-html))))) (testing "item split with two containers" (let [src {:container-select "div" :item-split "(?=<p)" :properties [{:name "name", :select "span"} {:name "id", :select "p", :extract "attrs id"}]} config (config/parse-list-page src)] (is (= [{:name "item 1", :id "a"} {:name "item 2", :id "b"} {:name "item 3", :id "c"} {:name "item 4", :id "d"}] (scrape-items config two-column-html))))))
true
(ns unit.core-test (:require [clojure.test :refer :all] [scraper.core :refer :all] [scraper.config :as config])) (deftest test-regex-extract (testing "extract one thing" (is (= "£10" (regex-extract {:find #"\D*(\d+)\D*", :replace "£${1}"} "it costs 10 pounds")))) (testing "extract two things" (is (= "£10.50" (regex-extract {:find #"\D*(\d+)\D*(\d+)\D*", :replace "£${1}.${2}"} "it costs 10 pounds and 50 pence")))) (testing "if no config, bypass" (is (= "bla bla" (regex-extract nil "bla bla")))) (testing "nil on mismatch" (is (= nil (regex-extract {:find #"(\d+)" :replace "${1}"} "no numbers")))) (testing "if more regex groups than replace vars, ignore the extra groups" (is (= "750" (regex-extract {:find #"(\d+([\.,]\d+)?)" :replace "${1}"} "£750 pcm")))) ;;TODO escaped $ ;;TODO config missing :find or :replace ) (deftest test-replace-vars (testing "replace two vars" (is (= "I love my cat too much" (replace-vars "I love my ${pet} ${amount}" {:pet "cat", :amount "too much"})))) (testing "wrong keys" (is (= "I love my ${pet}" (replace-vars "I love my ${pet}" {:human "PI:NAME:<NAME>END_PI"})))) (testing "key with nil value" (is (= "I love my ${pet}" (replace-vars "I love my ${pet}" {:human nil})))) (testing "nil map" (is (= "I love my ${pet}" (replace-vars "I love my ${pet}" nil)))) (testing "if no vars, ignore the keys" (is (= "Nobody ain't got time for replacements" (replace-vars "Nobody ain't got time for replacements" {:key "put this please"})))) (testing "ignore extra keys" (is (= "just one key so be it please" (replace-vars "just one key ${here} please" {:here "so be it" :there "put this too"}))))) (deftest test-replace-indexes (testing "replace two place holders" (is (= "I love my cat and my other cat" (replace-indexes "I love my ${1} and my ${2}" ["cat" "other cat"])))) (testing "if missing values, replace as far as possible" (is (= "I love my cat and my ${2}" (replace-indexes "I love my ${1} and my ${2}" ["cat"])))) (testing "if nil values, do nothing" (is (= "I love my ${1} and my ${2}" (replace-indexes "I love my ${1} and my ${2}" nil)))) (testing "value may contain a $" (is (= "oh no, there's a $ in my string" (replace-indexes "${1}" ["oh no, there's a $ in my string"]))))) (deftest test-extract-value (testing "handles nil" (is (nil? (extract-value (config/parse-property {:select "div"}) nil)))) (testing "handles string" (is (nil? (extract-value (config/parse-property {:select "div"}) "")))) (testing "handles has on nil" (is (nil? (extract-value (config/parse-property {:select ":has(div)"}) nil)))) (testing "handles has on string" (is (nil? (extract-value (config/parse-property {:select ":has(div)"}) "")))) (testing "handles has on nil content" (is (nil? (extract-value (config/parse-property {:select ":has(div)"}) {:type :element, :attrs nil, :tag :div, :content nil} ))))) (def item-html (parse-html " <div id='foo'> <p class='a-name other-class'>the name</p> <p>text in the 2nd p tag</p> <img src='image.jpg'/> some text </div>")) (deftest test-scrape-property (testing "class and content" (let [src {:name "name", :select ".a-name"} config (config/parse-named-property src)] (is (= {:name "the name"} (scrape-property config item-html))))) (testing "id and property" (let [src {:name "image", :select "#foo img", :extract "attrs src"} config (config/parse-named-property src)] (is (= {:image "image.jpg"} (scrape-property config item-html))))) (testing "text with element siblings" (let [src {:name "name", :select "#foo"} config (config/parse-named-property src)] (is (= {:name "some text"} (scrape-property config item-html))))) (testing "matching regex" (let [src {:name "name", :select "p", :regex {:find "(.*2nd.*)"}} config (config/parse-named-property src)] (is (= {:name "text in the 2nd p tag"} (scrape-property config item-html))))) (testing "matching regex fails" (let [src {:name "name", :select "p", :regex {:find "wont match this"}} config (config/parse-named-property src)] (is (= {:name nil} (scrape-property config item-html))))) (testing "match and replace regex" (let [src {:name "name", :select "p", :regex {:find "text in the (.+)", :replace "${1}"}} config (config/parse-named-property src)] (is (= {:name "2nd p tag"} (scrape-property config item-html))))) (testing "empty if nil config" (let [config nil] (is (= {} (scrape-property config item-html)))))) (def property-table-html (parse-html " <table id='properties'> <tr> <td class='label'>Ram</td> <td>16GB</td> </tr> <tr> <td class='label'>Disk</td> <td>1TB</td> </tr> </div>")) (deftest test-scrape-property-table (testing "happy case" (let [src {:pair-select "#properties tr", :label {:select "td.label"}, :value {:select "td.label + td"}} config (config/parse-property-table src)] (is (= {:Ram "16GB", :Disk "1TB"} (scrape-property-table config property-table-html))))) (testing "nil values" (let [src {:pair-select "#properties tr", :label {:select "td.label"}, :value {:select "td.absentclass"}} config (config/parse-property-table src)] (is (= {:Ram nil, :Disk nil} (scrape-property-table config property-table-html))))) (testing "skip empty labels" (let [src {:pair-select "#properties tr", :label {:select "td.absentclass"}, :value {:select "td.label + td"}} config (config/parse-property-table src)] (is (= {} (scrape-property-table config property-table-html))))) (testing "empty if nil config" (let [config nil] (is (= {} (scrape-property-table config property-table-html)))))) (deftest test-scrape-item (testing "config having properties" (let [src {:properties [{:name "label", :select ".label"}]} config (config/parse-detail-page src)] (is (= {:label "Ram"} (scrape-item config property-table-html))))) (testing "config having property-tables" (let [src {:property-tables [{:pair-select "#properties tr", :label {:select "td.label"}, :value {:select "td.label + td"}}]} config (config/parse-detail-page src)] (is (= {:Ram "16GB", :Disk "1TB"} (scrape-item config property-table-html))))) (testing "config having both properties and property-tables" (let [src {:properties [{:name "label", :select ".label"}] :property-tables [{:pair-select "#properties tr", :label {:select "td.label"}, :value {:select "td.label + td"}}]} config (config/parse-detail-page src)] (is (= {:label "Ram" :Ram "16GB", :Disk "1TB"} (scrape-item config property-table-html)))))) (def list-html (parse-html " <div> <p id='a'><span>item 1</span></p> <p id='b'><span>item 2</span></p> <p id='c'><span>item 3</span></p> </div>")) (def two-column-html (parse-html " <div> <p id='a'><span>item 1</span></p> <p id='b'><span>item 2</span></p> </div> <div> <p id='c'><span>item 3</span></p> <p id='d'><span>item 4</span></p> </div>")) (deftest test-scrape-items (testing "item select" (let [src {:item-select "p" :properties [{:name "name", :select "span"} ;TODO rm span, use root selector? {:name "id", :select "p", :extract "attrs id"}]} config (config/parse-list-page src)] (is (= [{:name "item 1", :id "a"} {:name "item 2", :id "b"} {:name "item 3", :id "c"}] (scrape-items config list-html))))) (testing "item split" (let [src {:container-select "div" :item-split "(?=<p)" :properties [{:name "name", :select "span"} {:name "id", :select "p", :extract "attrs id"}]} config (config/parse-list-page src)] (is (= [{:name "item 1", :id "a"} {:name "item 2", :id "b"} {:name "item 3", :id "c"}] (scrape-items config list-html))))) (testing "item split with two containers" (let [src {:container-select "div" :item-split "(?=<p)" :properties [{:name "name", :select "span"} {:name "id", :select "p", :extract "attrs id"}]} config (config/parse-list-page src)] (is (= [{:name "item 1", :id "a"} {:name "item 2", :id "b"} {:name "item 3", :id "c"} {:name "item 4", :id "d"}] (scrape-items config two-column-html))))))
[ { "context": "ns under the License.\n;;\n;; Copyright © 2013-2022, Kenneth Leung. All rights reserved.\n\n(ns czlab.test.basal.proc\n", "end": 597, "score": 0.9998517036437988, "start": 584, "tag": "NAME", "value": "Kenneth Leung" } ]
src/test/clojure/czlab/test/basal/proc.clj
llnek/xlib
0
;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. ;; ;; Copyright © 2013-2022, Kenneth Leung. All rights reserved. (ns czlab.test.basal.proc (:require [clojure.java.io :as io] [clojure.test :as ct] [clojure.string :as cs] [czlab.basal.proc :as p] [czlab.basal.io :as i] [czlab.basal.util :as u] [czlab.basal.core :refer [ensure?? ensure-thrown??] :as c])) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (def ^{:private true :tag java.io.File} CUR-FP (i/tmpfile (u/jid<>))) (def ^:private SCD (atom nil)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (c/deftest test-proc (ensure?? "init" (c/let->true [s (p/scheduler<>)] (reset! SCD s) (c/activate s))) (ensure?? "run*" (== 1 (let [x (atom 0)] (p/run* @SCD swap! [x inc]) (u/pause 500) @x))) (ensure?? "run" (== 1 (let [x (atom 0)] (p/run @SCD (u/run<> (swap! x inc))) (u/pause 500) @x))) (ensure?? "postpone" (== 1 (let [x (atom 0)] (p/postpone @SCD (u/run<> (swap! x inc)) 500) (u/pause 800) @x))) (ensure?? "async!" (do (p/async! #(spit CUR-FP "123")) (u/pause 500) (and (.exists CUR-FP) (>= (.length CUR-FP) 3)))) (ensure?? "delay-exec" (do (p/delay-exec #(spit CUR-FP "123456") 500) (u/pause 800) (and (.exists CUR-FP) (>= (.length CUR-FP) 6)))) (ensure?? "locking" (do (locking (String. "lock") ((fn [a & xs] (spit CUR-FP (apply str a xs))) "123" "456" "789")) (and (.exists CUR-FP) (>= (.length CUR-FP) 9)))) (ensure?? "process-pid" (> (.length (p/process-pid)) 0)) (ensure?? "finz" (c/do->true (c/deactivate @SCD))) (ensure?? "test-end" (== 1 1))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (ct/deftest ^:test-proc basal-test-proc (ct/is (c/clj-test?? test-proc))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;EOF
70999
;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. ;; ;; Copyright © 2013-2022, <NAME>. All rights reserved. (ns czlab.test.basal.proc (:require [clojure.java.io :as io] [clojure.test :as ct] [clojure.string :as cs] [czlab.basal.proc :as p] [czlab.basal.io :as i] [czlab.basal.util :as u] [czlab.basal.core :refer [ensure?? ensure-thrown??] :as c])) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (def ^{:private true :tag java.io.File} CUR-FP (i/tmpfile (u/jid<>))) (def ^:private SCD (atom nil)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (c/deftest test-proc (ensure?? "init" (c/let->true [s (p/scheduler<>)] (reset! SCD s) (c/activate s))) (ensure?? "run*" (== 1 (let [x (atom 0)] (p/run* @SCD swap! [x inc]) (u/pause 500) @x))) (ensure?? "run" (== 1 (let [x (atom 0)] (p/run @SCD (u/run<> (swap! x inc))) (u/pause 500) @x))) (ensure?? "postpone" (== 1 (let [x (atom 0)] (p/postpone @SCD (u/run<> (swap! x inc)) 500) (u/pause 800) @x))) (ensure?? "async!" (do (p/async! #(spit CUR-FP "123")) (u/pause 500) (and (.exists CUR-FP) (>= (.length CUR-FP) 3)))) (ensure?? "delay-exec" (do (p/delay-exec #(spit CUR-FP "123456") 500) (u/pause 800) (and (.exists CUR-FP) (>= (.length CUR-FP) 6)))) (ensure?? "locking" (do (locking (String. "lock") ((fn [a & xs] (spit CUR-FP (apply str a xs))) "123" "456" "789")) (and (.exists CUR-FP) (>= (.length CUR-FP) 9)))) (ensure?? "process-pid" (> (.length (p/process-pid)) 0)) (ensure?? "finz" (c/do->true (c/deactivate @SCD))) (ensure?? "test-end" (== 1 1))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (ct/deftest ^:test-proc basal-test-proc (ct/is (c/clj-test?? test-proc))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;EOF
true
;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. ;; ;; Copyright © 2013-2022, PI:NAME:<NAME>END_PI. All rights reserved. (ns czlab.test.basal.proc (:require [clojure.java.io :as io] [clojure.test :as ct] [clojure.string :as cs] [czlab.basal.proc :as p] [czlab.basal.io :as i] [czlab.basal.util :as u] [czlab.basal.core :refer [ensure?? ensure-thrown??] :as c])) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (def ^{:private true :tag java.io.File} CUR-FP (i/tmpfile (u/jid<>))) (def ^:private SCD (atom nil)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (c/deftest test-proc (ensure?? "init" (c/let->true [s (p/scheduler<>)] (reset! SCD s) (c/activate s))) (ensure?? "run*" (== 1 (let [x (atom 0)] (p/run* @SCD swap! [x inc]) (u/pause 500) @x))) (ensure?? "run" (== 1 (let [x (atom 0)] (p/run @SCD (u/run<> (swap! x inc))) (u/pause 500) @x))) (ensure?? "postpone" (== 1 (let [x (atom 0)] (p/postpone @SCD (u/run<> (swap! x inc)) 500) (u/pause 800) @x))) (ensure?? "async!" (do (p/async! #(spit CUR-FP "123")) (u/pause 500) (and (.exists CUR-FP) (>= (.length CUR-FP) 3)))) (ensure?? "delay-exec" (do (p/delay-exec #(spit CUR-FP "123456") 500) (u/pause 800) (and (.exists CUR-FP) (>= (.length CUR-FP) 6)))) (ensure?? "locking" (do (locking (String. "lock") ((fn [a & xs] (spit CUR-FP (apply str a xs))) "123" "456" "789")) (and (.exists CUR-FP) (>= (.length CUR-FP) 9)))) (ensure?? "process-pid" (> (.length (p/process-pid)) 0)) (ensure?? "finz" (c/do->true (c/deactivate @SCD))) (ensure?? "test-end" (== 1 1))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (ct/deftest ^:test-proc basal-test-proc (ct/is (c/clj-test?? test-proc))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;EOF
[ { "context": " utilities for dealing with secrets.\"\n {:author \"Isaak Uchakaev\"\n :last-update-date \"01-04-2021\"}\n (:require [", "end": 112, "score": 0.9998812675476074, "start": 98, "tag": "NAME", "value": "Isaak Uchakaev" } ]
src/secrets/tools.clj
lk-geimfari/secrets.clj
66
(ns secrets.tools "This module contains useful utilities for dealing with secrets." {:author "Isaak Uchakaev" :last-update-date "01-04-2021"} (:require [clojure.string]) (:import (java.time Instant) (java.util UUID))) (defn unix-timestamp "Returns a number of seconds from the Unix epoch of 1970-01-01T00:00:00Z" [] (.getEpochSecond (Instant/now))) (defn uuid4 "Return UUID generated using a cryptographically strong pseudo random number generator." [] (.toString (UUID/randomUUID)))
4895
(ns secrets.tools "This module contains useful utilities for dealing with secrets." {:author "<NAME>" :last-update-date "01-04-2021"} (:require [clojure.string]) (:import (java.time Instant) (java.util UUID))) (defn unix-timestamp "Returns a number of seconds from the Unix epoch of 1970-01-01T00:00:00Z" [] (.getEpochSecond (Instant/now))) (defn uuid4 "Return UUID generated using a cryptographically strong pseudo random number generator." [] (.toString (UUID/randomUUID)))
true
(ns secrets.tools "This module contains useful utilities for dealing with secrets." {:author "PI:NAME:<NAME>END_PI" :last-update-date "01-04-2021"} (:require [clojure.string]) (:import (java.time Instant) (java.util UUID))) (defn unix-timestamp "Returns a number of seconds from the Unix epoch of 1970-01-01T00:00:00Z" [] (.getEpochSecond (Instant/now))) (defn uuid4 "Return UUID generated using a cryptographically strong pseudo random number generator." [] (.toString (UUID/randomUUID)))
[ { "context": " ;;\n;; Author: Jon Anthony ", "end": 1839, "score": 0.9998441934585571, "start": 1828, "tag": "NAME", "value": "Jon Anthony" } ]
src/aerial/bio/utils/infoth.clj
jsa-aerial/aerial.bio.utils
3
;;--------------------------------------------------------------------------;; ;; ;; ;; B I O . U T I L S . I N F O T H ;; ;; ;; ;; Permission is hereby granted, free of charge, to any person obtaining ;; ;; a copy of this software and associated documentation files (the ;; ;; "Software"), to deal in the Software without restriction, including ;; ;; without limitation the rights to use, copy, modify, merge, publish, ;; ;; distribute, sublicense, and/or sell copies of the Software, and to ;; ;; permit persons to whom the Software is furnished to do so, subject to ;; ;; the following conditions: ;; ;; ;; ;; The above copyright notice and this permission notice shall be ;; ;; included in all copies or substantial portions of the Software. ;; ;; ;; ;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ;; ;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ;; ;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ;; ;; NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ;; ;; LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ;; ;; OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ;; ;; WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ;; ;; ;; ;; Author: Jon Anthony ;; ;; ;; ;;--------------------------------------------------------------------------;; ;; (ns aerial.bio.utils.infoth "Various information theory computations, calculations and results as applied to bio sequences and alignments thereof. Includes entropy, joint entropy, conditional entropy, mutual information, conditional mi, et. al." (:require [clojure.math.numeric-tower :as math] [aerial.fs :as fs] [aerial.utils.misc :as misc :refer [raise]] [aerial.utils.math :refer [ln log2 sum]] [aerial.utils.math.combinatorics :refer [combins]] [aerial.utils.math.probs-stats :refer [freqn probs cc-freqs-probs cc-combins-freqs-probs combin-count-reduction]] [aerial.utils.math.infoth :refer [shannon-entropy entropy]] [aerial.utils.coll :as coll :refer [in transpose ensure-vec coalesce-xy-yx vfold pxmap]] [aerial.bio.utils.seqxform :refer [gaps? norm-elements filter-pgap]] [aerial.bio.utils.files :refer [gaisr-seq-set? read-seqs read-aln-seqs reduce-seqs reduce-aln-seqs]] )) (defn degap-freqs "Take a frequency map, and remove all elements whose keys contain gap characters. Gap chars are either the defaults \\. \\- or those in gap-chars (a seqable collection). " ([freq-map] (reduce (fn[m [k v]] (if (gaps? k) m (assoc m k v))) {} freq-map)) ([freq-map gap-chars] (reduce (fn[m [k v]] (if (gaps? k gap-chars) m (assoc m k v))) {} freq-map))) (defn degap-tuples "Remove gap characters from a tuple of sequences. Typically this is a pair of sequences (as for example arising from (combins 2 some-seq-set)). The degaping works for gaps in any (through all) of the elements and preserves the correct bases and their order in cases where gaps line up with non gaps. Gap chars are either the defaults \\. \\- or those in gap-chars (a seqable collection). EX: (degap-tuples [\"CAAAUAAAAUAUAAUUUUAUAAUAAUAAGAAUAUAUAAAAAAUAUUAUAUAAAAGAAA\" \"GGGAGGGGGGGGGGG-GGGGG-GGAGGGGGGG--GGGG-GGGGGAGG-GGGG-GGGG-\"]) => (\"CAAAUAAAAUAUAAUUUAUAUAAUAAGAAUAUAAAAAUAUUAAUAAAGAA\" \"GGGAGGGGGGGGGGGGGGGGGGAGGGGGGGGGGGGGGGGAGGGGGGGGGG\") " ([tuple-of-sqs] (transpose (filter #(not (gaps? %)) (transpose tuple-of-sqs)))) ([tuple-of-sqs gap-chars] (transpose (filter #(not (gaps? % gap-chars)) (transpose tuple-of-sqs))))) (defn- _adjust-one "Helper for (seqs|aln)-freqs-probs. Basically degaps and recalculates freqs and probs of the passed in freqs fs and probs ps. " [[fs ps cnt] nogaps] (let [degap (if (or (string? nogaps) (coll? nogaps)) #(degap-freqs % nogaps) degap-freqs) reprob (fn[sz fs] (reduce (fn[m [k v]] (assoc m k (double (/ v sz)))) {} fs))] (let [fs (degap fs) sz (sum fs) ps (reprob sz fs)] [fs ps sz]))) (defn- _str-em "Helper function for (seqs|aln)-freqs-probs. Stringify the keys in the frequency and probability maps. " [[fs ps cnt]] (let [rfn #(reduce (fn[m [k v]] (assoc m (apply str (ensure-vec k)) v)) {} %)] [(rfn fs) (rfn ps) cnt])) (defn seqs-freqs-probs "Return sequence frequencies and probabilities over the set of sequences in SEQSET, a collection of sequences or a string denoting a legal format sequence file (see read-seqs). FSPS-FN is a function taking a combination count or window width of N and a sequence collection (here, seqset) and optional par parameter. Applies fsps-fn to n and seqset. For large (count seqset) with expensive fss-fn, use par to parallelize computation over par chunks. Return [ccfsps allfs allps tcount], where ccfs&ps is a seq of triples [fs ps cnt], for each C in seqset, allfs is the map of freqs over all Cs, allps is the map of probs over all Cs and tcount is the total items over coll. NOTE: item keys are \"stringified\", i.e., if k is a key from a map produced by fsps-fn, ensures that all returned maps use (apply str k) for all keys. " [n seqset & {:keys [fsps-fn nogaps norm par] :or {fsps-fn cc-freqs-probs nogaps true norm true par 1}}] {:pre [(gaisr-seq-set? seqset)]} (let [seqset (if (coll? seqset) seqset (read-seqs seqset)) seqset (if norm (norm-elements seqset) seqset) [ccfsps fs ps cnt] (if (= par 1) ; Accomodate fsps-fns w/o par arg! (fsps-fn n seqset) (fsps-fn n seqset :par par)) [fs ps cnt] (_str-em [fs ps cnt]) ccfsps (pxmap _str-em par ccfsps)] (if (not nogaps) [ccfsps fs ps cnt] (let [ccfsps (pxmap #(_adjust-one % nogaps) par ccfsps) [fs ps cnt] (_adjust-one [fs ps cnt] nogaps)] [ccfsps fs ps cnt])))) (defn aln-freqs-probs "Take the sequences in SEQSET, a collection of sequences or a string denoting a legal format sequence file (see read-seqs), treat as a matrix M encoding an alignment (and so all seqs in set must have equal length). If NORM, normalize all base characters to uppercase in M. PGAP is the percent of gaps cutoff for columns. Filter M, by removing all columns Ci, (> (gap-percent Ci) pgap) to get M'. Uses FSPS-FN, a function taking a combination count or window width of N and a sequence collection, to compute the frequencies and probabilities of columns Ci in M' by means of seqs-freqs-probs. Let Ci-fs-ps be the results for Ci. Typically such a result would be a triple [fs ps cnt], where fs and ps are maps of frequencies and corresponding probabilities keyed by the n-tuple of bases (and possibly gaps) underlying fsps-fn (see, for example, cc-freqs-probs). If NOGAPS is true, remove all items with gaps from maps and recompute new probabilities for resulting reduced frequencies sets. For large (count seqset) with expensive fss-fn, use par to parallelize computation over par chunks. Returns [ccfs&ps allfs allps tcount], where ccfs&ps is the seq Ci-fs-ps calculated from M' allfs is the map of freqs obtained by reducing over all Ci-fs maps allps is the map of probs obtained by reducing over all Ci-ps maps tcount is the total item (obtained n-tuples) count. " [n seqset & {:keys [fsps-fn cols nogaps norm pgap par] :or {fsps-fn cc-combins-freqs-probs cols false nogaps true norm true pgap 0.70 par 1}}] {:pre [(gaisr-seq-set? seqset)]} (let [aln (cond (and (coll? seqset) cols) (transpose seqset) (coll? seqset) seqset :else (read-aln-seqs seqset :cols cols)) aln (if (= pgap 1.0) aln (filter-pgap aln pgap)) [colsfsps fs ps cnt] (seqs-freqs-probs n aln :fsps-fn fsps-fn :nogaps nogaps :norm norm :par par)] [colsfsps fs ps cnt])) (defn bg-freqs "Perform a bacground frequency distribution calculation over the sequences in FILESPECS (a coll of legal format sequence files or a directory of such or if dirdir is true, a directory of directories of such, see read-seqs). FTYPES gives the file types in the cases where filespecs is a dir or dirdir. By default, the distributions are performed with a sliding window of N length. So, on DNA/RNA sequences 1 gives base probabilities, 2 gives a dinucleotide distribution, etc. To change this supply a different freq&prob calculation function for fsps-fn. For more information see seqs-freqs-probs description. If cols is true, computation is over the columns of the sequences. if sym? is true, treat reversable keys as equal. If nogaps is true, removes default gap characters from calculation. If nogaps is a coll (for example, (keys +NONSTD-RNA+)), removes all those characters from calculation. If norm is true, normalize characters to upper case. " [n filespecs & {:keys [fsps-fn ftypes dirdir cols sym? nogaps norm par] :or {fsps-fn cc-freqs-probs ftypes [".sto"] dirdir false cols false sym? false mnogaps false norm true par 1}}] (let [isdir (and (not (coll? filespecs)) (fs/directory? filespecs)) filespecs (cond (and isdir (not dirdir)) (apply concat (map #(fs/directory-files filespecs %) ftypes)) dirdir filespecs ; keep as original dirdir filespec :else filespecs) merger (fn[M m] (merge-with + M m)) f (fn[sqs] (second (seqs-freqs-probs n sqs :fsps-fn fsps-fn :nogaps nogaps :norm norm :par par))) fs (cond (and isdir dirdir) (reduce (fn[M m] (merge-with + M m)) (map #(bg-freqs n % :fsps-fn fsps-fn :ftypes ftypes :cols cols :nogaps nogaps :norm norm :par par) (fs/directory-files filespecs ""))) (seq filespecs) (if cols (reduce-aln-seqs f merger cols filespecs) (reduce-seqs f merger filespecs)) :else nil)] (if sym? (coalesce-xy-yx fs (fn [x v] (if (not v) 0 (+ (val x) v)))) fs))) (defn bg-freqs-probs "Like bg-freqs, but with the additional final computation of probability distribution for the frequency distribution " [n filespecs & {:keys [fsps-fn ftypes dirdir cols sym? nogaps norm par] :or {fsps-fn cc-freqs-probs ftypes [".sto"] dirdir false cols false sym? false nogaps false norm true par 1}}] (let [fqs (bg-freqs n filespecs :fsps-fn fsps-fn :ftypes ftypes :dirdir dirdir :cols cols :sym? sym? :nogaps nogaps :norm norm :par par)] [fqs (probs fqs)])) (defn seqs-shannon-entropy "Returns the Shannon entropy of the set of sequences in SEQSET, a collection of sequences or a string denoting a legal format sequence file (see read-seqs). Returns a pair [ses total-ses], where ses is (map shannon-entropy seqset) and total-ses is the total over all of seqset. " [seqset] {:pre [(gaisr-seq-set? seqset)]} (let [ses (if (coll? seqset) (map shannon-entropy seqset) (map shannon-entropy (read-seqs seqset)))] [ses (/ (sum ses) (count ses))])) (defn aln-entropy "Compute the entropy of each column Ci of an alignment given in SEQSET, a gaisr-seq-set. Entropy is based on the freqs and probs of elements of Ci taken n at a time. ARGS are any keyword arguments taken by aln-freqs-probs. The manner of taking the elements is determined by the fsps-fn argument of aln-freqs-probs. The default for this, cc-combins-freqs-probs is based on the combins function, which generates all n-element subsets of Ci. cc-freqs-probs is based on freqn which generates the sliding window of n elements from Ci. Returns [cols-entropies total-entropy tcnt], where cols-entropies is a seq of entropies for each Ci total-entropy is the total entropy over all the columns (from total probs) tcnt is the total over all columns of elements counted " [n seqset & args] {:pre [(gaisr-seq-set? seqset)]} (let [[col-fs-ps allfs allps tcnt] (apply aln-freqs-probs n seqset args) entropy (fn[probs] (- (sum #(* % (log2 %)) probs)))] [(map entropy (map #(vals (second %)) col-fs-ps)) (entropy (vals allps)) tcnt])) (defn aln-shannon-entropy "Application of aln-entropy with cc-freqs-probs and n=1. So, shannon entropy of each column and totals over all columns. " [seqset & args] (apply aln-entropy 1 seqset :fsps-fn cc-freqs-probs args)) (defn aln-joint-entropy "Application of aln-entropy with cc-combins-freqs-probs and n=2. So, joint entropy of each column with itself and overall totals. " [seqset & args] (apply aln-entropy 2 seqset :fsps-fn cc-combins-freqs-probs args)) (defn- adjust-seqs-info "Helper function. Filters and transforms SQS according to switches COLS, NORM, and PGAP. If cols transpose the matrix represented by SQS. If norm, normalize elements of sqs by means of norm-elements. In all cases filter out sqs with gap content greater than pgap (a percentage value that defaults to 0.25) " [sqs cols norm pgap] (cond (and cols norm) (-> sqs transpose (filter-pgap pgap) norm-elements) cols (-> sqs transpose (filter-pgap pgap) norm-elements) norm (-> sqs (filter-pgap pgap) norm-elements) (= pgap 1.0) sqs :else (filter-pgap sqs pgap))) (defn- account-for-symmetry "Helper function for aln-conditional-mutual-information. Transform content (triples of xy base keys and associated \"residual\" column bases so that all xy yx keys are treated as multiple counts of xy. That is, treat keys as symmetrically equal. This occurs _before_ freq counts, so achieve this effect by literally duplicating elements in the resulting collection. " [triples] (let [x (coalesce-xy-yx triples ;; just add copies of existing one (fn [x v] (if (not v) () (cons (second x) v))))] ;; Now flatten the result - note not amenable to std flatten fn! (reduce (fn[c [x vs]] (reduce (fn[c v] (conj c [x v])) c vs)) [] x))) (defn- seq-pairs&indices "Helper function for *mutual-information computations. Removes all seqs with more than pgap percentage of gaps and from the resulting set, creates the sets of seq pairs and corresponding indices. " [aln pgap par] (let [cnt (count aln) seqs&indices (partition-all 2 (interleave aln (range cnt))) seqs&indices (pxmap (fn[[s i]] (when (seq (filter-pgap [s] pgap)) [s i])) par seqs&indices) seqs&indices (filter #(not (empty? %)) seqs&indices) ; remove nulls seq-pairs&indices (map (fn[x] (transpose x)) (combins 2 seqs&indices))] [(map first seq-pairs&indices) (map second seq-pairs&indices)])) (defn aln-conditional-mutual-information "Mutual information of all 2 column pairs in an alignment conditioned by the residual - unordered - bases of the remaining columns. Let colpairs be (combins 2 (transpose aln)). For any pair of columns [X Y] in colpairs, let Z be colpairs - {X Y}. Compute I(X;Y|Z), the mutual information for X&Y given Z. " [seqset & {par :par nogaps :nogaps pgap :pgap cols :cols norm :norm sym? :sym? :or {par 1 nogaps true pgap 0.25 cols true norm true sym? true}}] {:pre [(gaisr-seq-set? seqset)]} (let [aln (if (coll? seqset) seqset (read-aln-seqs seqset)) aln (adjust-seqs-info aln cols norm 1.0) [seq-pairs indices] (seq-pairs&indices aln pgap par) aln-map (reduce (fn[m [s1 s2]] (assoc m s1 true s2 true)) {} seq-pairs) triples (pxmap (fn[[x y]] (partition-all 2 (interleave (transpose [x y]) (map (fn[fs] (-> fs ((partial freqn 1)) (#(if nogaps (degap-freqs %) %)))) (transpose (keys (dissoc aln-map x y))))))) par seq-pairs) triples (if nogaps (pxmap #(filter (fn[[xy _]] (not (gaps? xy))) %) par triples) triples) triples (if sym? (pxmap account-for-symmetry par triples) triples) xyz-joint-probs (map #(probs 1 %) triples) HXYZ (map entropy xyz-joint-probs) z-probs (map (fn[tpl] (probs 1 (map second tpl))) triples) HZ (map entropy z-probs) xz-joint-probs (pxmap (fn[tpl] (probs 1 (map (fn[[xy z]] [(first xy) z]) tpl))) par triples) HXZ (map entropy xz-joint-probs) yz-joint-probs (pxmap (fn[tpl] (probs 1 (map (fn[[xy z]] [(second xy) z]) tpl))) par triples) HYZ (map entropy yz-joint-probs) Ixy|z (pxmap (fn[Hxz Hyz Hxyz Hz] (let [Ixy|z (+ Hxz Hyz (- Hxyz) (- Hz))] (cond (>= Ixy|z 0.0) Ixy|z (< (math/abs Ixy|z) 1.0E-10) 0.0 :else (raise :type :negIxy|z :Ixy|z Ixy|z :Hxz Hxz :Hyz Hyz :Hxyz Hxyz :Hz Hz)))) par HXZ HYZ HXYZ HZ)] [Ixy|z seq-pairs indices])) (defn aln-mutual-information "" [seqset & {:keys [par nogaps pgap cols norm sym?] :or {par 1 nogaps true pgap 0.25 cols false norm true sym? true}}] {:pre [(gaisr-seq-set? seqset)]} (let [probs (fn[fs] (let [sz (sum fs)] (reduce (fn[m [k v]] (assoc m k (double (/ v sz)))) {} fs))) entropy (fn[probs] (- (sum #(* % (ln %)) (vals probs)))) aln (if (coll? seqset) seqset (read-aln-seqs seqset)) aln (adjust-seqs-info aln cols norm 1.0) [seq-pairs indices] (seq-pairs&indices aln pgap par) pair-freqs (pxmap #(combin-count-reduction % sym?) par (map transpose seq-pairs)) pair-freqs (if nogaps (map degap-freqs pair-freqs) pair-freqs) joint-probs (map probs pair-freqs) joint-entropy (map entropy joint-probs) mutual-info (pxmap (fn[Hxy sp] (let [[x y] (if nogaps (degap-tuples sp) sp) Hx (shannon-entropy x :logfn ln) Hy (shannon-entropy y :logfn ln) Ixy (+ Hx Hy (- Hxy))] (cond (>= Ixy 0.0) Ixy (< (math/abs Ixy) 1.0E-10) 0.0 :else (raise :type :negIxy :Ixy Ixy :Hxy Hxy :pair sp)))) par joint-entropy seq-pairs)] [mutual-info joint-entropy seq-pairs pair-freqs indices])) (defn seq-pairs-bpfreqs [seq-pairs & {:keys [nogaps sym? par] :or {nogaps true sym? true par 4}}] (pxmap (fn[p] (let [fm (combin-count-reduction (transpose p) sym?)] (if nogaps (degap-freqs fm) fm))) par seq-pairs)) (defn bp-stats [bp-freq-map] (let [sz (sum bp-freq-map) au (get bp-freq-map "AU" 0) ua (get bp-freq-map "UA" 0) AU (+ au ua) gc (get bp-freq-map "GC" 0) cg (get bp-freq-map "CG" 0) GC (+ gc cg) bps (+ AU GC)] [{:BP bps :AU AU :GC GC :au au :ua ua :gc gc :cg cg} {:BP (double (/ bps sz)) :AU (double (/ AU sz)) :GC (double (/ GC sz))} sz])) (defn seq-vi [seqx seqy & {nogaps :nogaps :or {nogaps true}}] (let [seqs [seqx seqy] [[Ixy] [Hxy]] (aln-mutual-information seqs :pgap 1.0 :nogaps nogaps)] (cond (and (= Hxy 0.0) (not= seqx seqy)) 1 (= Hxy 0.0) 0 :else (- 1.0 (/ Ixy Hxy)))))
2813
;;--------------------------------------------------------------------------;; ;; ;; ;; B I O . U T I L S . I N F O T H ;; ;; ;; ;; Permission is hereby granted, free of charge, to any person obtaining ;; ;; a copy of this software and associated documentation files (the ;; ;; "Software"), to deal in the Software without restriction, including ;; ;; without limitation the rights to use, copy, modify, merge, publish, ;; ;; distribute, sublicense, and/or sell copies of the Software, and to ;; ;; permit persons to whom the Software is furnished to do so, subject to ;; ;; the following conditions: ;; ;; ;; ;; The above copyright notice and this permission notice shall be ;; ;; included in all copies or substantial portions of the Software. ;; ;; ;; ;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ;; ;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ;; ;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ;; ;; NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ;; ;; LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ;; ;; OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ;; ;; WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ;; ;; ;; ;; Author: <NAME> ;; ;; ;; ;;--------------------------------------------------------------------------;; ;; (ns aerial.bio.utils.infoth "Various information theory computations, calculations and results as applied to bio sequences and alignments thereof. Includes entropy, joint entropy, conditional entropy, mutual information, conditional mi, et. al." (:require [clojure.math.numeric-tower :as math] [aerial.fs :as fs] [aerial.utils.misc :as misc :refer [raise]] [aerial.utils.math :refer [ln log2 sum]] [aerial.utils.math.combinatorics :refer [combins]] [aerial.utils.math.probs-stats :refer [freqn probs cc-freqs-probs cc-combins-freqs-probs combin-count-reduction]] [aerial.utils.math.infoth :refer [shannon-entropy entropy]] [aerial.utils.coll :as coll :refer [in transpose ensure-vec coalesce-xy-yx vfold pxmap]] [aerial.bio.utils.seqxform :refer [gaps? norm-elements filter-pgap]] [aerial.bio.utils.files :refer [gaisr-seq-set? read-seqs read-aln-seqs reduce-seqs reduce-aln-seqs]] )) (defn degap-freqs "Take a frequency map, and remove all elements whose keys contain gap characters. Gap chars are either the defaults \\. \\- or those in gap-chars (a seqable collection). " ([freq-map] (reduce (fn[m [k v]] (if (gaps? k) m (assoc m k v))) {} freq-map)) ([freq-map gap-chars] (reduce (fn[m [k v]] (if (gaps? k gap-chars) m (assoc m k v))) {} freq-map))) (defn degap-tuples "Remove gap characters from a tuple of sequences. Typically this is a pair of sequences (as for example arising from (combins 2 some-seq-set)). The degaping works for gaps in any (through all) of the elements and preserves the correct bases and their order in cases where gaps line up with non gaps. Gap chars are either the defaults \\. \\- or those in gap-chars (a seqable collection). EX: (degap-tuples [\"CAAAUAAAAUAUAAUUUUAUAAUAAUAAGAAUAUAUAAAAAAUAUUAUAUAAAAGAAA\" \"GGGAGGGGGGGGGGG-GGGGG-GGAGGGGGGG--GGGG-GGGGGAGG-GGGG-GGGG-\"]) => (\"CAAAUAAAAUAUAAUUUAUAUAAUAAGAAUAUAAAAAUAUUAAUAAAGAA\" \"GGGAGGGGGGGGGGGGGGGGGGAGGGGGGGGGGGGGGGGAGGGGGGGGGG\") " ([tuple-of-sqs] (transpose (filter #(not (gaps? %)) (transpose tuple-of-sqs)))) ([tuple-of-sqs gap-chars] (transpose (filter #(not (gaps? % gap-chars)) (transpose tuple-of-sqs))))) (defn- _adjust-one "Helper for (seqs|aln)-freqs-probs. Basically degaps and recalculates freqs and probs of the passed in freqs fs and probs ps. " [[fs ps cnt] nogaps] (let [degap (if (or (string? nogaps) (coll? nogaps)) #(degap-freqs % nogaps) degap-freqs) reprob (fn[sz fs] (reduce (fn[m [k v]] (assoc m k (double (/ v sz)))) {} fs))] (let [fs (degap fs) sz (sum fs) ps (reprob sz fs)] [fs ps sz]))) (defn- _str-em "Helper function for (seqs|aln)-freqs-probs. Stringify the keys in the frequency and probability maps. " [[fs ps cnt]] (let [rfn #(reduce (fn[m [k v]] (assoc m (apply str (ensure-vec k)) v)) {} %)] [(rfn fs) (rfn ps) cnt])) (defn seqs-freqs-probs "Return sequence frequencies and probabilities over the set of sequences in SEQSET, a collection of sequences or a string denoting a legal format sequence file (see read-seqs). FSPS-FN is a function taking a combination count or window width of N and a sequence collection (here, seqset) and optional par parameter. Applies fsps-fn to n and seqset. For large (count seqset) with expensive fss-fn, use par to parallelize computation over par chunks. Return [ccfsps allfs allps tcount], where ccfs&ps is a seq of triples [fs ps cnt], for each C in seqset, allfs is the map of freqs over all Cs, allps is the map of probs over all Cs and tcount is the total items over coll. NOTE: item keys are \"stringified\", i.e., if k is a key from a map produced by fsps-fn, ensures that all returned maps use (apply str k) for all keys. " [n seqset & {:keys [fsps-fn nogaps norm par] :or {fsps-fn cc-freqs-probs nogaps true norm true par 1}}] {:pre [(gaisr-seq-set? seqset)]} (let [seqset (if (coll? seqset) seqset (read-seqs seqset)) seqset (if norm (norm-elements seqset) seqset) [ccfsps fs ps cnt] (if (= par 1) ; Accomodate fsps-fns w/o par arg! (fsps-fn n seqset) (fsps-fn n seqset :par par)) [fs ps cnt] (_str-em [fs ps cnt]) ccfsps (pxmap _str-em par ccfsps)] (if (not nogaps) [ccfsps fs ps cnt] (let [ccfsps (pxmap #(_adjust-one % nogaps) par ccfsps) [fs ps cnt] (_adjust-one [fs ps cnt] nogaps)] [ccfsps fs ps cnt])))) (defn aln-freqs-probs "Take the sequences in SEQSET, a collection of sequences or a string denoting a legal format sequence file (see read-seqs), treat as a matrix M encoding an alignment (and so all seqs in set must have equal length). If NORM, normalize all base characters to uppercase in M. PGAP is the percent of gaps cutoff for columns. Filter M, by removing all columns Ci, (> (gap-percent Ci) pgap) to get M'. Uses FSPS-FN, a function taking a combination count or window width of N and a sequence collection, to compute the frequencies and probabilities of columns Ci in M' by means of seqs-freqs-probs. Let Ci-fs-ps be the results for Ci. Typically such a result would be a triple [fs ps cnt], where fs and ps are maps of frequencies and corresponding probabilities keyed by the n-tuple of bases (and possibly gaps) underlying fsps-fn (see, for example, cc-freqs-probs). If NOGAPS is true, remove all items with gaps from maps and recompute new probabilities for resulting reduced frequencies sets. For large (count seqset) with expensive fss-fn, use par to parallelize computation over par chunks. Returns [ccfs&ps allfs allps tcount], where ccfs&ps is the seq Ci-fs-ps calculated from M' allfs is the map of freqs obtained by reducing over all Ci-fs maps allps is the map of probs obtained by reducing over all Ci-ps maps tcount is the total item (obtained n-tuples) count. " [n seqset & {:keys [fsps-fn cols nogaps norm pgap par] :or {fsps-fn cc-combins-freqs-probs cols false nogaps true norm true pgap 0.70 par 1}}] {:pre [(gaisr-seq-set? seqset)]} (let [aln (cond (and (coll? seqset) cols) (transpose seqset) (coll? seqset) seqset :else (read-aln-seqs seqset :cols cols)) aln (if (= pgap 1.0) aln (filter-pgap aln pgap)) [colsfsps fs ps cnt] (seqs-freqs-probs n aln :fsps-fn fsps-fn :nogaps nogaps :norm norm :par par)] [colsfsps fs ps cnt])) (defn bg-freqs "Perform a bacground frequency distribution calculation over the sequences in FILESPECS (a coll of legal format sequence files or a directory of such or if dirdir is true, a directory of directories of such, see read-seqs). FTYPES gives the file types in the cases where filespecs is a dir or dirdir. By default, the distributions are performed with a sliding window of N length. So, on DNA/RNA sequences 1 gives base probabilities, 2 gives a dinucleotide distribution, etc. To change this supply a different freq&prob calculation function for fsps-fn. For more information see seqs-freqs-probs description. If cols is true, computation is over the columns of the sequences. if sym? is true, treat reversable keys as equal. If nogaps is true, removes default gap characters from calculation. If nogaps is a coll (for example, (keys +NONSTD-RNA+)), removes all those characters from calculation. If norm is true, normalize characters to upper case. " [n filespecs & {:keys [fsps-fn ftypes dirdir cols sym? nogaps norm par] :or {fsps-fn cc-freqs-probs ftypes [".sto"] dirdir false cols false sym? false mnogaps false norm true par 1}}] (let [isdir (and (not (coll? filespecs)) (fs/directory? filespecs)) filespecs (cond (and isdir (not dirdir)) (apply concat (map #(fs/directory-files filespecs %) ftypes)) dirdir filespecs ; keep as original dirdir filespec :else filespecs) merger (fn[M m] (merge-with + M m)) f (fn[sqs] (second (seqs-freqs-probs n sqs :fsps-fn fsps-fn :nogaps nogaps :norm norm :par par))) fs (cond (and isdir dirdir) (reduce (fn[M m] (merge-with + M m)) (map #(bg-freqs n % :fsps-fn fsps-fn :ftypes ftypes :cols cols :nogaps nogaps :norm norm :par par) (fs/directory-files filespecs ""))) (seq filespecs) (if cols (reduce-aln-seqs f merger cols filespecs) (reduce-seqs f merger filespecs)) :else nil)] (if sym? (coalesce-xy-yx fs (fn [x v] (if (not v) 0 (+ (val x) v)))) fs))) (defn bg-freqs-probs "Like bg-freqs, but with the additional final computation of probability distribution for the frequency distribution " [n filespecs & {:keys [fsps-fn ftypes dirdir cols sym? nogaps norm par] :or {fsps-fn cc-freqs-probs ftypes [".sto"] dirdir false cols false sym? false nogaps false norm true par 1}}] (let [fqs (bg-freqs n filespecs :fsps-fn fsps-fn :ftypes ftypes :dirdir dirdir :cols cols :sym? sym? :nogaps nogaps :norm norm :par par)] [fqs (probs fqs)])) (defn seqs-shannon-entropy "Returns the Shannon entropy of the set of sequences in SEQSET, a collection of sequences or a string denoting a legal format sequence file (see read-seqs). Returns a pair [ses total-ses], where ses is (map shannon-entropy seqset) and total-ses is the total over all of seqset. " [seqset] {:pre [(gaisr-seq-set? seqset)]} (let [ses (if (coll? seqset) (map shannon-entropy seqset) (map shannon-entropy (read-seqs seqset)))] [ses (/ (sum ses) (count ses))])) (defn aln-entropy "Compute the entropy of each column Ci of an alignment given in SEQSET, a gaisr-seq-set. Entropy is based on the freqs and probs of elements of Ci taken n at a time. ARGS are any keyword arguments taken by aln-freqs-probs. The manner of taking the elements is determined by the fsps-fn argument of aln-freqs-probs. The default for this, cc-combins-freqs-probs is based on the combins function, which generates all n-element subsets of Ci. cc-freqs-probs is based on freqn which generates the sliding window of n elements from Ci. Returns [cols-entropies total-entropy tcnt], where cols-entropies is a seq of entropies for each Ci total-entropy is the total entropy over all the columns (from total probs) tcnt is the total over all columns of elements counted " [n seqset & args] {:pre [(gaisr-seq-set? seqset)]} (let [[col-fs-ps allfs allps tcnt] (apply aln-freqs-probs n seqset args) entropy (fn[probs] (- (sum #(* % (log2 %)) probs)))] [(map entropy (map #(vals (second %)) col-fs-ps)) (entropy (vals allps)) tcnt])) (defn aln-shannon-entropy "Application of aln-entropy with cc-freqs-probs and n=1. So, shannon entropy of each column and totals over all columns. " [seqset & args] (apply aln-entropy 1 seqset :fsps-fn cc-freqs-probs args)) (defn aln-joint-entropy "Application of aln-entropy with cc-combins-freqs-probs and n=2. So, joint entropy of each column with itself and overall totals. " [seqset & args] (apply aln-entropy 2 seqset :fsps-fn cc-combins-freqs-probs args)) (defn- adjust-seqs-info "Helper function. Filters and transforms SQS according to switches COLS, NORM, and PGAP. If cols transpose the matrix represented by SQS. If norm, normalize elements of sqs by means of norm-elements. In all cases filter out sqs with gap content greater than pgap (a percentage value that defaults to 0.25) " [sqs cols norm pgap] (cond (and cols norm) (-> sqs transpose (filter-pgap pgap) norm-elements) cols (-> sqs transpose (filter-pgap pgap) norm-elements) norm (-> sqs (filter-pgap pgap) norm-elements) (= pgap 1.0) sqs :else (filter-pgap sqs pgap))) (defn- account-for-symmetry "Helper function for aln-conditional-mutual-information. Transform content (triples of xy base keys and associated \"residual\" column bases so that all xy yx keys are treated as multiple counts of xy. That is, treat keys as symmetrically equal. This occurs _before_ freq counts, so achieve this effect by literally duplicating elements in the resulting collection. " [triples] (let [x (coalesce-xy-yx triples ;; just add copies of existing one (fn [x v] (if (not v) () (cons (second x) v))))] ;; Now flatten the result - note not amenable to std flatten fn! (reduce (fn[c [x vs]] (reduce (fn[c v] (conj c [x v])) c vs)) [] x))) (defn- seq-pairs&indices "Helper function for *mutual-information computations. Removes all seqs with more than pgap percentage of gaps and from the resulting set, creates the sets of seq pairs and corresponding indices. " [aln pgap par] (let [cnt (count aln) seqs&indices (partition-all 2 (interleave aln (range cnt))) seqs&indices (pxmap (fn[[s i]] (when (seq (filter-pgap [s] pgap)) [s i])) par seqs&indices) seqs&indices (filter #(not (empty? %)) seqs&indices) ; remove nulls seq-pairs&indices (map (fn[x] (transpose x)) (combins 2 seqs&indices))] [(map first seq-pairs&indices) (map second seq-pairs&indices)])) (defn aln-conditional-mutual-information "Mutual information of all 2 column pairs in an alignment conditioned by the residual - unordered - bases of the remaining columns. Let colpairs be (combins 2 (transpose aln)). For any pair of columns [X Y] in colpairs, let Z be colpairs - {X Y}. Compute I(X;Y|Z), the mutual information for X&Y given Z. " [seqset & {par :par nogaps :nogaps pgap :pgap cols :cols norm :norm sym? :sym? :or {par 1 nogaps true pgap 0.25 cols true norm true sym? true}}] {:pre [(gaisr-seq-set? seqset)]} (let [aln (if (coll? seqset) seqset (read-aln-seqs seqset)) aln (adjust-seqs-info aln cols norm 1.0) [seq-pairs indices] (seq-pairs&indices aln pgap par) aln-map (reduce (fn[m [s1 s2]] (assoc m s1 true s2 true)) {} seq-pairs) triples (pxmap (fn[[x y]] (partition-all 2 (interleave (transpose [x y]) (map (fn[fs] (-> fs ((partial freqn 1)) (#(if nogaps (degap-freqs %) %)))) (transpose (keys (dissoc aln-map x y))))))) par seq-pairs) triples (if nogaps (pxmap #(filter (fn[[xy _]] (not (gaps? xy))) %) par triples) triples) triples (if sym? (pxmap account-for-symmetry par triples) triples) xyz-joint-probs (map #(probs 1 %) triples) HXYZ (map entropy xyz-joint-probs) z-probs (map (fn[tpl] (probs 1 (map second tpl))) triples) HZ (map entropy z-probs) xz-joint-probs (pxmap (fn[tpl] (probs 1 (map (fn[[xy z]] [(first xy) z]) tpl))) par triples) HXZ (map entropy xz-joint-probs) yz-joint-probs (pxmap (fn[tpl] (probs 1 (map (fn[[xy z]] [(second xy) z]) tpl))) par triples) HYZ (map entropy yz-joint-probs) Ixy|z (pxmap (fn[Hxz Hyz Hxyz Hz] (let [Ixy|z (+ Hxz Hyz (- Hxyz) (- Hz))] (cond (>= Ixy|z 0.0) Ixy|z (< (math/abs Ixy|z) 1.0E-10) 0.0 :else (raise :type :negIxy|z :Ixy|z Ixy|z :Hxz Hxz :Hyz Hyz :Hxyz Hxyz :Hz Hz)))) par HXZ HYZ HXYZ HZ)] [Ixy|z seq-pairs indices])) (defn aln-mutual-information "" [seqset & {:keys [par nogaps pgap cols norm sym?] :or {par 1 nogaps true pgap 0.25 cols false norm true sym? true}}] {:pre [(gaisr-seq-set? seqset)]} (let [probs (fn[fs] (let [sz (sum fs)] (reduce (fn[m [k v]] (assoc m k (double (/ v sz)))) {} fs))) entropy (fn[probs] (- (sum #(* % (ln %)) (vals probs)))) aln (if (coll? seqset) seqset (read-aln-seqs seqset)) aln (adjust-seqs-info aln cols norm 1.0) [seq-pairs indices] (seq-pairs&indices aln pgap par) pair-freqs (pxmap #(combin-count-reduction % sym?) par (map transpose seq-pairs)) pair-freqs (if nogaps (map degap-freqs pair-freqs) pair-freqs) joint-probs (map probs pair-freqs) joint-entropy (map entropy joint-probs) mutual-info (pxmap (fn[Hxy sp] (let [[x y] (if nogaps (degap-tuples sp) sp) Hx (shannon-entropy x :logfn ln) Hy (shannon-entropy y :logfn ln) Ixy (+ Hx Hy (- Hxy))] (cond (>= Ixy 0.0) Ixy (< (math/abs Ixy) 1.0E-10) 0.0 :else (raise :type :negIxy :Ixy Ixy :Hxy Hxy :pair sp)))) par joint-entropy seq-pairs)] [mutual-info joint-entropy seq-pairs pair-freqs indices])) (defn seq-pairs-bpfreqs [seq-pairs & {:keys [nogaps sym? par] :or {nogaps true sym? true par 4}}] (pxmap (fn[p] (let [fm (combin-count-reduction (transpose p) sym?)] (if nogaps (degap-freqs fm) fm))) par seq-pairs)) (defn bp-stats [bp-freq-map] (let [sz (sum bp-freq-map) au (get bp-freq-map "AU" 0) ua (get bp-freq-map "UA" 0) AU (+ au ua) gc (get bp-freq-map "GC" 0) cg (get bp-freq-map "CG" 0) GC (+ gc cg) bps (+ AU GC)] [{:BP bps :AU AU :GC GC :au au :ua ua :gc gc :cg cg} {:BP (double (/ bps sz)) :AU (double (/ AU sz)) :GC (double (/ GC sz))} sz])) (defn seq-vi [seqx seqy & {nogaps :nogaps :or {nogaps true}}] (let [seqs [seqx seqy] [[Ixy] [Hxy]] (aln-mutual-information seqs :pgap 1.0 :nogaps nogaps)] (cond (and (= Hxy 0.0) (not= seqx seqy)) 1 (= Hxy 0.0) 0 :else (- 1.0 (/ Ixy Hxy)))))
true
;;--------------------------------------------------------------------------;; ;; ;; ;; B I O . U T I L S . I N F O T H ;; ;; ;; ;; Permission is hereby granted, free of charge, to any person obtaining ;; ;; a copy of this software and associated documentation files (the ;; ;; "Software"), to deal in the Software without restriction, including ;; ;; without limitation the rights to use, copy, modify, merge, publish, ;; ;; distribute, sublicense, and/or sell copies of the Software, and to ;; ;; permit persons to whom the Software is furnished to do so, subject to ;; ;; the following conditions: ;; ;; ;; ;; The above copyright notice and this permission notice shall be ;; ;; included in all copies or substantial portions of the Software. ;; ;; ;; ;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ;; ;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ;; ;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ;; ;; NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ;; ;; LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ;; ;; OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ;; ;; WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ;; ;; ;; ;; Author: PI:NAME:<NAME>END_PI ;; ;; ;; ;;--------------------------------------------------------------------------;; ;; (ns aerial.bio.utils.infoth "Various information theory computations, calculations and results as applied to bio sequences and alignments thereof. Includes entropy, joint entropy, conditional entropy, mutual information, conditional mi, et. al." (:require [clojure.math.numeric-tower :as math] [aerial.fs :as fs] [aerial.utils.misc :as misc :refer [raise]] [aerial.utils.math :refer [ln log2 sum]] [aerial.utils.math.combinatorics :refer [combins]] [aerial.utils.math.probs-stats :refer [freqn probs cc-freqs-probs cc-combins-freqs-probs combin-count-reduction]] [aerial.utils.math.infoth :refer [shannon-entropy entropy]] [aerial.utils.coll :as coll :refer [in transpose ensure-vec coalesce-xy-yx vfold pxmap]] [aerial.bio.utils.seqxform :refer [gaps? norm-elements filter-pgap]] [aerial.bio.utils.files :refer [gaisr-seq-set? read-seqs read-aln-seqs reduce-seqs reduce-aln-seqs]] )) (defn degap-freqs "Take a frequency map, and remove all elements whose keys contain gap characters. Gap chars are either the defaults \\. \\- or those in gap-chars (a seqable collection). " ([freq-map] (reduce (fn[m [k v]] (if (gaps? k) m (assoc m k v))) {} freq-map)) ([freq-map gap-chars] (reduce (fn[m [k v]] (if (gaps? k gap-chars) m (assoc m k v))) {} freq-map))) (defn degap-tuples "Remove gap characters from a tuple of sequences. Typically this is a pair of sequences (as for example arising from (combins 2 some-seq-set)). The degaping works for gaps in any (through all) of the elements and preserves the correct bases and their order in cases where gaps line up with non gaps. Gap chars are either the defaults \\. \\- or those in gap-chars (a seqable collection). EX: (degap-tuples [\"CAAAUAAAAUAUAAUUUUAUAAUAAUAAGAAUAUAUAAAAAAUAUUAUAUAAAAGAAA\" \"GGGAGGGGGGGGGGG-GGGGG-GGAGGGGGGG--GGGG-GGGGGAGG-GGGG-GGGG-\"]) => (\"CAAAUAAAAUAUAAUUUAUAUAAUAAGAAUAUAAAAAUAUUAAUAAAGAA\" \"GGGAGGGGGGGGGGGGGGGGGGAGGGGGGGGGGGGGGGGAGGGGGGGGGG\") " ([tuple-of-sqs] (transpose (filter #(not (gaps? %)) (transpose tuple-of-sqs)))) ([tuple-of-sqs gap-chars] (transpose (filter #(not (gaps? % gap-chars)) (transpose tuple-of-sqs))))) (defn- _adjust-one "Helper for (seqs|aln)-freqs-probs. Basically degaps and recalculates freqs and probs of the passed in freqs fs and probs ps. " [[fs ps cnt] nogaps] (let [degap (if (or (string? nogaps) (coll? nogaps)) #(degap-freqs % nogaps) degap-freqs) reprob (fn[sz fs] (reduce (fn[m [k v]] (assoc m k (double (/ v sz)))) {} fs))] (let [fs (degap fs) sz (sum fs) ps (reprob sz fs)] [fs ps sz]))) (defn- _str-em "Helper function for (seqs|aln)-freqs-probs. Stringify the keys in the frequency and probability maps. " [[fs ps cnt]] (let [rfn #(reduce (fn[m [k v]] (assoc m (apply str (ensure-vec k)) v)) {} %)] [(rfn fs) (rfn ps) cnt])) (defn seqs-freqs-probs "Return sequence frequencies and probabilities over the set of sequences in SEQSET, a collection of sequences or a string denoting a legal format sequence file (see read-seqs). FSPS-FN is a function taking a combination count or window width of N and a sequence collection (here, seqset) and optional par parameter. Applies fsps-fn to n and seqset. For large (count seqset) with expensive fss-fn, use par to parallelize computation over par chunks. Return [ccfsps allfs allps tcount], where ccfs&ps is a seq of triples [fs ps cnt], for each C in seqset, allfs is the map of freqs over all Cs, allps is the map of probs over all Cs and tcount is the total items over coll. NOTE: item keys are \"stringified\", i.e., if k is a key from a map produced by fsps-fn, ensures that all returned maps use (apply str k) for all keys. " [n seqset & {:keys [fsps-fn nogaps norm par] :or {fsps-fn cc-freqs-probs nogaps true norm true par 1}}] {:pre [(gaisr-seq-set? seqset)]} (let [seqset (if (coll? seqset) seqset (read-seqs seqset)) seqset (if norm (norm-elements seqset) seqset) [ccfsps fs ps cnt] (if (= par 1) ; Accomodate fsps-fns w/o par arg! (fsps-fn n seqset) (fsps-fn n seqset :par par)) [fs ps cnt] (_str-em [fs ps cnt]) ccfsps (pxmap _str-em par ccfsps)] (if (not nogaps) [ccfsps fs ps cnt] (let [ccfsps (pxmap #(_adjust-one % nogaps) par ccfsps) [fs ps cnt] (_adjust-one [fs ps cnt] nogaps)] [ccfsps fs ps cnt])))) (defn aln-freqs-probs "Take the sequences in SEQSET, a collection of sequences or a string denoting a legal format sequence file (see read-seqs), treat as a matrix M encoding an alignment (and so all seqs in set must have equal length). If NORM, normalize all base characters to uppercase in M. PGAP is the percent of gaps cutoff for columns. Filter M, by removing all columns Ci, (> (gap-percent Ci) pgap) to get M'. Uses FSPS-FN, a function taking a combination count or window width of N and a sequence collection, to compute the frequencies and probabilities of columns Ci in M' by means of seqs-freqs-probs. Let Ci-fs-ps be the results for Ci. Typically such a result would be a triple [fs ps cnt], where fs and ps are maps of frequencies and corresponding probabilities keyed by the n-tuple of bases (and possibly gaps) underlying fsps-fn (see, for example, cc-freqs-probs). If NOGAPS is true, remove all items with gaps from maps and recompute new probabilities for resulting reduced frequencies sets. For large (count seqset) with expensive fss-fn, use par to parallelize computation over par chunks. Returns [ccfs&ps allfs allps tcount], where ccfs&ps is the seq Ci-fs-ps calculated from M' allfs is the map of freqs obtained by reducing over all Ci-fs maps allps is the map of probs obtained by reducing over all Ci-ps maps tcount is the total item (obtained n-tuples) count. " [n seqset & {:keys [fsps-fn cols nogaps norm pgap par] :or {fsps-fn cc-combins-freqs-probs cols false nogaps true norm true pgap 0.70 par 1}}] {:pre [(gaisr-seq-set? seqset)]} (let [aln (cond (and (coll? seqset) cols) (transpose seqset) (coll? seqset) seqset :else (read-aln-seqs seqset :cols cols)) aln (if (= pgap 1.0) aln (filter-pgap aln pgap)) [colsfsps fs ps cnt] (seqs-freqs-probs n aln :fsps-fn fsps-fn :nogaps nogaps :norm norm :par par)] [colsfsps fs ps cnt])) (defn bg-freqs "Perform a bacground frequency distribution calculation over the sequences in FILESPECS (a coll of legal format sequence files or a directory of such or if dirdir is true, a directory of directories of such, see read-seqs). FTYPES gives the file types in the cases where filespecs is a dir or dirdir. By default, the distributions are performed with a sliding window of N length. So, on DNA/RNA sequences 1 gives base probabilities, 2 gives a dinucleotide distribution, etc. To change this supply a different freq&prob calculation function for fsps-fn. For more information see seqs-freqs-probs description. If cols is true, computation is over the columns of the sequences. if sym? is true, treat reversable keys as equal. If nogaps is true, removes default gap characters from calculation. If nogaps is a coll (for example, (keys +NONSTD-RNA+)), removes all those characters from calculation. If norm is true, normalize characters to upper case. " [n filespecs & {:keys [fsps-fn ftypes dirdir cols sym? nogaps norm par] :or {fsps-fn cc-freqs-probs ftypes [".sto"] dirdir false cols false sym? false mnogaps false norm true par 1}}] (let [isdir (and (not (coll? filespecs)) (fs/directory? filespecs)) filespecs (cond (and isdir (not dirdir)) (apply concat (map #(fs/directory-files filespecs %) ftypes)) dirdir filespecs ; keep as original dirdir filespec :else filespecs) merger (fn[M m] (merge-with + M m)) f (fn[sqs] (second (seqs-freqs-probs n sqs :fsps-fn fsps-fn :nogaps nogaps :norm norm :par par))) fs (cond (and isdir dirdir) (reduce (fn[M m] (merge-with + M m)) (map #(bg-freqs n % :fsps-fn fsps-fn :ftypes ftypes :cols cols :nogaps nogaps :norm norm :par par) (fs/directory-files filespecs ""))) (seq filespecs) (if cols (reduce-aln-seqs f merger cols filespecs) (reduce-seqs f merger filespecs)) :else nil)] (if sym? (coalesce-xy-yx fs (fn [x v] (if (not v) 0 (+ (val x) v)))) fs))) (defn bg-freqs-probs "Like bg-freqs, but with the additional final computation of probability distribution for the frequency distribution " [n filespecs & {:keys [fsps-fn ftypes dirdir cols sym? nogaps norm par] :or {fsps-fn cc-freqs-probs ftypes [".sto"] dirdir false cols false sym? false nogaps false norm true par 1}}] (let [fqs (bg-freqs n filespecs :fsps-fn fsps-fn :ftypes ftypes :dirdir dirdir :cols cols :sym? sym? :nogaps nogaps :norm norm :par par)] [fqs (probs fqs)])) (defn seqs-shannon-entropy "Returns the Shannon entropy of the set of sequences in SEQSET, a collection of sequences or a string denoting a legal format sequence file (see read-seqs). Returns a pair [ses total-ses], where ses is (map shannon-entropy seqset) and total-ses is the total over all of seqset. " [seqset] {:pre [(gaisr-seq-set? seqset)]} (let [ses (if (coll? seqset) (map shannon-entropy seqset) (map shannon-entropy (read-seqs seqset)))] [ses (/ (sum ses) (count ses))])) (defn aln-entropy "Compute the entropy of each column Ci of an alignment given in SEQSET, a gaisr-seq-set. Entropy is based on the freqs and probs of elements of Ci taken n at a time. ARGS are any keyword arguments taken by aln-freqs-probs. The manner of taking the elements is determined by the fsps-fn argument of aln-freqs-probs. The default for this, cc-combins-freqs-probs is based on the combins function, which generates all n-element subsets of Ci. cc-freqs-probs is based on freqn which generates the sliding window of n elements from Ci. Returns [cols-entropies total-entropy tcnt], where cols-entropies is a seq of entropies for each Ci total-entropy is the total entropy over all the columns (from total probs) tcnt is the total over all columns of elements counted " [n seqset & args] {:pre [(gaisr-seq-set? seqset)]} (let [[col-fs-ps allfs allps tcnt] (apply aln-freqs-probs n seqset args) entropy (fn[probs] (- (sum #(* % (log2 %)) probs)))] [(map entropy (map #(vals (second %)) col-fs-ps)) (entropy (vals allps)) tcnt])) (defn aln-shannon-entropy "Application of aln-entropy with cc-freqs-probs and n=1. So, shannon entropy of each column and totals over all columns. " [seqset & args] (apply aln-entropy 1 seqset :fsps-fn cc-freqs-probs args)) (defn aln-joint-entropy "Application of aln-entropy with cc-combins-freqs-probs and n=2. So, joint entropy of each column with itself and overall totals. " [seqset & args] (apply aln-entropy 2 seqset :fsps-fn cc-combins-freqs-probs args)) (defn- adjust-seqs-info "Helper function. Filters and transforms SQS according to switches COLS, NORM, and PGAP. If cols transpose the matrix represented by SQS. If norm, normalize elements of sqs by means of norm-elements. In all cases filter out sqs with gap content greater than pgap (a percentage value that defaults to 0.25) " [sqs cols norm pgap] (cond (and cols norm) (-> sqs transpose (filter-pgap pgap) norm-elements) cols (-> sqs transpose (filter-pgap pgap) norm-elements) norm (-> sqs (filter-pgap pgap) norm-elements) (= pgap 1.0) sqs :else (filter-pgap sqs pgap))) (defn- account-for-symmetry "Helper function for aln-conditional-mutual-information. Transform content (triples of xy base keys and associated \"residual\" column bases so that all xy yx keys are treated as multiple counts of xy. That is, treat keys as symmetrically equal. This occurs _before_ freq counts, so achieve this effect by literally duplicating elements in the resulting collection. " [triples] (let [x (coalesce-xy-yx triples ;; just add copies of existing one (fn [x v] (if (not v) () (cons (second x) v))))] ;; Now flatten the result - note not amenable to std flatten fn! (reduce (fn[c [x vs]] (reduce (fn[c v] (conj c [x v])) c vs)) [] x))) (defn- seq-pairs&indices "Helper function for *mutual-information computations. Removes all seqs with more than pgap percentage of gaps and from the resulting set, creates the sets of seq pairs and corresponding indices. " [aln pgap par] (let [cnt (count aln) seqs&indices (partition-all 2 (interleave aln (range cnt))) seqs&indices (pxmap (fn[[s i]] (when (seq (filter-pgap [s] pgap)) [s i])) par seqs&indices) seqs&indices (filter #(not (empty? %)) seqs&indices) ; remove nulls seq-pairs&indices (map (fn[x] (transpose x)) (combins 2 seqs&indices))] [(map first seq-pairs&indices) (map second seq-pairs&indices)])) (defn aln-conditional-mutual-information "Mutual information of all 2 column pairs in an alignment conditioned by the residual - unordered - bases of the remaining columns. Let colpairs be (combins 2 (transpose aln)). For any pair of columns [X Y] in colpairs, let Z be colpairs - {X Y}. Compute I(X;Y|Z), the mutual information for X&Y given Z. " [seqset & {par :par nogaps :nogaps pgap :pgap cols :cols norm :norm sym? :sym? :or {par 1 nogaps true pgap 0.25 cols true norm true sym? true}}] {:pre [(gaisr-seq-set? seqset)]} (let [aln (if (coll? seqset) seqset (read-aln-seqs seqset)) aln (adjust-seqs-info aln cols norm 1.0) [seq-pairs indices] (seq-pairs&indices aln pgap par) aln-map (reduce (fn[m [s1 s2]] (assoc m s1 true s2 true)) {} seq-pairs) triples (pxmap (fn[[x y]] (partition-all 2 (interleave (transpose [x y]) (map (fn[fs] (-> fs ((partial freqn 1)) (#(if nogaps (degap-freqs %) %)))) (transpose (keys (dissoc aln-map x y))))))) par seq-pairs) triples (if nogaps (pxmap #(filter (fn[[xy _]] (not (gaps? xy))) %) par triples) triples) triples (if sym? (pxmap account-for-symmetry par triples) triples) xyz-joint-probs (map #(probs 1 %) triples) HXYZ (map entropy xyz-joint-probs) z-probs (map (fn[tpl] (probs 1 (map second tpl))) triples) HZ (map entropy z-probs) xz-joint-probs (pxmap (fn[tpl] (probs 1 (map (fn[[xy z]] [(first xy) z]) tpl))) par triples) HXZ (map entropy xz-joint-probs) yz-joint-probs (pxmap (fn[tpl] (probs 1 (map (fn[[xy z]] [(second xy) z]) tpl))) par triples) HYZ (map entropy yz-joint-probs) Ixy|z (pxmap (fn[Hxz Hyz Hxyz Hz] (let [Ixy|z (+ Hxz Hyz (- Hxyz) (- Hz))] (cond (>= Ixy|z 0.0) Ixy|z (< (math/abs Ixy|z) 1.0E-10) 0.0 :else (raise :type :negIxy|z :Ixy|z Ixy|z :Hxz Hxz :Hyz Hyz :Hxyz Hxyz :Hz Hz)))) par HXZ HYZ HXYZ HZ)] [Ixy|z seq-pairs indices])) (defn aln-mutual-information "" [seqset & {:keys [par nogaps pgap cols norm sym?] :or {par 1 nogaps true pgap 0.25 cols false norm true sym? true}}] {:pre [(gaisr-seq-set? seqset)]} (let [probs (fn[fs] (let [sz (sum fs)] (reduce (fn[m [k v]] (assoc m k (double (/ v sz)))) {} fs))) entropy (fn[probs] (- (sum #(* % (ln %)) (vals probs)))) aln (if (coll? seqset) seqset (read-aln-seqs seqset)) aln (adjust-seqs-info aln cols norm 1.0) [seq-pairs indices] (seq-pairs&indices aln pgap par) pair-freqs (pxmap #(combin-count-reduction % sym?) par (map transpose seq-pairs)) pair-freqs (if nogaps (map degap-freqs pair-freqs) pair-freqs) joint-probs (map probs pair-freqs) joint-entropy (map entropy joint-probs) mutual-info (pxmap (fn[Hxy sp] (let [[x y] (if nogaps (degap-tuples sp) sp) Hx (shannon-entropy x :logfn ln) Hy (shannon-entropy y :logfn ln) Ixy (+ Hx Hy (- Hxy))] (cond (>= Ixy 0.0) Ixy (< (math/abs Ixy) 1.0E-10) 0.0 :else (raise :type :negIxy :Ixy Ixy :Hxy Hxy :pair sp)))) par joint-entropy seq-pairs)] [mutual-info joint-entropy seq-pairs pair-freqs indices])) (defn seq-pairs-bpfreqs [seq-pairs & {:keys [nogaps sym? par] :or {nogaps true sym? true par 4}}] (pxmap (fn[p] (let [fm (combin-count-reduction (transpose p) sym?)] (if nogaps (degap-freqs fm) fm))) par seq-pairs)) (defn bp-stats [bp-freq-map] (let [sz (sum bp-freq-map) au (get bp-freq-map "AU" 0) ua (get bp-freq-map "UA" 0) AU (+ au ua) gc (get bp-freq-map "GC" 0) cg (get bp-freq-map "CG" 0) GC (+ gc cg) bps (+ AU GC)] [{:BP bps :AU AU :GC GC :au au :ua ua :gc gc :cg cg} {:BP (double (/ bps sz)) :AU (double (/ AU sz)) :GC (double (/ GC sz))} sz])) (defn seq-vi [seqx seqy & {nogaps :nogaps :or {nogaps true}}] (let [seqs [seqx seqy] [[Ixy] [Hxy]] (aln-mutual-information seqs :pgap 1.0 :nogaps nogaps)] (cond (and (= Hxy 0.0) (not= seqx seqy)) 1 (= Hxy 0.0) 0 :else (- 1.0 (/ Ixy Hxy)))))
[ { "context": " :username username\n :passw", "end": 2023, "score": 0.9987632036209106, "start": 2015, "tag": "USERNAME", "value": "username" }, { "context": " :password password\n :custo", "end": 2085, "score": 0.9989678263664246, "start": 2077, "tag": "PASSWORD", "value": "password" } ]
code/src/sixsq/nuvla/server/resources/user_email_password.clj
nuvla/server
6
(ns sixsq.nuvla.server.resources.user-email-password " Contains the functions necessary to create a user resource from an email address and password. " (:require [sixsq.nuvla.server.resources.callback :as callback] [sixsq.nuvla.server.resources.callback-user-email-validation :as user-email-callback] [sixsq.nuvla.server.resources.common.utils :as u] [sixsq.nuvla.server.resources.email.utils :as email-utils] [sixsq.nuvla.server.resources.spec.user-template-email-password :as spec-email-password] [sixsq.nuvla.server.resources.user-interface :as p] [sixsq.nuvla.server.resources.user-template-email-password :as email-password] [sixsq.nuvla.server.resources.user.password :as password-utils] [sixsq.nuvla.server.resources.user.utils :as user-utils])) ;; ;; multimethod for validation ;; (def create-validate-fn-email (u/create-spec-validation-fn ::spec-email-password/schema-create)) (defmethod p/create-validate-subtype email-password/registration-method [{resource :template :as create-document}] (user-utils/check-password-constraints resource) (create-validate-fn-email create-document)) ;; ;; transformation of template ;; (defmethod p/tpl->user email-password/registration-method [resource _request] [nil (password-utils/create-user-map resource)]) ;; ;; create/update all related resources ;; ;; ;; creates email validation callback after user is created ;; logs and then ignores any exceptions when creating callback ;; (def create-user-email-callback (partial callback/create user-email-callback/action-name)) (defmethod p/post-user-add email-password/registration-method [{:keys [id redirect-url] :as _resource} {:keys [base-uri body] :as _request}] (try (let [{{:keys [email password username customer]} :template} body callback-data {:redirect-url redirect-url}] (user-utils/create-user-subresources id :email email :username username :password password :customer customer) (-> (create-user-email-callback base-uri id :data callback-data) (email-utils/send-validation-email email))) (catch Exception e (user-utils/delete-user id) (throw e))))
123530
(ns sixsq.nuvla.server.resources.user-email-password " Contains the functions necessary to create a user resource from an email address and password. " (:require [sixsq.nuvla.server.resources.callback :as callback] [sixsq.nuvla.server.resources.callback-user-email-validation :as user-email-callback] [sixsq.nuvla.server.resources.common.utils :as u] [sixsq.nuvla.server.resources.email.utils :as email-utils] [sixsq.nuvla.server.resources.spec.user-template-email-password :as spec-email-password] [sixsq.nuvla.server.resources.user-interface :as p] [sixsq.nuvla.server.resources.user-template-email-password :as email-password] [sixsq.nuvla.server.resources.user.password :as password-utils] [sixsq.nuvla.server.resources.user.utils :as user-utils])) ;; ;; multimethod for validation ;; (def create-validate-fn-email (u/create-spec-validation-fn ::spec-email-password/schema-create)) (defmethod p/create-validate-subtype email-password/registration-method [{resource :template :as create-document}] (user-utils/check-password-constraints resource) (create-validate-fn-email create-document)) ;; ;; transformation of template ;; (defmethod p/tpl->user email-password/registration-method [resource _request] [nil (password-utils/create-user-map resource)]) ;; ;; create/update all related resources ;; ;; ;; creates email validation callback after user is created ;; logs and then ignores any exceptions when creating callback ;; (def create-user-email-callback (partial callback/create user-email-callback/action-name)) (defmethod p/post-user-add email-password/registration-method [{:keys [id redirect-url] :as _resource} {:keys [base-uri body] :as _request}] (try (let [{{:keys [email password username customer]} :template} body callback-data {:redirect-url redirect-url}] (user-utils/create-user-subresources id :email email :username username :password <PASSWORD> :customer customer) (-> (create-user-email-callback base-uri id :data callback-data) (email-utils/send-validation-email email))) (catch Exception e (user-utils/delete-user id) (throw e))))
true
(ns sixsq.nuvla.server.resources.user-email-password " Contains the functions necessary to create a user resource from an email address and password. " (:require [sixsq.nuvla.server.resources.callback :as callback] [sixsq.nuvla.server.resources.callback-user-email-validation :as user-email-callback] [sixsq.nuvla.server.resources.common.utils :as u] [sixsq.nuvla.server.resources.email.utils :as email-utils] [sixsq.nuvla.server.resources.spec.user-template-email-password :as spec-email-password] [sixsq.nuvla.server.resources.user-interface :as p] [sixsq.nuvla.server.resources.user-template-email-password :as email-password] [sixsq.nuvla.server.resources.user.password :as password-utils] [sixsq.nuvla.server.resources.user.utils :as user-utils])) ;; ;; multimethod for validation ;; (def create-validate-fn-email (u/create-spec-validation-fn ::spec-email-password/schema-create)) (defmethod p/create-validate-subtype email-password/registration-method [{resource :template :as create-document}] (user-utils/check-password-constraints resource) (create-validate-fn-email create-document)) ;; ;; transformation of template ;; (defmethod p/tpl->user email-password/registration-method [resource _request] [nil (password-utils/create-user-map resource)]) ;; ;; create/update all related resources ;; ;; ;; creates email validation callback after user is created ;; logs and then ignores any exceptions when creating callback ;; (def create-user-email-callback (partial callback/create user-email-callback/action-name)) (defmethod p/post-user-add email-password/registration-method [{:keys [id redirect-url] :as _resource} {:keys [base-uri body] :as _request}] (try (let [{{:keys [email password username customer]} :template} body callback-data {:redirect-url redirect-url}] (user-utils/create-user-subresources id :email email :username username :password PI:PASSWORD:<PASSWORD>END_PI :customer customer) (-> (create-user-email-callback base-uri id :data callback-data) (email-utils/send-validation-email email))) (catch Exception e (user-utils/delete-user id) (throw e))))
[ { "context": "\n Returns a structure like this:\n {\\\"eppn\\\" \\\"developer\\\"\n \\\"email\\\" \\\"developer@e.mail\\\"\n \\\"displa", "end": 580, "score": 0.6115289330482483, "start": 571, "tag": "NAME", "value": "developer" }, { "context": " this:\n {\\\"eppn\\\" \\\"developer\\\"\n \\\"email\\\" \\\"developer@e.mail\\\"\n \\\"displayName\\\" \\\"deve\\\"\n \\\"surname\\\" \\\"", "end": 615, "score": 0.9982247352600098, "start": 599, "tag": "EMAIL", "value": "developer@e.mail" }, { "context": "mail\\\" \\\"developer@e.mail\\\"\n \\\"displayName\\\" \\\"deve\\\"\n \\\"surname\\\" \\\"loper\\\"\n ...etc}\"\n [useri", "end": 644, "score": 0.9884516000747681, "start": 640, "tag": "NAME", "value": "deve" }, { "context": "\\\"\n \\\"displayName\\\" \\\"deve\\\"\n \\\"surname\\\" \\\"loper\\\"\n ...etc}\"\n [userid]\n (parse-string (:usera", "end": 670, "score": 0.9983165264129639, "start": 665, "tag": "NAME", "value": "loper" } ]
src/clj/rems/db/users.clj
JerryTraskelin/rems
0
(ns rems.db.users (:require [cheshire.core :refer [generate-string parse-string]] [rems.db.core :as db])) (defn add-user! [user userattrs] (assert (and userattrs user) "User or user attributes missing!") (db/add-user! {:user user :userattrs (generate-string userattrs)})) (defn add-user-if-logged-in! [user userattrs] (when user (add-user! user userattrs))) (defn get-user-attributes "Takes as user id as an input and fetches user attributes that are stored in a json blob in the users table. Returns a structure like this: {\"eppn\" \"developer\" \"email\" \"developer@e.mail\" \"displayName\" \"deve\" \"surname\" \"loper\" ...etc}" [userid] (parse-string (:userattrs (db/get-user-attributes {:user userid})))) (defn get-all-users [] (->> (db/get-users) (map :userid) (map get-user-attributes) (doall)))
22867
(ns rems.db.users (:require [cheshire.core :refer [generate-string parse-string]] [rems.db.core :as db])) (defn add-user! [user userattrs] (assert (and userattrs user) "User or user attributes missing!") (db/add-user! {:user user :userattrs (generate-string userattrs)})) (defn add-user-if-logged-in! [user userattrs] (when user (add-user! user userattrs))) (defn get-user-attributes "Takes as user id as an input and fetches user attributes that are stored in a json blob in the users table. Returns a structure like this: {\"eppn\" \"<NAME>\" \"email\" \"<EMAIL>\" \"displayName\" \"<NAME>\" \"surname\" \"<NAME>\" ...etc}" [userid] (parse-string (:userattrs (db/get-user-attributes {:user userid})))) (defn get-all-users [] (->> (db/get-users) (map :userid) (map get-user-attributes) (doall)))
true
(ns rems.db.users (:require [cheshire.core :refer [generate-string parse-string]] [rems.db.core :as db])) (defn add-user! [user userattrs] (assert (and userattrs user) "User or user attributes missing!") (db/add-user! {:user user :userattrs (generate-string userattrs)})) (defn add-user-if-logged-in! [user userattrs] (when user (add-user! user userattrs))) (defn get-user-attributes "Takes as user id as an input and fetches user attributes that are stored in a json blob in the users table. Returns a structure like this: {\"eppn\" \"PI:NAME:<NAME>END_PI\" \"email\" \"PI:EMAIL:<EMAIL>END_PI\" \"displayName\" \"PI:NAME:<NAME>END_PI\" \"surname\" \"PI:NAME:<NAME>END_PI\" ...etc}" [userid] (parse-string (:userattrs (db/get-user-attributes {:user userid})))) (defn get-all-users [] (->> (db/get-users) (map :userid) (map get-user-attributes) (doall)))
[ { "context": " {:crux.db/id :ids.people/Charles\n :person/name \"Charl", "end": 400, "score": 0.97196364402771, "start": 393, "tag": "NAME", "value": "Charles" }, { "context": "arles\n :person/name \"Charles\"\n :person/born #inst", "end": 452, "score": 0.9995168447494507, "start": 445, "tag": "NAME", "value": "Charles" }, { "context": " {:crux.db/id :ids.people/Mary\n :person/name \"Mary\"", "end": 1048, "score": 0.9391052722930908, "start": 1044, "tag": "NAME", "value": "Mary" }, { "context": "/Mary\n :person/name \"Mary\"\n :person/born #inst", "end": 1097, "score": 0.999557614326477, "start": 1093, "tag": "NAME", "value": "Mary" }, { "context": " {:crux.db/id :ids.people/Joe\n :person/name \"Joe\"", "end": 1562, "score": 0.5456394553184509, "start": 1560, "tag": "NAME", "value": "Jo" }, { "context": "e/Joe\n :person/name \"Joe\"\n :person/born #inst", "end": 1611, "score": 0.9993699789047241, "start": 1608, "tag": "NAME", "value": "Joe" }, { "context": " :person/int 40,\n :person/name \"Charles\",\n :person/gold 10000,\n ", "end": 4795, "score": 0.9995152950286865, "start": 4788, "tag": "NAME", "value": "Charles" }, { "context": " :person/name\n \"Charles\"]])))\n\n (t/is (= #{[:ids.people/Charles \"Charl", "end": 5187, "score": 0.9988358020782471, "start": 5180, "tag": "NAME", "value": "Charles" }, { "context": "arles\"]])))\n\n (t/is (= #{[:ids.people/Charles \"Charles\" 40]}\n (crux/q db\n ", "end": 5239, "score": 0.9985859394073486, "start": 5232, "tag": "NAME", "value": "Charles" }, { "context": " :where\n [?e :person/name \"Charles\"]\n [?e :person/name ?name]\n", "end": 5391, "score": 0.9988397359848022, "start": 5384, "tag": "NAME", "value": "Charles" }, { "context": "t-id :artefact/title ?atitle]])\n\n (t/is (= #{[\"Mary\" \"A used sword\"]\n [\"Mary\" \"Flintloc", "end": 7740, "score": 0.9998421669006348, "start": 7736, "tag": "NAME", "value": "Mary" }, { "context": "/is (= #{[\"Mary\" \"A used sword\"]\n [\"Mary\" \"Flintlock pistol\"]\n [\"Charles\" \"A", "end": 7779, "score": 0.9996936917304993, "start": 7775, "tag": "NAME", "value": "Mary" }, { "context": " [\"Mary\" \"Flintlock pistol\"]\n [\"Charles\" \"A Rather Cozy Mug\"]\n [\"Charles\" \"", "end": 7825, "score": 0.9997998476028442, "start": 7818, "tag": "NAME", "value": "Charles" }, { "context": " [\"Charles\" \"A Rather Cozy Mug\"]\n [\"Charles\" \"Key from an unknown door\"]}\n (crux/", "end": 7872, "score": 0.989447295665741, "start": 7865, "tag": "NAME", "value": "Charles" }, { "context": "6-05-01\") who-has-what-query)))\n\n (t/is (= #{[\"Mary\" \"A used sword\"] [\"Mary\" \"Flintlock pistol\"]}\n ", "end": 8002, "score": 0.9998248815536499, "start": 7998, "tag": "NAME", "value": "Mary" }, { "context": "uery)))\n\n (t/is (= #{[\"Mary\" \"A used sword\"] [\"Mary\" \"Flintlock pistol\"]}\n (crux/q (crux/", "end": 8026, "score": 0.9997096061706543, "start": 8022, "tag": "NAME", "value": "Mary" }, { "context": " '[:find ?name\n :args {ids #{:ids.people/Charles :ids.people/Mary}}\n :where\n [?e :pe", "end": 8215, "score": 0.9721665382385254, "start": 8208, "tag": "NAME", "value": "Charles" }, { "context": " :args {ids #{:ids.people/Charles :ids.people/Mary}}\n :where\n [?e :person/name ?name]\n", "end": 8232, "score": 0.9761571884155273, "start": 8228, "tag": "NAME", "value": "Mary" }, { "context": "s? ids ?e)]\n :limit 10])\n\n (t/is (= #{[\"Mary\"] [\"Charles\"]}\n (set (crux/q (crux/db", "end": 8353, "score": 0.9998461008071899, "start": 8349, "tag": "NAME", "value": "Mary" }, { "context": ")]\n :limit 10])\n\n (t/is (= #{[\"Mary\"] [\"Charles\"]}\n (set (crux/q (crux/db node #inst ", "end": 8365, "score": 0.9998131394386292, "start": 8358, "tag": "NAME", "value": "Charles" }, { "context": " :person/int 50,\n :person/name \"Charles\",\n :crux.db/id :ids.people/Charles,\n", "end": 10155, "score": 0.9995663166046143, "start": 10148, "tag": "NAME", "value": "Charles" }, { "context": " :person/int 50,\n :person/name \"Charles\",\n :person/gold 10000,\n ", "end": 10931, "score": 0.9991443157196045, "start": 10924, "tag": "NAME", "value": "Charles" }, { "context": " theft-date]])))\n (t/is (= #{[\"Mary\" \"A used sword\"]\n [\"Mary\" \"Flintloc", "end": 11865, "score": 0.9997661113739014, "start": 11861, "tag": "NAME", "value": "Mary" }, { "context": "/is (= #{[\"Mary\" \"A used sword\"]\n [\"Mary\" \"Flintlock pistol\"]\n [\"Mary\" \"A Ra", "end": 11904, "score": 0.999778151512146, "start": 11900, "tag": "NAME", "value": "Mary" }, { "context": " [\"Mary\" \"Flintlock pistol\"]\n [\"Mary\" \"A Rather Cozy Mug\"]\n [\"Charles\" \"", "end": 11947, "score": 0.9997435212135315, "start": 11943, "tag": "NAME", "value": "Mary" }, { "context": " [\"Mary\" \"A Rather Cozy Mug\"]\n [\"Charles\" \"Key from an unknown door\"]}\n (crux/", "end": 11994, "score": 0.9994326829910278, "start": 11987, "tag": "NAME", "value": "Charles" }, { "context": " :ids.people/Mary\n mary\n mug-lost-date]\n ", "end": 13183, "score": 0.9991838335990906, "start": 13180, "tag": "NAME", "value": "ary" }, { "context": "crux.tx/put\n (update mary :person/has (comp set disj) :ids.artefacts/cozy-m", "end": 13317, "score": 0.931512176990509, "start": 13313, "tag": "NAME", "value": "mary" }, { "context": " mug-lost-date]])))\n (t/is (= #{[\"Mary\" \"A used sword\"] [\"Mary\" \"Flintlock pistol\"]}\n ", "end": 13442, "score": 0.9994020462036133, "start": 13438, "tag": "NAME", "value": "Mary" }, { "context": "ate]])))\n (t/is (= #{[\"Mary\" \"A used sword\"] [\"Mary\" \"Flintlock pistol\"]}\n (crux/q\n ", "end": 13466, "score": 0.9993926286697388, "start": 13462, "tag": "NAME", "value": "Mary" }, { "context": "-tx node (first-ownership-tx)))\n\n (t/is (= #{[\"Mary\" \"A used sword\"]\n [\"Mary\" \"Flintloc", "end": 13685, "score": 0.999458909034729, "start": 13681, "tag": "NAME", "value": "Mary" }, { "context": "/is (= #{[\"Mary\" \"A used sword\"]\n [\"Mary\" \"Flintlock pistol\"]\n [\"Mary\" \"A Ra", "end": 13724, "score": 0.9991211891174316, "start": 13720, "tag": "NAME", "value": "Mary" }, { "context": " [\"Mary\" \"Flintlock pistol\"]\n [\"Mary\" \"A Rather Cozy Mug\"]}\n (crux/q\n ", "end": 13767, "score": 0.9994938373565674, "start": 13763, "tag": "NAME", "value": "Mary" }, { "context": " who-has-what-query)))\n\n (t/is (= #{[\"Mary\" \"A used sword\"]\n [\"Mary\" \"Flintloc", "end": 13918, "score": 0.999200701713562, "start": 13914, "tag": "NAME", "value": "Mary" }, { "context": "/is (= #{[\"Mary\" \"A used sword\"]\n [\"Mary\" \"Flintlock pistol\"]\n [\"Mary\" \"A Ra", "end": 13957, "score": 0.9995230436325073, "start": 13953, "tag": "NAME", "value": "Mary" }, { "context": " [\"Mary\" \"Flintlock pistol\"]\n [\"Mary\" \"A Rather Cozy Mug\"]\n [\"Charles\" \"", "end": 14000, "score": 0.9991000890731812, "start": 13996, "tag": "NAME", "value": "Mary" }, { "context": " [\"Mary\" \"A Rather Cozy Mug\"]\n [\"Charles\" \"Key from an unknown door\"]}\n (crux/", "end": 14047, "score": 0.999589741230011, "start": 14040, "tag": "NAME", "value": "Charles" }, { "context": " who-has-what-query)))\n\n (t/is (= #{[\"Mary\" \"A used sword\"]\n [\"Mary\" \"Flintloc", "end": 14205, "score": 0.9993635416030884, "start": 14201, "tag": "NAME", "value": "Mary" }, { "context": "/is (= #{[\"Mary\" \"A used sword\"]\n [\"Mary\" \"Flintlock pistol\"]}\n (crux/q\n ", "end": 14244, "score": 0.9994920492172241, "start": 14240, "tag": "NAME", "value": "Mary" } ]
crux-test/test/crux/bitemporal_tale_test.clj
deobald/crux
0
(ns crux.bitemporal-tale-test (:require [crux.api :as crux] [clojure.test :as t] [clojure.java.io :as io])) (t/deftest bitemporal-tale-test (with-open [node (crux/start-node {})] (t/is node) (crux/await-tx node (crux/submit-tx node [[:crux.tx/put {:crux.db/id :ids.people/Charles :person/name "Charles" :person/born #inst "1700-05-18" :person/location :ids.places/rarities-shop :person/str 40 :person/int 40 :person/dex 40 :person/hp 40 :person/gold 10000} #inst "1700-05-18"]])) (crux/await-tx node (crux/submit-tx node [[:crux.tx/put {:crux.db/id :ids.people/Mary :person/name "Mary" :person/born #inst "1710-05-18" :person/location :ids.places/carribean :person/str 40 :person/int 50 :person/dex 50 :person/hp 50} #inst "1710-05-18"] [:crux.tx/put {:crux.db/id :ids.people/Joe :person/name "Joe" :person/born #inst "1715-05-18" :person/location :ids.places/city :person/str 39 :person/int 40 :person/dex 60 :person/hp 60 :person/gold 70} #inst "1715-05-18"]])) (crux/await-tx node (crux/submit-tx node [[:crux.tx/put {:crux.db/id :ids.artefacts/cozy-mug :artefact/title "A Rather Cozy Mug" :artefact.perks/int 3} #inst "1625-05-18"] [:crux.tx/put {:crux.db/id :ids.artefacts/forbidden-beans :artefact/title "Magic beans" :artefact.perks/int 30 :artefact.perks/hp -20} #inst "1500-05-18"] [:crux.tx/put {:crux.db/id :ids.artefacts/pirate-sword :artefact/title "A used sword"} #inst "1710-05-18"] [:crux.tx/put {:crux.db/id :ids.artefacts/flintlock-pistol :artefact/title "Flintlock pistol"} #inst "1710-05-18"] [:crux.tx/put {:crux.db/id :ids.artefacts/unknown-key :artefact/title "Key from an unknown door"} #inst "1700-05-18"] [:crux.tx/put {:crux.db/id :ids.artefacts/laptop :artefact/title "A Tell DPS Laptop (what?)"} #inst "2016-05-18"]])) (crux/await-tx node (crux/submit-tx node [[:crux.tx/put {:crux.db/id :ids.places/continent :place/title "Ah The Continent"} #inst "1000-01-01"] [:crux.tx/put {:crux.db/id :ids.places/carribean :place/title "Ah The Good Ol Carribean Sea" :place/location :ids.places/carribean} #inst "1000-01-01"] [:crux.tx/put {:crux.db/id :ids.places/coconut-island :place/title "Coconut Island" :place/location :ids.places/carribean} #inst "1000-01-01"]])) (def db (crux/db node)) (t/is (= {:crux.db/id :ids.people/Charles, :person/str 40, :person/dex 40, :person/location :ids.places/rarities-shop, :person/hp 40, :person/int 40, :person/name "Charles", :person/gold 10000, :person/born #inst "1700-05-18T00:00:00.000-00:00"} (crux/entity db :ids.people/Charles))) (t/is (= #{[:ids.people/Charles]} (crux/q db '[:find ?entity-id :where [?entity-id :person/name "Charles"]]))) (t/is (= #{[:ids.people/Charles "Charles" 40]} (crux/q db '[:find ?e ?name ?int :where [?e :person/name "Charles"] [?e :person/name ?name] [?e :person/int ?int]]))) (t/is (= #{["Key from an unknown door"] ["Magic beans"] ["A used sword"] ["A Rather Cozy Mug"] ["A Tell DPS Laptop (what?)"] ["Flintlock pistol"]} (crux/q db '[:find ?name :where [_ :artefact/title ?name]]))) (crux/await-tx node (crux/submit-tx node [[:crux.tx/delete :ids.artefacts/forbidden-beans #inst "1690-05-18"]])) (crux/await-tx node (crux/submit-tx node [[:crux.tx/evict :ids.artefacts/laptop]])) (t/is (= #{["Key from an unknown door"] ["A used sword"] ["A Rather Cozy Mug"] ["Flintlock pistol"]} (crux/q (crux/db node) '[:find ?name :where [_ :artefact/title ?name]]))) (def world-in-1599 (crux/db node #inst "1599-01-01")) (t/is world-in-1599) (t/is (= #{["Magic beans"]} (crux/q world-in-1599 '[:find ?name :where [_ :artefact/title ?name]]))) (defn first-ownership-tx [] [(let [charles (crux/entity (crux/db node #inst "1725-05-17") :ids.people/Charles)] [:crux.tx/put (update charles :person/has (comp set conj) :ids.artefacts/cozy-mug :ids.artefacts/unknown-key) #inst "1725-05-18"]) (let [mary (crux/entity (crux/db node #inst "1715-05-17") :ids.people/Mary)] [:crux.tx/put (update mary :person/has (comp set conj) :ids.artefacts/pirate-sword :ids.artefacts/flintlock-pistol) #inst "1715-05-18"])]) (def first-ownership-tx-response (crux/submit-tx node (first-ownership-tx))) (crux/await-tx node first-ownership-tx-response) (def who-has-what-query '[:find ?name ?atitle :where [?p :person/name ?name] [?p :person/has ?artefact-id] [?artefact-id :artefact/title ?atitle]]) (t/is (= #{["Mary" "A used sword"] ["Mary" "Flintlock pistol"] ["Charles" "A Rather Cozy Mug"] ["Charles" "Key from an unknown door"]} (crux/q (crux/db node #inst "1726-05-01") who-has-what-query))) (t/is (= #{["Mary" "A used sword"] ["Mary" "Flintlock pistol"]} (crux/q (crux/db node #inst "1716-05-01") who-has-what-query))) (def parametrized-query '[:find ?name :args {ids #{:ids.people/Charles :ids.people/Mary}} :where [?e :person/name ?name] [(contains? ids ?e)] :limit 10]) (t/is (= #{["Mary"] ["Charles"]} (set (crux/q (crux/db node #inst "1726-05-01") parametrized-query)))) (defn entity-update [entity-id new-attrs valid-time] (let [entity-prev-value (crux/entity (crux/db node) entity-id)] (crux/submit-tx node [[:crux.tx/put (merge entity-prev-value new-attrs) valid-time]]))) (defn q [query] (crux/q (crux/db node) query)) (defn entity [entity-id] (crux/entity (crux/db node) entity-id)) (defn entity-at [entity-id valid-time] (crux/entity (crux/db node valid-time) entity-id)) (defn entity-with-adjacent [entity-id keys-to-pull] (let [db (crux/db node) ids->entities (fn [ids] (cond-> (map #(crux/entity db %) ids) (set? ids) set (vector? ids) vec))] (reduce (fn [e adj-k] (let [v (get e adj-k)] (assoc e adj-k (cond (keyword? v) (crux/entity db v) (or (set? v) (vector? v)) (ids->entities v) :else v)))) (crux/entity db entity-id) keys-to-pull))) (crux/await-tx node (entity-update :ids.people/Charles {:person/int 50} #inst "1730-05-18")) (t/is (= (entity :ids.people/Charles) {:person/str 40, :person/dex 40, :person/has #{:ids.artefacts/cozy-mug :ids.artefacts/unknown-key} :person/location :ids.places/rarities-shop, :person/hp 40, :person/int 50, :person/name "Charles", :crux.db/id :ids.people/Charles, :person/gold 10000, :person/born #inst "1700-05-18T00:00:00.000-00:00"})) (t/is (= (entity-with-adjacent :ids.people/Charles [:person/has]) {:crux.db/id :ids.people/Charles, :person/str 40, :person/dex 40, :person/has #{{:crux.db/id :ids.artefacts/unknown-key, :artefact/title "Key from an unknown door"} {:crux.db/id :ids.artefacts/cozy-mug, :artefact/title "A Rather Cozy Mug", :artefact.perks/int 3}}, :person/location :ids.places/rarities-shop, :person/hp 40, :person/int 50, :person/name "Charles", :person/gold 10000, :person/born #inst "1700-05-18T00:00:00.000-00:00"})) (crux/await-tx node (let [theft-date #inst "1740-06-18"] (crux/submit-tx node [[:crux.tx/put (update (entity-at :ids.people/Charles theft-date) :person/has disj :ids.artefacts/cozy-mug) theft-date] [:crux.tx/put (update (entity-at :ids.people/Mary theft-date) :person/has (comp set conj) :ids.artefacts/cozy-mug) theft-date]]))) (t/is (= #{["Mary" "A used sword"] ["Mary" "Flintlock pistol"] ["Mary" "A Rather Cozy Mug"] ["Charles" "Key from an unknown door"]} (crux/q (crux/db node #inst "1740-06-18") who-has-what-query))) (crux/await-tx node (let [marys-birth-inst #inst "1710-05-18" db (crux/db node marys-birth-inst) baby-mary (crux/entity db :ids.people/Mary)] (crux/submit-tx node [[:crux.tx/match :ids.people/Mary baby-mary marys-birth-inst] [:crux.tx/put (update baby-mary :person/has (comp set conj) :ids.artefacts/cozy-mug) marys-birth-inst]]))) (crux/await-tx node (let [mug-lost-date #inst "1723-01-09" db (crux/db node mug-lost-date) mary (crux/entity db :ids.people/Mary)] (crux/submit-tx node [[:crux.tx/match :ids.people/Mary mary mug-lost-date] [:crux.tx/put (update mary :person/has (comp set disj) :ids.artefacts/cozy-mug) mug-lost-date]]))) (t/is (= #{["Mary" "A used sword"] ["Mary" "Flintlock pistol"]} (crux/q (crux/db node #inst "1715-05-18") who-has-what-query))) (crux/await-tx node (crux/submit-tx node (first-ownership-tx))) (t/is (= #{["Mary" "A used sword"] ["Mary" "Flintlock pistol"] ["Mary" "A Rather Cozy Mug"]} (crux/q (crux/db node #inst "1715-05-18") who-has-what-query))) (t/is (= #{["Mary" "A used sword"] ["Mary" "Flintlock pistol"] ["Mary" "A Rather Cozy Mug"] ["Charles" "Key from an unknown door"]} (crux/q (crux/db node #inst "1740-06-19") who-has-what-query))) (t/is (= #{["Mary" "A used sword"] ["Mary" "Flintlock pistol"]} (crux/q (crux/db node #inst "1715-06-19" (:crux.tx/tx-time first-ownership-tx-response)) who-has-what-query)))))
102691
(ns crux.bitemporal-tale-test (:require [crux.api :as crux] [clojure.test :as t] [clojure.java.io :as io])) (t/deftest bitemporal-tale-test (with-open [node (crux/start-node {})] (t/is node) (crux/await-tx node (crux/submit-tx node [[:crux.tx/put {:crux.db/id :ids.people/<NAME> :person/name "<NAME>" :person/born #inst "1700-05-18" :person/location :ids.places/rarities-shop :person/str 40 :person/int 40 :person/dex 40 :person/hp 40 :person/gold 10000} #inst "1700-05-18"]])) (crux/await-tx node (crux/submit-tx node [[:crux.tx/put {:crux.db/id :ids.people/<NAME> :person/name "<NAME>" :person/born #inst "1710-05-18" :person/location :ids.places/carribean :person/str 40 :person/int 50 :person/dex 50 :person/hp 50} #inst "1710-05-18"] [:crux.tx/put {:crux.db/id :ids.people/<NAME>e :person/name "<NAME>" :person/born #inst "1715-05-18" :person/location :ids.places/city :person/str 39 :person/int 40 :person/dex 60 :person/hp 60 :person/gold 70} #inst "1715-05-18"]])) (crux/await-tx node (crux/submit-tx node [[:crux.tx/put {:crux.db/id :ids.artefacts/cozy-mug :artefact/title "A Rather Cozy Mug" :artefact.perks/int 3} #inst "1625-05-18"] [:crux.tx/put {:crux.db/id :ids.artefacts/forbidden-beans :artefact/title "Magic beans" :artefact.perks/int 30 :artefact.perks/hp -20} #inst "1500-05-18"] [:crux.tx/put {:crux.db/id :ids.artefacts/pirate-sword :artefact/title "A used sword"} #inst "1710-05-18"] [:crux.tx/put {:crux.db/id :ids.artefacts/flintlock-pistol :artefact/title "Flintlock pistol"} #inst "1710-05-18"] [:crux.tx/put {:crux.db/id :ids.artefacts/unknown-key :artefact/title "Key from an unknown door"} #inst "1700-05-18"] [:crux.tx/put {:crux.db/id :ids.artefacts/laptop :artefact/title "A Tell DPS Laptop (what?)"} #inst "2016-05-18"]])) (crux/await-tx node (crux/submit-tx node [[:crux.tx/put {:crux.db/id :ids.places/continent :place/title "Ah The Continent"} #inst "1000-01-01"] [:crux.tx/put {:crux.db/id :ids.places/carribean :place/title "Ah The Good Ol Carribean Sea" :place/location :ids.places/carribean} #inst "1000-01-01"] [:crux.tx/put {:crux.db/id :ids.places/coconut-island :place/title "Coconut Island" :place/location :ids.places/carribean} #inst "1000-01-01"]])) (def db (crux/db node)) (t/is (= {:crux.db/id :ids.people/Charles, :person/str 40, :person/dex 40, :person/location :ids.places/rarities-shop, :person/hp 40, :person/int 40, :person/name "<NAME>", :person/gold 10000, :person/born #inst "1700-05-18T00:00:00.000-00:00"} (crux/entity db :ids.people/Charles))) (t/is (= #{[:ids.people/Charles]} (crux/q db '[:find ?entity-id :where [?entity-id :person/name "<NAME>"]]))) (t/is (= #{[:ids.people/Charles "<NAME>" 40]} (crux/q db '[:find ?e ?name ?int :where [?e :person/name "<NAME>"] [?e :person/name ?name] [?e :person/int ?int]]))) (t/is (= #{["Key from an unknown door"] ["Magic beans"] ["A used sword"] ["A Rather Cozy Mug"] ["A Tell DPS Laptop (what?)"] ["Flintlock pistol"]} (crux/q db '[:find ?name :where [_ :artefact/title ?name]]))) (crux/await-tx node (crux/submit-tx node [[:crux.tx/delete :ids.artefacts/forbidden-beans #inst "1690-05-18"]])) (crux/await-tx node (crux/submit-tx node [[:crux.tx/evict :ids.artefacts/laptop]])) (t/is (= #{["Key from an unknown door"] ["A used sword"] ["A Rather Cozy Mug"] ["Flintlock pistol"]} (crux/q (crux/db node) '[:find ?name :where [_ :artefact/title ?name]]))) (def world-in-1599 (crux/db node #inst "1599-01-01")) (t/is world-in-1599) (t/is (= #{["Magic beans"]} (crux/q world-in-1599 '[:find ?name :where [_ :artefact/title ?name]]))) (defn first-ownership-tx [] [(let [charles (crux/entity (crux/db node #inst "1725-05-17") :ids.people/Charles)] [:crux.tx/put (update charles :person/has (comp set conj) :ids.artefacts/cozy-mug :ids.artefacts/unknown-key) #inst "1725-05-18"]) (let [mary (crux/entity (crux/db node #inst "1715-05-17") :ids.people/Mary)] [:crux.tx/put (update mary :person/has (comp set conj) :ids.artefacts/pirate-sword :ids.artefacts/flintlock-pistol) #inst "1715-05-18"])]) (def first-ownership-tx-response (crux/submit-tx node (first-ownership-tx))) (crux/await-tx node first-ownership-tx-response) (def who-has-what-query '[:find ?name ?atitle :where [?p :person/name ?name] [?p :person/has ?artefact-id] [?artefact-id :artefact/title ?atitle]]) (t/is (= #{["<NAME>" "A used sword"] ["<NAME>" "Flintlock pistol"] ["<NAME>" "A Rather Cozy Mug"] ["<NAME>" "Key from an unknown door"]} (crux/q (crux/db node #inst "1726-05-01") who-has-what-query))) (t/is (= #{["<NAME>" "A used sword"] ["<NAME>" "Flintlock pistol"]} (crux/q (crux/db node #inst "1716-05-01") who-has-what-query))) (def parametrized-query '[:find ?name :args {ids #{:ids.people/<NAME> :ids.people/<NAME>}} :where [?e :person/name ?name] [(contains? ids ?e)] :limit 10]) (t/is (= #{["<NAME>"] ["<NAME>"]} (set (crux/q (crux/db node #inst "1726-05-01") parametrized-query)))) (defn entity-update [entity-id new-attrs valid-time] (let [entity-prev-value (crux/entity (crux/db node) entity-id)] (crux/submit-tx node [[:crux.tx/put (merge entity-prev-value new-attrs) valid-time]]))) (defn q [query] (crux/q (crux/db node) query)) (defn entity [entity-id] (crux/entity (crux/db node) entity-id)) (defn entity-at [entity-id valid-time] (crux/entity (crux/db node valid-time) entity-id)) (defn entity-with-adjacent [entity-id keys-to-pull] (let [db (crux/db node) ids->entities (fn [ids] (cond-> (map #(crux/entity db %) ids) (set? ids) set (vector? ids) vec))] (reduce (fn [e adj-k] (let [v (get e adj-k)] (assoc e adj-k (cond (keyword? v) (crux/entity db v) (or (set? v) (vector? v)) (ids->entities v) :else v)))) (crux/entity db entity-id) keys-to-pull))) (crux/await-tx node (entity-update :ids.people/Charles {:person/int 50} #inst "1730-05-18")) (t/is (= (entity :ids.people/Charles) {:person/str 40, :person/dex 40, :person/has #{:ids.artefacts/cozy-mug :ids.artefacts/unknown-key} :person/location :ids.places/rarities-shop, :person/hp 40, :person/int 50, :person/name "<NAME>", :crux.db/id :ids.people/Charles, :person/gold 10000, :person/born #inst "1700-05-18T00:00:00.000-00:00"})) (t/is (= (entity-with-adjacent :ids.people/Charles [:person/has]) {:crux.db/id :ids.people/Charles, :person/str 40, :person/dex 40, :person/has #{{:crux.db/id :ids.artefacts/unknown-key, :artefact/title "Key from an unknown door"} {:crux.db/id :ids.artefacts/cozy-mug, :artefact/title "A Rather Cozy Mug", :artefact.perks/int 3}}, :person/location :ids.places/rarities-shop, :person/hp 40, :person/int 50, :person/name "<NAME>", :person/gold 10000, :person/born #inst "1700-05-18T00:00:00.000-00:00"})) (crux/await-tx node (let [theft-date #inst "1740-06-18"] (crux/submit-tx node [[:crux.tx/put (update (entity-at :ids.people/Charles theft-date) :person/has disj :ids.artefacts/cozy-mug) theft-date] [:crux.tx/put (update (entity-at :ids.people/Mary theft-date) :person/has (comp set conj) :ids.artefacts/cozy-mug) theft-date]]))) (t/is (= #{["<NAME>" "A used sword"] ["<NAME>" "Flintlock pistol"] ["<NAME>" "A Rather Cozy Mug"] ["<NAME>" "Key from an unknown door"]} (crux/q (crux/db node #inst "1740-06-18") who-has-what-query))) (crux/await-tx node (let [marys-birth-inst #inst "1710-05-18" db (crux/db node marys-birth-inst) baby-mary (crux/entity db :ids.people/Mary)] (crux/submit-tx node [[:crux.tx/match :ids.people/Mary baby-mary marys-birth-inst] [:crux.tx/put (update baby-mary :person/has (comp set conj) :ids.artefacts/cozy-mug) marys-birth-inst]]))) (crux/await-tx node (let [mug-lost-date #inst "1723-01-09" db (crux/db node mug-lost-date) mary (crux/entity db :ids.people/Mary)] (crux/submit-tx node [[:crux.tx/match :ids.people/Mary m<NAME> mug-lost-date] [:crux.tx/put (update <NAME> :person/has (comp set disj) :ids.artefacts/cozy-mug) mug-lost-date]]))) (t/is (= #{["<NAME>" "A used sword"] ["<NAME>" "Flintlock pistol"]} (crux/q (crux/db node #inst "1715-05-18") who-has-what-query))) (crux/await-tx node (crux/submit-tx node (first-ownership-tx))) (t/is (= #{["<NAME>" "A used sword"] ["<NAME>" "Flintlock pistol"] ["<NAME>" "A Rather Cozy Mug"]} (crux/q (crux/db node #inst "1715-05-18") who-has-what-query))) (t/is (= #{["<NAME>" "A used sword"] ["<NAME>" "Flintlock pistol"] ["<NAME>" "A Rather Cozy Mug"] ["<NAME>" "Key from an unknown door"]} (crux/q (crux/db node #inst "1740-06-19") who-has-what-query))) (t/is (= #{["<NAME>" "A used sword"] ["<NAME>" "Flintlock pistol"]} (crux/q (crux/db node #inst "1715-06-19" (:crux.tx/tx-time first-ownership-tx-response)) who-has-what-query)))))
true
(ns crux.bitemporal-tale-test (:require [crux.api :as crux] [clojure.test :as t] [clojure.java.io :as io])) (t/deftest bitemporal-tale-test (with-open [node (crux/start-node {})] (t/is node) (crux/await-tx node (crux/submit-tx node [[:crux.tx/put {:crux.db/id :ids.people/PI:NAME:<NAME>END_PI :person/name "PI:NAME:<NAME>END_PI" :person/born #inst "1700-05-18" :person/location :ids.places/rarities-shop :person/str 40 :person/int 40 :person/dex 40 :person/hp 40 :person/gold 10000} #inst "1700-05-18"]])) (crux/await-tx node (crux/submit-tx node [[:crux.tx/put {:crux.db/id :ids.people/PI:NAME:<NAME>END_PI :person/name "PI:NAME:<NAME>END_PI" :person/born #inst "1710-05-18" :person/location :ids.places/carribean :person/str 40 :person/int 50 :person/dex 50 :person/hp 50} #inst "1710-05-18"] [:crux.tx/put {:crux.db/id :ids.people/PI:NAME:<NAME>END_PIe :person/name "PI:NAME:<NAME>END_PI" :person/born #inst "1715-05-18" :person/location :ids.places/city :person/str 39 :person/int 40 :person/dex 60 :person/hp 60 :person/gold 70} #inst "1715-05-18"]])) (crux/await-tx node (crux/submit-tx node [[:crux.tx/put {:crux.db/id :ids.artefacts/cozy-mug :artefact/title "A Rather Cozy Mug" :artefact.perks/int 3} #inst "1625-05-18"] [:crux.tx/put {:crux.db/id :ids.artefacts/forbidden-beans :artefact/title "Magic beans" :artefact.perks/int 30 :artefact.perks/hp -20} #inst "1500-05-18"] [:crux.tx/put {:crux.db/id :ids.artefacts/pirate-sword :artefact/title "A used sword"} #inst "1710-05-18"] [:crux.tx/put {:crux.db/id :ids.artefacts/flintlock-pistol :artefact/title "Flintlock pistol"} #inst "1710-05-18"] [:crux.tx/put {:crux.db/id :ids.artefacts/unknown-key :artefact/title "Key from an unknown door"} #inst "1700-05-18"] [:crux.tx/put {:crux.db/id :ids.artefacts/laptop :artefact/title "A Tell DPS Laptop (what?)"} #inst "2016-05-18"]])) (crux/await-tx node (crux/submit-tx node [[:crux.tx/put {:crux.db/id :ids.places/continent :place/title "Ah The Continent"} #inst "1000-01-01"] [:crux.tx/put {:crux.db/id :ids.places/carribean :place/title "Ah The Good Ol Carribean Sea" :place/location :ids.places/carribean} #inst "1000-01-01"] [:crux.tx/put {:crux.db/id :ids.places/coconut-island :place/title "Coconut Island" :place/location :ids.places/carribean} #inst "1000-01-01"]])) (def db (crux/db node)) (t/is (= {:crux.db/id :ids.people/Charles, :person/str 40, :person/dex 40, :person/location :ids.places/rarities-shop, :person/hp 40, :person/int 40, :person/name "PI:NAME:<NAME>END_PI", :person/gold 10000, :person/born #inst "1700-05-18T00:00:00.000-00:00"} (crux/entity db :ids.people/Charles))) (t/is (= #{[:ids.people/Charles]} (crux/q db '[:find ?entity-id :where [?entity-id :person/name "PI:NAME:<NAME>END_PI"]]))) (t/is (= #{[:ids.people/Charles "PI:NAME:<NAME>END_PI" 40]} (crux/q db '[:find ?e ?name ?int :where [?e :person/name "PI:NAME:<NAME>END_PI"] [?e :person/name ?name] [?e :person/int ?int]]))) (t/is (= #{["Key from an unknown door"] ["Magic beans"] ["A used sword"] ["A Rather Cozy Mug"] ["A Tell DPS Laptop (what?)"] ["Flintlock pistol"]} (crux/q db '[:find ?name :where [_ :artefact/title ?name]]))) (crux/await-tx node (crux/submit-tx node [[:crux.tx/delete :ids.artefacts/forbidden-beans #inst "1690-05-18"]])) (crux/await-tx node (crux/submit-tx node [[:crux.tx/evict :ids.artefacts/laptop]])) (t/is (= #{["Key from an unknown door"] ["A used sword"] ["A Rather Cozy Mug"] ["Flintlock pistol"]} (crux/q (crux/db node) '[:find ?name :where [_ :artefact/title ?name]]))) (def world-in-1599 (crux/db node #inst "1599-01-01")) (t/is world-in-1599) (t/is (= #{["Magic beans"]} (crux/q world-in-1599 '[:find ?name :where [_ :artefact/title ?name]]))) (defn first-ownership-tx [] [(let [charles (crux/entity (crux/db node #inst "1725-05-17") :ids.people/Charles)] [:crux.tx/put (update charles :person/has (comp set conj) :ids.artefacts/cozy-mug :ids.artefacts/unknown-key) #inst "1725-05-18"]) (let [mary (crux/entity (crux/db node #inst "1715-05-17") :ids.people/Mary)] [:crux.tx/put (update mary :person/has (comp set conj) :ids.artefacts/pirate-sword :ids.artefacts/flintlock-pistol) #inst "1715-05-18"])]) (def first-ownership-tx-response (crux/submit-tx node (first-ownership-tx))) (crux/await-tx node first-ownership-tx-response) (def who-has-what-query '[:find ?name ?atitle :where [?p :person/name ?name] [?p :person/has ?artefact-id] [?artefact-id :artefact/title ?atitle]]) (t/is (= #{["PI:NAME:<NAME>END_PI" "A used sword"] ["PI:NAME:<NAME>END_PI" "Flintlock pistol"] ["PI:NAME:<NAME>END_PI" "A Rather Cozy Mug"] ["PI:NAME:<NAME>END_PI" "Key from an unknown door"]} (crux/q (crux/db node #inst "1726-05-01") who-has-what-query))) (t/is (= #{["PI:NAME:<NAME>END_PI" "A used sword"] ["PI:NAME:<NAME>END_PI" "Flintlock pistol"]} (crux/q (crux/db node #inst "1716-05-01") who-has-what-query))) (def parametrized-query '[:find ?name :args {ids #{:ids.people/PI:NAME:<NAME>END_PI :ids.people/PI:NAME:<NAME>END_PI}} :where [?e :person/name ?name] [(contains? ids ?e)] :limit 10]) (t/is (= #{["PI:NAME:<NAME>END_PI"] ["PI:NAME:<NAME>END_PI"]} (set (crux/q (crux/db node #inst "1726-05-01") parametrized-query)))) (defn entity-update [entity-id new-attrs valid-time] (let [entity-prev-value (crux/entity (crux/db node) entity-id)] (crux/submit-tx node [[:crux.tx/put (merge entity-prev-value new-attrs) valid-time]]))) (defn q [query] (crux/q (crux/db node) query)) (defn entity [entity-id] (crux/entity (crux/db node) entity-id)) (defn entity-at [entity-id valid-time] (crux/entity (crux/db node valid-time) entity-id)) (defn entity-with-adjacent [entity-id keys-to-pull] (let [db (crux/db node) ids->entities (fn [ids] (cond-> (map #(crux/entity db %) ids) (set? ids) set (vector? ids) vec))] (reduce (fn [e adj-k] (let [v (get e adj-k)] (assoc e adj-k (cond (keyword? v) (crux/entity db v) (or (set? v) (vector? v)) (ids->entities v) :else v)))) (crux/entity db entity-id) keys-to-pull))) (crux/await-tx node (entity-update :ids.people/Charles {:person/int 50} #inst "1730-05-18")) (t/is (= (entity :ids.people/Charles) {:person/str 40, :person/dex 40, :person/has #{:ids.artefacts/cozy-mug :ids.artefacts/unknown-key} :person/location :ids.places/rarities-shop, :person/hp 40, :person/int 50, :person/name "PI:NAME:<NAME>END_PI", :crux.db/id :ids.people/Charles, :person/gold 10000, :person/born #inst "1700-05-18T00:00:00.000-00:00"})) (t/is (= (entity-with-adjacent :ids.people/Charles [:person/has]) {:crux.db/id :ids.people/Charles, :person/str 40, :person/dex 40, :person/has #{{:crux.db/id :ids.artefacts/unknown-key, :artefact/title "Key from an unknown door"} {:crux.db/id :ids.artefacts/cozy-mug, :artefact/title "A Rather Cozy Mug", :artefact.perks/int 3}}, :person/location :ids.places/rarities-shop, :person/hp 40, :person/int 50, :person/name "PI:NAME:<NAME>END_PI", :person/gold 10000, :person/born #inst "1700-05-18T00:00:00.000-00:00"})) (crux/await-tx node (let [theft-date #inst "1740-06-18"] (crux/submit-tx node [[:crux.tx/put (update (entity-at :ids.people/Charles theft-date) :person/has disj :ids.artefacts/cozy-mug) theft-date] [:crux.tx/put (update (entity-at :ids.people/Mary theft-date) :person/has (comp set conj) :ids.artefacts/cozy-mug) theft-date]]))) (t/is (= #{["PI:NAME:<NAME>END_PI" "A used sword"] ["PI:NAME:<NAME>END_PI" "Flintlock pistol"] ["PI:NAME:<NAME>END_PI" "A Rather Cozy Mug"] ["PI:NAME:<NAME>END_PI" "Key from an unknown door"]} (crux/q (crux/db node #inst "1740-06-18") who-has-what-query))) (crux/await-tx node (let [marys-birth-inst #inst "1710-05-18" db (crux/db node marys-birth-inst) baby-mary (crux/entity db :ids.people/Mary)] (crux/submit-tx node [[:crux.tx/match :ids.people/Mary baby-mary marys-birth-inst] [:crux.tx/put (update baby-mary :person/has (comp set conj) :ids.artefacts/cozy-mug) marys-birth-inst]]))) (crux/await-tx node (let [mug-lost-date #inst "1723-01-09" db (crux/db node mug-lost-date) mary (crux/entity db :ids.people/Mary)] (crux/submit-tx node [[:crux.tx/match :ids.people/Mary mPI:NAME:<NAME>END_PI mug-lost-date] [:crux.tx/put (update PI:NAME:<NAME>END_PI :person/has (comp set disj) :ids.artefacts/cozy-mug) mug-lost-date]]))) (t/is (= #{["PI:NAME:<NAME>END_PI" "A used sword"] ["PI:NAME:<NAME>END_PI" "Flintlock pistol"]} (crux/q (crux/db node #inst "1715-05-18") who-has-what-query))) (crux/await-tx node (crux/submit-tx node (first-ownership-tx))) (t/is (= #{["PI:NAME:<NAME>END_PI" "A used sword"] ["PI:NAME:<NAME>END_PI" "Flintlock pistol"] ["PI:NAME:<NAME>END_PI" "A Rather Cozy Mug"]} (crux/q (crux/db node #inst "1715-05-18") who-has-what-query))) (t/is (= #{["PI:NAME:<NAME>END_PI" "A used sword"] ["PI:NAME:<NAME>END_PI" "Flintlock pistol"] ["PI:NAME:<NAME>END_PI" "A Rather Cozy Mug"] ["PI:NAME:<NAME>END_PI" "Key from an unknown door"]} (crux/q (crux/db node #inst "1740-06-19") who-has-what-query))) (t/is (= #{["PI:NAME:<NAME>END_PI" "A used sword"] ["PI:NAME:<NAME>END_PI" "Flintlock pistol"]} (crux/q (crux/db node #inst "1715-06-19" (:crux.tx/tx-time first-ownership-tx-response)) who-has-what-query)))))
[ { "context": "https://adventofcode.com/2020/day/10\n;; author: Vitor SRG (vitorssrg@gmail.com)\n;; date: 2021-01-07\n;;", "end": 225, "score": 0.9998940229415894, "start": 216, "tag": "NAME", "value": "Vitor SRG" }, { "context": "ntofcode.com/2020/day/10\n;; author: Vitor SRG (vitorssrg@gmail.com)\n;; date: 2021-01-07\n;; execution: $ bash ./", "end": 246, "score": 0.9999305009841919, "start": 227, "tag": "EMAIL", "value": "vitorssrg@gmail.com" } ]
aoc2020/d10/main.clj
vitorsrg/advent-of-code
0
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; domain: Advent of Code 2020 ;; challenge: Day 10: Adapter Array ;; url: https://adventofcode.com/2020/day/10 ;; author: Vitor SRG (vitorssrg@gmail.com) ;; date: 2021-01-07 ;; execution: $ bash ./aoc2020/run.sh d10 < [INPUT_FILE] ;; example: ;; $ bash ./aoc2020/run.sh d10 < ./aoc2020/d10/ex01.txt ;; part 1 35 ;; part 2 8 ;; $ bash ./aoc2020/run.sh d10 < ./aoc2020/d10/ex01.txt ;; part 1 220 ;; part 2 19208 ;; $ bash ./aoc2020/run.sh d10 < ./aoc2020/d10/input.txt ;; part 1 1980 ;; part 2 4628074479616 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (ns d10.main) (defn count-adapter-arrangements [adapters-asc] (let [adapters-set (set adapters-asc) search-fn (fn [search-fn ni] (if (= ni 0) 1 (+ (if (contains? adapters-set (- ni 1)) (search-fn search-fn (- ni 1)) 0) (if (contains? adapters-set (- ni 2)) (search-fn search-fn (- ni 2)) 0) (if (contains? adapters-set (- ni 3)) (search-fn search-fn (- ni 3)) 0)))) memo-search-fn (memoize search-fn) adapters-max (apply max adapters-asc)] (memo-search-fn memo-search-fn adapters-max))) (defn -main [& args] (let [numbers (->> *in* (slurp) (clojure.string/split-lines) (map #(Integer/parseInt %)) (vec)) adapters-asc (-> numbers (conj (+ (apply max numbers) 3) 0) (sort) (vec))] ;; (clojure.pprint/pprint [(count numbers) (count adapters-asc)]) ;; part 1 (let [adapters-asc-diffs (for [i (range (dec (count adapters-asc))) :let [ni (nth adapters-asc i) nj (nth adapters-asc (inc i))]] (- nj ni)) adapters-asc-diffs-freqs (frequencies adapters-asc-diffs)] (println "part 1" (* (get adapters-asc-diffs-freqs 1) (get adapters-asc-diffs-freqs 3)))) ;; part 2 (println "part 2" (count-adapter-arrangements adapters-asc))))
13303
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; domain: Advent of Code 2020 ;; challenge: Day 10: Adapter Array ;; url: https://adventofcode.com/2020/day/10 ;; author: <NAME> (<EMAIL>) ;; date: 2021-01-07 ;; execution: $ bash ./aoc2020/run.sh d10 < [INPUT_FILE] ;; example: ;; $ bash ./aoc2020/run.sh d10 < ./aoc2020/d10/ex01.txt ;; part 1 35 ;; part 2 8 ;; $ bash ./aoc2020/run.sh d10 < ./aoc2020/d10/ex01.txt ;; part 1 220 ;; part 2 19208 ;; $ bash ./aoc2020/run.sh d10 < ./aoc2020/d10/input.txt ;; part 1 1980 ;; part 2 4628074479616 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (ns d10.main) (defn count-adapter-arrangements [adapters-asc] (let [adapters-set (set adapters-asc) search-fn (fn [search-fn ni] (if (= ni 0) 1 (+ (if (contains? adapters-set (- ni 1)) (search-fn search-fn (- ni 1)) 0) (if (contains? adapters-set (- ni 2)) (search-fn search-fn (- ni 2)) 0) (if (contains? adapters-set (- ni 3)) (search-fn search-fn (- ni 3)) 0)))) memo-search-fn (memoize search-fn) adapters-max (apply max adapters-asc)] (memo-search-fn memo-search-fn adapters-max))) (defn -main [& args] (let [numbers (->> *in* (slurp) (clojure.string/split-lines) (map #(Integer/parseInt %)) (vec)) adapters-asc (-> numbers (conj (+ (apply max numbers) 3) 0) (sort) (vec))] ;; (clojure.pprint/pprint [(count numbers) (count adapters-asc)]) ;; part 1 (let [adapters-asc-diffs (for [i (range (dec (count adapters-asc))) :let [ni (nth adapters-asc i) nj (nth adapters-asc (inc i))]] (- nj ni)) adapters-asc-diffs-freqs (frequencies adapters-asc-diffs)] (println "part 1" (* (get adapters-asc-diffs-freqs 1) (get adapters-asc-diffs-freqs 3)))) ;; part 2 (println "part 2" (count-adapter-arrangements adapters-asc))))
true
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; domain: Advent of Code 2020 ;; challenge: Day 10: Adapter Array ;; url: https://adventofcode.com/2020/day/10 ;; author: PI:NAME:<NAME>END_PI (PI:EMAIL:<EMAIL>END_PI) ;; date: 2021-01-07 ;; execution: $ bash ./aoc2020/run.sh d10 < [INPUT_FILE] ;; example: ;; $ bash ./aoc2020/run.sh d10 < ./aoc2020/d10/ex01.txt ;; part 1 35 ;; part 2 8 ;; $ bash ./aoc2020/run.sh d10 < ./aoc2020/d10/ex01.txt ;; part 1 220 ;; part 2 19208 ;; $ bash ./aoc2020/run.sh d10 < ./aoc2020/d10/input.txt ;; part 1 1980 ;; part 2 4628074479616 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (ns d10.main) (defn count-adapter-arrangements [adapters-asc] (let [adapters-set (set adapters-asc) search-fn (fn [search-fn ni] (if (= ni 0) 1 (+ (if (contains? adapters-set (- ni 1)) (search-fn search-fn (- ni 1)) 0) (if (contains? adapters-set (- ni 2)) (search-fn search-fn (- ni 2)) 0) (if (contains? adapters-set (- ni 3)) (search-fn search-fn (- ni 3)) 0)))) memo-search-fn (memoize search-fn) adapters-max (apply max adapters-asc)] (memo-search-fn memo-search-fn adapters-max))) (defn -main [& args] (let [numbers (->> *in* (slurp) (clojure.string/split-lines) (map #(Integer/parseInt %)) (vec)) adapters-asc (-> numbers (conj (+ (apply max numbers) 3) 0) (sort) (vec))] ;; (clojure.pprint/pprint [(count numbers) (count adapters-asc)]) ;; part 1 (let [adapters-asc-diffs (for [i (range (dec (count adapters-asc))) :let [ni (nth adapters-asc i) nj (nth adapters-asc (inc i))]] (- nj ni)) adapters-asc-diffs-freqs (frequencies adapters-asc-diffs)] (println "part 1" (* (get adapters-asc-diffs-freqs 1) (get adapters-asc-diffs-freqs 3)))) ;; part 2 (println "part 2" (count-adapter-arrangements adapters-asc))))
[ { "context": " (dom/span nil \"The app was built with love by Will Lee-Wagner.\n It's written in ", "end": 2706, "score": 0.999905526638031, "start": 2691, "tag": "NAME", "value": "Will Lee-Wagner" }, { "context": " (dom/a #js {:href \"https://github.com/whenther/dice\"\n :target \"_blan", "end": 3012, "score": 0.9983981251716614, "start": 3004, "tag": "USERNAME", "value": "whenther" }, { "context": " :target \"_blank\"} \"github.com/whenther/dice\")\n (dom/span nil \". To make ", "end": 3086, "score": 0.998579204082489, "start": 3078, "tag": "USERNAME", "value": "whenther" }, { "context": " (dom/a #js {:href \"www.linkedin.com/in/willlw\"\n :target \"_blank\"} \"", "end": 3724, "score": 0.9992912411689758, "start": 3718, "tag": "USERNAME", "value": "willlw" }, { "context": "m/span nil \" profile!\"))\n (dom/p nil \"(c) Will Lee-Wagner 2015, MIT License\")))))\n\n(defn hamburger-button [", "end": 3871, "score": 0.9999051094055176, "start": 3856, "tag": "NAME", "value": "Will Lee-Wagner" } ]
src/cljs/dice/core.cljs
whenther/dice
0
(ns dice.core (:require-macros [cljs.core.async.macros :refer [go]]) (:require [om.core :as om :include-macros true] [om.dom :as dom :include-macros true] [cljs.core.async :refer [chan <! >! timeout]])) (def dice-state (atom {:number 3 :sides 6 :roll [] :show-top false :show-side true :show-about false :play-audio true})) (defn roll-die [sides] (+ (rand-int sides) 1)) (defn roll-dice [num-dice sides] (repeatedly num-dice #(roll-die sides))) (defn get-sound [file] (let [audio (.createElement js/document "audio")] (aset audio "src" file) audio)) (def click-sound (get-sound "audio/click.wav")) (def roll-sound (get-sound "audio/roll.wav")) (defn play-sound! [sound] (if (:play-audio @dice-state) (do (.pause sound) (aset sound "currentTime" 0) (.play sound) true)) false) (defn sound-toggle [app owner] (om/component (dom/button #js {:className "sound-toggle" :onClick #(om/update! app :play-audio (not (:play-audio app)))} (dom/span #js {:className (str "fa " (if (:play-audio app) "fa-volume-up" "fa-volume-off"))})))) (defn about-toggle [app owner] (om/component (dom/button #js {:className "about-toggle" :onClick #(om/update! app :show-about (not (:show-about app)))} (dom/span #js {:className (str "fa fa-info-circle")})))) (defn add-show-class [class-name state] (str class-name (if (true? state) " show" ""))) (defn about-page [app owner] (om/component (dom/div #js {:className (add-show-class "about-page" (:show-about app)) :onClick #(om/update! app :show-about false)} (dom/h1 #js {:className "about-title"} "DICE") (dom/h2 #js {:className "about-subtitle"} "A simple dice-rolling app") (dom/div #js {:className "about-content"} (dom/p nil "DICE is designed to be a simple as possible. Select a number of dice, the number of sides, and click Roll to roll some dice! You can also click the row labels to hide them, and click the hamburger button (that's the three little lines) to show the top bar, and turn off the sound or view this page. But if you're reading this, I guess you already figured that out.") (dom/p nil (dom/span nil "The app was built with love by Will Lee-Wagner. It's written in ClojureScript with the om library, mostly to learn the language. For more about the technology, and to report any issues, see ") (dom/a #js {:href "https://github.com/whenther/dice" :target "_blank"} "github.com/whenther/dice") (dom/span nil ". To make it even easier, check out the installable ") (dom/a #js {:href "https://chrome.google.com/webstore/detail/dice/nmcnkcfhglpcijnmdlamihfjeegangfp" :target "_blank"} "Chrome App version") (dom/span nil ". For more about my other projects, or if you want to chat, see my ") (dom/a #js {:href "http://whentheresawill.net" :target "_blank"} "website") (dom/span nil " or ") (dom/a #js {:href "www.linkedin.com/in/willlw" :target "_blank"} "LinkedIn") (dom/span nil " profile!")) (dom/p nil "(c) Will Lee-Wagner 2015, MIT License"))))) (defn hamburger-button [app owner] (om/component (dom/div #js {:className "hamburger-button" :onClick #(if (not (:show-about app)) (om/update! app :show-top (not (:show-top app))))} (apply dom/div #js {:className "hamburger-container"} (map #(dom/div #js {:className "hamburger-bar"}), [1 2 3]))))) (defn top-bar [app owner] (om/component (dom/div #js {:className (add-show-class "top-bar" (:show-top app))} (dom/div #js {:className "top-bar-buttons"} (om/build about-toggle app) (om/build sound-toggle app)) (dom/h2 #js {:className "title"} "DICE") (om/build hamburger-button app)))) (defn option-buton [state owner opts] (reify om/IRenderState (render-state [_ {:keys [choose]}] (dom/button #js {:className (str (:type opts) (if (= state (:option opts)) " selected" "") " option-button") :onClick #(go (play-sound! click-sound) (>! choose (:option opts)))} (dom/h3 nil (:option opts)))))) (defn option-label [app owner {:keys [:label]}] (om/component (dom/div #js {:className (add-show-class "option-label h4" (:show-side app))} (dom/h4 #js {:className "option-label-text"} label) (dom/div #js {:className "option-label-click-zone" :onClick #(om/update! app :show-side (not (:show-side app)))})))) (defn option-bar [app owner opts type-name type-index choices] (reify om/IInitState (init-state [_] {:choose (chan)}) om/IWillMount (will-mount [_] (let [choose (om/get-state owner :choose)] (go (loop [] (let [new-number (<! choose)] (om/update! app type-index new-number) (recur)))))) om/IRenderState (render-state [_ {:keys [choose]}] (dom/div opts (om/build option-label app {:opts {:label type-name}}) (apply dom/div #js {:className "option-buttons"} (map #(om/build option-buton (type-index app) {:opts {:type type-name :option %} :init-state {:choose choose}}) choices)))))) (defn number-bar [app owner] (option-bar app owner #js {:className "bar number-bar"} "number" :number [1 2 3 4 5])) (defn sides-bar [app owner] (option-bar app owner #js {:className "bar sides-bar"} "sides" :sides [3 6 8 10 12 20])) (defn roll-bar [app owner] (om/component (dom/div #js {:className "bar roll-bar"} (dom/button #js {:className "roll-button" :onClick #(do (play-sound! roll-sound) (om/update! app :roll (roll-dice (:number app) (:sides app))))} (dom/h1 nil "ROLL"))))) (defn result-entry [roll owner] (om/component (dom/div #js {:className "result"} (dom/h1 nil roll)))) (defn result-bar [app owner] (om/component (apply dom/div #js {:className "bar result-bar"} (om/build-all result-entry (:roll app))))) (defn main-page [app owner] (om/component (dom/div #js {:className "container"} (om/build top-bar app) (om/build number-bar app) (om/build sides-bar app) (om/build roll-bar app) (om/build result-bar app) (om/build about-page app)))) (defn main [] (om/root main-page dice-state {:target (. js/document (getElementById "app"))}))
97711
(ns dice.core (:require-macros [cljs.core.async.macros :refer [go]]) (:require [om.core :as om :include-macros true] [om.dom :as dom :include-macros true] [cljs.core.async :refer [chan <! >! timeout]])) (def dice-state (atom {:number 3 :sides 6 :roll [] :show-top false :show-side true :show-about false :play-audio true})) (defn roll-die [sides] (+ (rand-int sides) 1)) (defn roll-dice [num-dice sides] (repeatedly num-dice #(roll-die sides))) (defn get-sound [file] (let [audio (.createElement js/document "audio")] (aset audio "src" file) audio)) (def click-sound (get-sound "audio/click.wav")) (def roll-sound (get-sound "audio/roll.wav")) (defn play-sound! [sound] (if (:play-audio @dice-state) (do (.pause sound) (aset sound "currentTime" 0) (.play sound) true)) false) (defn sound-toggle [app owner] (om/component (dom/button #js {:className "sound-toggle" :onClick #(om/update! app :play-audio (not (:play-audio app)))} (dom/span #js {:className (str "fa " (if (:play-audio app) "fa-volume-up" "fa-volume-off"))})))) (defn about-toggle [app owner] (om/component (dom/button #js {:className "about-toggle" :onClick #(om/update! app :show-about (not (:show-about app)))} (dom/span #js {:className (str "fa fa-info-circle")})))) (defn add-show-class [class-name state] (str class-name (if (true? state) " show" ""))) (defn about-page [app owner] (om/component (dom/div #js {:className (add-show-class "about-page" (:show-about app)) :onClick #(om/update! app :show-about false)} (dom/h1 #js {:className "about-title"} "DICE") (dom/h2 #js {:className "about-subtitle"} "A simple dice-rolling app") (dom/div #js {:className "about-content"} (dom/p nil "DICE is designed to be a simple as possible. Select a number of dice, the number of sides, and click Roll to roll some dice! You can also click the row labels to hide them, and click the hamburger button (that's the three little lines) to show the top bar, and turn off the sound or view this page. But if you're reading this, I guess you already figured that out.") (dom/p nil (dom/span nil "The app was built with love by <NAME>. It's written in ClojureScript with the om library, mostly to learn the language. For more about the technology, and to report any issues, see ") (dom/a #js {:href "https://github.com/whenther/dice" :target "_blank"} "github.com/whenther/dice") (dom/span nil ". To make it even easier, check out the installable ") (dom/a #js {:href "https://chrome.google.com/webstore/detail/dice/nmcnkcfhglpcijnmdlamihfjeegangfp" :target "_blank"} "Chrome App version") (dom/span nil ". For more about my other projects, or if you want to chat, see my ") (dom/a #js {:href "http://whentheresawill.net" :target "_blank"} "website") (dom/span nil " or ") (dom/a #js {:href "www.linkedin.com/in/willlw" :target "_blank"} "LinkedIn") (dom/span nil " profile!")) (dom/p nil "(c) <NAME> 2015, MIT License"))))) (defn hamburger-button [app owner] (om/component (dom/div #js {:className "hamburger-button" :onClick #(if (not (:show-about app)) (om/update! app :show-top (not (:show-top app))))} (apply dom/div #js {:className "hamburger-container"} (map #(dom/div #js {:className "hamburger-bar"}), [1 2 3]))))) (defn top-bar [app owner] (om/component (dom/div #js {:className (add-show-class "top-bar" (:show-top app))} (dom/div #js {:className "top-bar-buttons"} (om/build about-toggle app) (om/build sound-toggle app)) (dom/h2 #js {:className "title"} "DICE") (om/build hamburger-button app)))) (defn option-buton [state owner opts] (reify om/IRenderState (render-state [_ {:keys [choose]}] (dom/button #js {:className (str (:type opts) (if (= state (:option opts)) " selected" "") " option-button") :onClick #(go (play-sound! click-sound) (>! choose (:option opts)))} (dom/h3 nil (:option opts)))))) (defn option-label [app owner {:keys [:label]}] (om/component (dom/div #js {:className (add-show-class "option-label h4" (:show-side app))} (dom/h4 #js {:className "option-label-text"} label) (dom/div #js {:className "option-label-click-zone" :onClick #(om/update! app :show-side (not (:show-side app)))})))) (defn option-bar [app owner opts type-name type-index choices] (reify om/IInitState (init-state [_] {:choose (chan)}) om/IWillMount (will-mount [_] (let [choose (om/get-state owner :choose)] (go (loop [] (let [new-number (<! choose)] (om/update! app type-index new-number) (recur)))))) om/IRenderState (render-state [_ {:keys [choose]}] (dom/div opts (om/build option-label app {:opts {:label type-name}}) (apply dom/div #js {:className "option-buttons"} (map #(om/build option-buton (type-index app) {:opts {:type type-name :option %} :init-state {:choose choose}}) choices)))))) (defn number-bar [app owner] (option-bar app owner #js {:className "bar number-bar"} "number" :number [1 2 3 4 5])) (defn sides-bar [app owner] (option-bar app owner #js {:className "bar sides-bar"} "sides" :sides [3 6 8 10 12 20])) (defn roll-bar [app owner] (om/component (dom/div #js {:className "bar roll-bar"} (dom/button #js {:className "roll-button" :onClick #(do (play-sound! roll-sound) (om/update! app :roll (roll-dice (:number app) (:sides app))))} (dom/h1 nil "ROLL"))))) (defn result-entry [roll owner] (om/component (dom/div #js {:className "result"} (dom/h1 nil roll)))) (defn result-bar [app owner] (om/component (apply dom/div #js {:className "bar result-bar"} (om/build-all result-entry (:roll app))))) (defn main-page [app owner] (om/component (dom/div #js {:className "container"} (om/build top-bar app) (om/build number-bar app) (om/build sides-bar app) (om/build roll-bar app) (om/build result-bar app) (om/build about-page app)))) (defn main [] (om/root main-page dice-state {:target (. js/document (getElementById "app"))}))
true
(ns dice.core (:require-macros [cljs.core.async.macros :refer [go]]) (:require [om.core :as om :include-macros true] [om.dom :as dom :include-macros true] [cljs.core.async :refer [chan <! >! timeout]])) (def dice-state (atom {:number 3 :sides 6 :roll [] :show-top false :show-side true :show-about false :play-audio true})) (defn roll-die [sides] (+ (rand-int sides) 1)) (defn roll-dice [num-dice sides] (repeatedly num-dice #(roll-die sides))) (defn get-sound [file] (let [audio (.createElement js/document "audio")] (aset audio "src" file) audio)) (def click-sound (get-sound "audio/click.wav")) (def roll-sound (get-sound "audio/roll.wav")) (defn play-sound! [sound] (if (:play-audio @dice-state) (do (.pause sound) (aset sound "currentTime" 0) (.play sound) true)) false) (defn sound-toggle [app owner] (om/component (dom/button #js {:className "sound-toggle" :onClick #(om/update! app :play-audio (not (:play-audio app)))} (dom/span #js {:className (str "fa " (if (:play-audio app) "fa-volume-up" "fa-volume-off"))})))) (defn about-toggle [app owner] (om/component (dom/button #js {:className "about-toggle" :onClick #(om/update! app :show-about (not (:show-about app)))} (dom/span #js {:className (str "fa fa-info-circle")})))) (defn add-show-class [class-name state] (str class-name (if (true? state) " show" ""))) (defn about-page [app owner] (om/component (dom/div #js {:className (add-show-class "about-page" (:show-about app)) :onClick #(om/update! app :show-about false)} (dom/h1 #js {:className "about-title"} "DICE") (dom/h2 #js {:className "about-subtitle"} "A simple dice-rolling app") (dom/div #js {:className "about-content"} (dom/p nil "DICE is designed to be a simple as possible. Select a number of dice, the number of sides, and click Roll to roll some dice! You can also click the row labels to hide them, and click the hamburger button (that's the three little lines) to show the top bar, and turn off the sound or view this page. But if you're reading this, I guess you already figured that out.") (dom/p nil (dom/span nil "The app was built with love by PI:NAME:<NAME>END_PI. It's written in ClojureScript with the om library, mostly to learn the language. For more about the technology, and to report any issues, see ") (dom/a #js {:href "https://github.com/whenther/dice" :target "_blank"} "github.com/whenther/dice") (dom/span nil ". To make it even easier, check out the installable ") (dom/a #js {:href "https://chrome.google.com/webstore/detail/dice/nmcnkcfhglpcijnmdlamihfjeegangfp" :target "_blank"} "Chrome App version") (dom/span nil ". For more about my other projects, or if you want to chat, see my ") (dom/a #js {:href "http://whentheresawill.net" :target "_blank"} "website") (dom/span nil " or ") (dom/a #js {:href "www.linkedin.com/in/willlw" :target "_blank"} "LinkedIn") (dom/span nil " profile!")) (dom/p nil "(c) PI:NAME:<NAME>END_PI 2015, MIT License"))))) (defn hamburger-button [app owner] (om/component (dom/div #js {:className "hamburger-button" :onClick #(if (not (:show-about app)) (om/update! app :show-top (not (:show-top app))))} (apply dom/div #js {:className "hamburger-container"} (map #(dom/div #js {:className "hamburger-bar"}), [1 2 3]))))) (defn top-bar [app owner] (om/component (dom/div #js {:className (add-show-class "top-bar" (:show-top app))} (dom/div #js {:className "top-bar-buttons"} (om/build about-toggle app) (om/build sound-toggle app)) (dom/h2 #js {:className "title"} "DICE") (om/build hamburger-button app)))) (defn option-buton [state owner opts] (reify om/IRenderState (render-state [_ {:keys [choose]}] (dom/button #js {:className (str (:type opts) (if (= state (:option opts)) " selected" "") " option-button") :onClick #(go (play-sound! click-sound) (>! choose (:option opts)))} (dom/h3 nil (:option opts)))))) (defn option-label [app owner {:keys [:label]}] (om/component (dom/div #js {:className (add-show-class "option-label h4" (:show-side app))} (dom/h4 #js {:className "option-label-text"} label) (dom/div #js {:className "option-label-click-zone" :onClick #(om/update! app :show-side (not (:show-side app)))})))) (defn option-bar [app owner opts type-name type-index choices] (reify om/IInitState (init-state [_] {:choose (chan)}) om/IWillMount (will-mount [_] (let [choose (om/get-state owner :choose)] (go (loop [] (let [new-number (<! choose)] (om/update! app type-index new-number) (recur)))))) om/IRenderState (render-state [_ {:keys [choose]}] (dom/div opts (om/build option-label app {:opts {:label type-name}}) (apply dom/div #js {:className "option-buttons"} (map #(om/build option-buton (type-index app) {:opts {:type type-name :option %} :init-state {:choose choose}}) choices)))))) (defn number-bar [app owner] (option-bar app owner #js {:className "bar number-bar"} "number" :number [1 2 3 4 5])) (defn sides-bar [app owner] (option-bar app owner #js {:className "bar sides-bar"} "sides" :sides [3 6 8 10 12 20])) (defn roll-bar [app owner] (om/component (dom/div #js {:className "bar roll-bar"} (dom/button #js {:className "roll-button" :onClick #(do (play-sound! roll-sound) (om/update! app :roll (roll-dice (:number app) (:sides app))))} (dom/h1 nil "ROLL"))))) (defn result-entry [roll owner] (om/component (dom/div #js {:className "result"} (dom/h1 nil roll)))) (defn result-bar [app owner] (om/component (apply dom/div #js {:className "bar result-bar"} (om/build-all result-entry (:roll app))))) (defn main-page [app owner] (om/component (dom/div #js {:className "container"} (om/build top-bar app) (om/build number-bar app) (om/build sides-bar app) (om/build roll-bar app) (om/build result-bar app) (om/build about-page app)))) (defn main [] (om/root main-page dice-state {:target (. js/document (getElementById "app"))}))
[ { "context": "mplate.clj (clojure-firefly)\n;; Copyright (c) 2014 Austin Zheng\n;; Released under the terms of the MIT License\n\n(", "end": 73, "score": 0.9997847676277161, "start": 61, "tag": "NAME", "value": "Austin Zheng" } ]
src/clojure_blog/blog_template.clj
austinzheng/clojure-firefly
1
;; blog_template.clj (clojure-firefly) ;; Copyright (c) 2014 Austin Zheng ;; Released under the terms of the MIT License (ns clojure-blog.blog-template (:use clojure-blog.template) (:require [clojure-blog.tags :as tags] [clojure-blog.routes :as r] [clojure-blog.util :as util] [clojure-blog.settings :as settings] [net.cgrand.enlive-html :as html])) (declare post-compose) (declare post-snippet) (declare archive-snippet) ;; HELPERS (defn build-composer [session-info-map flash-msg post-id post-map] "Given a post ID and a post map, build the composer view" (let [ show-delete (not (nil? post-id)) c-post-map (if post-map post-map {}) title (:post-title c-post-map "") content (:post-content c-post-map "") tags-list (:post-tags c-post-map nil) tags (if tags-list (tags/join-tags tags-list) "")] (post-compose session-info-map flash-msg post-id show-delete title content tags tags))) (defn- invoke-post-snippet [session-info-map is-single post-id post-map] "Generate the HTML for a single post" (let [ {title :post-title date :post-date content :post-content is-edited :post-edited edit-date :post-edit-date} post-map formatted-date (util/format-date date) formatted-edit-date (util/format-date edit-date) tags (:post-tags post-map nil) formatted-tags (tags/tags-html-for-tags tags) snippet (post-snippet is-single (:logged-in session-info-map false) post-id title formatted-date content is-edited formatted-edit-date formatted-tags)] (reduce str (html/emit* snippet)))) (defn- invoke-archive-snippet [session-info-map metadata-map] "Generate the HTML for a single archive item" (let [ {post-id :post-id title :post-title date :post-date} metadata-map formatted-date (util/format-date date) url (when post-id (r/blog-post-route post-id)) logged-in (:logged-in session-info-map false) edit-post-route (when logged-in (r/edit-post-route post-id)) snippet (archive-snippet logged-in edit-post-route title formatted-date url)] (reduce str (html/emit* snippet)))) ;; TEMPLATES ; Snippet for a single post entry (html/defsnippet post-snippet "post-snippet.html" [:div.post] [is-single is-logged-in post-id title date content is-edited edit-date html-tag-data] [:h2#post-title] (when is-single (html/content title)) [:h2#link-post-title] (only-if (not is-single)) [:a#title-link] (when-not is-single (html/content title)) [:a#title-link] (when-not is-single (html/set-attr :href (r/blog-post-route post-id))) [:span.if-logged-in] (only-if is-logged-in) [:a#edit-post] (when is-logged-in (html/set-attr :href (r/edit-post-route post-id))) [:span#edit-note] (when is-edited (html/content (if edit-date ["Last edited: " edit-date] "Edited"))) [:span.if-edited] (only-if is-edited) [:span#date] (html/content (apply str ["Date: " date])) [:span#tags-list] (html/html-content html-tag-data) [:div.content] (html/html-content content)) ; Snippet for a post preview (html/defsnippet post-preview-snippet "post-snippet.html" [:div.post] [title content] [:h2#post-title] (html/content title) [:h2#link-post-title] nil [:a#title-link] nil [:span.if-logged-in] nil [:a#edit-post] nil [:span#edit-note] nil [:span.if-edited] nil [:span#date] (html/content "(Preview Mode)") [:span#tags-list] nil [:div.content] (html/html-content content)) ; Snippet for an archive entry (html/defsnippet archive-snippet "archive-snippet.html" [:div.archive-item] [is-logged-in edit-post-route title date url] [:a#item-url] (html/content title) [:a#item-url] (html/set-attr :href url) [:span#item-date] (html/content date) [:span.if-logged-in] (only-if is-logged-in) [:a#edit-post] (when edit-post-route (html/set-attr :href edit-post-route))) ; Template for the single-post page (html/deftemplate post-page "post.html" [session-info-map flash-msg post-id post-map] [:title] (html/content [(:post-title post-map "Post") " - " settings/blog-title]) [:div.nav] (html/html-content (invoke-header-snippet session-info-map)) [:div.flash] (when flash-msg (html/html-content (reduce str (html/emit* (flash-snippet flash-msg))))) [:div.post] (html/html-content (invoke-post-snippet session-info-map true post-id post-map)) [:div.footer] (html/html-content (invoke-footer-snippet session-info-map))) ; Template for the multiple-post blog page (html/deftemplate blog-page "blog.html" [session-info-map flash-msg post-id-list post-map-list no-posts-msg prev-url prev-description current-nav-description next-url next-description] [:title] (html/content settings/blog-title) [:div.nav] (html/html-content (invoke-header-snippet session-info-map)) [:div.flash] (when flash-msg (html/html-content (reduce str (html/emit* (flash-snippet flash-msg))))) [:div.posts] (html/html-content (reduce str (map #(invoke-post-snippet session-info-map false %1 %2) post-id-list post-map-list))) [:div.posts] (if (empty? post-map-list) (html/content no-posts-msg) (no-change)) [:a#blog-prev-link] (html/set-attr :href prev-url) [:a#blog-prev-link] (html/content prev-description) [:span.has-prev] (only-if prev-url) [:a#blog-next-link] (html/set-attr :href next-url) [:a#blog-next-link] (html/content next-description) [:span.has-next] (only-if next-url) [:span#blog-current] (when current-nav-description (html/content current-nav-description)) [:div.blog-nav] (only-if (seq post-map-list)) [:br#blog-nav-separator] (only-if (seq post-map-list)) [:div.footer] (html/html-content (invoke-footer-snippet session-info-map))) ; Template for the archive page (html/deftemplate archive-page "archive.html" [session-info-map flash-msg metadata-list no-posts-msg] [:title] (html/content (reduce str ["Archives - " settings/blog-title])) [:div#no-posts] (when (empty? metadata-list) (html/content no-posts-msg)) [:div.nav] (html/html-content (invoke-header-snippet session-info-map)) [:div.flash] (when flash-msg (html/html-content (reduce str (html/emit* (flash-snippet flash-msg))))) [:ul#archive-posts-list] (only-if (seq metadata-list)) [:div.archive] (when (seq metadata-list) (html/html-content (reduce str (map #(invoke-archive-snippet session-info-map %) metadata-list)))) [:div.footer] (html/html-content (invoke-footer-snippet session-info-map))) ; Template for the blog post composer page (html/deftemplate post-compose "post-compose.html" [session-info-map flash-msg post-id show-delete title content raw-tags raw-old-tags] [:title] (html/content ["Composer - " settings/blog-title]) [:div.nav] (html/html-content (invoke-header-snippet session-info-map)) [:div.flash] (when flash-msg (html/html-content (reduce str (html/emit* (flash-snippet flash-msg))))) [:input#post-title] (html/set-attr :value title) [:input#post-id] (when post-id (html/set-attr :value post-id)) [:input#post-old-tags] (if (> (count raw-tags) 0) (html/set-attr :value raw-old-tags) nil) [:input#post-tags] (html/set-attr :value raw-tags) [:textarea#post-content] (html/content content) [:button#action-submit] (html/set-attr :name (if post-id "edit-post" "add-post")) [:span#delete-button] (when show-delete (html/html-content "<button name=\"delete\" type=\"submit\">Delete</button>")) [:div.footer] (html/html-content (invoke-footer-snippet session-info-map))) ; Template for the blog post preview page (html/deftemplate post-preview "post-preview.html" [session-info-map flash-msg can-submit post-id title content tags old-tags] [:div.nav] (html/html-content (invoke-header-snippet session-info-map)) [:div.flash] (when flash-msg (html/html-content (reduce str (html/emit* (flash-snippet flash-msg))))) [:div.post] (html/html-content (reduce str (html/emit* (post-preview-snippet title content)))) [:input#post-id] (when post-id (html/set-attr :value post-id)) [:input#post-title] (html/set-attr :value title) [:input#post-content] (html/set-attr :value content) [:input#post-tags] (html/set-attr :value tags) [:input#post-old-tags] (html/set-attr :value old-tags) [:button#action-submit] (when can-submit (html/set-attr :name (if post-id "edit-post" "add-post"))))
114846
;; blog_template.clj (clojure-firefly) ;; Copyright (c) 2014 <NAME> ;; Released under the terms of the MIT License (ns clojure-blog.blog-template (:use clojure-blog.template) (:require [clojure-blog.tags :as tags] [clojure-blog.routes :as r] [clojure-blog.util :as util] [clojure-blog.settings :as settings] [net.cgrand.enlive-html :as html])) (declare post-compose) (declare post-snippet) (declare archive-snippet) ;; HELPERS (defn build-composer [session-info-map flash-msg post-id post-map] "Given a post ID and a post map, build the composer view" (let [ show-delete (not (nil? post-id)) c-post-map (if post-map post-map {}) title (:post-title c-post-map "") content (:post-content c-post-map "") tags-list (:post-tags c-post-map nil) tags (if tags-list (tags/join-tags tags-list) "")] (post-compose session-info-map flash-msg post-id show-delete title content tags tags))) (defn- invoke-post-snippet [session-info-map is-single post-id post-map] "Generate the HTML for a single post" (let [ {title :post-title date :post-date content :post-content is-edited :post-edited edit-date :post-edit-date} post-map formatted-date (util/format-date date) formatted-edit-date (util/format-date edit-date) tags (:post-tags post-map nil) formatted-tags (tags/tags-html-for-tags tags) snippet (post-snippet is-single (:logged-in session-info-map false) post-id title formatted-date content is-edited formatted-edit-date formatted-tags)] (reduce str (html/emit* snippet)))) (defn- invoke-archive-snippet [session-info-map metadata-map] "Generate the HTML for a single archive item" (let [ {post-id :post-id title :post-title date :post-date} metadata-map formatted-date (util/format-date date) url (when post-id (r/blog-post-route post-id)) logged-in (:logged-in session-info-map false) edit-post-route (when logged-in (r/edit-post-route post-id)) snippet (archive-snippet logged-in edit-post-route title formatted-date url)] (reduce str (html/emit* snippet)))) ;; TEMPLATES ; Snippet for a single post entry (html/defsnippet post-snippet "post-snippet.html" [:div.post] [is-single is-logged-in post-id title date content is-edited edit-date html-tag-data] [:h2#post-title] (when is-single (html/content title)) [:h2#link-post-title] (only-if (not is-single)) [:a#title-link] (when-not is-single (html/content title)) [:a#title-link] (when-not is-single (html/set-attr :href (r/blog-post-route post-id))) [:span.if-logged-in] (only-if is-logged-in) [:a#edit-post] (when is-logged-in (html/set-attr :href (r/edit-post-route post-id))) [:span#edit-note] (when is-edited (html/content (if edit-date ["Last edited: " edit-date] "Edited"))) [:span.if-edited] (only-if is-edited) [:span#date] (html/content (apply str ["Date: " date])) [:span#tags-list] (html/html-content html-tag-data) [:div.content] (html/html-content content)) ; Snippet for a post preview (html/defsnippet post-preview-snippet "post-snippet.html" [:div.post] [title content] [:h2#post-title] (html/content title) [:h2#link-post-title] nil [:a#title-link] nil [:span.if-logged-in] nil [:a#edit-post] nil [:span#edit-note] nil [:span.if-edited] nil [:span#date] (html/content "(Preview Mode)") [:span#tags-list] nil [:div.content] (html/html-content content)) ; Snippet for an archive entry (html/defsnippet archive-snippet "archive-snippet.html" [:div.archive-item] [is-logged-in edit-post-route title date url] [:a#item-url] (html/content title) [:a#item-url] (html/set-attr :href url) [:span#item-date] (html/content date) [:span.if-logged-in] (only-if is-logged-in) [:a#edit-post] (when edit-post-route (html/set-attr :href edit-post-route))) ; Template for the single-post page (html/deftemplate post-page "post.html" [session-info-map flash-msg post-id post-map] [:title] (html/content [(:post-title post-map "Post") " - " settings/blog-title]) [:div.nav] (html/html-content (invoke-header-snippet session-info-map)) [:div.flash] (when flash-msg (html/html-content (reduce str (html/emit* (flash-snippet flash-msg))))) [:div.post] (html/html-content (invoke-post-snippet session-info-map true post-id post-map)) [:div.footer] (html/html-content (invoke-footer-snippet session-info-map))) ; Template for the multiple-post blog page (html/deftemplate blog-page "blog.html" [session-info-map flash-msg post-id-list post-map-list no-posts-msg prev-url prev-description current-nav-description next-url next-description] [:title] (html/content settings/blog-title) [:div.nav] (html/html-content (invoke-header-snippet session-info-map)) [:div.flash] (when flash-msg (html/html-content (reduce str (html/emit* (flash-snippet flash-msg))))) [:div.posts] (html/html-content (reduce str (map #(invoke-post-snippet session-info-map false %1 %2) post-id-list post-map-list))) [:div.posts] (if (empty? post-map-list) (html/content no-posts-msg) (no-change)) [:a#blog-prev-link] (html/set-attr :href prev-url) [:a#blog-prev-link] (html/content prev-description) [:span.has-prev] (only-if prev-url) [:a#blog-next-link] (html/set-attr :href next-url) [:a#blog-next-link] (html/content next-description) [:span.has-next] (only-if next-url) [:span#blog-current] (when current-nav-description (html/content current-nav-description)) [:div.blog-nav] (only-if (seq post-map-list)) [:br#blog-nav-separator] (only-if (seq post-map-list)) [:div.footer] (html/html-content (invoke-footer-snippet session-info-map))) ; Template for the archive page (html/deftemplate archive-page "archive.html" [session-info-map flash-msg metadata-list no-posts-msg] [:title] (html/content (reduce str ["Archives - " settings/blog-title])) [:div#no-posts] (when (empty? metadata-list) (html/content no-posts-msg)) [:div.nav] (html/html-content (invoke-header-snippet session-info-map)) [:div.flash] (when flash-msg (html/html-content (reduce str (html/emit* (flash-snippet flash-msg))))) [:ul#archive-posts-list] (only-if (seq metadata-list)) [:div.archive] (when (seq metadata-list) (html/html-content (reduce str (map #(invoke-archive-snippet session-info-map %) metadata-list)))) [:div.footer] (html/html-content (invoke-footer-snippet session-info-map))) ; Template for the blog post composer page (html/deftemplate post-compose "post-compose.html" [session-info-map flash-msg post-id show-delete title content raw-tags raw-old-tags] [:title] (html/content ["Composer - " settings/blog-title]) [:div.nav] (html/html-content (invoke-header-snippet session-info-map)) [:div.flash] (when flash-msg (html/html-content (reduce str (html/emit* (flash-snippet flash-msg))))) [:input#post-title] (html/set-attr :value title) [:input#post-id] (when post-id (html/set-attr :value post-id)) [:input#post-old-tags] (if (> (count raw-tags) 0) (html/set-attr :value raw-old-tags) nil) [:input#post-tags] (html/set-attr :value raw-tags) [:textarea#post-content] (html/content content) [:button#action-submit] (html/set-attr :name (if post-id "edit-post" "add-post")) [:span#delete-button] (when show-delete (html/html-content "<button name=\"delete\" type=\"submit\">Delete</button>")) [:div.footer] (html/html-content (invoke-footer-snippet session-info-map))) ; Template for the blog post preview page (html/deftemplate post-preview "post-preview.html" [session-info-map flash-msg can-submit post-id title content tags old-tags] [:div.nav] (html/html-content (invoke-header-snippet session-info-map)) [:div.flash] (when flash-msg (html/html-content (reduce str (html/emit* (flash-snippet flash-msg))))) [:div.post] (html/html-content (reduce str (html/emit* (post-preview-snippet title content)))) [:input#post-id] (when post-id (html/set-attr :value post-id)) [:input#post-title] (html/set-attr :value title) [:input#post-content] (html/set-attr :value content) [:input#post-tags] (html/set-attr :value tags) [:input#post-old-tags] (html/set-attr :value old-tags) [:button#action-submit] (when can-submit (html/set-attr :name (if post-id "edit-post" "add-post"))))
true
;; blog_template.clj (clojure-firefly) ;; Copyright (c) 2014 PI:NAME:<NAME>END_PI ;; Released under the terms of the MIT License (ns clojure-blog.blog-template (:use clojure-blog.template) (:require [clojure-blog.tags :as tags] [clojure-blog.routes :as r] [clojure-blog.util :as util] [clojure-blog.settings :as settings] [net.cgrand.enlive-html :as html])) (declare post-compose) (declare post-snippet) (declare archive-snippet) ;; HELPERS (defn build-composer [session-info-map flash-msg post-id post-map] "Given a post ID and a post map, build the composer view" (let [ show-delete (not (nil? post-id)) c-post-map (if post-map post-map {}) title (:post-title c-post-map "") content (:post-content c-post-map "") tags-list (:post-tags c-post-map nil) tags (if tags-list (tags/join-tags tags-list) "")] (post-compose session-info-map flash-msg post-id show-delete title content tags tags))) (defn- invoke-post-snippet [session-info-map is-single post-id post-map] "Generate the HTML for a single post" (let [ {title :post-title date :post-date content :post-content is-edited :post-edited edit-date :post-edit-date} post-map formatted-date (util/format-date date) formatted-edit-date (util/format-date edit-date) tags (:post-tags post-map nil) formatted-tags (tags/tags-html-for-tags tags) snippet (post-snippet is-single (:logged-in session-info-map false) post-id title formatted-date content is-edited formatted-edit-date formatted-tags)] (reduce str (html/emit* snippet)))) (defn- invoke-archive-snippet [session-info-map metadata-map] "Generate the HTML for a single archive item" (let [ {post-id :post-id title :post-title date :post-date} metadata-map formatted-date (util/format-date date) url (when post-id (r/blog-post-route post-id)) logged-in (:logged-in session-info-map false) edit-post-route (when logged-in (r/edit-post-route post-id)) snippet (archive-snippet logged-in edit-post-route title formatted-date url)] (reduce str (html/emit* snippet)))) ;; TEMPLATES ; Snippet for a single post entry (html/defsnippet post-snippet "post-snippet.html" [:div.post] [is-single is-logged-in post-id title date content is-edited edit-date html-tag-data] [:h2#post-title] (when is-single (html/content title)) [:h2#link-post-title] (only-if (not is-single)) [:a#title-link] (when-not is-single (html/content title)) [:a#title-link] (when-not is-single (html/set-attr :href (r/blog-post-route post-id))) [:span.if-logged-in] (only-if is-logged-in) [:a#edit-post] (when is-logged-in (html/set-attr :href (r/edit-post-route post-id))) [:span#edit-note] (when is-edited (html/content (if edit-date ["Last edited: " edit-date] "Edited"))) [:span.if-edited] (only-if is-edited) [:span#date] (html/content (apply str ["Date: " date])) [:span#tags-list] (html/html-content html-tag-data) [:div.content] (html/html-content content)) ; Snippet for a post preview (html/defsnippet post-preview-snippet "post-snippet.html" [:div.post] [title content] [:h2#post-title] (html/content title) [:h2#link-post-title] nil [:a#title-link] nil [:span.if-logged-in] nil [:a#edit-post] nil [:span#edit-note] nil [:span.if-edited] nil [:span#date] (html/content "(Preview Mode)") [:span#tags-list] nil [:div.content] (html/html-content content)) ; Snippet for an archive entry (html/defsnippet archive-snippet "archive-snippet.html" [:div.archive-item] [is-logged-in edit-post-route title date url] [:a#item-url] (html/content title) [:a#item-url] (html/set-attr :href url) [:span#item-date] (html/content date) [:span.if-logged-in] (only-if is-logged-in) [:a#edit-post] (when edit-post-route (html/set-attr :href edit-post-route))) ; Template for the single-post page (html/deftemplate post-page "post.html" [session-info-map flash-msg post-id post-map] [:title] (html/content [(:post-title post-map "Post") " - " settings/blog-title]) [:div.nav] (html/html-content (invoke-header-snippet session-info-map)) [:div.flash] (when flash-msg (html/html-content (reduce str (html/emit* (flash-snippet flash-msg))))) [:div.post] (html/html-content (invoke-post-snippet session-info-map true post-id post-map)) [:div.footer] (html/html-content (invoke-footer-snippet session-info-map))) ; Template for the multiple-post blog page (html/deftemplate blog-page "blog.html" [session-info-map flash-msg post-id-list post-map-list no-posts-msg prev-url prev-description current-nav-description next-url next-description] [:title] (html/content settings/blog-title) [:div.nav] (html/html-content (invoke-header-snippet session-info-map)) [:div.flash] (when flash-msg (html/html-content (reduce str (html/emit* (flash-snippet flash-msg))))) [:div.posts] (html/html-content (reduce str (map #(invoke-post-snippet session-info-map false %1 %2) post-id-list post-map-list))) [:div.posts] (if (empty? post-map-list) (html/content no-posts-msg) (no-change)) [:a#blog-prev-link] (html/set-attr :href prev-url) [:a#blog-prev-link] (html/content prev-description) [:span.has-prev] (only-if prev-url) [:a#blog-next-link] (html/set-attr :href next-url) [:a#blog-next-link] (html/content next-description) [:span.has-next] (only-if next-url) [:span#blog-current] (when current-nav-description (html/content current-nav-description)) [:div.blog-nav] (only-if (seq post-map-list)) [:br#blog-nav-separator] (only-if (seq post-map-list)) [:div.footer] (html/html-content (invoke-footer-snippet session-info-map))) ; Template for the archive page (html/deftemplate archive-page "archive.html" [session-info-map flash-msg metadata-list no-posts-msg] [:title] (html/content (reduce str ["Archives - " settings/blog-title])) [:div#no-posts] (when (empty? metadata-list) (html/content no-posts-msg)) [:div.nav] (html/html-content (invoke-header-snippet session-info-map)) [:div.flash] (when flash-msg (html/html-content (reduce str (html/emit* (flash-snippet flash-msg))))) [:ul#archive-posts-list] (only-if (seq metadata-list)) [:div.archive] (when (seq metadata-list) (html/html-content (reduce str (map #(invoke-archive-snippet session-info-map %) metadata-list)))) [:div.footer] (html/html-content (invoke-footer-snippet session-info-map))) ; Template for the blog post composer page (html/deftemplate post-compose "post-compose.html" [session-info-map flash-msg post-id show-delete title content raw-tags raw-old-tags] [:title] (html/content ["Composer - " settings/blog-title]) [:div.nav] (html/html-content (invoke-header-snippet session-info-map)) [:div.flash] (when flash-msg (html/html-content (reduce str (html/emit* (flash-snippet flash-msg))))) [:input#post-title] (html/set-attr :value title) [:input#post-id] (when post-id (html/set-attr :value post-id)) [:input#post-old-tags] (if (> (count raw-tags) 0) (html/set-attr :value raw-old-tags) nil) [:input#post-tags] (html/set-attr :value raw-tags) [:textarea#post-content] (html/content content) [:button#action-submit] (html/set-attr :name (if post-id "edit-post" "add-post")) [:span#delete-button] (when show-delete (html/html-content "<button name=\"delete\" type=\"submit\">Delete</button>")) [:div.footer] (html/html-content (invoke-footer-snippet session-info-map))) ; Template for the blog post preview page (html/deftemplate post-preview "post-preview.html" [session-info-map flash-msg can-submit post-id title content tags old-tags] [:div.nav] (html/html-content (invoke-header-snippet session-info-map)) [:div.flash] (when flash-msg (html/html-content (reduce str (html/emit* (flash-snippet flash-msg))))) [:div.post] (html/html-content (reduce str (html/emit* (post-preview-snippet title content)))) [:input#post-id] (when post-id (html/set-attr :value post-id)) [:input#post-title] (html/set-attr :value title) [:input#post-content] (html/set-attr :value content) [:input#post-tags] (html/set-attr :value tags) [:input#post-old-tags] (html/set-attr :value old-tags) [:button#action-submit] (when can-submit (html/set-attr :name (if post-id "edit-post" "add-post"))))
[ { "context": ";;\n;; Copyright (C) 2011,2012 Carlo Sciolla\n;;\n;; Licensed under the Apache License, Version ", "end": 43, "score": 0.9998396039009094, "start": 30, "tag": "NAME", "value": "Carlo Sciolla" } ]
src/clojure/alfresco/content.clj
deas/lambdalf
1
;; ;; Copyright (C) 2011,2012 Carlo Sciolla ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. (ns alfresco.content (:require [alfresco.core :as c]) (:import [org.alfresco.model ContentModel] [java.io File ByteArrayInputStream])) (defn content-service [] (.getContentService (c/alfresco-services))) (defn- is "Retrieves an InputStream of the content for the provided node" [node] (.getContentInputStream (.getReader (content-service) node ContentModel/PROP_CONTENT))) ;; as seen on ;; https://groups.google.com/group/clojure/browse_thread/thread/e5fb47befe8b9199 ;; TODO: make sure we're not breaking utf-8 support ;; TODO: consider alternative forms that return content as streams, strings, etc. (defn read! "Returns a lazy seq of the content of the provided node" [node] (let [is (is node)] (map char (take-while #(not= -1 %) (repeatedly #(.read is)))))) (defn get-writer "Returns the ContentWriter for the given node & property (default to cm:content). Should not normally be used directly - write! is preferable." ([node] (get-writer node ContentModel/PROP_CONTENT)) ([node property] (.getWriter (content-service) node property true))) (defmulti write! "Writes content to the given node." #(type (first %&))) (defmethod write! java.io.InputStream ([src node] (.putContent (get-writer node) src)) ([src node property] (.putContent (get-writer node property) src))) (defmethod write! java.lang.String ([src node] (write! (ByteArrayInputStream. (.getBytes src "UTF-8")) node)) ([src node property] (write! (ByteArrayInputStream. (.getBytes src "UTF-8")) node property))) (defmethod write! java.io.File ([src node] (.putContent (get-writer node) src)) ([src node property] (.putContent (get-writer node property) src)))
34692
;; ;; Copyright (C) 2011,2012 <NAME> ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. (ns alfresco.content (:require [alfresco.core :as c]) (:import [org.alfresco.model ContentModel] [java.io File ByteArrayInputStream])) (defn content-service [] (.getContentService (c/alfresco-services))) (defn- is "Retrieves an InputStream of the content for the provided node" [node] (.getContentInputStream (.getReader (content-service) node ContentModel/PROP_CONTENT))) ;; as seen on ;; https://groups.google.com/group/clojure/browse_thread/thread/e5fb47befe8b9199 ;; TODO: make sure we're not breaking utf-8 support ;; TODO: consider alternative forms that return content as streams, strings, etc. (defn read! "Returns a lazy seq of the content of the provided node" [node] (let [is (is node)] (map char (take-while #(not= -1 %) (repeatedly #(.read is)))))) (defn get-writer "Returns the ContentWriter for the given node & property (default to cm:content). Should not normally be used directly - write! is preferable." ([node] (get-writer node ContentModel/PROP_CONTENT)) ([node property] (.getWriter (content-service) node property true))) (defmulti write! "Writes content to the given node." #(type (first %&))) (defmethod write! java.io.InputStream ([src node] (.putContent (get-writer node) src)) ([src node property] (.putContent (get-writer node property) src))) (defmethod write! java.lang.String ([src node] (write! (ByteArrayInputStream. (.getBytes src "UTF-8")) node)) ([src node property] (write! (ByteArrayInputStream. (.getBytes src "UTF-8")) node property))) (defmethod write! java.io.File ([src node] (.putContent (get-writer node) src)) ([src node property] (.putContent (get-writer node property) src)))
true
;; ;; Copyright (C) 2011,2012 PI:NAME:<NAME>END_PI ;; ;; Licensed under the Apache License, Version 2.0 (the "License"); ;; you may not use this file except in compliance with the License. ;; You may obtain a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. (ns alfresco.content (:require [alfresco.core :as c]) (:import [org.alfresco.model ContentModel] [java.io File ByteArrayInputStream])) (defn content-service [] (.getContentService (c/alfresco-services))) (defn- is "Retrieves an InputStream of the content for the provided node" [node] (.getContentInputStream (.getReader (content-service) node ContentModel/PROP_CONTENT))) ;; as seen on ;; https://groups.google.com/group/clojure/browse_thread/thread/e5fb47befe8b9199 ;; TODO: make sure we're not breaking utf-8 support ;; TODO: consider alternative forms that return content as streams, strings, etc. (defn read! "Returns a lazy seq of the content of the provided node" [node] (let [is (is node)] (map char (take-while #(not= -1 %) (repeatedly #(.read is)))))) (defn get-writer "Returns the ContentWriter for the given node & property (default to cm:content). Should not normally be used directly - write! is preferable." ([node] (get-writer node ContentModel/PROP_CONTENT)) ([node property] (.getWriter (content-service) node property true))) (defmulti write! "Writes content to the given node." #(type (first %&))) (defmethod write! java.io.InputStream ([src node] (.putContent (get-writer node) src)) ([src node property] (.putContent (get-writer node property) src))) (defmethod write! java.lang.String ([src node] (write! (ByteArrayInputStream. (.getBytes src "UTF-8")) node)) ([src node property] (write! (ByteArrayInputStream. (.getBytes src "UTF-8")) node property))) (defmethod write! java.io.File ([src node] (.putContent (get-writer node) src)) ([src node property] (.putContent (get-writer node property) src)))
[ { "context": "----------------------------\n;; Copyright (c) 2011 Basho Technologies, Inc. All Rights Reserved.\n;;\n;; This file is pr", "end": 111, "score": 0.9060523509979248, "start": 93, "tag": "NAME", "value": "Basho Technologies" } ]
src/knockbox/resolvable.clj
reiddraper/knockbox
34
;; ------------------------------------------------------------------- ;; Copyright (c) 2011 Basho Technologies, Inc. All Rights Reserved. ;; ;; This file is provided to you under the Apache License, ;; Version 2.0 (the "License"); you may not use this file ;; except in compliance with the License. You may obtain ;; a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, ;; software distributed under the License is distributed on an ;; "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ;; KIND, either express or implied. See the License for the ;; specific language governing permissions and limitations ;; under the License. ;; ;; ------------------------------------------------------------------- (ns knockbox.resolvable (:refer-clojure :exclude [resolve])) (defprotocol Resolvable "Represents a type that can be treated as a CRDT (commutative replicated data type)." (resolve [a b]) (gc [this gc-max-seconds gc-max-items] "Return a garbage-collected version of `this`. `gc-max-seconds` is the max time in seconds that garbage will be kept. `gc-max-items` is the number of garbage items that will be retained. Items are collected if they meet _either_ of these criteria. `nil` can be used for either parameter, meaning 'infinite', or 'forever'"))
95294
;; ------------------------------------------------------------------- ;; Copyright (c) 2011 <NAME>, Inc. All Rights Reserved. ;; ;; This file is provided to you under the Apache License, ;; Version 2.0 (the "License"); you may not use this file ;; except in compliance with the License. You may obtain ;; a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, ;; software distributed under the License is distributed on an ;; "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ;; KIND, either express or implied. See the License for the ;; specific language governing permissions and limitations ;; under the License. ;; ;; ------------------------------------------------------------------- (ns knockbox.resolvable (:refer-clojure :exclude [resolve])) (defprotocol Resolvable "Represents a type that can be treated as a CRDT (commutative replicated data type)." (resolve [a b]) (gc [this gc-max-seconds gc-max-items] "Return a garbage-collected version of `this`. `gc-max-seconds` is the max time in seconds that garbage will be kept. `gc-max-items` is the number of garbage items that will be retained. Items are collected if they meet _either_ of these criteria. `nil` can be used for either parameter, meaning 'infinite', or 'forever'"))
true
;; ------------------------------------------------------------------- ;; Copyright (c) 2011 PI:NAME:<NAME>END_PI, Inc. All Rights Reserved. ;; ;; This file is provided to you under the Apache License, ;; Version 2.0 (the "License"); you may not use this file ;; except in compliance with the License. You may obtain ;; a copy of the License at ;; ;; http://www.apache.org/licenses/LICENSE-2.0 ;; ;; Unless required by applicable law or agreed to in writing, ;; software distributed under the License is distributed on an ;; "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ;; KIND, either express or implied. See the License for the ;; specific language governing permissions and limitations ;; under the License. ;; ;; ------------------------------------------------------------------- (ns knockbox.resolvable (:refer-clojure :exclude [resolve])) (defprotocol Resolvable "Represents a type that can be treated as a CRDT (commutative replicated data type)." (resolve [a b]) (gc [this gc-max-seconds gc-max-items] "Return a garbage-collected version of `this`. `gc-max-seconds` is the max time in seconds that garbage will be kept. `gc-max-items` is the number of garbage items that will be retained. Items are collected if they meet _either_ of these criteria. `nil` can be used for either parameter, meaning 'infinite', or 'forever'"))
[ { "context": "ence\n; Date: March 31, 2016.\n; Authors:\n; A01371743 Luis Eduardo Ballinas Aguilar\n;------------------", "end": 146, "score": 0.9869769215583801, "start": 137, "tag": "USERNAME", "value": "A01371743" }, { "context": "e: March 31, 2016.\n; Authors:\n; A01371743 Luis Eduardo Ballinas Aguilar\n;------------------------------------------------", "end": 176, "score": 0.9998602867126465, "start": 147, "tag": "NAME", "value": "Luis Eduardo Ballinas Aguilar" } ]
4clojure/problem_49.clj
lu15v/TC2006
0
;---------------------------------------------------------- ; Problem 49: Split a sequence ; Date: March 31, 2016. ; Authors: ; A01371743 Luis Eduardo Ballinas Aguilar ;---------------------------------------------------------- (use 'clojure.test) (defn problem49 [n vectr] (let [fst (vector (vec (first (partition-all n vectr))))] (conj fst (vec (drop n vectr))))) (deftest test-problem49 (is(= (problem49 3 [1 2 3 4 5 6]) [[1 2 3] [4 5 6]])) (is(= (problem49 1 [:a :b :c :d]) [[:a] [:b :c :d]])) (is(= (problem49 2 [[1 2] [3 4] [5 6]]) [[[1 2] [3 4]] [[5 6]]]))) (run-tests)
77930
;---------------------------------------------------------- ; Problem 49: Split a sequence ; Date: March 31, 2016. ; Authors: ; A01371743 <NAME> ;---------------------------------------------------------- (use 'clojure.test) (defn problem49 [n vectr] (let [fst (vector (vec (first (partition-all n vectr))))] (conj fst (vec (drop n vectr))))) (deftest test-problem49 (is(= (problem49 3 [1 2 3 4 5 6]) [[1 2 3] [4 5 6]])) (is(= (problem49 1 [:a :b :c :d]) [[:a] [:b :c :d]])) (is(= (problem49 2 [[1 2] [3 4] [5 6]]) [[[1 2] [3 4]] [[5 6]]]))) (run-tests)
true
;---------------------------------------------------------- ; Problem 49: Split a sequence ; Date: March 31, 2016. ; Authors: ; A01371743 PI:NAME:<NAME>END_PI ;---------------------------------------------------------- (use 'clojure.test) (defn problem49 [n vectr] (let [fst (vector (vec (first (partition-all n vectr))))] (conj fst (vec (drop n vectr))))) (deftest test-problem49 (is(= (problem49 3 [1 2 3 4 5 6]) [[1 2 3] [4 5 6]])) (is(= (problem49 1 [:a :b :c :d]) [[:a] [:b :c :d]])) (is(= (problem49 2 [[1 2] [3 4] [5 6]]) [[[1 2] [3 4]] [[5 6]]]))) (run-tests)
[ { "context": " \") lines))\n\n;;; The following is taken from Alex Baranosky's gui-diff\n;;; https://github.com/AlexBaranosky/g", "end": 1153, "score": 0.8378570675849915, "start": 1139, "tag": "NAME", "value": "Alex Baranosky" }, { "context": " Alex Baranosky's gui-diff\n;;; https://github.com/AlexBaranosky/gui-diff\n;;; Extracted because of its dependencie", "end": 1201, "score": 0.9992556571960449, "start": 1188, "tag": "USERNAME", "value": "AlexBaranosky" } ]
src/midje/emission/plugins/util.clj
MerelyAPseudonym/shallow-Midje
0
(ns ^{:doc "General purpose plugin utilities"} midje.emission.plugins.util (:use commons.clojure.core [clojure.repl :only [demunge]]) (:require [clojure.string :as str] [midje.util.pile :as pile] [midje.emission.clojure-test-facade :as ctf] [midje.emission.colorize :as color] [midje.util.exceptions :as exception] [midje.config :as config] [ordered.map :as om] [ordered.set :as os])) ;; The theory here was that using clojure.test output would allow text ;; from failing *facts* to appear within the clojure.test segment of ;; summary output. That doesn't work (though it works fine for ;; clojure.test output). The whole rigamarole is boring and I don't ;; care to jump through any more hoops. I say it's spinach, and I say ;; to hell with it. ;; (Don't change this to println, though. That doesn't work either. ;; Newlines are lost.) (def emit-one-line ctf/output) (defn emit-lines [lines] (doseq [line lines] (emit-one-line line))) (defn indented [lines] (map (partial str " ") lines)) ;;; The following is taken from Alex Baranosky's gui-diff ;;; https://github.com/AlexBaranosky/gui-diff ;;; Extracted because of its dependencies (defn- map-keys [f m] (zipmap (map f (keys m)) (vals m))) (defn- last-piece-of-ns-qualified-class-name [clazz] (last (clojure.string/split (str clazz) #"\."))) (defn- grouped-comparables-and-uncomparables [xs] (let [[comparable uncomparable] ((juxt filter remove) #(instance? java.lang.Comparable %) xs) group+format+sort (fn [xs] (->> (group-by class xs) (map-keys last-piece-of-ns-qualified-class-name) (into (sorted-map))))] [(group+format+sort comparable) (group+format+sort uncomparable)])) (defn nested-sort "Sorts two nested collections for easy visual comparison. Sets and maps are converted to order-sets and ordered-maps." [x] (letfn [(seq-in-order-by-class [class-name->items sort?] (for [[_clazz_ xs] class-name->items x (if sort? (sort xs) xs)] x)) (map-in-order-by-class [m class-name->keys sort?] (into (om/ordered-map) (for [[_clazz_ ks] class-name->keys k (if sort? (sort ks) ks)] [k (nested-sort (get m k))])))] (cond (set? x) (let [[comps uncomps] (grouped-comparables-and-uncomparables x)] (into (os/ordered-set) (concat (seq-in-order-by-class comps true) (seq-in-order-by-class uncomps false)))) (map? x) (let [[comps uncomps] (grouped-comparables-and-uncomparables (keys x))] (into (map-in-order-by-class x comps true) (map-in-order-by-class x uncomps false))) (vector? x) (into [] (map nested-sort x)) (list? x) (reverse (into '() (map nested-sort x))) :else x))) (def sorted-if-appropriate nested-sort) ; backward compatibility (defn linearize-lines "Takes a nested structure that contains nils and strings. Converts it into a simple sequence of strings." [messy-lines] (->> messy-lines flatten (remove nil?))) (defn function-name "Convert a function into a readable name, if possible." [function] (->> (.. function getClass getName) demunge ( #(str/split % #"\.|/")) (take-last 2) (str/join "/"))) (defn record-name [value] (.getName (class value))) (defn record-name-shorthand [value] (last (str/split (record-name value) #"\."))) (defn maplike-name [value] (if (classic-map? value) "map" (record-name-shorthand value))) (defn prerequisite-var-description "Takes a var naming a prerequisite and returns a string useful for printing" [prerequisite-var] ;; This emphasizes a little that the prerequisite is a var, without having ;; too much spewage. While it's nice to be able to write: ;; (provided (foo 3) => 4) ;; ... that can cause confusion in those (relatively uncommon) cases where ;; rebinding `#'foo` does not change the value of `foo`. Having been reminded ;; occasionally that she's working with vars might help a perplexed user ;; become unperplexed. (let [name (pile/object-name prerequisite-var)] (if name (str "#'" name) (pr-str prerequisite-var)))) (defn attractively-stringified-value "Does some standard prettification of forms: : a function named `foo` : a nicely printed stack trace : maps and sets sorted by key." [value] (branch-on value fn? (function-name value) exception/captured-throwable? (exception/friendly-stacktrace value) record? (str (sorted-if-appropriate value) "::" (record-name value)) :else (pr-str (sorted-if-appropriate value)))) (defn format-nested-descriptions "Takes vector like [\"about cars\" nil \"sports cars are fast\"] and returns non-nils joined with -'s => \"about cars - sports cars are fast\"" [nested-description-vector] (when-let [non-nil (seq (remove nil? nested-description-vector))] (str/join " - " non-nil))) (defn filename-lineno "The ordinary way to describe the location of a failure." [[filename line-num]] (format "(%s:%s)" filename line-num)) (defn position-str "Describe a failure with optional namespace" [[filename line-num] namespace] (let [namespace (if namespace (str " " namespace) "")] (if (config/choice :visible-failure-namespace) (format "(%s:%s%s)" filename line-num namespace) (filename-lineno [filename line-num])))) (defn- format-binding-map [binding-map] (let [formatted-entries (for [[k v] binding-map] (str (pr-str k) " " (pr-str v)))] (str "[" (str/join "\n " formatted-entries) "]"))) (defn failure-notice "The reader's eye is guided by a bright red FAIL, the filename and lineno, and perhaps this other information: : the descriptions of all enclosing facts, if any : notes on which bindings were supplied to a tabular fact" [m] (let [description (when-let [doc (format-nested-descriptions (:description m))] (str (pr-str doc) " ")) position (position-str (:position m) (:namespace m)) table-substitutions (when (:midje/table-bindings m) (str "With table substitutions: " (format-binding-map (:midje/table-bindings m))))] (list (str "\n" (color/fail "FAIL") " " description "at " position) table-substitutions)))
32545
(ns ^{:doc "General purpose plugin utilities"} midje.emission.plugins.util (:use commons.clojure.core [clojure.repl :only [demunge]]) (:require [clojure.string :as str] [midje.util.pile :as pile] [midje.emission.clojure-test-facade :as ctf] [midje.emission.colorize :as color] [midje.util.exceptions :as exception] [midje.config :as config] [ordered.map :as om] [ordered.set :as os])) ;; The theory here was that using clojure.test output would allow text ;; from failing *facts* to appear within the clojure.test segment of ;; summary output. That doesn't work (though it works fine for ;; clojure.test output). The whole rigamarole is boring and I don't ;; care to jump through any more hoops. I say it's spinach, and I say ;; to hell with it. ;; (Don't change this to println, though. That doesn't work either. ;; Newlines are lost.) (def emit-one-line ctf/output) (defn emit-lines [lines] (doseq [line lines] (emit-one-line line))) (defn indented [lines] (map (partial str " ") lines)) ;;; The following is taken from <NAME>'s gui-diff ;;; https://github.com/AlexBaranosky/gui-diff ;;; Extracted because of its dependencies (defn- map-keys [f m] (zipmap (map f (keys m)) (vals m))) (defn- last-piece-of-ns-qualified-class-name [clazz] (last (clojure.string/split (str clazz) #"\."))) (defn- grouped-comparables-and-uncomparables [xs] (let [[comparable uncomparable] ((juxt filter remove) #(instance? java.lang.Comparable %) xs) group+format+sort (fn [xs] (->> (group-by class xs) (map-keys last-piece-of-ns-qualified-class-name) (into (sorted-map))))] [(group+format+sort comparable) (group+format+sort uncomparable)])) (defn nested-sort "Sorts two nested collections for easy visual comparison. Sets and maps are converted to order-sets and ordered-maps." [x] (letfn [(seq-in-order-by-class [class-name->items sort?] (for [[_clazz_ xs] class-name->items x (if sort? (sort xs) xs)] x)) (map-in-order-by-class [m class-name->keys sort?] (into (om/ordered-map) (for [[_clazz_ ks] class-name->keys k (if sort? (sort ks) ks)] [k (nested-sort (get m k))])))] (cond (set? x) (let [[comps uncomps] (grouped-comparables-and-uncomparables x)] (into (os/ordered-set) (concat (seq-in-order-by-class comps true) (seq-in-order-by-class uncomps false)))) (map? x) (let [[comps uncomps] (grouped-comparables-and-uncomparables (keys x))] (into (map-in-order-by-class x comps true) (map-in-order-by-class x uncomps false))) (vector? x) (into [] (map nested-sort x)) (list? x) (reverse (into '() (map nested-sort x))) :else x))) (def sorted-if-appropriate nested-sort) ; backward compatibility (defn linearize-lines "Takes a nested structure that contains nils and strings. Converts it into a simple sequence of strings." [messy-lines] (->> messy-lines flatten (remove nil?))) (defn function-name "Convert a function into a readable name, if possible." [function] (->> (.. function getClass getName) demunge ( #(str/split % #"\.|/")) (take-last 2) (str/join "/"))) (defn record-name [value] (.getName (class value))) (defn record-name-shorthand [value] (last (str/split (record-name value) #"\."))) (defn maplike-name [value] (if (classic-map? value) "map" (record-name-shorthand value))) (defn prerequisite-var-description "Takes a var naming a prerequisite and returns a string useful for printing" [prerequisite-var] ;; This emphasizes a little that the prerequisite is a var, without having ;; too much spewage. While it's nice to be able to write: ;; (provided (foo 3) => 4) ;; ... that can cause confusion in those (relatively uncommon) cases where ;; rebinding `#'foo` does not change the value of `foo`. Having been reminded ;; occasionally that she's working with vars might help a perplexed user ;; become unperplexed. (let [name (pile/object-name prerequisite-var)] (if name (str "#'" name) (pr-str prerequisite-var)))) (defn attractively-stringified-value "Does some standard prettification of forms: : a function named `foo` : a nicely printed stack trace : maps and sets sorted by key." [value] (branch-on value fn? (function-name value) exception/captured-throwable? (exception/friendly-stacktrace value) record? (str (sorted-if-appropriate value) "::" (record-name value)) :else (pr-str (sorted-if-appropriate value)))) (defn format-nested-descriptions "Takes vector like [\"about cars\" nil \"sports cars are fast\"] and returns non-nils joined with -'s => \"about cars - sports cars are fast\"" [nested-description-vector] (when-let [non-nil (seq (remove nil? nested-description-vector))] (str/join " - " non-nil))) (defn filename-lineno "The ordinary way to describe the location of a failure." [[filename line-num]] (format "(%s:%s)" filename line-num)) (defn position-str "Describe a failure with optional namespace" [[filename line-num] namespace] (let [namespace (if namespace (str " " namespace) "")] (if (config/choice :visible-failure-namespace) (format "(%s:%s%s)" filename line-num namespace) (filename-lineno [filename line-num])))) (defn- format-binding-map [binding-map] (let [formatted-entries (for [[k v] binding-map] (str (pr-str k) " " (pr-str v)))] (str "[" (str/join "\n " formatted-entries) "]"))) (defn failure-notice "The reader's eye is guided by a bright red FAIL, the filename and lineno, and perhaps this other information: : the descriptions of all enclosing facts, if any : notes on which bindings were supplied to a tabular fact" [m] (let [description (when-let [doc (format-nested-descriptions (:description m))] (str (pr-str doc) " ")) position (position-str (:position m) (:namespace m)) table-substitutions (when (:midje/table-bindings m) (str "With table substitutions: " (format-binding-map (:midje/table-bindings m))))] (list (str "\n" (color/fail "FAIL") " " description "at " position) table-substitutions)))
true
(ns ^{:doc "General purpose plugin utilities"} midje.emission.plugins.util (:use commons.clojure.core [clojure.repl :only [demunge]]) (:require [clojure.string :as str] [midje.util.pile :as pile] [midje.emission.clojure-test-facade :as ctf] [midje.emission.colorize :as color] [midje.util.exceptions :as exception] [midje.config :as config] [ordered.map :as om] [ordered.set :as os])) ;; The theory here was that using clojure.test output would allow text ;; from failing *facts* to appear within the clojure.test segment of ;; summary output. That doesn't work (though it works fine for ;; clojure.test output). The whole rigamarole is boring and I don't ;; care to jump through any more hoops. I say it's spinach, and I say ;; to hell with it. ;; (Don't change this to println, though. That doesn't work either. ;; Newlines are lost.) (def emit-one-line ctf/output) (defn emit-lines [lines] (doseq [line lines] (emit-one-line line))) (defn indented [lines] (map (partial str " ") lines)) ;;; The following is taken from PI:NAME:<NAME>END_PI's gui-diff ;;; https://github.com/AlexBaranosky/gui-diff ;;; Extracted because of its dependencies (defn- map-keys [f m] (zipmap (map f (keys m)) (vals m))) (defn- last-piece-of-ns-qualified-class-name [clazz] (last (clojure.string/split (str clazz) #"\."))) (defn- grouped-comparables-and-uncomparables [xs] (let [[comparable uncomparable] ((juxt filter remove) #(instance? java.lang.Comparable %) xs) group+format+sort (fn [xs] (->> (group-by class xs) (map-keys last-piece-of-ns-qualified-class-name) (into (sorted-map))))] [(group+format+sort comparable) (group+format+sort uncomparable)])) (defn nested-sort "Sorts two nested collections for easy visual comparison. Sets and maps are converted to order-sets and ordered-maps." [x] (letfn [(seq-in-order-by-class [class-name->items sort?] (for [[_clazz_ xs] class-name->items x (if sort? (sort xs) xs)] x)) (map-in-order-by-class [m class-name->keys sort?] (into (om/ordered-map) (for [[_clazz_ ks] class-name->keys k (if sort? (sort ks) ks)] [k (nested-sort (get m k))])))] (cond (set? x) (let [[comps uncomps] (grouped-comparables-and-uncomparables x)] (into (os/ordered-set) (concat (seq-in-order-by-class comps true) (seq-in-order-by-class uncomps false)))) (map? x) (let [[comps uncomps] (grouped-comparables-and-uncomparables (keys x))] (into (map-in-order-by-class x comps true) (map-in-order-by-class x uncomps false))) (vector? x) (into [] (map nested-sort x)) (list? x) (reverse (into '() (map nested-sort x))) :else x))) (def sorted-if-appropriate nested-sort) ; backward compatibility (defn linearize-lines "Takes a nested structure that contains nils and strings. Converts it into a simple sequence of strings." [messy-lines] (->> messy-lines flatten (remove nil?))) (defn function-name "Convert a function into a readable name, if possible." [function] (->> (.. function getClass getName) demunge ( #(str/split % #"\.|/")) (take-last 2) (str/join "/"))) (defn record-name [value] (.getName (class value))) (defn record-name-shorthand [value] (last (str/split (record-name value) #"\."))) (defn maplike-name [value] (if (classic-map? value) "map" (record-name-shorthand value))) (defn prerequisite-var-description "Takes a var naming a prerequisite and returns a string useful for printing" [prerequisite-var] ;; This emphasizes a little that the prerequisite is a var, without having ;; too much spewage. While it's nice to be able to write: ;; (provided (foo 3) => 4) ;; ... that can cause confusion in those (relatively uncommon) cases where ;; rebinding `#'foo` does not change the value of `foo`. Having been reminded ;; occasionally that she's working with vars might help a perplexed user ;; become unperplexed. (let [name (pile/object-name prerequisite-var)] (if name (str "#'" name) (pr-str prerequisite-var)))) (defn attractively-stringified-value "Does some standard prettification of forms: : a function named `foo` : a nicely printed stack trace : maps and sets sorted by key." [value] (branch-on value fn? (function-name value) exception/captured-throwable? (exception/friendly-stacktrace value) record? (str (sorted-if-appropriate value) "::" (record-name value)) :else (pr-str (sorted-if-appropriate value)))) (defn format-nested-descriptions "Takes vector like [\"about cars\" nil \"sports cars are fast\"] and returns non-nils joined with -'s => \"about cars - sports cars are fast\"" [nested-description-vector] (when-let [non-nil (seq (remove nil? nested-description-vector))] (str/join " - " non-nil))) (defn filename-lineno "The ordinary way to describe the location of a failure." [[filename line-num]] (format "(%s:%s)" filename line-num)) (defn position-str "Describe a failure with optional namespace" [[filename line-num] namespace] (let [namespace (if namespace (str " " namespace) "")] (if (config/choice :visible-failure-namespace) (format "(%s:%s%s)" filename line-num namespace) (filename-lineno [filename line-num])))) (defn- format-binding-map [binding-map] (let [formatted-entries (for [[k v] binding-map] (str (pr-str k) " " (pr-str v)))] (str "[" (str/join "\n " formatted-entries) "]"))) (defn failure-notice "The reader's eye is guided by a bright red FAIL, the filename and lineno, and perhaps this other information: : the descriptions of all enclosing facts, if any : notes on which bindings were supplied to a tabular fact" [m] (let [description (when-let [doc (format-nested-descriptions (:description m))] (str (pr-str doc) " ")) position (position-str (:position m) (:namespace m)) table-substitutions (when (:midje/table-bindings m) (str "With table substitutions: " (format-binding-map (:midje/table-bindings m))))] (list (str "\n" (color/fail "FAIL") " " description "at " position) table-substitutions)))
[ { "context": "r]\n [goog.fx.dom :as fx]\n [mranderson048.re-frame.v0v10v6.re-frame.core :as rf]\n ", "end": 134, "score": 0.6823164224624634, "start": 122, "tag": "USERNAME", "value": "randerson048" }, { "context": "8.re-frame-10x.utils.re-com :as rc]\n [mranderson048.reagent.v0v7v0.reagent.core :as r]\n [d", "end": 289, "score": 0.7805431485176086, "start": 277, "tag": "USERNAME", "value": "randerson048" }, { "context": "set as option for debugging purposes.\n Thanks to Martin Klepsch! Original code can be found here:\n https://", "end": 2002, "score": 0.9998846054077148, "start": 1988, "tag": "NAME", "value": "Martin Klepsch" }, { "context": "can be found here:\n https://gist.github.com/martinklepsch/440e6fd96714fac8c66d892e0be2aaa0\"\n (let [node ", "end": 2081, "score": 0.9994991421699524, "start": 2068, "tag": "USERNAME", "value": "martinklepsch" }, { "context": "white-space:no-wrap'.\n ; See https://github.com/binaryage/cljs-devtools/blob/master/src/lib/devtools/defaul", "end": 3897, "score": 0.9994542598724365, "start": 3888, "tag": "USERNAME", "value": "binaryage" }, { "context": "ierarchy depth limit,\n ; See https://github.com/binaryage/cljs-devtools/blob/master/src/lib/devtools/format", "end": 4619, "score": 0.9985158443450928, "start": 4610, "tag": "USERNAME", "value": "binaryage" } ]
src/day8/re_frame_10x/view/components.cljs
kajism/re-frame-10x
0
(ns day8.re-frame-10x.view.components (:require [clojure.string :as str] [goog.fx.dom :as fx] [mranderson048.re-frame.v0v10v6.re-frame.core :as rf] [clojure.string :as str] [day8.re-frame-10x.utils.re-com :as rc] [mranderson048.reagent.v0v7v0.reagent.core :as r] [devtools.prefs] [devtools.formatters.core] [cljsjs.react-highlight] [cljsjs.highlight.langs.clojure]) (:require-macros [day8.re-frame-10x.utils.macros :refer [with-cljs-devtools-prefs]])) (defn search-input [{:keys [title placeholder on-save on-change on-stop]}] (let [val (r/atom title) save #(let [v (-> @val str str/trim)] (when (pos? (count v)) (on-save v)))] (fn [] [:input {:type "text" :value @val :auto-focus true :placeholder placeholder :size (if (> 20 (count (str @val))) 25 (count (str @val))) :on-change #(do (reset! val (-> % .-target .-value)) (on-change %)) :on-key-down #(case (.-which %) 13 (do (save) (reset! val "")) nil)}]))) (defn scroll! [el start end time] (.play (fx/Scroll. el (clj->js start) (clj->js end) time))) (defn scrolled-to-end? [el tolerance] ;; at-end?: element.scrollHeight - element.scrollTop === element.clientHeight (> tolerance (- (.-scrollHeight el) (.-scrollTop el) (.-clientHeight el)))) (defn autoscroll-list [{:keys [class scroll?]} child] "Reagent component that enables scrolling for the elements of its child dom-node. Scrolling is only enabled if the list is scrolled to the end. Scrolling can be set as option for debugging purposes. Thanks to Martin Klepsch! Original code can be found here: https://gist.github.com/martinklepsch/440e6fd96714fac8c66d892e0be2aaa0" (let [node (r/atom nil) should-scroll (r/atom true)] (r/create-class {:display-name "autoscroll-list" :component-did-mount (fn [_] (scroll! @node [0 (.-scrollTop @node)] [0 (.-scrollHeight @node)] 0)) :component-will-update (fn [_] (reset! should-scroll (scrolled-to-end? @node 100))) :component-did-update (fn [_] (when (and scroll? @should-scroll) (scroll! @node [0 (.-scrollTop @node)] [0 (.-scrollHeight @node)] 500))) :reagent-render (fn [{:keys [class]} child] [:div {:class class :ref (fn [dom-node] (reset! node dom-node))} child])}))) ;; Data browser (defn string->css [css-string] "This function converts jsonml css-strings to valid css maps for hiccup. Example: 'margin-left:0px;min-height:14px;' converts to {:margin-left '0px', :min-height '14px'}" (->> (str/split css-string #";") (map #(str/split % #":")) (reduce (fn [acc [property value]] (assoc acc (keyword property) value)) {}))) (declare jsonml->hiccup) (def default-cljs-devtools-prefs @devtools.prefs/default-config) (defn reset-wrapping [css-string] (str/replace css-string #"white-space:nowrap;" "")) (def customized-cljs-devtools-prefs {; Override some cljs-devtools default styles. ; The goal here is to make default styles more flexible and wrap at the edge of our panel (we don't want horizontal ; scrolling). Technically we want to remove all 'white-space:no-wrap'. ; See https://github.com/binaryage/cljs-devtools/blob/master/src/lib/devtools/defaults.cljs ;; Commented out as this causes some other issues too. ;:header-style (reset-wrapping (:header-style default-cljs-devtools-prefs)) ;:expandable-style (reset-wrapping (:expandable-style default-cljs-devtools-prefs)) ;:item-style (reset-wrapping (:item-style default-cljs-devtools-prefs)) ; Hide the index spans on the left hand of collections. Shows how many elements in a collection. :none-style "display: none" :index-tag [:span :none-style] :min-expandable-sequable-count-for-well-known-types 3 ; Our JSON renderer does not have hierarchy depth limit, ; See https://github.com/binaryage/cljs-devtools/blob/master/src/lib/devtools/formatters/budgeting.cljs :initial-hierarchy-depth-budget false}) (def effective-cljs-devtools-prefs (merge default-cljs-devtools-prefs customized-cljs-devtools-prefs)) (defn make-devtools-api-call [api-fn & args] (with-cljs-devtools-prefs effective-cljs-devtools-prefs (apply api-fn args))) (defn cljs-devtools-header [& args] (apply make-devtools-api-call devtools.formatters.core/header-api-call args)) (defn cljs-devtools-body [& args] (apply make-devtools-api-call devtools.formatters.core/body-api-call args)) (defn cljs-devtools-has-body [& args] (apply make-devtools-api-call devtools.formatters.core/has-body-api-call args)) (defn get-object [jsonml] (.-object (get jsonml 1))) (defn get-config [jsonml] (.-config (get jsonml 1))) (defn data-structure [jsonml path] (let [expanded? (rf/subscribe [:app-db/node-expanded? path])] (fn [jsonml path] [:span {:class (str "re-frame-10x--object" (when @expanded? " expanded"))} [:span {:class "toggle" :on-click #(rf/dispatch [:app-db/toggle-expansion path])} [:button.expansion-button (if @expanded? "▼" "▶")]] (if (and @expanded? (cljs-devtools-has-body (get-object jsonml) (get-config jsonml))) (jsonml->hiccup (cljs-devtools-body (get-object jsonml) (get-config jsonml)) (conj path :body)) (jsonml->hiccup (cljs-devtools-header (get-object jsonml) (get-config jsonml)) (conj path :header)))]))) (defn jsonml->hiccup "JSONML is the format used by Chrome's Custom Object Formatters. The spec is at https://docs.google.com/document/d/1FTascZXT9cxfetuPRT2eXPQKXui4nWFivUnS_335T3U/preview. JSONML is pretty much Hiccup over JSON. Chrome's implementation of this can be found at https://cs.chromium.org/chromium/src/third_party/WebKit/Source/devtools/front_end/object_ui/CustomPreviewComponent.js " [jsonml path] (if (number? jsonml) jsonml (let [[tag-name attributes & children] jsonml tagnames #{"div" "span" "ol" "li" "table" "tr" "td"}] (cond (contains? tagnames tag-name) (into [(keyword tag-name) {:style (-> (js->clj attributes) (get "style") (string->css))}] (map-indexed (fn [i child] (jsonml->hiccup child (conj path i)))) children) (= tag-name "object") [data-structure jsonml path] :else jsonml)))) (defn subtree [data title path] (let [expanded? (rf/subscribe [:app-db/node-expanded? path])] (fn [data] [rc/v-box :children [[rc/h-box :align :center :class (str/join " " ["re-frame-10x--object" (when @expanded? "expanded")]) :children [[:span {:class "toggle" :on-click #(rf/dispatch [:app-db/toggle-expansion path])} [:button.expansion-button (if @expanded? "▼ " "▶ ")]] (or title "data")]] [rc/h-box :children [[:div {:style {:margin-left 20}} (cond (and @expanded? (or (string? data) (number? data) (boolean? data) (nil? data))) [:div {:style {:margin "10px 0"}} (prn-str data)] @expanded? (jsonml->hiccup (cljs-devtools-header data) (conj path 0)))]]]]]))) (defn subscription-render [data title path] (let [expanded? (r/atom true) #_(rf/subscribe [:app-db/node-expanded? path])] (fn [data] [:div {:class (str/join " " ["re-frame-10x--object" (when @expanded? "expanded")])} #_[:span {:class "toggle" :on-click #(rf/dispatch [:app-db/toggle-expansion path])} [:button.expansion-button (if @expanded? "▼ " "▶ ")]] (or title "data") [:div {:style {:margin-left 20}} (cond (and @expanded? (or (string? data) (number? data) (boolean? data) (nil? data))) [:div {:style {:margin "10px 0"}} (prn-str data)] @expanded? (jsonml->hiccup (cljs-devtools-header data) (conj path 0)))]]))) (defn simple-render [data path & [class]] (let [expanded? (r/atom true) #_(rf/subscribe [:app-db/node-expanded? path])] (fn [data] [:div {:class (str/join " " ["re-frame-10x--object" (when @expanded? "expanded") class])} #_[:span {:class "toggle" :on-click #(rf/dispatch [:app-db/toggle-expansion path])} [:button.expansion-button (if @expanded? "▼ " "▶ ")]] [:div #_{:style {:margin-left 20}} (cond (and @expanded? (or (string? data) (instance? js/RegExp data) (number? data) (boolean? data) (nil? data))) [:div {:style {:margin "10px 0"}} (prn-str data)] @expanded? (jsonml->hiccup (cljs-devtools-header data) (conj path 0)))]]))) (defn tag [class label] [rc/box :class (str "rft-tag noselect " class) :child [:span {:style {:margin "auto"}} label]]) (def highlight (r/adapt-react-class js/Highlight))
1914
(ns day8.re-frame-10x.view.components (:require [clojure.string :as str] [goog.fx.dom :as fx] [mranderson048.re-frame.v0v10v6.re-frame.core :as rf] [clojure.string :as str] [day8.re-frame-10x.utils.re-com :as rc] [mranderson048.reagent.v0v7v0.reagent.core :as r] [devtools.prefs] [devtools.formatters.core] [cljsjs.react-highlight] [cljsjs.highlight.langs.clojure]) (:require-macros [day8.re-frame-10x.utils.macros :refer [with-cljs-devtools-prefs]])) (defn search-input [{:keys [title placeholder on-save on-change on-stop]}] (let [val (r/atom title) save #(let [v (-> @val str str/trim)] (when (pos? (count v)) (on-save v)))] (fn [] [:input {:type "text" :value @val :auto-focus true :placeholder placeholder :size (if (> 20 (count (str @val))) 25 (count (str @val))) :on-change #(do (reset! val (-> % .-target .-value)) (on-change %)) :on-key-down #(case (.-which %) 13 (do (save) (reset! val "")) nil)}]))) (defn scroll! [el start end time] (.play (fx/Scroll. el (clj->js start) (clj->js end) time))) (defn scrolled-to-end? [el tolerance] ;; at-end?: element.scrollHeight - element.scrollTop === element.clientHeight (> tolerance (- (.-scrollHeight el) (.-scrollTop el) (.-clientHeight el)))) (defn autoscroll-list [{:keys [class scroll?]} child] "Reagent component that enables scrolling for the elements of its child dom-node. Scrolling is only enabled if the list is scrolled to the end. Scrolling can be set as option for debugging purposes. Thanks to <NAME>! Original code can be found here: https://gist.github.com/martinklepsch/440e6fd96714fac8c66d892e0be2aaa0" (let [node (r/atom nil) should-scroll (r/atom true)] (r/create-class {:display-name "autoscroll-list" :component-did-mount (fn [_] (scroll! @node [0 (.-scrollTop @node)] [0 (.-scrollHeight @node)] 0)) :component-will-update (fn [_] (reset! should-scroll (scrolled-to-end? @node 100))) :component-did-update (fn [_] (when (and scroll? @should-scroll) (scroll! @node [0 (.-scrollTop @node)] [0 (.-scrollHeight @node)] 500))) :reagent-render (fn [{:keys [class]} child] [:div {:class class :ref (fn [dom-node] (reset! node dom-node))} child])}))) ;; Data browser (defn string->css [css-string] "This function converts jsonml css-strings to valid css maps for hiccup. Example: 'margin-left:0px;min-height:14px;' converts to {:margin-left '0px', :min-height '14px'}" (->> (str/split css-string #";") (map #(str/split % #":")) (reduce (fn [acc [property value]] (assoc acc (keyword property) value)) {}))) (declare jsonml->hiccup) (def default-cljs-devtools-prefs @devtools.prefs/default-config) (defn reset-wrapping [css-string] (str/replace css-string #"white-space:nowrap;" "")) (def customized-cljs-devtools-prefs {; Override some cljs-devtools default styles. ; The goal here is to make default styles more flexible and wrap at the edge of our panel (we don't want horizontal ; scrolling). Technically we want to remove all 'white-space:no-wrap'. ; See https://github.com/binaryage/cljs-devtools/blob/master/src/lib/devtools/defaults.cljs ;; Commented out as this causes some other issues too. ;:header-style (reset-wrapping (:header-style default-cljs-devtools-prefs)) ;:expandable-style (reset-wrapping (:expandable-style default-cljs-devtools-prefs)) ;:item-style (reset-wrapping (:item-style default-cljs-devtools-prefs)) ; Hide the index spans on the left hand of collections. Shows how many elements in a collection. :none-style "display: none" :index-tag [:span :none-style] :min-expandable-sequable-count-for-well-known-types 3 ; Our JSON renderer does not have hierarchy depth limit, ; See https://github.com/binaryage/cljs-devtools/blob/master/src/lib/devtools/formatters/budgeting.cljs :initial-hierarchy-depth-budget false}) (def effective-cljs-devtools-prefs (merge default-cljs-devtools-prefs customized-cljs-devtools-prefs)) (defn make-devtools-api-call [api-fn & args] (with-cljs-devtools-prefs effective-cljs-devtools-prefs (apply api-fn args))) (defn cljs-devtools-header [& args] (apply make-devtools-api-call devtools.formatters.core/header-api-call args)) (defn cljs-devtools-body [& args] (apply make-devtools-api-call devtools.formatters.core/body-api-call args)) (defn cljs-devtools-has-body [& args] (apply make-devtools-api-call devtools.formatters.core/has-body-api-call args)) (defn get-object [jsonml] (.-object (get jsonml 1))) (defn get-config [jsonml] (.-config (get jsonml 1))) (defn data-structure [jsonml path] (let [expanded? (rf/subscribe [:app-db/node-expanded? path])] (fn [jsonml path] [:span {:class (str "re-frame-10x--object" (when @expanded? " expanded"))} [:span {:class "toggle" :on-click #(rf/dispatch [:app-db/toggle-expansion path])} [:button.expansion-button (if @expanded? "▼" "▶")]] (if (and @expanded? (cljs-devtools-has-body (get-object jsonml) (get-config jsonml))) (jsonml->hiccup (cljs-devtools-body (get-object jsonml) (get-config jsonml)) (conj path :body)) (jsonml->hiccup (cljs-devtools-header (get-object jsonml) (get-config jsonml)) (conj path :header)))]))) (defn jsonml->hiccup "JSONML is the format used by Chrome's Custom Object Formatters. The spec is at https://docs.google.com/document/d/1FTascZXT9cxfetuPRT2eXPQKXui4nWFivUnS_335T3U/preview. JSONML is pretty much Hiccup over JSON. Chrome's implementation of this can be found at https://cs.chromium.org/chromium/src/third_party/WebKit/Source/devtools/front_end/object_ui/CustomPreviewComponent.js " [jsonml path] (if (number? jsonml) jsonml (let [[tag-name attributes & children] jsonml tagnames #{"div" "span" "ol" "li" "table" "tr" "td"}] (cond (contains? tagnames tag-name) (into [(keyword tag-name) {:style (-> (js->clj attributes) (get "style") (string->css))}] (map-indexed (fn [i child] (jsonml->hiccup child (conj path i)))) children) (= tag-name "object") [data-structure jsonml path] :else jsonml)))) (defn subtree [data title path] (let [expanded? (rf/subscribe [:app-db/node-expanded? path])] (fn [data] [rc/v-box :children [[rc/h-box :align :center :class (str/join " " ["re-frame-10x--object" (when @expanded? "expanded")]) :children [[:span {:class "toggle" :on-click #(rf/dispatch [:app-db/toggle-expansion path])} [:button.expansion-button (if @expanded? "▼ " "▶ ")]] (or title "data")]] [rc/h-box :children [[:div {:style {:margin-left 20}} (cond (and @expanded? (or (string? data) (number? data) (boolean? data) (nil? data))) [:div {:style {:margin "10px 0"}} (prn-str data)] @expanded? (jsonml->hiccup (cljs-devtools-header data) (conj path 0)))]]]]]))) (defn subscription-render [data title path] (let [expanded? (r/atom true) #_(rf/subscribe [:app-db/node-expanded? path])] (fn [data] [:div {:class (str/join " " ["re-frame-10x--object" (when @expanded? "expanded")])} #_[:span {:class "toggle" :on-click #(rf/dispatch [:app-db/toggle-expansion path])} [:button.expansion-button (if @expanded? "▼ " "▶ ")]] (or title "data") [:div {:style {:margin-left 20}} (cond (and @expanded? (or (string? data) (number? data) (boolean? data) (nil? data))) [:div {:style {:margin "10px 0"}} (prn-str data)] @expanded? (jsonml->hiccup (cljs-devtools-header data) (conj path 0)))]]))) (defn simple-render [data path & [class]] (let [expanded? (r/atom true) #_(rf/subscribe [:app-db/node-expanded? path])] (fn [data] [:div {:class (str/join " " ["re-frame-10x--object" (when @expanded? "expanded") class])} #_[:span {:class "toggle" :on-click #(rf/dispatch [:app-db/toggle-expansion path])} [:button.expansion-button (if @expanded? "▼ " "▶ ")]] [:div #_{:style {:margin-left 20}} (cond (and @expanded? (or (string? data) (instance? js/RegExp data) (number? data) (boolean? data) (nil? data))) [:div {:style {:margin "10px 0"}} (prn-str data)] @expanded? (jsonml->hiccup (cljs-devtools-header data) (conj path 0)))]]))) (defn tag [class label] [rc/box :class (str "rft-tag noselect " class) :child [:span {:style {:margin "auto"}} label]]) (def highlight (r/adapt-react-class js/Highlight))
true
(ns day8.re-frame-10x.view.components (:require [clojure.string :as str] [goog.fx.dom :as fx] [mranderson048.re-frame.v0v10v6.re-frame.core :as rf] [clojure.string :as str] [day8.re-frame-10x.utils.re-com :as rc] [mranderson048.reagent.v0v7v0.reagent.core :as r] [devtools.prefs] [devtools.formatters.core] [cljsjs.react-highlight] [cljsjs.highlight.langs.clojure]) (:require-macros [day8.re-frame-10x.utils.macros :refer [with-cljs-devtools-prefs]])) (defn search-input [{:keys [title placeholder on-save on-change on-stop]}] (let [val (r/atom title) save #(let [v (-> @val str str/trim)] (when (pos? (count v)) (on-save v)))] (fn [] [:input {:type "text" :value @val :auto-focus true :placeholder placeholder :size (if (> 20 (count (str @val))) 25 (count (str @val))) :on-change #(do (reset! val (-> % .-target .-value)) (on-change %)) :on-key-down #(case (.-which %) 13 (do (save) (reset! val "")) nil)}]))) (defn scroll! [el start end time] (.play (fx/Scroll. el (clj->js start) (clj->js end) time))) (defn scrolled-to-end? [el tolerance] ;; at-end?: element.scrollHeight - element.scrollTop === element.clientHeight (> tolerance (- (.-scrollHeight el) (.-scrollTop el) (.-clientHeight el)))) (defn autoscroll-list [{:keys [class scroll?]} child] "Reagent component that enables scrolling for the elements of its child dom-node. Scrolling is only enabled if the list is scrolled to the end. Scrolling can be set as option for debugging purposes. Thanks to PI:NAME:<NAME>END_PI! Original code can be found here: https://gist.github.com/martinklepsch/440e6fd96714fac8c66d892e0be2aaa0" (let [node (r/atom nil) should-scroll (r/atom true)] (r/create-class {:display-name "autoscroll-list" :component-did-mount (fn [_] (scroll! @node [0 (.-scrollTop @node)] [0 (.-scrollHeight @node)] 0)) :component-will-update (fn [_] (reset! should-scroll (scrolled-to-end? @node 100))) :component-did-update (fn [_] (when (and scroll? @should-scroll) (scroll! @node [0 (.-scrollTop @node)] [0 (.-scrollHeight @node)] 500))) :reagent-render (fn [{:keys [class]} child] [:div {:class class :ref (fn [dom-node] (reset! node dom-node))} child])}))) ;; Data browser (defn string->css [css-string] "This function converts jsonml css-strings to valid css maps for hiccup. Example: 'margin-left:0px;min-height:14px;' converts to {:margin-left '0px', :min-height '14px'}" (->> (str/split css-string #";") (map #(str/split % #":")) (reduce (fn [acc [property value]] (assoc acc (keyword property) value)) {}))) (declare jsonml->hiccup) (def default-cljs-devtools-prefs @devtools.prefs/default-config) (defn reset-wrapping [css-string] (str/replace css-string #"white-space:nowrap;" "")) (def customized-cljs-devtools-prefs {; Override some cljs-devtools default styles. ; The goal here is to make default styles more flexible and wrap at the edge of our panel (we don't want horizontal ; scrolling). Technically we want to remove all 'white-space:no-wrap'. ; See https://github.com/binaryage/cljs-devtools/blob/master/src/lib/devtools/defaults.cljs ;; Commented out as this causes some other issues too. ;:header-style (reset-wrapping (:header-style default-cljs-devtools-prefs)) ;:expandable-style (reset-wrapping (:expandable-style default-cljs-devtools-prefs)) ;:item-style (reset-wrapping (:item-style default-cljs-devtools-prefs)) ; Hide the index spans on the left hand of collections. Shows how many elements in a collection. :none-style "display: none" :index-tag [:span :none-style] :min-expandable-sequable-count-for-well-known-types 3 ; Our JSON renderer does not have hierarchy depth limit, ; See https://github.com/binaryage/cljs-devtools/blob/master/src/lib/devtools/formatters/budgeting.cljs :initial-hierarchy-depth-budget false}) (def effective-cljs-devtools-prefs (merge default-cljs-devtools-prefs customized-cljs-devtools-prefs)) (defn make-devtools-api-call [api-fn & args] (with-cljs-devtools-prefs effective-cljs-devtools-prefs (apply api-fn args))) (defn cljs-devtools-header [& args] (apply make-devtools-api-call devtools.formatters.core/header-api-call args)) (defn cljs-devtools-body [& args] (apply make-devtools-api-call devtools.formatters.core/body-api-call args)) (defn cljs-devtools-has-body [& args] (apply make-devtools-api-call devtools.formatters.core/has-body-api-call args)) (defn get-object [jsonml] (.-object (get jsonml 1))) (defn get-config [jsonml] (.-config (get jsonml 1))) (defn data-structure [jsonml path] (let [expanded? (rf/subscribe [:app-db/node-expanded? path])] (fn [jsonml path] [:span {:class (str "re-frame-10x--object" (when @expanded? " expanded"))} [:span {:class "toggle" :on-click #(rf/dispatch [:app-db/toggle-expansion path])} [:button.expansion-button (if @expanded? "▼" "▶")]] (if (and @expanded? (cljs-devtools-has-body (get-object jsonml) (get-config jsonml))) (jsonml->hiccup (cljs-devtools-body (get-object jsonml) (get-config jsonml)) (conj path :body)) (jsonml->hiccup (cljs-devtools-header (get-object jsonml) (get-config jsonml)) (conj path :header)))]))) (defn jsonml->hiccup "JSONML is the format used by Chrome's Custom Object Formatters. The spec is at https://docs.google.com/document/d/1FTascZXT9cxfetuPRT2eXPQKXui4nWFivUnS_335T3U/preview. JSONML is pretty much Hiccup over JSON. Chrome's implementation of this can be found at https://cs.chromium.org/chromium/src/third_party/WebKit/Source/devtools/front_end/object_ui/CustomPreviewComponent.js " [jsonml path] (if (number? jsonml) jsonml (let [[tag-name attributes & children] jsonml tagnames #{"div" "span" "ol" "li" "table" "tr" "td"}] (cond (contains? tagnames tag-name) (into [(keyword tag-name) {:style (-> (js->clj attributes) (get "style") (string->css))}] (map-indexed (fn [i child] (jsonml->hiccup child (conj path i)))) children) (= tag-name "object") [data-structure jsonml path] :else jsonml)))) (defn subtree [data title path] (let [expanded? (rf/subscribe [:app-db/node-expanded? path])] (fn [data] [rc/v-box :children [[rc/h-box :align :center :class (str/join " " ["re-frame-10x--object" (when @expanded? "expanded")]) :children [[:span {:class "toggle" :on-click #(rf/dispatch [:app-db/toggle-expansion path])} [:button.expansion-button (if @expanded? "▼ " "▶ ")]] (or title "data")]] [rc/h-box :children [[:div {:style {:margin-left 20}} (cond (and @expanded? (or (string? data) (number? data) (boolean? data) (nil? data))) [:div {:style {:margin "10px 0"}} (prn-str data)] @expanded? (jsonml->hiccup (cljs-devtools-header data) (conj path 0)))]]]]]))) (defn subscription-render [data title path] (let [expanded? (r/atom true) #_(rf/subscribe [:app-db/node-expanded? path])] (fn [data] [:div {:class (str/join " " ["re-frame-10x--object" (when @expanded? "expanded")])} #_[:span {:class "toggle" :on-click #(rf/dispatch [:app-db/toggle-expansion path])} [:button.expansion-button (if @expanded? "▼ " "▶ ")]] (or title "data") [:div {:style {:margin-left 20}} (cond (and @expanded? (or (string? data) (number? data) (boolean? data) (nil? data))) [:div {:style {:margin "10px 0"}} (prn-str data)] @expanded? (jsonml->hiccup (cljs-devtools-header data) (conj path 0)))]]))) (defn simple-render [data path & [class]] (let [expanded? (r/atom true) #_(rf/subscribe [:app-db/node-expanded? path])] (fn [data] [:div {:class (str/join " " ["re-frame-10x--object" (when @expanded? "expanded") class])} #_[:span {:class "toggle" :on-click #(rf/dispatch [:app-db/toggle-expansion path])} [:button.expansion-button (if @expanded? "▼ " "▶ ")]] [:div #_{:style {:margin-left 20}} (cond (and @expanded? (or (string? data) (instance? js/RegExp data) (number? data) (boolean? data) (nil? data))) [:div {:style {:margin "10px 0"}} (prn-str data)] @expanded? (jsonml->hiccup (cljs-devtools-header data) (conj path 0)))]]))) (defn tag [class label] [rc/box :class (str "rft-tag noselect " class) :child [:span {:style {:margin "auto"}} label]]) (def highlight (r/adapt-react-class js/Highlight))
[ { "context": " [tenet.response :as r]))\n\n\n;; TODO: [2022-05-02, ilshat@sultanov.team] validate opts\n\n(defn init!\n ([^js sentry]\n (i", "end": 253, "score": 0.9999041557312012, "start": 233, "tag": "EMAIL", "value": "ilshat@sultanov.team" } ]
src/main/clojure/metaverse/common/reporter.cljs
sultanov-team/metaverse
1
(ns metaverse.common.reporter (:require [metaverse.common.env :as env] [metaverse.common.logger :as log :include-macros true] [metaverse.common.utils.string :as str] [tenet.response :as r])) ;; TODO: [2022-05-02, ilshat@sultanov.team] validate opts (defn init! ([^js sentry] (init! sentry {})) ([^js sentry {:keys [dsn] :as opts}] (let [dsn (or dsn env/sentry-dsn)] (if (= "N/A" dsn) (do (log/error :msg "Sentry reporter is not initialized" :opts opts) (r/as-incorrect env/sentry-dsn)) (let [version (:version env/build-info) build (-> env/build-info (:metadata) (assoc :version version)) opts' (-> {:dsn env/sentry-dsn, :environment env/mode, :tracesSampleRate 1.0, :debug env/develop? :release (str/format "%s@%s:%s" env/company-name env/product-name version) :initialScope {:build build}} (merge opts)) reporter (.init sentry (clj->js opts'))] (log/info :msg "Sentry reporter successfully initialized" :opts opts') (r/as-success reporter))))))
101315
(ns metaverse.common.reporter (:require [metaverse.common.env :as env] [metaverse.common.logger :as log :include-macros true] [metaverse.common.utils.string :as str] [tenet.response :as r])) ;; TODO: [2022-05-02, <EMAIL>] validate opts (defn init! ([^js sentry] (init! sentry {})) ([^js sentry {:keys [dsn] :as opts}] (let [dsn (or dsn env/sentry-dsn)] (if (= "N/A" dsn) (do (log/error :msg "Sentry reporter is not initialized" :opts opts) (r/as-incorrect env/sentry-dsn)) (let [version (:version env/build-info) build (-> env/build-info (:metadata) (assoc :version version)) opts' (-> {:dsn env/sentry-dsn, :environment env/mode, :tracesSampleRate 1.0, :debug env/develop? :release (str/format "%s@%s:%s" env/company-name env/product-name version) :initialScope {:build build}} (merge opts)) reporter (.init sentry (clj->js opts'))] (log/info :msg "Sentry reporter successfully initialized" :opts opts') (r/as-success reporter))))))
true
(ns metaverse.common.reporter (:require [metaverse.common.env :as env] [metaverse.common.logger :as log :include-macros true] [metaverse.common.utils.string :as str] [tenet.response :as r])) ;; TODO: [2022-05-02, PI:EMAIL:<EMAIL>END_PI] validate opts (defn init! ([^js sentry] (init! sentry {})) ([^js sentry {:keys [dsn] :as opts}] (let [dsn (or dsn env/sentry-dsn)] (if (= "N/A" dsn) (do (log/error :msg "Sentry reporter is not initialized" :opts opts) (r/as-incorrect env/sentry-dsn)) (let [version (:version env/build-info) build (-> env/build-info (:metadata) (assoc :version version)) opts' (-> {:dsn env/sentry-dsn, :environment env/mode, :tracesSampleRate 1.0, :debug env/develop? :release (str/format "%s@%s:%s" env/company-name env/product-name version) :initialScope {:build build}} (merge opts)) reporter (.init sentry (clj->js opts'))] (log/info :msg "Sentry reporter successfully initialized" :opts opts') (r/as-success reporter))))))
[ { "context": "clj-time.format :as clj-time-format]\n [robert.bruce :refer [try-try-again]]\n [event-data-c", "end": 353, "score": 0.6166594624519348, "start": 341, "tag": "USERNAME", "value": "robert.bruce" }, { "context": "use a slightly different, more specific one.\"\n\n \"CrossrefEventDataBot (eventdata@crossref.org)\")\n\n; Licenses.\n(def c", "end": 1051, "score": 0.6390448212623596, "start": 1034, "tag": "USERNAME", "value": "CrossrefEventData" }, { "context": "nt, more specific one.\"\n\n \"CrossrefEventDataBot (eventdata@crossref.org)\")\n\n; Licenses.\n(def cc-0 \"https://creativecommon", "end": 1078, "score": 0.995441734790802, "start": 1056, "tag": "EMAIL", "value": "eventdata@crossref.org" } ]
src/event_data_agents/util.clj
CrossRef/event-data-agents
3
(ns event-data-agents.util "Utility function available to Agents." (:require [event-data-common.jwt :as jwt] [clojure.tools.logging :as log] [clojure.data.json :as json] [config.core :refer [env]] [clj-time.core :as clj-time] [clj-time.format :as clj-time-format] [robert.bruce :refer [try-try-again]] [event-data-common.artifact :as artifact] [event-data-common.backoff :as backoff] [event-data-common.evidence-log :as evidence-log] [clojure.core.async :refer [go-loop thread buffer chan <!! >!! >! <!]]) (:import [org.apache.kafka.clients.producer KafkaProducer Producer ProducerRecord] [java.util UUID]) (:gen-class)) (def version "Version of the whole codebase. Individual Agents report this version." (System/getProperty "event-data-agents.version")) (def http-user-agent "User Agent for HTTP requests. Some Agents (e.g. Reddit) use a slightly different, more specific one." "CrossrefEventDataBot (eventdata@crossref.org)") ; Licenses. (def cc-0 "https://creativecommons.org/publicdomain/zero/1.0/") (def cc-by-sa4 "https://creativecommons.org/licenses/by-sa/4.0/") (def kafka-producer (delay (KafkaProducer. {"bootstrap.servers" (:global-kafka-bootstrap-servers env) "acks" "1" "retries" (int 5) "key.serializer" "org.apache.kafka.common.serialization.StringSerializer" "value.serializer" "org.apache.kafka.common.serialization.StringSerializer"}))) (def date-format (clj-time-format/formatters :basic-date)) (def jwt-verifier "A JWT verifier for signing and verifying JWTs using the configured secret." (delay (jwt/build (:global-jwt-secrets env)))) (defn build-evidence-record "Generate a standard base Evidence Record. Generate an ID based on agent and timestamp. Supply Agent Manifest and an Artifact Map." ([manifest artifacts extra] (merge extra (build-evidence-record manifest artifacts))) ([manifest artifacts] (let [now (clj-time/now) source-id (:source-id manifest) id (str (clj-time-format/unparse date-format now) "-" source-id "-" (UUID/randomUUID)) now-str (str now)] {:id id :source-id (:source-id manifest) :source-token (:source-token manifest) :timestamp now-str ; Transform {artifact-name [version-url text-content]} ; into {artifact-name version-url} :artifacts (into {} (map #(vector (first %) (-> % second first)) artifacts)) :agent {:version version :name (:agent-name manifest)} :license (:license manifest)}))) (defn send-evidence-record "Send an Evidence Record into the Kafka queue." [manifest evidence-record] ; If Kafka isn't set up, just log these. WARN to stop this happening by mistake. (if-not (:global-kafka-bootstrap-servers env) (log/warn "Send Evidence Record:" evidence-record) (do ; Agents might send nil or empty evidence records (e.g. Newsfeed on an error). ; Guarding here gives broadest protection. (when (not-empty evidence-record) (let [; Add a JWT so that the Percolator knows that the message is from us. with-jwt (assoc evidence-record :jwt (jwt/sign @jwt-verifier {"sub" (:source-id manifest)})) topic (:percolator-input-evidence-record-topic env) id (:id evidence-record)] (evidence-log/log! {:i "a0001" :s (:agent-name manifest) :c "evidence" :f "send" :r id}) (log/info "Send" (:id evidence-record) "to" topic) (try (let [result (.send @kafka-producer (ProducerRecord. topic id (json/write-str with-jwt)))] ; Wait for the future, so to speak. (.get result)) (catch java.util.concurrent.ExecutionException ex (do (log/error "Failed to send Evidence Record to Kafka:" id) ; Of course if Kafka is down, Evidence Logging may also fail. (evidence-log/log! {:i "a0040" :s (:agent-name manifest) :c "evidence" :f "send-error" :r id}))))))))) (defn fetch-artifact-map "From a seq of Artifact names, fetch {artifact-name [version-url text-content]}. Also log to evidence log." [manifest artifact-names] (into {} (map (fn [artifact-name] (let [version-url (artifact/fetch-latest-version-link artifact-name) content (artifact/fetch-latest-artifact-string artifact-name)] (evidence-log/log! {:i "a0002" :s (:agent-name manifest) :c "artifact" :f "fetch" :v artifact-name :u version-url}) [artifact-name [version-url content]])) artifact-names)))
115655
(ns event-data-agents.util "Utility function available to Agents." (:require [event-data-common.jwt :as jwt] [clojure.tools.logging :as log] [clojure.data.json :as json] [config.core :refer [env]] [clj-time.core :as clj-time] [clj-time.format :as clj-time-format] [robert.bruce :refer [try-try-again]] [event-data-common.artifact :as artifact] [event-data-common.backoff :as backoff] [event-data-common.evidence-log :as evidence-log] [clojure.core.async :refer [go-loop thread buffer chan <!! >!! >! <!]]) (:import [org.apache.kafka.clients.producer KafkaProducer Producer ProducerRecord] [java.util UUID]) (:gen-class)) (def version "Version of the whole codebase. Individual Agents report this version." (System/getProperty "event-data-agents.version")) (def http-user-agent "User Agent for HTTP requests. Some Agents (e.g. Reddit) use a slightly different, more specific one." "CrossrefEventDataBot (<EMAIL>)") ; Licenses. (def cc-0 "https://creativecommons.org/publicdomain/zero/1.0/") (def cc-by-sa4 "https://creativecommons.org/licenses/by-sa/4.0/") (def kafka-producer (delay (KafkaProducer. {"bootstrap.servers" (:global-kafka-bootstrap-servers env) "acks" "1" "retries" (int 5) "key.serializer" "org.apache.kafka.common.serialization.StringSerializer" "value.serializer" "org.apache.kafka.common.serialization.StringSerializer"}))) (def date-format (clj-time-format/formatters :basic-date)) (def jwt-verifier "A JWT verifier for signing and verifying JWTs using the configured secret." (delay (jwt/build (:global-jwt-secrets env)))) (defn build-evidence-record "Generate a standard base Evidence Record. Generate an ID based on agent and timestamp. Supply Agent Manifest and an Artifact Map." ([manifest artifacts extra] (merge extra (build-evidence-record manifest artifacts))) ([manifest artifacts] (let [now (clj-time/now) source-id (:source-id manifest) id (str (clj-time-format/unparse date-format now) "-" source-id "-" (UUID/randomUUID)) now-str (str now)] {:id id :source-id (:source-id manifest) :source-token (:source-token manifest) :timestamp now-str ; Transform {artifact-name [version-url text-content]} ; into {artifact-name version-url} :artifacts (into {} (map #(vector (first %) (-> % second first)) artifacts)) :agent {:version version :name (:agent-name manifest)} :license (:license manifest)}))) (defn send-evidence-record "Send an Evidence Record into the Kafka queue." [manifest evidence-record] ; If Kafka isn't set up, just log these. WARN to stop this happening by mistake. (if-not (:global-kafka-bootstrap-servers env) (log/warn "Send Evidence Record:" evidence-record) (do ; Agents might send nil or empty evidence records (e.g. Newsfeed on an error). ; Guarding here gives broadest protection. (when (not-empty evidence-record) (let [; Add a JWT so that the Percolator knows that the message is from us. with-jwt (assoc evidence-record :jwt (jwt/sign @jwt-verifier {"sub" (:source-id manifest)})) topic (:percolator-input-evidence-record-topic env) id (:id evidence-record)] (evidence-log/log! {:i "a0001" :s (:agent-name manifest) :c "evidence" :f "send" :r id}) (log/info "Send" (:id evidence-record) "to" topic) (try (let [result (.send @kafka-producer (ProducerRecord. topic id (json/write-str with-jwt)))] ; Wait for the future, so to speak. (.get result)) (catch java.util.concurrent.ExecutionException ex (do (log/error "Failed to send Evidence Record to Kafka:" id) ; Of course if Kafka is down, Evidence Logging may also fail. (evidence-log/log! {:i "a0040" :s (:agent-name manifest) :c "evidence" :f "send-error" :r id}))))))))) (defn fetch-artifact-map "From a seq of Artifact names, fetch {artifact-name [version-url text-content]}. Also log to evidence log." [manifest artifact-names] (into {} (map (fn [artifact-name] (let [version-url (artifact/fetch-latest-version-link artifact-name) content (artifact/fetch-latest-artifact-string artifact-name)] (evidence-log/log! {:i "a0002" :s (:agent-name manifest) :c "artifact" :f "fetch" :v artifact-name :u version-url}) [artifact-name [version-url content]])) artifact-names)))
true
(ns event-data-agents.util "Utility function available to Agents." (:require [event-data-common.jwt :as jwt] [clojure.tools.logging :as log] [clojure.data.json :as json] [config.core :refer [env]] [clj-time.core :as clj-time] [clj-time.format :as clj-time-format] [robert.bruce :refer [try-try-again]] [event-data-common.artifact :as artifact] [event-data-common.backoff :as backoff] [event-data-common.evidence-log :as evidence-log] [clojure.core.async :refer [go-loop thread buffer chan <!! >!! >! <!]]) (:import [org.apache.kafka.clients.producer KafkaProducer Producer ProducerRecord] [java.util UUID]) (:gen-class)) (def version "Version of the whole codebase. Individual Agents report this version." (System/getProperty "event-data-agents.version")) (def http-user-agent "User Agent for HTTP requests. Some Agents (e.g. Reddit) use a slightly different, more specific one." "CrossrefEventDataBot (PI:EMAIL:<EMAIL>END_PI)") ; Licenses. (def cc-0 "https://creativecommons.org/publicdomain/zero/1.0/") (def cc-by-sa4 "https://creativecommons.org/licenses/by-sa/4.0/") (def kafka-producer (delay (KafkaProducer. {"bootstrap.servers" (:global-kafka-bootstrap-servers env) "acks" "1" "retries" (int 5) "key.serializer" "org.apache.kafka.common.serialization.StringSerializer" "value.serializer" "org.apache.kafka.common.serialization.StringSerializer"}))) (def date-format (clj-time-format/formatters :basic-date)) (def jwt-verifier "A JWT verifier for signing and verifying JWTs using the configured secret." (delay (jwt/build (:global-jwt-secrets env)))) (defn build-evidence-record "Generate a standard base Evidence Record. Generate an ID based on agent and timestamp. Supply Agent Manifest and an Artifact Map." ([manifest artifacts extra] (merge extra (build-evidence-record manifest artifacts))) ([manifest artifacts] (let [now (clj-time/now) source-id (:source-id manifest) id (str (clj-time-format/unparse date-format now) "-" source-id "-" (UUID/randomUUID)) now-str (str now)] {:id id :source-id (:source-id manifest) :source-token (:source-token manifest) :timestamp now-str ; Transform {artifact-name [version-url text-content]} ; into {artifact-name version-url} :artifacts (into {} (map #(vector (first %) (-> % second first)) artifacts)) :agent {:version version :name (:agent-name manifest)} :license (:license manifest)}))) (defn send-evidence-record "Send an Evidence Record into the Kafka queue." [manifest evidence-record] ; If Kafka isn't set up, just log these. WARN to stop this happening by mistake. (if-not (:global-kafka-bootstrap-servers env) (log/warn "Send Evidence Record:" evidence-record) (do ; Agents might send nil or empty evidence records (e.g. Newsfeed on an error). ; Guarding here gives broadest protection. (when (not-empty evidence-record) (let [; Add a JWT so that the Percolator knows that the message is from us. with-jwt (assoc evidence-record :jwt (jwt/sign @jwt-verifier {"sub" (:source-id manifest)})) topic (:percolator-input-evidence-record-topic env) id (:id evidence-record)] (evidence-log/log! {:i "a0001" :s (:agent-name manifest) :c "evidence" :f "send" :r id}) (log/info "Send" (:id evidence-record) "to" topic) (try (let [result (.send @kafka-producer (ProducerRecord. topic id (json/write-str with-jwt)))] ; Wait for the future, so to speak. (.get result)) (catch java.util.concurrent.ExecutionException ex (do (log/error "Failed to send Evidence Record to Kafka:" id) ; Of course if Kafka is down, Evidence Logging may also fail. (evidence-log/log! {:i "a0040" :s (:agent-name manifest) :c "evidence" :f "send-error" :r id}))))))))) (defn fetch-artifact-map "From a seq of Artifact names, fetch {artifact-name [version-url text-content]}. Also log to evidence log." [manifest artifact-names] (into {} (map (fn [artifact-name] (let [version-url (artifact/fetch-latest-version-link artifact-name) content (artifact/fetch-latest-artifact-string artifact-name)] (evidence-log/log! {:i "a0002" :s (:agent-name manifest) :c "artifact" :f "fetch" :v artifact-name :u version-url}) [artifact-name [version-url content]])) artifact-names)))
[ { "context": "t.pretty.args/args-classify :added \"2.1\" :author \"Chris Zheng\"}\n(fact \"classifies inputs into `.?` and `.*` mac", "end": 190, "score": 0.9998931884765625, "start": 179, "tag": "NAME", "value": "Chris Zheng" } ]
test/hara/reflect/pretty/args_test.clj
ikitommi/hara
0
(ns hara.reflect.pretty.args-test (:use midje.sweet) (:require [hara.reflect.pretty.args :refer :all])) ^{:refer hara.reflect.pretty.args/args-classify :added "2.1" :author "Chris Zheng"} (fact "classifies inputs into `.?` and `.*` macros through matching argument parameters to different inputs" (map (fn [[i x]] [i (args-classify x)]) {0 :by-name ;; sort - :by-params, :by-modifiers, :by-type 1 :tag ;; display - :name, :params, :modifiers, :type, :attributes, ;; :origins, :container, :delegate 2 :first ;; gets the first element 3 :# ;; merge all elements into a single multi element 4 "toString" ;; matches exact name of function 5 #"to*" ;; matches name containing regex 6 #(-> % :type (= :field)) ;; matches on predicate element 7 #{Class} ;; match origin of element 8 [:any 'int] ;; match any parameter type 9 [:all 'int 'long] ;; match all parameter types 10 ['byte 'byte] ;; match exact paramter types 11 3 ;; match number of parameters 13 'int ;; match on the type of element 14 :public ;; match on modifiers (:public, :static, etc...) }) => (just [[0 :sort-terms] [1 :select-terms] [2 :first] [3 :merge] [4 :name] [5 :name] [6 :predicate] [7 :origins] [8 :any-params] [9 :all-params] [10 :params] [11 :num-params] [13 :type] [14 :modifiers]] :in-any-order)) ^{:refer hara.reflect.pretty.args/args-convert :added "2.1"} (fact "converts any symbol in `args` to its primitive class" (args-convert ['byte]) => [Byte/TYPE] (args-convert ['byte Class]) => [Byte/TYPE Class]) ^{:refer hara.reflect.pretty.args/args-group :added "2.1"} (fact "group inputs together into their respective categories" (args-group ["toString" :public :tag #{String}]) => {:name ["toString"] :modifiers [:public] :select-terms [:tag] :origins [#{java.lang.String}]} (args-group ['int 3 :#]) {:type [int], :num-params [3], :merge [:#]})
56394
(ns hara.reflect.pretty.args-test (:use midje.sweet) (:require [hara.reflect.pretty.args :refer :all])) ^{:refer hara.reflect.pretty.args/args-classify :added "2.1" :author "<NAME>"} (fact "classifies inputs into `.?` and `.*` macros through matching argument parameters to different inputs" (map (fn [[i x]] [i (args-classify x)]) {0 :by-name ;; sort - :by-params, :by-modifiers, :by-type 1 :tag ;; display - :name, :params, :modifiers, :type, :attributes, ;; :origins, :container, :delegate 2 :first ;; gets the first element 3 :# ;; merge all elements into a single multi element 4 "toString" ;; matches exact name of function 5 #"to*" ;; matches name containing regex 6 #(-> % :type (= :field)) ;; matches on predicate element 7 #{Class} ;; match origin of element 8 [:any 'int] ;; match any parameter type 9 [:all 'int 'long] ;; match all parameter types 10 ['byte 'byte] ;; match exact paramter types 11 3 ;; match number of parameters 13 'int ;; match on the type of element 14 :public ;; match on modifiers (:public, :static, etc...) }) => (just [[0 :sort-terms] [1 :select-terms] [2 :first] [3 :merge] [4 :name] [5 :name] [6 :predicate] [7 :origins] [8 :any-params] [9 :all-params] [10 :params] [11 :num-params] [13 :type] [14 :modifiers]] :in-any-order)) ^{:refer hara.reflect.pretty.args/args-convert :added "2.1"} (fact "converts any symbol in `args` to its primitive class" (args-convert ['byte]) => [Byte/TYPE] (args-convert ['byte Class]) => [Byte/TYPE Class]) ^{:refer hara.reflect.pretty.args/args-group :added "2.1"} (fact "group inputs together into their respective categories" (args-group ["toString" :public :tag #{String}]) => {:name ["toString"] :modifiers [:public] :select-terms [:tag] :origins [#{java.lang.String}]} (args-group ['int 3 :#]) {:type [int], :num-params [3], :merge [:#]})
true
(ns hara.reflect.pretty.args-test (:use midje.sweet) (:require [hara.reflect.pretty.args :refer :all])) ^{:refer hara.reflect.pretty.args/args-classify :added "2.1" :author "PI:NAME:<NAME>END_PI"} (fact "classifies inputs into `.?` and `.*` macros through matching argument parameters to different inputs" (map (fn [[i x]] [i (args-classify x)]) {0 :by-name ;; sort - :by-params, :by-modifiers, :by-type 1 :tag ;; display - :name, :params, :modifiers, :type, :attributes, ;; :origins, :container, :delegate 2 :first ;; gets the first element 3 :# ;; merge all elements into a single multi element 4 "toString" ;; matches exact name of function 5 #"to*" ;; matches name containing regex 6 #(-> % :type (= :field)) ;; matches on predicate element 7 #{Class} ;; match origin of element 8 [:any 'int] ;; match any parameter type 9 [:all 'int 'long] ;; match all parameter types 10 ['byte 'byte] ;; match exact paramter types 11 3 ;; match number of parameters 13 'int ;; match on the type of element 14 :public ;; match on modifiers (:public, :static, etc...) }) => (just [[0 :sort-terms] [1 :select-terms] [2 :first] [3 :merge] [4 :name] [5 :name] [6 :predicate] [7 :origins] [8 :any-params] [9 :all-params] [10 :params] [11 :num-params] [13 :type] [14 :modifiers]] :in-any-order)) ^{:refer hara.reflect.pretty.args/args-convert :added "2.1"} (fact "converts any symbol in `args` to its primitive class" (args-convert ['byte]) => [Byte/TYPE] (args-convert ['byte Class]) => [Byte/TYPE Class]) ^{:refer hara.reflect.pretty.args/args-group :added "2.1"} (fact "group inputs together into their respective categories" (args-group ["toString" :public :tag #{String}]) => {:name ["toString"] :modifiers [:public] :select-terms [:tag] :origins [#{java.lang.String}]} (args-group ['int 3 :#]) {:type [int], :num-params [3], :merge [:#]})
[ { "context": "enses\n (with-redefs [tokens/external-account-id \"asd123-asd123-123-asd\"\n tokens/get-inst-ext-accountid-fr", "end": 432, "score": 0.9769527912139893, "start": 411, "tag": "KEY", "value": "asd123-asd123-123-asd" }, { "context": "institution-id 1000 :default-user true :username \"qa@artstor.org\"}]\n (let [response (tokens/build-query-par", "end": 767, "score": 0.9999234676361084, "start": 753, "tag": "EMAIL", "value": "qa@artstor.org" }, { "context": "er-info)]\n (is (= response {:accountIds \"asdfg123-asdfg-123,asd123-asd123-123-asd\" :idType \"externalId\" :inclu", "end": 908, "score": 0.9680472612380981, "start": 889, "tag": "KEY", "value": "asdfg123-asdfg-123," }, { "context": " (is (= response {:accountIds \"asdfg123-asdfg-123,asd123-asd123-123-asd\" :idType \"externalId\" :includeFlag false})))))\n ", "end": 929, "score": 0.9685847163200378, "start": 908, "tag": "KEY", "value": "asd123-asd123-123-asd" }, { "context": "nstitution-id 1000 :default-user false :username \"qa@artstor.org\"}]\n (let [response (tokens/build-query-par", "end": 1131, "score": 0.9998907446861267, "start": 1117, "tag": "EMAIL", "value": "qa@artstor.org" }, { "context": "er-info)]\n (is (= response {:accountIds \"asdfg123-asdfg-123,qwerty123-qwerty-123,asd123-asd123-123-asd\" :idTyp", "end": 1272, "score": 0.9644335508346558, "start": 1253, "tag": "KEY", "value": "asdfg123-asdfg-123," }, { "context": " (is (= response {:accountIds \"asdfg123-asdfg-123,qwerty123-qwerty-123,asd123-asd123-123-asd\" :idType \"externalId\" :inclu", "end": 1293, "score": 0.9818166494369507, "start": 1272, "tag": "KEY", "value": "qwerty123-qwerty-123," }, { "context": "countIds \"asdfg123-asdfg-123,qwerty123-qwerty-123,asd123-asd123-123-asd\" :idType \"externalId\" :includeFlag false})))))))\n", "end": 1314, "score": 0.991081953048706, "start": 1293, "tag": "KEY", "value": "asd123-asd123-123-asd" }, { "context": "titution-id \"1000\" :default-user false :username \"qa@artstor.org\"}\n get-data {:body \"{\n \\\"results\\", "end": 1581, "score": 0.999891459941864, "start": 1567, "tag": "EMAIL", "value": "qa@artstor.org" }, { "context": "titution-id \"1000\" :default-user false :username \"qa@artstor.org\"}\n test-data [{:entExtId \"12345678901\",\n", "end": 3023, "score": 0.9999257922172546, "start": 3009, "tag": "EMAIL", "value": "qa@artstor.org" } ]
test/artstor_metadata_service_os/tokens_test.clj
ithaka/artstor-metadata-service-os
0
(ns artstor-metadata-service-os.tokens-test (:require [artstor-metadata-service-os.tokens :as tokens] [artstor-metadata-service-os.util :as util] [clojure.test :refer :all] [cheshire.core :as json] [clj-http.client :as http] [clojure.string :as string])) (deftest test-build-query-params-to-get-licenses (with-redefs [tokens/external-account-id "asd123-asd123-123-asd" tokens/get-inst-ext-accountid-from-legacyid (fn [_] "asdfg123-asdfg-123") tokens/get-user-ext-accountid-from-profileid (fn [_] "qwerty123-qwerty-123")] (testing "build url if default user" (let [user-info {:profile-id "12345" :institution-id 1000 :default-user true :username "qa@artstor.org"}] (let [response (tokens/build-query-params-to-get-licenses user-info)] (is (= response {:accountIds "asdfg123-asdfg-123,asd123-asd123-123-asd" :idType "externalId" :includeFlag false}))))) (testing "build url if not default user" (let [user-info {:profile-id "12345" :institution-id 1000 :default-user false :username "qa@artstor.org"}] (let [response (tokens/build-query-params-to-get-licenses user-info)] (is (= response {:accountIds "asdfg123-asdfg-123,qwerty123-qwerty-123,asd123-asd123-123-asd" :idType "externalId" :includeFlag false}))))))) (deftest test-get-all-licenses-from-artstor-user-info (testing "get all licenses from artstor-user-info" (let [user-info {:profile-id "12345" :institution-id "1000" :default-user false :username "qa@artstor.org"} get-data {:body "{ \"results\" : [ { \"entExtId\" : \"12345678901234\", \"licenses\" : [ { \"acctExtId\" : \"abcd1234-1234-12ab-1234-123456a123a1\", \"acctType\" : \"Institution\", \"acctIntId\" : \"1234567\", \"acctLegacyId\" : \"1234567890\", \"licExtId\" : \"qwer1234-1234-12qw-1234-123456q123q1\", \"licType\" : \"Standard - Artstor\", \"licSubType\" : \"Artstor\" } ], \"updateTime\" : \"2017-10-16T21:19:18.475+0000\"}]}"}] (with-redefs [tokens/build-query-params-to-get-licenses (fn [_] {:accountIds "1100001000,1000012345,2" :idType "legacyId" :includeFlag false}) util/build-service-url (fn [nm path] (str "http://" nm "/" path)) http/get (fn [_ _] get-data)] (let [all-licenses (tokens/get-all-licenses-from-artstor-user-info user-info)] (is (string/includes? all-licenses "12345678901234")) (is (string/includes? all-licenses "1234567890")) (is (string/includes? all-licenses "Standard - Artstor")) (is (= all-licenses ((json/parse-string (get-data :body) true) :results)))))))) (deftest test-get-eme-tokens-from-artstor-user-info (testing "get eme tokens from artstor-user-info" (let [user-info {:profile-id "12345" :institution-id "1000" :default-user false :username "qa@artstor.org"} test-data [{:entExtId "12345678901", :licenses [{:acctLegacyId "1100001000", :licSubType "Artstor"}]} {:entExtId "12345987601", :licenses [{:acctLegacyId "1100001000", :licSubType "Portal", :licType "Portal - Portal"} {:acctLegacyId "1100001001", :licSubType "Portal"}]} {:entExtId "98765432101", :licenses [{:acctLegacyId "1100001000", :licSubType "Artstor", :licType "Standard - Artstor"}]}]] (with-redefs [tokens/get-all-licenses-from-artstor-user-info (fn[_] test-data)] (let [artstor-eme-tokens (tokens/get-eme-tokens-from-artstor-user-info user-info)] (is (= ["12345678901" "98765432101"] artstor-eme-tokens))))))) (deftest test-get-accountid-from-profileid (with-redefs [http/get (fn [_ _] {:body "{\"userId\" : \"asdfg-12345-asdfg-12345\"}"})] (testing "get user external account id from profileid" (let [response (tokens/get-user-ext-accountid-from-profileid "12345")] (is (= {response "asdfg-12345-asdfg-12345"})))))) (deftest test-get-ext-accountid-from-legacyid (with-redefs [http/get (fn [_ _] {:body "{\"id\" : \"asdfg-12345-asdfg-12345\"}"})] (testing "get external account id from legacyid" (let [response (tokens/get-inst-ext-accountid-from-legacyid 1000)] (is (= {response "asdfg-12345-asdfg-12345"}))))))
15851
(ns artstor-metadata-service-os.tokens-test (:require [artstor-metadata-service-os.tokens :as tokens] [artstor-metadata-service-os.util :as util] [clojure.test :refer :all] [cheshire.core :as json] [clj-http.client :as http] [clojure.string :as string])) (deftest test-build-query-params-to-get-licenses (with-redefs [tokens/external-account-id "<KEY>" tokens/get-inst-ext-accountid-from-legacyid (fn [_] "asdfg123-asdfg-123") tokens/get-user-ext-accountid-from-profileid (fn [_] "qwerty123-qwerty-123")] (testing "build url if default user" (let [user-info {:profile-id "12345" :institution-id 1000 :default-user true :username "<EMAIL>"}] (let [response (tokens/build-query-params-to-get-licenses user-info)] (is (= response {:accountIds "<KEY> <KEY>" :idType "externalId" :includeFlag false}))))) (testing "build url if not default user" (let [user-info {:profile-id "12345" :institution-id 1000 :default-user false :username "<EMAIL>"}] (let [response (tokens/build-query-params-to-get-licenses user-info)] (is (= response {:accountIds "<KEY> <KEY> <KEY>" :idType "externalId" :includeFlag false}))))))) (deftest test-get-all-licenses-from-artstor-user-info (testing "get all licenses from artstor-user-info" (let [user-info {:profile-id "12345" :institution-id "1000" :default-user false :username "<EMAIL>"} get-data {:body "{ \"results\" : [ { \"entExtId\" : \"12345678901234\", \"licenses\" : [ { \"acctExtId\" : \"abcd1234-1234-12ab-1234-123456a123a1\", \"acctType\" : \"Institution\", \"acctIntId\" : \"1234567\", \"acctLegacyId\" : \"1234567890\", \"licExtId\" : \"qwer1234-1234-12qw-1234-123456q123q1\", \"licType\" : \"Standard - Artstor\", \"licSubType\" : \"Artstor\" } ], \"updateTime\" : \"2017-10-16T21:19:18.475+0000\"}]}"}] (with-redefs [tokens/build-query-params-to-get-licenses (fn [_] {:accountIds "1100001000,1000012345,2" :idType "legacyId" :includeFlag false}) util/build-service-url (fn [nm path] (str "http://" nm "/" path)) http/get (fn [_ _] get-data)] (let [all-licenses (tokens/get-all-licenses-from-artstor-user-info user-info)] (is (string/includes? all-licenses "12345678901234")) (is (string/includes? all-licenses "1234567890")) (is (string/includes? all-licenses "Standard - Artstor")) (is (= all-licenses ((json/parse-string (get-data :body) true) :results)))))))) (deftest test-get-eme-tokens-from-artstor-user-info (testing "get eme tokens from artstor-user-info" (let [user-info {:profile-id "12345" :institution-id "1000" :default-user false :username "<EMAIL>"} test-data [{:entExtId "12345678901", :licenses [{:acctLegacyId "1100001000", :licSubType "Artstor"}]} {:entExtId "12345987601", :licenses [{:acctLegacyId "1100001000", :licSubType "Portal", :licType "Portal - Portal"} {:acctLegacyId "1100001001", :licSubType "Portal"}]} {:entExtId "98765432101", :licenses [{:acctLegacyId "1100001000", :licSubType "Artstor", :licType "Standard - Artstor"}]}]] (with-redefs [tokens/get-all-licenses-from-artstor-user-info (fn[_] test-data)] (let [artstor-eme-tokens (tokens/get-eme-tokens-from-artstor-user-info user-info)] (is (= ["12345678901" "98765432101"] artstor-eme-tokens))))))) (deftest test-get-accountid-from-profileid (with-redefs [http/get (fn [_ _] {:body "{\"userId\" : \"asdfg-12345-asdfg-12345\"}"})] (testing "get user external account id from profileid" (let [response (tokens/get-user-ext-accountid-from-profileid "12345")] (is (= {response "asdfg-12345-asdfg-12345"})))))) (deftest test-get-ext-accountid-from-legacyid (with-redefs [http/get (fn [_ _] {:body "{\"id\" : \"asdfg-12345-asdfg-12345\"}"})] (testing "get external account id from legacyid" (let [response (tokens/get-inst-ext-accountid-from-legacyid 1000)] (is (= {response "asdfg-12345-asdfg-12345"}))))))
true
(ns artstor-metadata-service-os.tokens-test (:require [artstor-metadata-service-os.tokens :as tokens] [artstor-metadata-service-os.util :as util] [clojure.test :refer :all] [cheshire.core :as json] [clj-http.client :as http] [clojure.string :as string])) (deftest test-build-query-params-to-get-licenses (with-redefs [tokens/external-account-id "PI:KEY:<KEY>END_PI" tokens/get-inst-ext-accountid-from-legacyid (fn [_] "asdfg123-asdfg-123") tokens/get-user-ext-accountid-from-profileid (fn [_] "qwerty123-qwerty-123")] (testing "build url if default user" (let [user-info {:profile-id "12345" :institution-id 1000 :default-user true :username "PI:EMAIL:<EMAIL>END_PI"}] (let [response (tokens/build-query-params-to-get-licenses user-info)] (is (= response {:accountIds "PI:KEY:<KEY>END_PI PI:KEY:<KEY>END_PI" :idType "externalId" :includeFlag false}))))) (testing "build url if not default user" (let [user-info {:profile-id "12345" :institution-id 1000 :default-user false :username "PI:EMAIL:<EMAIL>END_PI"}] (let [response (tokens/build-query-params-to-get-licenses user-info)] (is (= response {:accountIds "PI:KEY:<KEY>END_PI PI:KEY:<KEY>END_PI PI:KEY:<KEY>END_PI" :idType "externalId" :includeFlag false}))))))) (deftest test-get-all-licenses-from-artstor-user-info (testing "get all licenses from artstor-user-info" (let [user-info {:profile-id "12345" :institution-id "1000" :default-user false :username "PI:EMAIL:<EMAIL>END_PI"} get-data {:body "{ \"results\" : [ { \"entExtId\" : \"12345678901234\", \"licenses\" : [ { \"acctExtId\" : \"abcd1234-1234-12ab-1234-123456a123a1\", \"acctType\" : \"Institution\", \"acctIntId\" : \"1234567\", \"acctLegacyId\" : \"1234567890\", \"licExtId\" : \"qwer1234-1234-12qw-1234-123456q123q1\", \"licType\" : \"Standard - Artstor\", \"licSubType\" : \"Artstor\" } ], \"updateTime\" : \"2017-10-16T21:19:18.475+0000\"}]}"}] (with-redefs [tokens/build-query-params-to-get-licenses (fn [_] {:accountIds "1100001000,1000012345,2" :idType "legacyId" :includeFlag false}) util/build-service-url (fn [nm path] (str "http://" nm "/" path)) http/get (fn [_ _] get-data)] (let [all-licenses (tokens/get-all-licenses-from-artstor-user-info user-info)] (is (string/includes? all-licenses "12345678901234")) (is (string/includes? all-licenses "1234567890")) (is (string/includes? all-licenses "Standard - Artstor")) (is (= all-licenses ((json/parse-string (get-data :body) true) :results)))))))) (deftest test-get-eme-tokens-from-artstor-user-info (testing "get eme tokens from artstor-user-info" (let [user-info {:profile-id "12345" :institution-id "1000" :default-user false :username "PI:EMAIL:<EMAIL>END_PI"} test-data [{:entExtId "12345678901", :licenses [{:acctLegacyId "1100001000", :licSubType "Artstor"}]} {:entExtId "12345987601", :licenses [{:acctLegacyId "1100001000", :licSubType "Portal", :licType "Portal - Portal"} {:acctLegacyId "1100001001", :licSubType "Portal"}]} {:entExtId "98765432101", :licenses [{:acctLegacyId "1100001000", :licSubType "Artstor", :licType "Standard - Artstor"}]}]] (with-redefs [tokens/get-all-licenses-from-artstor-user-info (fn[_] test-data)] (let [artstor-eme-tokens (tokens/get-eme-tokens-from-artstor-user-info user-info)] (is (= ["12345678901" "98765432101"] artstor-eme-tokens))))))) (deftest test-get-accountid-from-profileid (with-redefs [http/get (fn [_ _] {:body "{\"userId\" : \"asdfg-12345-asdfg-12345\"}"})] (testing "get user external account id from profileid" (let [response (tokens/get-user-ext-accountid-from-profileid "12345")] (is (= {response "asdfg-12345-asdfg-12345"})))))) (deftest test-get-ext-accountid-from-legacyid (with-redefs [http/get (fn [_ _] {:body "{\"id\" : \"asdfg-12345-asdfg-12345\"}"})] (testing "get external account id from legacyid" (let [response (tokens/get-inst-ext-accountid-from-legacyid 1000)] (is (= {response "asdfg-12345-asdfg-12345"}))))))
[ { "context": "& args]\n (pretty-printer (finder (FakeFinder.) \"Alice\") ))\n \n", "end": 386, "score": 0.9980168342590332, "start": 381, "tag": "NAME", "value": "Alice" } ]
Pres-DI-Clojure/demos/test8/src/test8/core.clj
cfalguiere/Presentations
0
(ns test8.core (:use [test8 finder fake]) ) (defprotocol Finder (finder [this arg])) (deftype FakeFinder [] Finder (finder [this arg] (test8.fake/fake-finder arg))) (deftype RealFinder [] Finder (finder [this arg] (test8.finder/db-finder arg))) (defn pretty-printer [value] (str "This is a " value)) (defn -main [& args] (pretty-printer (finder (FakeFinder.) "Alice") ))
70224
(ns test8.core (:use [test8 finder fake]) ) (defprotocol Finder (finder [this arg])) (deftype FakeFinder [] Finder (finder [this arg] (test8.fake/fake-finder arg))) (deftype RealFinder [] Finder (finder [this arg] (test8.finder/db-finder arg))) (defn pretty-printer [value] (str "This is a " value)) (defn -main [& args] (pretty-printer (finder (FakeFinder.) "<NAME>") ))
true
(ns test8.core (:use [test8 finder fake]) ) (defprotocol Finder (finder [this arg])) (deftype FakeFinder [] Finder (finder [this arg] (test8.fake/fake-finder arg))) (deftype RealFinder [] Finder (finder [this arg] (test8.finder/db-finder arg))) (defn pretty-printer [value] (str "This is a " value)) (defn -main [& args] (pretty-printer (finder (FakeFinder.) "PI:NAME:<NAME>END_PI") ))
[ { "context": "s usage stats\"))))))\n\n(def ^:private job-key \"metabase.task.anonymous-stats.job\")\n(def ^:private trigger-", "end": 1001, "score": 0.6307482123374939, "start": 992, "tag": "KEY", "value": "metabase." }, { "context": "private job-key \"metabase.task.anonymous-stats.job\")\n(def ^:private trigger-key \"metabase.task.anony", "end": 1025, "score": 0.5334689617156982, "start": 1022, "tag": "KEY", "value": "job" }, { "context": "anonymous-stats.job\")\n(def ^:private trigger-key \"metabase.task.anonymous-stats.trigger\")\n\n(defmethod task/in", "end": 1065, "score": 0.6335597634315491, "start": 1056, "tag": "KEY", "value": "metabase." } ]
c#-metabase/src/metabase/task/send_anonymous_stats.clj
hanakhry/Crime_Admin
0
(ns metabase.task.send-anonymous-stats "Contains a Metabase task which periodically sends anonymous usage information to the Metabase team." (:require [clojure.tools.logging :as log] [clojurewerkz.quartzite.jobs :as jobs] [clojurewerkz.quartzite.schedule.cron :as cron] [clojurewerkz.quartzite.triggers :as triggers] [metabase.public-settings :as public-settings] [metabase.task :as task] [metabase.util.i18n :refer [trs]] [metabase.util.stats :as stats])) ;; if we can collect usage data, do so and send it home (jobs/defjob SendAnonymousUsageStats [_] (when (public-settings/anon-tracking-enabled) (log/debug (trs "Sending anonymous usage stats.")) (try ;; TODO: add in additional request params if anonymous tracking is enabled (stats/phone-home-stats!) (catch Throwable e (log/error e (trs "Error sending anonymous usage stats")))))) (def ^:private job-key "metabase.task.anonymous-stats.job") (def ^:private trigger-key "metabase.task.anonymous-stats.trigger") (defmethod task/init! ::SendAnonymousUsageStats [_] (let [job (jobs/build (jobs/of-type SendAnonymousUsageStats) (jobs/with-identity (jobs/key job-key))) trigger (triggers/build (triggers/with-identity (triggers/key trigger-key)) (triggers/start-now) (triggers/with-schedule ;; run twice a day (cron/cron-schedule "0 15 7 * * ? *")))] (task/schedule-task! job trigger)))
23519
(ns metabase.task.send-anonymous-stats "Contains a Metabase task which periodically sends anonymous usage information to the Metabase team." (:require [clojure.tools.logging :as log] [clojurewerkz.quartzite.jobs :as jobs] [clojurewerkz.quartzite.schedule.cron :as cron] [clojurewerkz.quartzite.triggers :as triggers] [metabase.public-settings :as public-settings] [metabase.task :as task] [metabase.util.i18n :refer [trs]] [metabase.util.stats :as stats])) ;; if we can collect usage data, do so and send it home (jobs/defjob SendAnonymousUsageStats [_] (when (public-settings/anon-tracking-enabled) (log/debug (trs "Sending anonymous usage stats.")) (try ;; TODO: add in additional request params if anonymous tracking is enabled (stats/phone-home-stats!) (catch Throwable e (log/error e (trs "Error sending anonymous usage stats")))))) (def ^:private job-key "<KEY>task.anonymous-stats.<KEY>") (def ^:private trigger-key "<KEY>task.anonymous-stats.trigger") (defmethod task/init! ::SendAnonymousUsageStats [_] (let [job (jobs/build (jobs/of-type SendAnonymousUsageStats) (jobs/with-identity (jobs/key job-key))) trigger (triggers/build (triggers/with-identity (triggers/key trigger-key)) (triggers/start-now) (triggers/with-schedule ;; run twice a day (cron/cron-schedule "0 15 7 * * ? *")))] (task/schedule-task! job trigger)))
true
(ns metabase.task.send-anonymous-stats "Contains a Metabase task which periodically sends anonymous usage information to the Metabase team." (:require [clojure.tools.logging :as log] [clojurewerkz.quartzite.jobs :as jobs] [clojurewerkz.quartzite.schedule.cron :as cron] [clojurewerkz.quartzite.triggers :as triggers] [metabase.public-settings :as public-settings] [metabase.task :as task] [metabase.util.i18n :refer [trs]] [metabase.util.stats :as stats])) ;; if we can collect usage data, do so and send it home (jobs/defjob SendAnonymousUsageStats [_] (when (public-settings/anon-tracking-enabled) (log/debug (trs "Sending anonymous usage stats.")) (try ;; TODO: add in additional request params if anonymous tracking is enabled (stats/phone-home-stats!) (catch Throwable e (log/error e (trs "Error sending anonymous usage stats")))))) (def ^:private job-key "PI:KEY:<KEY>END_PItask.anonymous-stats.PI:KEY:<KEY>END_PI") (def ^:private trigger-key "PI:KEY:<KEY>END_PItask.anonymous-stats.trigger") (defmethod task/init! ::SendAnonymousUsageStats [_] (let [job (jobs/build (jobs/of-type SendAnonymousUsageStats) (jobs/with-identity (jobs/key job-key))) trigger (triggers/build (triggers/with-identity (triggers/key trigger-key)) (triggers/start-now) (triggers/with-schedule ;; run twice a day (cron/cron-schedule "0 15 7 * * ? *")))] (task/schedule-task! job trigger)))