From 9670f483601727ea2e4765a24e4978d98246dc71 Mon Sep 17 00:00:00 2001 From: Milton Reder Date: Thu, 16 Oct 2025 15:21:01 -0400 Subject: [PATCH 01/18] update libs --- deps.edn | 4 ++-- src/test/com/yetanalytics/xapipe/test_support.clj | 1 + src/test/com/yetanalytics/xapipe/test_support/lrs.clj | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/deps.edn b/deps.edn index cc034b5b..77e009b6 100644 --- a/deps.edn +++ b/deps.edn @@ -6,7 +6,7 @@ commons-fileupload/commons-fileupload {:mvn/version "1.6.0"} commons-io/commons-io {:mvn/version "2.14.0"} com.yetanalytics/xapi-schema - {:mvn/version "1.2.0" + {:mvn/version "1.4.1" :exclusions [org.clojure/clojure org.clojure/clojurescript org.clojure/data.json]} @@ -39,7 +39,7 @@ io.github.cognitect-labs/test-runner {:git/url "https://github.com/cognitect-labs/test-runner" :sha "dd6da11611eeb87f08780a30ac8ea6012d4c05ce"} - com.yetanalytics/lrs {:mvn/version "1.2.11"} + com.yetanalytics/lrs {:mvn/version "1.4.0"} io.pedestal/pedestal.jetty {:mvn/version "0.5.9"} ;; Some integration tests use logback ch.qos.logback/logback-classic {:mvn/version "1.5.15" diff --git a/src/test/com/yetanalytics/xapipe/test_support.clj b/src/test/com/yetanalytics/xapipe/test_support.clj index 044f8ef6..4d5fa169 100644 --- a/src/test/com/yetanalytics/xapipe/test_support.clj +++ b/src/test/com/yetanalytics/xapipe/test_support.clj @@ -134,6 +134,7 @@ :load (fn [statements & [attachments]] (lrs/store-statements lrs + {:com.yetanalytics.lrs/version "1.0.3"} {} (into [] statements) (into [] attachments))) diff --git a/src/test/com/yetanalytics/xapipe/test_support/lrs.clj b/src/test/com/yetanalytics/xapipe/test_support/lrs.clj index 312a0a86..241b3c05 100644 --- a/src/test/com/yetanalytics/xapipe/test_support/lrs.clj +++ b/src/test/com/yetanalytics/xapipe/test_support/lrs.clj @@ -10,7 +10,7 @@ ;; An LRS that accepts statements but does not retain them (deftype SinkLRS [] lrsp/StatementsResource - (-store-statements [_ _ statements attachments] + (-store-statements [_ _ _ statements attachments] {:statement-ids (into [] (map #(ss/normalize-id (get % "id")) @@ -50,6 +50,7 @@ (reify lrsp/StatementsResource (-get-statements [_ + _ _ {:keys [limit] :or {limit 50}} From 53e61675d82edaf9de54371243b236d648b2e6ea Mon Sep 17 00:00:00 2001 From: Milton Reder Date: Mon, 20 Oct 2025 14:15:46 -0400 Subject: [PATCH 02/18] version of LRS with mem fix --- deps.edn | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deps.edn b/deps.edn index 77e009b6..2fcfc05d 100644 --- a/deps.edn +++ b/deps.edn @@ -39,7 +39,9 @@ io.github.cognitect-labs/test-runner {:git/url "https://github.com/cognitect-labs/test-runner" :sha "dd6da11611eeb87f08780a30ac8ea6012d4c05ce"} - com.yetanalytics/lrs {:mvn/version "1.4.0"} + com.yetanalytics/lrs {:git/sha "5c0cf215746c21da82d0720e4507b682b0d1f85b" + :git/url "https://github.com/yetanalytics/lrs" + #_#_:mvn/version "1.4.0"} io.pedestal/pedestal.jetty {:mvn/version "0.5.9"} ;; Some integration tests use logback ch.qos.logback/logback-classic {:mvn/version "1.5.15" From 48412fa7438176758201ff0abe349212778b24ba Mon Sep 17 00:00:00 2001 From: Milton Reder Date: Mon, 20 Oct 2025 14:22:18 -0400 Subject: [PATCH 03/18] remove nvd scan --- .github/workflows/nvd_sched.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/nvd_sched.yml diff --git a/.github/workflows/nvd_sched.yml b/.github/workflows/nvd_sched.yml deleted file mode 100644 index 84b1f336..00000000 --- a/.github/workflows/nvd_sched.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Periodic Vulnerability Scan - -on: - schedule: - - cron: '0 8 * * 1-5' # Every weekday at 8:00 AM - -jobs: - nvd_scan: - uses: yetanalytics/actions/.github/workflows/nvd-scan.yml@v0.0.4 - with: - nvd-clojure-version: '3.6.0' - classpath-command: 'clojure -Spath -A:cli' - nvd-config-filename: '.nvd/config.json' - - notify_slack: - runs-on: ubuntu-latest - needs: nvd_scan - if: ${{ always() && (needs.nvd_scan.result == 'failure') }} - steps: - - name: Notify Slack LRSPipe NVD Scan Reporter - uses: slackapi/slack-github-action@v1.23.0 - with: - payload: | - { - "run_link": "https://github.com/yetanalytics/xapipe/actions/runs/${{ github.run_id }}" - } - env: - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} From 93d3a764af30ca0d8993c0eb21be9daf254a9434 Mon Sep 17 00:00:00 2001 From: Milton Reder Date: Mon, 20 Oct 2025 14:23:10 -0400 Subject: [PATCH 04/18] remove on-demand nvd scan --- .github/workflows/ci.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c8301b38..db0f2dee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,17 +31,9 @@ jobs: - name: Test Xapipe run: make test - nvd_scan: - uses: yetanalytics/actions/.github/workflows/nvd-scan.yml@v0.0.4 - with: - nvd-clojure-version: '3.6.0' - classpath-command: 'clojure -Spath -A:cli' - nvd-config-filename: '.nvd/config.json' - docker: needs: - test - - nvd_scan runs-on: ubuntu-latest timeout-minutes: 10 steps: From bd32734523341cfc34808915a436bfab4e1d008d Mon Sep 17 00:00:00 2001 From: Milton Reder Date: Tue, 21 Oct 2025 10:05:45 -0400 Subject: [PATCH 05/18] release of LRS lib --- deps.edn | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/deps.edn b/deps.edn index 2fcfc05d..674ad70d 100644 --- a/deps.edn +++ b/deps.edn @@ -39,9 +39,7 @@ io.github.cognitect-labs/test-runner {:git/url "https://github.com/cognitect-labs/test-runner" :sha "dd6da11611eeb87f08780a30ac8ea6012d4c05ce"} - com.yetanalytics/lrs {:git/sha "5c0cf215746c21da82d0720e4507b682b0d1f85b" - :git/url "https://github.com/yetanalytics/lrs" - #_#_:mvn/version "1.4.0"} + com.yetanalytics/lrs {:mvn/version "1.4.1"} io.pedestal/pedestal.jetty {:mvn/version "0.5.9"} ;; Some integration tests use logback ch.qos.logback/logback-classic {:mvn/version "1.5.15" From adef4f37e58b9a546854e5aa11c61710e8110119 Mon Sep 17 00:00:00 2001 From: Milton Reder Date: Tue, 21 Oct 2025 15:41:21 -0400 Subject: [PATCH 06/18] add config for xapi version on source/target --- dev-resources/jobs/simple-v0.json | 48 +++++++++++++ dev-resources/jobs/simple.json | 52 +++++++++++++- src/cli/com/yetanalytics/xapipe/cli.clj | 2 + .../com/yetanalytics/xapipe/cli/options.clj | 8 ++- src/lib/com/yetanalytics/xapipe/client.clj | 69 +++++++++++-------- src/lib/com/yetanalytics/xapipe/job.clj | 41 ++++++++--- src/lib/com/yetanalytics/xapipe/job/json.clj | 2 +- .../com/yetanalytics/xapipe/spec/common.clj | 2 + .../yetanalytics/xapipe/cli/options_test.clj | 30 +++++--- src/test/com/yetanalytics/xapipe/cli_test.clj | 23 +++++-- .../yetanalytics/xapipe/job/config_test.clj | 2 + .../com/yetanalytics/xapipe/job/json_test.clj | 9 ++- src/test/com/yetanalytics/xapipe/job_test.clj | 50 +++++++++++--- .../com/yetanalytics/xapipe/main_test.clj | 22 ++++-- .../com/yetanalytics/xapipe/test_support.clj | 6 +- src/test/com/yetanalytics/xapipe_test.clj | 13 ++-- 16 files changed, 300 insertions(+), 79 deletions(-) create mode 100644 dev-resources/jobs/simple-v0.json diff --git a/dev-resources/jobs/simple-v0.json b/dev-resources/jobs/simple-v0.json new file mode 100644 index 00000000..e27e903f --- /dev/null +++ b/dev-resources/jobs/simple-v0.json @@ -0,0 +1,48 @@ +{ + "id": "foo", + "config": { + "get-buffer-size": 10, + "statement-buffer-size": 500, + "batch-buffer-size": 10, + "batch-timeout": 200, + "source": { + "request-config": { + "url-base": "http://0.0.0.0:8080", + "xapi-prefix": "/xapi" + }, + "batch-size": 50, + "backoff-opts": { + "budget": 10000, + "max-attempt": 10 + }, + "poll-interval": 1000, + "get-params": { + "limit": 50 + } + }, + "target": { + "request-config": { + "url-base": "http://0.0.0.0:8081", + "xapi-prefix": "/xapi" + }, + "batch-size": 50, + "backoff-opts": { + "budget": 10000, + "max-attempt": 10 + } + }, + "filter": {} + }, + "state": { + "status": "init", + "cursor": "1970-01-01T00:00:00.000000000Z", + "source": { + "errors": [] + }, + "target": { + "errors": [] + }, + "errors": [], + "filter": {} + } +} diff --git a/dev-resources/jobs/simple.json b/dev-resources/jobs/simple.json index 6875e3f6..585e9850 100644 --- a/dev-resources/jobs/simple.json +++ b/dev-resources/jobs/simple.json @@ -1 +1,51 @@ -{"id":"foo","config":{"get-buffer-size":10,"statement-buffer-size":500,"batch-buffer-size":10,"batch-timeout":200,"source":{"request-config":{"url-base":"http://0.0.0.0:8080","xapi-prefix":"/xapi"},"batch-size":50,"backoff-opts":{"budget":10000,"max-attempt":10},"poll-interval":1000,"get-params":{"limit":50}},"target":{"request-config":{"url-base":"http://0.0.0.0:8081","xapi-prefix":"/xapi"},"batch-size":50,"backoff-opts":{"budget":10000,"max-attempt":10}},"filter":{}},"state":{"status":"init","cursor":"1970-01-01T00:00:00.000000000Z","source":{"errors":[]},"target":{"errors":[]},"errors":[],"filter":{}}} +{ + "id": "foo", + "version": 1, + "config": { + "get-buffer-size": 10, + "statement-buffer-size": 500, + "batch-buffer-size": 10, + "batch-timeout": 200, + "source": { + "request-config": { + "url-base": "http://0.0.0.0:8080", + "xapi-prefix": "/xapi", + "xapi-version": "1.0.3" + }, + "batch-size": 50, + "backoff-opts": { + "budget": 10000, + "max-attempt": 10 + }, + "poll-interval": 1000, + "get-params": { + "limit": 50 + } + }, + "target": { + "request-config": { + "url-base": "http://0.0.0.0:8081", + "xapi-prefix": "/xapi", + "xapi-version": "1.0.3" + }, + "batch-size": 50, + "backoff-opts": { + "budget": 10000, + "max-attempt": 10 + } + }, + "filter": {} + }, + "state": { + "status": "init", + "cursor": "1970-01-01T00:00:00.000000000Z", + "source": { + "errors": [] + }, + "target": { + "errors": [] + }, + "errors": [], + "filter": {} + } +} diff --git a/src/cli/com/yetanalytics/xapipe/cli.clj b/src/cli/com/yetanalytics/xapipe/cli.clj index 8a1a6712..9ae9160c 100644 --- a/src/cli/com/yetanalytics/xapipe/cli.clj +++ b/src/cli/com/yetanalytics/xapipe/cli.clj @@ -211,6 +211,7 @@ :source-backoff-max-attempt [:source :backoff-opts :max-attempt] :source-backoff-j-range [:source :backoff-opts :j-range] :source-backoff-initial [:source :backoff-opts :initial] + :source-xapi-version [:source :request-config :xapi-version] ;; Target LRS :target-batch-size [:target :batch-size] @@ -225,6 +226,7 @@ :target-backoff-max-attempt [:target :backoff-opts :max-attempt] :target-backoff-j-range [:target :backoff-opts :j-range] :target-backoff-initial [:target :backoff-opts :initial] + :target-xapi-version [:target :request-config :xapi-version] ;; Filters :filter-template-profile-urls [:filter :template :profile-urls] diff --git a/src/cli/com/yetanalytics/xapipe/cli/options.clj b/src/cli/com/yetanalytics/xapipe/cli/options.clj index 39e3a9cd..105264e8 100644 --- a/src/cli/com/yetanalytics/xapipe/cli/options.clj +++ b/src/cli/com/yetanalytics/xapipe/cli/options.clj @@ -250,6 +250,9 @@ m)))] [nil "--source-username USERNAME" "Source LRS BASIC Auth username"] [nil "--source-password PASSWORD" "Source LRS BASIC Auth password"] + [nil "--source-xapi-version VERSION" "Source LRS xAPI Version" + :validate [#{"1.0.3" "2.0.0"} "Must be 1.0.3 or 2.0.0"] + :default "1.0.3"] [nil "--json-only" "Only operate in JSON statement mode for data transfer, ignoring Attachments/multipart (for compatibility issues)" :default false]] (concat @@ -266,7 +269,10 @@ :validate [pos-int? "Must be a positive integer"] :default 50] [nil "--target-username USERNAME" "Target LRS BASIC Auth username"] - [nil "--target-password PASSWORD" "Target LRS BASIC Auth password"]] + [nil "--target-password PASSWORD" "Target LRS BASIC Auth password"] + [nil "--target-xapi-version VERSION" "Target LRS xAPI Version" + :validate [#{"1.0.3" "2.0.0"} "Must be 1.0.3 or 2.0.0"] + :default "1.0.3"]] (concat (oauth-opts "target") (backoff-opts "target")))) diff --git a/src/lib/com/yetanalytics/xapipe/client.clj b/src/lib/com/yetanalytics/xapipe/client.clj index f932165d..d2c9ed77 100644 --- a/src/lib/com/yetanalytics/xapipe/client.clj +++ b/src/lib/com/yetanalytics/xapipe/client.clj @@ -57,7 +57,8 @@ (s/def ::request-config (s/keys - :req-un [::url-base] + :req-un [::url-base + ::cspec/xapi-version] :opt-un [::xapi-prefix ::username ::password @@ -132,7 +133,7 @@ :format])) (defn get-request-base [json-only?] - {:headers {"x-experience-api-version" "1.0.3"} + {:headers {} :method :get :as (if json-only? :json-only :multipart/mixed) :query-params {:ascending true @@ -154,38 +155,43 @@ password token oauth-params - json-only] + json-only + xapi-version] :or {xapi-prefix "/xapi"}} get-params & [?more]] - (cond-> (if (not-empty ?more) - ;; Using More Link - (-> (get-request-base json-only) - (assoc :url - (format "%s%s" - url-base - ?more)) - (dissoc :query-params)) - (-> (get-request-base json-only) - (assoc :url - (format "%s%s/statements" - url-base - xapi-prefix)) - (update :query-params merge get-params))) - ;; support token if provided - (not-empty token) - (assoc :oauth-token token) - ;; support basic auth if provided - (and (not-empty username) - (not-empty password)) - (assoc :basic-auth [username password]) - ;; If OAuth support is enabled, pass through on a namespaced - ;; keyword to be picked up in async-request - oauth-params - (assoc ::oauth/oauth-params oauth-params))) + (-> + (cond-> (if (not-empty ?more) + ;; Using More Link + (-> (get-request-base json-only) + (assoc :url + (format "%s%s" + url-base + ?more)) + (dissoc :query-params)) + (-> (get-request-base json-only) + (assoc :url + (format "%s%s/statements" + url-base + xapi-prefix)) + (update :query-params merge get-params))) + ;; support token if provided + (not-empty token) + (assoc :oauth-token token) + ;; support basic auth if provided + (and (not-empty username) + (not-empty password)) + (assoc :basic-auth [username password]) + ;; If OAuth support is enabled, pass through on a namespaced + ;; keyword to be picked up in async-request + oauth-params + (assoc ::oauth/oauth-params oauth-params)) + (assoc-in + [:headers "x-experience-api-version"] + xapi-version))) (def post-request-base - {:headers {"x-experience-api-version" "1.0.3"} + {:headers {} :method :post}) (s/fdef post-request @@ -200,12 +206,15 @@ username password token - oauth-params] + oauth-params + xapi-version] :or {xapi-prefix "/xapi"}} statements attachments] (let [boundary (multipart/gen-boundary)] (-> post-request-base + (assoc-in [:headers "x-experience-api-version"] + xapi-version) (merge {:url (format "%s%s/statements" url-base diff --git a/src/lib/com/yetanalytics/xapipe/job.clj b/src/lib/com/yetanalytics/xapipe/job.clj index 93d92f38..83c82672 100644 --- a/src/lib/com/yetanalytics/xapipe/job.clj +++ b/src/lib/com/yetanalytics/xapipe/job.clj @@ -6,13 +6,14 @@ [com.yetanalytics.xapipe.job.state :as state] [com.yetanalytics.xapipe.job.state.errors :as errors] [com.yetanalytics.xapipe.util.time :as t] - [xapi-schema.spec :as xs])) + [xapi-schema.spec :as xs] + [com.yetanalytics.xapipe.job :as job])) -(def current-version 0) +(def current-version 1) (s/def ::config config/config-spec) (s/def ::state state/state-spec) -(s/def ::version #{current-version}) +(s/def ::version #{0 current-version}) (s/def ::id (s/and string? not-empty)) (defn valid-get-params-vs-state? @@ -32,8 +33,8 @@ (s/keys :req-un [::id ::config - ::state] - :opt-un [::version])) + ::state + ::version])) (def job-spec (s/with-gen @@ -60,7 +61,8 @@ "Upgrade a job to the next version up. Breaking changes to the job spec require implementations of this to be upgradeable." - (fn [{:keys [version]}] + (fn [{:keys [version] + :or {version 0}}] [version (inc version)])) (defmethod inc-version :default @@ -74,18 +76,37 @@ :version version :next-version next-version})))) +;; Version 0 -> 1: ensure xapi-version is set in source/target request-config +(defn- vpath [k] + [:config k :request-config :xapi-version]) + +(defmethod inc-version [0 1] + [job] + ;; ensure source/target xapi-version is set + (let [?source-version (get-in job (vpath :source)) + ?target-version (get-in job (vpath :target))] + (-> job + (assoc :version 1) + (cond-> + (nil? ?source-version) + (assoc-in (vpath :source) "1.0.3") + + (nil? ?target-version) + (assoc-in (vpath :target) "1.0.3"))))) + (s/fdef upgrade-job - :args (s/cat :job job-spec) + :args (s/cat :job (s/with-gen map? + (fn [] (s/gen job-spec)))) ;; may need coercion :ret job-spec) (defn upgrade-job "Attempt to upgrade a job to the current version or throw. - Assumes no version to be the latest version." + Assumes no version to be version zero." [{:keys [version] :as job - :or {version current-version}}] + :or {version 0}}] (cond - (= current-version version) (assoc job :version version) + (= current-version version) job (< current-version version) (throw (ex-info (format "Unknown version %d" version) diff --git a/src/lib/com/yetanalytics/xapipe/job/json.clj b/src/lib/com/yetanalytics/xapipe/job/json.clj index b7490254..bc3999f6 100644 --- a/src/lib/com/yetanalytics/xapipe/job/json.clj +++ b/src/lib/com/yetanalytics/xapipe/job/json.clj @@ -94,7 +94,7 @@ :ret job/job-spec) (defn json->job - "Parse a job from JSON" + "Parse a job from JSON, possibly updating it to the current version." [^String json-str] (-> (json/parse-string json-str (partial keyword nil)) keywordize-status diff --git a/src/lib/com/yetanalytics/xapipe/spec/common.clj b/src/lib/com/yetanalytics/xapipe/spec/common.clj index 4ec5e699..59538ebf 100644 --- a/src/lib/com/yetanalytics/xapipe/spec/common.clj +++ b/src/lib/com/yetanalytics/xapipe/spec/common.clj @@ -8,3 +8,5 @@ (satisfies? aproto/Channel x)) (s/def ::channel channel?) + +(s/def ::xapi-version #{"1.0.3" "2.0.0"}) diff --git a/src/test/com/yetanalytics/xapipe/cli/options_test.clj b/src/test/com/yetanalytics/xapipe/cli/options_test.clj index df5542a8..70afec1c 100644 --- a/src/test/com/yetanalytics/xapipe/cli/options_test.clj +++ b/src/test/com/yetanalytics/xapipe/cli/options_test.clj @@ -58,7 +58,8 @@ :get-params {}, :source-backoff-budget 10000, :json-only false - :source-backoff-max-attempt 10} + :source-backoff-max-attempt 10, + :source-xapi-version "1.0.3"} nil ;; invalid batch size @@ -68,7 +69,8 @@ :get-params {}, :source-backoff-budget 10000, :json-only false - :source-backoff-max-attempt 10} + :source-backoff-max-attempt 10, + :source-xapi-version "1.0.3"} ["Failed to validate \"--source-batch-size 0\": Must be a positive integer"] ;; xAPI Params @@ -83,13 +85,15 @@ :related_agents true}, :source-backoff-budget 10000, :json-only false - :source-backoff-max-attempt 10} + :source-backoff-max-attempt 10, + :source-xapi-version "1.0.3"} nil)) (deftest target-options-test (is (= {:options {:target-batch-size 50 :target-backoff-budget 10000 - :target-backoff-max-attempt 10} + :target-backoff-max-attempt 10 + :target-xapi-version "1.0.3"} :errors nil} (select-keys (cli/parse-opts [] target-options) @@ -148,11 +152,14 @@ :filter-concept-types [] :filter-activity-type-ids [] :filter-verb-ids [] - :filter-attachment-usage-types []}) + :filter-attachment-usage-types [] + :source-xapi-version "1.0.3" + :target-xapi-version "1.0.3"}) ;; Matches the fixture job we have (def json-job {:id "foo", + :version 1, :config {:get-buffer-size 10, :statement-buffer-size 500, @@ -162,14 +169,17 @@ :source {:request-config {:url-base "http://0.0.0.0:8080", - :xapi-prefix "/xapi"}, + :xapi-prefix "/xapi", + :xapi-version "1.0.3"}, :batch-size 50, :backoff-opts {:budget 10000, :max-attempt 10} :poll-interval 1000, :get-params {:limit 50}}, :target {:request-config - {:url-base "http://0.0.0.0:8081", :xapi-prefix "/xapi"}, + {:url-base "http://0.0.0.0:8081", + :xapi-prefix "/xapi", + :xapi-version "1.0.3"}, :batch-size 50, :backoff-opts {:budget 10000, :max-attempt 10}}, :filter {}}, @@ -225,6 +235,7 @@ "--source-backoff-max-attempt" "1" "--source-backoff-j-range" "1" "--source-backoff-initial" "1" + "--source-xapi-version" "2.0.0" "--target-url" "http://0.0.0.0:8081/xapi" "--target-batch-size" "1" "--target-username" "foo" @@ -233,6 +244,7 @@ "--target-backoff-max-attempt" "1" "--target-backoff-j-range" "1" "--target-backoff-initial" "1" + "--target-xapi-version" "2.0.0" "--get-buffer-size" "1" "--batch-timeout" "1" "--template-profile-url" "http://example.org/profile.jsonld" @@ -307,7 +319,9 @@ :filter-activity-type-ids ["http://example.org/profile.jsonld#activity-type"] :filter-verb-ids ["http://example.org/profile.jsonld#verb"] :filter-attachment-usage-types ["http://example.org/profile.jsonld#aut"] - :cleanup-buffer-size 1} + :cleanup-buffer-size 1 + :source-xapi-version "2.0.0" + :target-xapi-version "2.0.0"} []) (testing "no defaults" (is (= {} diff --git a/src/test/com/yetanalytics/xapipe/cli_test.clj b/src/test/com/yetanalytics/xapipe/cli_test.clj index 4a6bd514..f6d6fe56 100644 --- a/src/test/com/yetanalytics/xapipe/cli_test.clj +++ b/src/test/com/yetanalytics/xapipe/cli_test.clj @@ -34,10 +34,12 @@ (testing "minimal" (is (= {:source {:request-config - {:url-base "http://0.0.0.0:8080", :xapi-prefix "/xapi"}}, + {:url-base "http://0.0.0.0:8080", + :xapi-prefix "/xapi"}}, :target {:request-config - {:url-base "http://0.0.0.0:8081", :xapi-prefix "/xapi"}}, + {:url-base "http://0.0.0.0:8081", + :xapi-prefix "/xapi"}}, :filter {}} (options->config {:source-url "http://0.0.0.0:8080/xapi" @@ -108,7 +110,7 @@ (deftest create-job-test (is (= {:id "foo", - :version 0, + :version 1, :config {:get-buffer-size 100, :statement-buffer-size 1000, @@ -119,6 +121,7 @@ {:request-config {:url-base "http://0.0.0.0:8080", :xapi-prefix "/xapi", + :xapi-version "1.0.3", :username "foo", :password "bar", :oauth-params {:auth-uri "http://example.com/token" @@ -133,6 +136,7 @@ {:request-config {:url-base "http://0.0.0.0:8081", :xapi-prefix "/xapi", + :xapi-version "1.0.3", :username "foo", :password "bar", :oauth-params {:auth-uri "http://example.com/token" @@ -165,6 +169,7 @@ :source-backoff-max-attempt 10 :source-backoff-j-range 10 :source-backoff-initial 1 + :source-xapi-version "1.0.3" :target-url "http://0.0.0.0:8081/xapi" :target-batch-size 50 @@ -177,6 +182,7 @@ :target-backoff-max-attempt 10 :target-backoff-j-range 10 :target-backoff-initial 1 + :target-xapi-version "1.0.3" :get-buffer-size 100 :batch-timeout 200 @@ -197,7 +203,8 @@ :source {:request-config {:url-base "http://0.0.0.0:8080", - :xapi-prefix "/xapi"}, + :xapi-prefix "/xapi", + :xapi-version "1.0.3"}, :get-params {}, :poll-interval 1000, :batch-size 50, @@ -206,7 +213,8 @@ :target {:request-config {:url-base "http://0.0.0.0:8081", - :xapi-prefix "/xapi"}, + :xapi-prefix "/xapi", + :xapi-version "1.0.3"}, :batch-size 50, :backoff-opts {:budget 1000, :max-attempt 10, :j-range 10, :initial 1}}, @@ -248,6 +256,7 @@ {:request-config {:url-base "http://0.0.0.0:8080", :xapi-prefix "/xapi", + :xapi-version "1.0.3", :username "foo", :password "bar"}, :get-params {:limit 50}, @@ -259,6 +268,7 @@ {:request-config {:url-base "http://0.0.0.0:8081", :xapi-prefix "/xapi", + :xapi-version "1.0.3", :username "foo", :password "bar"}, :batch-size 50, @@ -275,6 +285,7 @@ {:request-config {:url-base "http://0.0.0.0:8082", :xapi-prefix "/xapi2", + :xapi-version "1.0.3", :username "baz", :password "quxx"}, :get-params {:format "exact" @@ -287,6 +298,7 @@ {:request-config {:url-base "http://0.0.0.0:8083", :xapi-prefix "/xapi2", + :xapi-version "1.0.3", :username "baz", :password "quxx"}, :batch-size 100, @@ -325,6 +337,7 @@ (testing "Auth change" (is (= {:url-base "http://0.0.0.0:8080", :xapi-prefix "/xapi", + :xapi-version "1.0.3", :token "foobar"} (-> (reconfigure-with-options config diff --git a/src/test/com/yetanalytics/xapipe/job/config_test.clj b/src/test/com/yetanalytics/xapipe/job/config_test.clj index efa2b078..fa4030d8 100644 --- a/src/test/com/yetanalytics/xapipe/job/config_test.clj +++ b/src/test/com/yetanalytics/xapipe/job/config_test.clj @@ -7,9 +7,11 @@ (def minimal-config {:source {:request-config {:url-base "http://0.0.0.0:8080" + :xapi-version "1.0.3" :xapi-prefix "/xapi"}} :target {:request-config {:url-base "http://0.0.0.0:8081" + :xapi-version "1.0.3" :xapi-prefix "/xapi"}}}) (deftest minimal-config-test diff --git a/src/test/com/yetanalytics/xapipe/job/json_test.clj b/src/test/com/yetanalytics/xapipe/job/json_test.clj index c8c25fea..a3309294 100644 --- a/src/test/com/yetanalytics/xapipe/job/json_test.clj +++ b/src/test/com/yetanalytics/xapipe/job/json_test.clj @@ -20,6 +20,7 @@ (def complex-job {:id "foo", + :version 1 :config {:get-buffer-size 10, :statement-buffer-size 500, @@ -28,14 +29,18 @@ :cleanup-buffer-size 50, :source {:request-config - {:url-base "http://0.0.0.0:8080", :xapi-prefix "/xapi"}, + {:url-base "http://0.0.0.0:8080", + :xapi-prefix "/xapi", + :xapi-version "1.0.3"}, :batch-size 50, :backoff-opts {:budget 10000, :max-attempt 10}, :poll-interval 1000, :get-params {:limit 50}}, :target {:request-config - {:url-base "http://0.0.0.0:8081", :xapi-prefix "/xapi"}, + {:url-base "http://0.0.0.0:8081", + :xapi-prefix "/xapi", + :xapi-version "1.0.3"}, :batch-size 50, :backoff-opts {:budget 10000, :max-attempt 10}}, :filter diff --git a/src/test/com/yetanalytics/xapipe/job_test.clj b/src/test/com/yetanalytics/xapipe/job_test.clj index 86a08353..18f38d72 100644 --- a/src/test/com/yetanalytics/xapipe/job_test.clj +++ b/src/test/com/yetanalytics/xapipe/job_test.clj @@ -4,7 +4,8 @@ [com.yetanalytics.xapipe.job :refer :all] [com.yetanalytics.xapipe.test-support :as sup])) -(def minimal-config +;; Minimal config for each version +(def minimal-config-0 {:source {:request-config {:url-base "http://0.0.0.0:8080" :xapi-prefix "/xapi"}} @@ -12,20 +13,49 @@ {:request-config {:url-base "http://0.0.0.0:8081" :xapi-prefix "/xapi"}}}) +(def minimal-config-1 + {:source + {:request-config {:url-base "http://0.0.0.0:8080" + :xapi-version "1.0.3" + :xapi-prefix "/xapi"}} + :target + {:request-config {:url-base "http://0.0.0.0:8081" + :xapi-version "1.0.3" + :xapi-prefix "/xapi"}}}) + +(def minimal-job-0 + {:id "foo" + :config minimal-config-0}) + +(def minimal-job-1 + {:id "foo" + :version 1 + :config minimal-config-1}) + (deftest minimal-config-test - (testing "sanity check: minimal input config is valid" + (testing "sanity check: minimal input config is valid at current version" (is (s/valid? :com.yetanalytics.xapipe.job/config - minimal-config)))) + minimal-config-1))) + (testing "old version is not" + (is + (not + (s/valid? :com.yetanalytics.xapipe.job/config + minimal-config-0))))) + +(deftest upgrade-job-test + (testing "can upgrade a job from v0 to v1" + (is (= minimal-job-1 + (upgrade-job minimal-job-0))))) (deftest init-job-defaults-test (testing "given an id and minimal config it constructs a valid job" (is (s/valid? job-spec (init-job "foo" - minimal-config)))) + minimal-config-1)))) (testing "applies defaults" (is (= {:id "foo", - :version 0, + :version 1, :config {:get-buffer-size 10, :statement-buffer-size 500, @@ -34,14 +64,18 @@ :cleanup-buffer-size 50, :source {:request-config - {:url-base "http://0.0.0.0:8080", :xapi-prefix "/xapi"}, + {:url-base "http://0.0.0.0:8080", + :xapi-prefix "/xapi", + :xapi-version "1.0.3"}, :batch-size 50, :backoff-opts {:budget 10000, :max-attempt 10}, :poll-interval 1000, :get-params {:limit 50}}, :target {:request-config - {:url-base "http://0.0.0.0:8081", :xapi-prefix "/xapi"}, + {:url-base "http://0.0.0.0:8081", + :xapi-prefix "/xapi" + :xapi-version "1.0.3"}, :batch-size 50, :backoff-opts {:budget 10000, :max-attempt 10}}, :filter {}}, @@ -55,7 +89,7 @@ (init-job "foo" - minimal-config))))) + minimal-config-1))))) (sup/def-ns-check-tests com.yetanalytics.xapipe.job diff --git a/src/test/com/yetanalytics/xapipe/main_test.clj b/src/test/com/yetanalytics/xapipe/main_test.clj index 2b40d3fe..bbdfb334 100644 --- a/src/test/com/yetanalytics/xapipe/main_test.clj +++ b/src/test/com/yetanalytics/xapipe/main_test.clj @@ -83,7 +83,7 @@ (store/write-job store (last tail-states)) (is (= {job-id {:id job-id, - :version 0, + :version 1, :config {:get-buffer-size 10, :statement-buffer-size 500, @@ -95,6 +95,7 @@ {:url-base (format "http://0.0.0.0:%s" (:port source)), :xapi-prefix "/xapi" + :xapi-version "1.0.3", :json-only false}, :get-params {:since "2021-10-25T15:05:00.537746000Z", @@ -107,7 +108,8 @@ {:request-config {:url-base (format "http://0.0.0.0:%d" (:port target)), - :xapi-prefix "/xapi"}, + :xapi-prefix "/xapi", + :xapi-version "1.0.3"}, :batch-size 50, :backoff-opts {:budget 10000, :max-attempt 10}}, :filter {}}, @@ -176,7 +178,7 @@ (store/write-job store (last tail-states)) (is (= {job-id {:id job-id, - :version 0, + :version 1, :config {:get-buffer-size 10, :statement-buffer-size 500, @@ -187,6 +189,7 @@ {:request-config {:url-base (format "http://0.0.0.0:%d" (:port source)), + :xapi-version "1.0.3" :json-only false :xapi-prefix "/xapi"}, :get-params @@ -198,7 +201,9 @@ :backoff-opts {:budget 10000, :max-attempt 10}}, :target {:request-config - {:url-base "http://0.0.0.0:1234", :xapi-prefix "/xapi"}, + {:url-base "http://0.0.0.0:1234", + :xapi-version "1.0.3" + :xapi-prefix "/xapi"}, :batch-size 50, :backoff-opts {:budget 10000, :max-attempt 10}}, :filter {}}, @@ -351,7 +356,7 @@ "--file-store-dir" ".test_store")] (is (= 0 status)) (is (= {:id "foo", - :version 0, + :version 1, :config {:get-buffer-size 10, :statement-buffer-size 500, @@ -361,7 +366,9 @@ :source {:request-config {:url-base (format "http://0.0.0.0:%d" - (:port source)), :xapi-prefix "/xapi" + (:port source)), + :xapi-prefix "/xapi", + :xapi-version "1.0.3", :json-only false}, :get-params {:since "2021-10-25T15:05:00.537746000Z", @@ -374,7 +381,8 @@ {:request-config {:url-base (format "http://0.0.0.0:%d" (:port target)), - :xapi-prefix "/xapi"}, + :xapi-prefix "/xapi", + :xapi-version "1.0.3"}, :batch-size 50, :backoff-opts {:budget 10000, :max-attempt 10}}, :filter {}}, diff --git a/src/test/com/yetanalytics/xapipe/test_support.clj b/src/test/com/yetanalytics/xapipe/test_support.clj index 4d5fa169..66ba2868 100644 --- a/src/test/com/yetanalytics/xapipe/test_support.clj +++ b/src/test/com/yetanalytics/xapipe/test_support.clj @@ -90,7 +90,8 @@ [& {:keys [stream-path sink seed-path - port]}] + port + xapi-version]}] (let [port (or port (get-free-port)) lrs (cond @@ -139,7 +140,8 @@ (into [] statements) (into [] attachments))) :request-config {:url-base (format "http://0.0.0.0:%d" port) - :xapi-prefix "/xapi"} + :xapi-prefix "/xapi" + :xapi-version "1.0.3"} ;; can be overridden :type (cond sink :sink stream-path :stream diff --git a/src/test/com/yetanalytics/xapipe_test.clj b/src/test/com/yetanalytics/xapipe_test.clj index 5d983357..3801bc2c 100644 --- a/src/test/com/yetanalytics/xapipe_test.clj +++ b/src/test/com/yetanalytics/xapipe_test.clj @@ -22,12 +22,14 @@ job-id (.toString (java.util.UUID/randomUUID)) ;; This test uses a "raw" job from scratch job {:id job-id, + :version 1 :config {:source {:request-config {:url-base (format "http://0.0.0.0:%d" (:port source)), - :xapi-prefix "/xapi"}, + :xapi-prefix "/xapi", + :xapi-version "1.0.3"}, :get-params {:since since :until until}}, @@ -35,7 +37,8 @@ {:request-config {:url-base (format "http://0.0.0.0:%d" (:port target)), - :xapi-prefix "/xapi"}}}, + :xapi-prefix "/xapi", + :xapi-version "1.0.3"}}}, :state {:status :init, :cursor since, @@ -91,7 +94,8 @@ (let [;; Bad source config {:source {:request-config {:url-base "http://localhost:8123" - :xapi-prefix "/foo"} + :xapi-prefix "/foo", + :xapi-version "1.0.3"} :get-params {} :poll-interval 1000 :batch-size 50} @@ -131,7 +135,8 @@ :batch-size 50} :target {:request-config {:url-base "http://localhost:8123" - :xapi-prefix "/foo"} + :xapi-prefix "/foo", + :xapi-version "1.0.3"} :batch-size 50}} {:keys [job-id job From 83f8beb04fb0f7ca1dade19c693467e3d6dfef8c Mon Sep 17 00:00:00 2001 From: Milton Reder Date: Wed, 22 Oct 2025 14:20:36 -0400 Subject: [PATCH 07/18] upgrade-jobs option --- src/cli/com/yetanalytics/xapipe/cli/options.clj | 5 ++++- .../com/yetanalytics/xapipe/cli/options_test.clj | 12 ++++++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/src/cli/com/yetanalytics/xapipe/cli/options.clj b/src/cli/com/yetanalytics/xapipe/cli/options.clj index 105264e8..d7ca3dc4 100644 --- a/src/cli/com/yetanalytics/xapipe/cli/options.clj +++ b/src/cli/com/yetanalytics/xapipe/cli/options.clj @@ -156,7 +156,10 @@ (-> filepath slurp job-json/json->job))] - [nil "--json-out FILE" "Write JOB to a JSON file"]] + [nil "--json-out FILE" "Write JOB to a JSON file"] + [nil "--[no-]upgrade" "Automatically upgrade jobs to the latest version" + :id :upgrade-jobs + :default true]] (concat storage-options metrics-options))) diff --git a/src/test/com/yetanalytics/xapipe/cli/options_test.clj b/src/test/com/yetanalytics/xapipe/cli/options_test.clj index 70afec1c..f01815fa 100644 --- a/src/test/com/yetanalytics/xapipe/cli/options_test.clj +++ b/src/test/com/yetanalytics/xapipe/cli/options_test.clj @@ -26,7 +26,8 @@ :redis-prefix "xapipe" :file-store-dir "store" :metrics-reporter "noop" - :prometheus-push-gateway "0.0.0.0:9091"} + :prometheus-push-gateway "0.0.0.0:9091" + :upgrade-jobs true} nil ;; Redis store with a custom uri @@ -40,7 +41,8 @@ :redis-prefix "xapipe" :file-store-dir "store" :metrics-reporter "noop" - :prometheus-push-gateway "0.0.0.0:9091"} + :prometheus-push-gateway "0.0.0.0:9091" + :upgrade-jobs true} nil)) (deftest source-options-test @@ -154,7 +156,8 @@ :filter-verb-ids [] :filter-attachment-usage-types [] :source-xapi-version "1.0.3" - :target-xapi-version "1.0.3"}) + :target-xapi-version "1.0.3" + :upgrade-jobs true}) ;; Matches the fixture job we have (def json-job @@ -321,7 +324,8 @@ :filter-attachment-usage-types ["http://example.org/profile.jsonld#aut"] :cleanup-buffer-size 1 :source-xapi-version "2.0.0" - :target-xapi-version "2.0.0"} + :target-xapi-version "2.0.0" + :upgrade-jobs true} []) (testing "no defaults" (is (= {} From 11d58d66133b1c93fc3c84aca5fbed2e87c92d8f Mon Sep 17 00:00:00 2001 From: Milton Reder Date: Wed, 22 Oct 2025 14:45:07 -0400 Subject: [PATCH 08/18] automatically upgrade json jobs --- .../com/yetanalytics/xapipe/cli/options.clj | 6 +-- src/lib/com/yetanalytics/xapipe/job.clj | 2 +- .../com/yetanalytics/xapipe/job/config.clj | 49 +++++++++++-------- src/lib/com/yetanalytics/xapipe/job/json.clj | 5 +- 4 files changed, 36 insertions(+), 26 deletions(-) diff --git a/src/cli/com/yetanalytics/xapipe/cli/options.clj b/src/cli/com/yetanalytics/xapipe/cli/options.clj index d7ca3dc4..8718a74c 100644 --- a/src/cli/com/yetanalytics/xapipe/cli/options.clj +++ b/src/cli/com/yetanalytics/xapipe/cli/options.clj @@ -149,15 +149,15 @@ [nil "--delete-job ID" "Delete the job specified and exit."] ["-f" "--force-resume" "If resuming a job, clear any errors and force it to resume." :default false] - [nil "--json JSON" "Take a job specification as a JSON string" + [nil "--json JSON" "Take a job specification as a JSON string (automatically upgrades old jobs)" :parse-fn job-json/json->job] - [nil "--json-file FILE" "Take a job specification from a JSON file" + [nil "--json-file FILE" "Take a job specification from a JSON file (automatically upgrades old jobs)" :parse-fn (fn [filepath] (-> filepath slurp job-json/json->job))] [nil "--json-out FILE" "Write JOB to a JSON file"] - [nil "--[no-]upgrade" "Automatically upgrade jobs to the latest version" + [nil "--[no-]upgrade" "Automatically upgrade jobs started from storage to the latest version (jobs started from JSON will always be upgraded)" :id :upgrade-jobs :default true]] (concat storage-options diff --git a/src/lib/com/yetanalytics/xapipe/job.clj b/src/lib/com/yetanalytics/xapipe/job.clj index 83c82672..9375ba30 100644 --- a/src/lib/com/yetanalytics/xapipe/job.clj +++ b/src/lib/com/yetanalytics/xapipe/job.clj @@ -13,7 +13,7 @@ (s/def ::config config/config-spec) (s/def ::state state/state-spec) -(s/def ::version #{0 current-version}) +(s/def ::version #{current-version}) (s/def ::id (s/and string? not-empty)) (defn valid-get-params-vs-state? diff --git a/src/lib/com/yetanalytics/xapipe/job/config.clj b/src/lib/com/yetanalytics/xapipe/job/config.clj index c506e5ee..8b1488c6 100644 --- a/src/lib/com/yetanalytics/xapipe/job/config.clj +++ b/src/lib/com/yetanalytics/xapipe/job/config.clj @@ -69,6 +69,7 @@ poll-interval :poll-interval {?since :since ?until :until} :get-params + get-req-config :request-config :as source-config :or {get-batch-size 50 get-backoff-opts {:budget 10000 @@ -77,6 +78,7 @@ :source {post-batch-size :batch-size post-backoff-opts :backoff-opts + post-req-config :request-config :as target-config :or {post-backoff-opts {:budget 10000 :max-attempt 10}}} @@ -108,27 +110,32 @@ cleanup-buffer-size (or cleanup-buffer-size get-batch-size - 0)] - {:get-buffer-size get-buffer-size - :statement-buffer-size statement-buffer-size - :batch-buffer-size batch-buffer-size - :batch-timeout batch-timeout - :cleanup-buffer-size cleanup-buffer-size - :source - (-> source-config - (assoc :batch-size get-batch-size - :backoff-opts get-backoff-opts - :poll-interval poll-interval) - (assoc-in [:get-params :limit] get-batch-size) - (cond-> - ?since (update-in [:get-params :since] t/normalize-stamp) - ?until (update-in [:get-params :until] t/normalize-stamp))) - :target - (assoc target-config - :batch-size post-batch-size - :backoff-opts post-backoff-opts) - :filter - (or filter-config {})})) + 0) + source-version (get get-req-config :xapi-version "1.0.3") + target-version (get post-req-config :xapi-version "1.0.3")] + (-> + {:get-buffer-size get-buffer-size + :statement-buffer-size statement-buffer-size + :batch-buffer-size batch-buffer-size + :batch-timeout batch-timeout + :cleanup-buffer-size cleanup-buffer-size + :source + (-> source-config + (assoc :batch-size get-batch-size + :backoff-opts get-backoff-opts + :poll-interval poll-interval) + (assoc-in [:get-params :limit] get-batch-size) + (cond-> + ?since (update-in [:get-params :since] t/normalize-stamp) + ?until (update-in [:get-params :until] t/normalize-stamp))) + :target + (assoc target-config + :batch-size post-batch-size + :backoff-opts post-backoff-opts) + :filter + (or filter-config {})} + (assoc-in [:source :request-config :xapi-version] source-version) + (assoc-in [:target :request-config :xapi-version] target-version)))) (s/fdef sanitize-req-cfg :args (s/cat :rcfg ::client/request-config) diff --git a/src/lib/com/yetanalytics/xapipe/job/json.clj b/src/lib/com/yetanalytics/xapipe/job/json.clj index bc3999f6..82a2b92e 100644 --- a/src/lib/com/yetanalytics/xapipe/job/json.clj +++ b/src/lib/com/yetanalytics/xapipe/job/json.clj @@ -95,11 +95,14 @@ (defn json->job "Parse a job from JSON, possibly updating it to the current version." - [^String json-str] + [^String json-str & {:keys [upgrade] + :or {upgrade true}}] (-> (json/parse-string json-str (partial keyword nil)) keywordize-status keywordize-job-error-types (unpack-paths [[:state :filter :pattern]]) + (cond-> + upgrade job/upgrade-job) (update :config config/ensure-defaults))) (s/def ::pretty boolean?) From 719cbf5684cbbab066dae62698134440a8884e3b Mon Sep 17 00:00:00 2001 From: Milton Reder Date: Wed, 22 Oct 2025 15:00:42 -0400 Subject: [PATCH 09/18] implement toggle for upgrade functionality --- src/cli/com/yetanalytics/xapipe/cli/options.clj | 6 +++--- src/cli/com/yetanalytics/xapipe/main.clj | 9 ++++++--- src/lib/com/yetanalytics/xapipe/job/json.clj | 10 ++++------ 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/src/cli/com/yetanalytics/xapipe/cli/options.clj b/src/cli/com/yetanalytics/xapipe/cli/options.clj index 8718a74c..d7ca3dc4 100644 --- a/src/cli/com/yetanalytics/xapipe/cli/options.clj +++ b/src/cli/com/yetanalytics/xapipe/cli/options.clj @@ -149,15 +149,15 @@ [nil "--delete-job ID" "Delete the job specified and exit."] ["-f" "--force-resume" "If resuming a job, clear any errors and force it to resume." :default false] - [nil "--json JSON" "Take a job specification as a JSON string (automatically upgrades old jobs)" + [nil "--json JSON" "Take a job specification as a JSON string" :parse-fn job-json/json->job] - [nil "--json-file FILE" "Take a job specification from a JSON file (automatically upgrades old jobs)" + [nil "--json-file FILE" "Take a job specification from a JSON file" :parse-fn (fn [filepath] (-> filepath slurp job-json/json->job))] [nil "--json-out FILE" "Write JOB to a JSON file"] - [nil "--[no-]upgrade" "Automatically upgrade jobs started from storage to the latest version (jobs started from JSON will always be upgraded)" + [nil "--[no-]upgrade" "Automatically upgrade jobs to the latest version" :id :upgrade-jobs :default true]] (concat storage-options diff --git a/src/cli/com/yetanalytics/xapipe/main.clj b/src/cli/com/yetanalytics/xapipe/main.clj index a0767b50..cfea2137 100644 --- a/src/cli/com/yetanalytics/xapipe/main.clj +++ b/src/cli/com/yetanalytics/xapipe/main.clj @@ -40,6 +40,7 @@ Delete a Job: ?json :json ?json-file :json-file ?json-out :json-out + upgrade-jobs? :upgrade-jobs :as options} :options :keys [summary]} (opts/args->options args)] (if help? @@ -83,10 +84,11 @@ Delete a Job: ;; Found in storage ?from-storage (-> ?from-storage - job/upgrade-job (cond-> + ;; upgrade retrieved job if desired + upgrade-jobs? job/upgrade-job ;; If the user has requested force resume we clear - force-resume? + force-resume? (-> (update :state state/clear-errors) (update :state state/set-status :paused))) (job/reconfigure-job @@ -99,7 +101,8 @@ Delete a Job: ;; Json is provided ?from-json (-> ?from-json - job/upgrade-job + (cond-> + upgrade-jobs? job/upgrade-job) (update :config cli/reconfigure-with-options ;; reparse args w/o defaults (:options diff --git a/src/lib/com/yetanalytics/xapipe/job/json.clj b/src/lib/com/yetanalytics/xapipe/job/json.clj index 82a2b92e..314af3e9 100644 --- a/src/lib/com/yetanalytics/xapipe/job/json.clj +++ b/src/lib/com/yetanalytics/xapipe/job/json.clj @@ -91,18 +91,16 @@ (s/fdef json->job :args (s/cat :json-str ::job-json) - :ret job/job-spec) + :ret any? ;; we don't spec this because the job may need an update + ) (defn json->job - "Parse a job from JSON, possibly updating it to the current version." - [^String json-str & {:keys [upgrade] - :or {upgrade true}}] + "Parse a job from JSON." + [^String json-str] (-> (json/parse-string json-str (partial keyword nil)) keywordize-status keywordize-job-error-types (unpack-paths [[:state :filter :pattern]]) - (cond-> - upgrade job/upgrade-job) (update :config config/ensure-defaults))) (s/def ::pretty boolean?) From e8e6e0ef90d6e800f5218dab86e6d9047dcaf746 Mon Sep 17 00:00:00 2001 From: Milton Reder Date: Thu, 23 Oct 2025 10:45:16 -0400 Subject: [PATCH 10/18] get 1.0.3 downgrade fns from SQL LRS --- src/lib/com/yetanalytics/xapipe/xapi.clj | 38 ++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/src/lib/com/yetanalytics/xapipe/xapi.clj b/src/lib/com/yetanalytics/xapipe/xapi.clj index 6c1e61a8..fc1f6b5b 100644 --- a/src/lib/com/yetanalytics/xapipe/xapi.clj +++ b/src/lib/com/yetanalytics/xapipe/xapi.clj @@ -1,6 +1,7 @@ (ns com.yetanalytics.xapipe.xapi (:require [clojure.spec.alpha :as s] [clojure.spec.gen.alpha :as sgen] + [clojure.string :as cs] [clojure.tools.logging :as log] [com.yetanalytics.xapipe.client :as client] [com.yetanalytics.xapipe.client.multipart-mixed :as multipart] @@ -168,3 +169,40 @@ (log/warnf "Extra attachments for shas %s, cleaning..." (pr-str (keys leftover))) (multipart/clean-tempfiles! (mapcat identity (vals leftover)))) source-statements)) + +;; Statement version downgrade (from SQL LRS) + +(s/fdef ensure-103-timestamp + :args (s/cat :timestamp (s/with-gen + string? + (fn [] + (binding [xs/*xapi-version* "2.0.0"] + (s/gen ::xs/timestamp))))) + :ret ::xs/timestamp) + +(defn ensure-103-timestamp + "Ensure the timestamp is in the 1.0.3 format." + [timestamp] + (if (cs/includes? timestamp " ") + (cs/replace-first timestamp " " "T") + timestamp)) + +(s/fdef convert-200-to-103 + :args (s/cat :statement + (s/with-gen + map? + (fn [] + (binding [xs/*xapi-version* "2.0.0"] + (s/gen ::xs/statement)))))) + +(defn convert-200-to-103 + "Convert a Statement from xAPI 2.0.0 to 1.0.3 by removing properties not in + the 1.0.3 spec and normalizing timestamp." + [statement] + (if (= "2.0.0" (get statement "version")) + (-> statement + (assoc "version" "1.0.0") + (update "timestamp" ensure-103-timestamp) + (cond-> (get statement "context") + (update "context" dissoc "contextAgents" "contextGroups"))) + statement)) From 9e341bbf148f568e205412af4ba9dc986b06a5c9 Mon Sep 17 00:00:00 2001 From: Milton Reder Date: Fri, 24 Oct 2025 15:33:41 -0400 Subject: [PATCH 11/18] working 2.0.0 -> 1.0.3 test --- dev-resources/lrs/after_conf_v1.edn | 1 + dev-resources/lrs/after_conf_v2.edn | 1 + src/lib/com/yetanalytics/xapipe.clj | 167 ++++++++++++--------- src/lib/com/yetanalytics/xapipe/client.clj | 2 +- src/lib/com/yetanalytics/xapipe/xapi.clj | 24 ++- src/test/com/yetanalytics/xapipe_test.clj | 66 +++++++- 6 files changed, 173 insertions(+), 88 deletions(-) create mode 100644 dev-resources/lrs/after_conf_v1.edn create mode 100644 dev-resources/lrs/after_conf_v2.edn diff --git a/dev-resources/lrs/after_conf_v1.edn b/dev-resources/lrs/after_conf_v1.edn new file mode 100644 index 00000000..a233463b --- /dev/null +++ b/dev-resources/lrs/after_conf_v1.edn @@ -0,0 +1 @@ +#:state{:statements {"931006ec-f330-48a2-a14d-fb4663b3b4f2" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "931006ec-f330-48a2-a14d-fb4663b3b4f2", "stored" "2025-10-24T15:37:18.346097000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:18.346097000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "54f94aae-8e3f-4992-8a48-adf99adb40dd" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "54f94aae-8e3f-4992-8a48-adf99adb40dd", "stored" "2025-10-24T15:37:18.339359000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:18.339359000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d8f465e7-6dc3-4ef7-91a3-444906b40f32" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "d8f465e7-6dc3-4ef7-91a3-444906b40f32", "stored" "2025-10-24T15:37:18.309162000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:18.309162000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7eff5515-0823-4313-afaf-1cbf03e7c101" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "7eff5515-0823-4313-afaf-1cbf03e7c101", "stored" "2025-10-24T15:37:18.241640000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:18.241640000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "94d7d1b6-5c6c-4e47-974a-45465b864c62" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "94d7d1b6-5c6c-4e47-974a-45465b864c62", "stored" "2025-10-24T15:37:18.183518000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:18.183518000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d605a33c-4225-4729-aceb-4493c9f8f7bc" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/verify/complete/34534100123", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "fr-FR" "réunion"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:37:15.702047001Z", "version" "1.0.0", "id" "d605a33c-4225-4729-aceb-4493c9f8f7bc", "timestamp" "2025-10-24T15:37:15.702047001Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4a9c932e-4bc9-408b-af87-20050dc4dd2e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/verify/complete/34534100123", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:37:15.702047000Z", "version" "1.0.0", "id" "4a9c932e-4bc9-408b-af87-20050dc4dd2e", "timestamp" "2025-10-24T15:37:15.702047000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "160c6b27-5099-4e13-aba1-936576cf47e4" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/verify/complete/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:37:15.668644000Z", "version" "1.0.0", "id" "160c6b27-5099-4e13-aba1-936576cf47e4", "timestamp" "2025-10-24T15:37:15.668644000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7b381565-c078-4e23-aef0-ef73c7b1c28a" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:15.640666000Z", "version" "1.0.0", "id" "7b381565-c078-4e23-aef0-ef73c7b1c28a", "timestamp" "2025-10-24T15:37:15.640666000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "257393da-a94d-4502-a56c-6a09e0bf0f19" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:15.612602000Z", "version" "1.0.0", "id" "257393da-a94d-4502-a56c-6a09e0bf0f19", "timestamp" "2025-10-24T15:37:15.612602000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "6a9493d8-1fe2-4bd9-87b8-0ba267585f5e" {"verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "actor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "stored" "2025-10-24T15:37:15.580963000Z", "version" "1.0.0", "id" "6a9493d8-1fe2-4bd9-87b8-0ba267585f5e", "timestamp" "2025-10-24T15:37:15.580963000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "776ecd59-761e-4060-b87b-f972ae2ae2a8" {"verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "actor" {"objectType" "Agent", "name" "xAPI openid", "openid" "http://openid.example.org/12345"}, "stored" "2025-10-24T15:37:15.552779000Z", "version" "1.0.0", "id" "776ecd59-761e-4060-b87b-f972ae2ae2a8", "timestamp" "2025-10-24T15:37:15.552779000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d52baef3-386b-4b43-9a91-33e3eae2dce5" {"verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "stored" "2025-10-24T15:37:15.522312000Z", "version" "1.0.0", "id" "d52baef3-386b-4b43-9a91-33e3eae2dce5", "timestamp" "2025-10-24T15:37:15.522312000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0d9be28e-4c4a-4d26-b05d-0a83ff2d3082" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:15.493658000Z", "version" "1.0.0", "id" "0d9be28e-4c4a-4d26-b05d-0a83ff2d3082", "timestamp" "2025-10-24T15:37:15.493658000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9573e21e-0103-4453-a79b-c61566efd1a2" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:15.463561000Z", "version" "1.0.0", "id" "9573e21e-0103-4453-a79b-c61566efd1a2", "timestamp" "2025-10-24T15:37:15.463561000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7e35ef9c-63a4-43bb-ac60-2ce0ddd1dff7" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:15.434392000Z", "version" "1.0.0", "id" "7e35ef9c-63a4-43bb-ac60-2ce0ddd1dff7", "timestamp" "2025-10-24T15:37:15.434392000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e20832a3-262c-4ef8-85fa-7900dc6ad83b" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:15.406447000Z", "version" "1.0.0", "id" "e20832a3-262c-4ef8-85fa-7900dc6ad83b", "timestamp" "2025-10-24T15:37:15.406447000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "09992ab0-3620-4297-bf49-043e6d06aef8" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:15.370761000Z", "version" "1.0.0", "id" "09992ab0-3620-4297-bf49-043e6d06aef8", "timestamp" "2025-10-24T15:37:15.370761000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "807b4c61-28b6-4b7d-842d-22901c9cdaad" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:15.328429000Z", "version" "1.0.0", "id" "807b4c61-28b6-4b7d-842d-22901c9cdaad", "timestamp" "2025-10-24T15:37:15.328429000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b1a7203a-4fff-4469-9d6d-6c1703682156" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "b1a7203a-4fff-4469-9d6d-6c1703682156", "timestamp" "2025-10-24T15:37:13.096910000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:13.096910000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "description" {"en-US" "A test attachment (description)"}, "contentType" "text/plain", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "fileUrl" "http://over.there.com/file.txt"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "310b3ff3-06d9-4a55-a579-acc229771290" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:545ec397-6836-488c-999a-6adfa2c14377@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attendedb61ae999-6996-4898-bcc6-0756e7027b87", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:b2abe131-03ec-4dd6-a45c-bce86e931a80@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported7305f79b-d927-4e0c-b1b9-438125f0b899", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/sub", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:sub@adlnet.gov"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534f129598c-47ce-46f6-86f8-e41373c3713a"}}, "stored" "2025-10-24T15:37:12.949697000Z", "version" "1.0.0", "id" "310b3ff3-06d9-4a55-a579-acc229771290", "timestamp" "2025-10-24T15:37:12.949697000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1fba16c4-5779-47b9-be3b-87667219bd57" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534678d3c7d-de9e-46d2-b2cf-8dc9a7554fda"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended48c74d10-61f0-4506-9e92-09454d8c51e0", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "1fba16c4-5779-47b9-be3b-87667219bd57", "timestamp" "2025-10-24T15:37:12.925342000Z", "context" {"registration" "91c59a84-28d9-40f2-93e5-06469d0453c3", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/pri", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:1aa0e0e7-606b-44db-aa30-9ee95d99c195@adlnet.gov"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:12.925342000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:04936178-d3d9-49f0-bacd-d829fb25466c@adlnet.gov"}}, "3a734da2-2551-4523-b6f4-202ab2db2a7b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/test/voided/target/af664352-eb6a-48cb-b065-ca5af7cded1f", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "StatementRef", "id" "fe666861-b43c-42fb-972b-ddd54e9c4007"}, "id" "3a734da2-2551-4523-b6f4-202ab2db2a7b", "stored" "2025-10-24T15:37:12.854039000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:12.854039000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "20a0a142-e212-481d-8e51-7d3bbfb73031" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "fe666861-b43c-42fb-972b-ddd54e9c4007"}, "id" "20a0a142-e212-481d-8e51-7d3bbfb73031", "stored" "2025-10-24T15:37:12.819623000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:12.819623000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9b4569dc-b7de-4a36-88e8-b207300402f1" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "1e2179db-9aa0-4824-b463-9c553075c477"}, "stored" "2025-10-24T15:37:12.752679000Z", "version" "1.0.0", "id" "9b4569dc-b7de-4a36-88e8-b207300402f1", "timestamp" "2025-10-24T15:37:12.752679000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5819f251-f6ed-40c3-bff4-f285a26ad368" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "5819f251-f6ed-40c3-bff4-f285a26ad368", "timestamp" "2025-10-24T15:37:12.676996000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:12.676996000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "description" {"en-US" "A test attachment (description)"}, "contentType" "text/plain", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "fileUrl" "http://over.there.com/file.txt"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "8d96321e-2f5e-480a-ac8d-1477d23f7691" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "8d96321e-2f5e-480a-ac8d-1477d23f7691", "timestamp" "2025-10-24T15:37:12.509880000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/pri", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:pri@adlnet.gov"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:12.509880000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "002e40fe-3abb-4639-b615-0424956b0dfc" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "2077c13b-9c16-493c-9626-55769b59870e"}, "stored" "2025-10-24T15:37:12.286051000Z", "version" "1.0.0", "id" "002e40fe-3abb-4639-b615-0424956b0dfc", "timestamp" "2025-10-24T15:37:12.286051000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5ed7d845-9ff8-4570-abdf-42931da510c1" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "5ed7d845-9ff8-4570-abdf-42931da510c1", "stored" "2025-10-24T15:37:12.119959000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:12.119959000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c691d39c-d234-46e4-a58d-3210a9c7dc60" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "c691d39c-d234-46e4-a58d-3210a9c7dc60", "timestamp" "2025-10-24T15:37:12.071243000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:12.071243000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "contentType" "text/plain", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "description" {"en-US" "A test attachment (description)"}} {"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "contentType" "text/plain", "length" 33, "sha2" "7063d0a4cfa93373753ad2f5a6ffcf684559fb1df3c2f0473a14ece7d4edb06a", "description" {"en-US" "A test attachment (description)"}}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "adff9103-1e1f-49d9-bbd0-37f3ac186062" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:agent99df6ae6-f17d-46aa-b522-c91b0175dcbc@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:groupb7b93e2c-a732-49b1-9cdd-f46e143ba1f0@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"pa-IN" "ਹਾਜ਼ਰ", "sk-SK" "zúčastnil", "ja-JP" "出席した", "en-US" "attended", "en-GB" "attended", "hy-AM" "ներկա է գտնվել", "ru-RU" "участие", "ar-EG" "حضر", "ko-KR" "참석", "is-IS" "sótti", "kn-IN" "ಹಾಜರಿದ್ದರು"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/unicode/6ad7925c-0e63-4e13-af1a-5e606f83a6a3", "definition" {"name" {"pa-IN" "ਹਾਜ਼ਰ", "en" "Other", "sk-SK" "zúčastnil", "ja-JP" "出席した", "en-US" "attended", "en-GB" "attended", "hy-AM" "ներկա է գտնվել", "ru-RU" "участие", "ar-EG" "حضر", "ko-KR" "참석", "is-IS" "sótti", "kn-IN" "ಹಾಜರಿದ್ದರು"}, "description" {"en-US" "On this map, please mark Franklin, TN", "en-GB" "On this map, please mark Franklin, TN"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "other", "correctResponsesPattern" ["(35.937432,-86.868896)"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:37:11.997545000Z", "version" "1.0.0", "id" "adff9103-1e1f-49d9-bbd0-37f3ac186062", "timestamp" "2025-10-24T15:37:11.997545000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0c0197d6-4953-4c30-9c98-ca70b2625ca5" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "0c0197d6-4953-4c30-9c98-ca70b2625ca5", "timestamp" "2025-10-24T15:37:11.950626000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/pri", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:pri@adlnet.gov"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:11.950626000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "8a49e672-41f8-4b91-b87a-a38ce029bee3" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "8a49e672-41f8-4b91-b87a-a38ce029bee3", "timestamp" "2025-10-24T15:37:11.893960000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/pri", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:pri@adlnet.gov"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:11.893960000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "6c1ebec9-3398-49a4-bba9-7bc9b0a646c6" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "6c1ebec9-3398-49a4-bba9-7bc9b0a646c6", "timestamp" "2025-10-24T15:37:11.856156000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/pri", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:pri@adlnet.gov"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:11.856156000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "6ac83866-6587-4def-869e-c6422816c2e2" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "0e534ee1-1181-4389-b01e-be10a331cde4"}, "stored" "2025-10-24T15:37:11.801390000Z", "version" "1.0.0", "id" "6ac83866-6587-4def-869e-c6422816c2e2", "timestamp" "2025-10-24T15:37:11.801390000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "717a4dd6-82e8-46bc-94fa-a8792e462598" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "717a4dd6-82e8-46bc-94fa-a8792e462598", "stored" "2025-10-24T15:37:11.750428000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:11.750428000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8a674d2d-6690-4bdf-a7f4-0accd9718852" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/sub", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:sub@adlnet.gov"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:11.547142000Z", "version" "1.0.0", "id" "8a674d2d-6690-4bdf-a7f4-0accd9718852", "timestamp" "2025-10-24T15:37:11.547142000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4cc3310e-5584-4d29-baf6-e14c448fd9f9" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "4cc3310e-5584-4d29-baf6-e14c448fd9f9", "timestamp" "2025-10-24T15:37:11.523100000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/pri", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:pri@adlnet.gov"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:11.523100000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "071ba960-c805-4c13-b52a-9d47566a1e16" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "ad359f9d-0a9f-4a8e-a977-0d6e6101c07f"}, "stored" "2025-10-24T15:37:11.490267000Z", "version" "1.0.0", "id" "071ba960-c805-4c13-b52a-9d47566a1e16", "timestamp" "2025-10-24T15:37:11.490267000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "bb9b54aa-0883-47e7-ae4f-cdc51e9e94d5" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "bb9b54aa-0883-47e7-ae4f-cdc51e9e94d5", "stored" "2025-10-24T15:37:11.432666000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:11.432666000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "58ee562f-b850-4c91-a9de-28ed4eeb1dec" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "58ee562f-b850-4c91-a9de-28ed4eeb1dec", "stored" "2025-10-24T15:37:11.400455000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:11.400455000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "87306fe8-c510-413a-a6a3-40e1303c69d0" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:11.375555000Z", "version" "1.0.0", "id" "87306fe8-c510-413a-a6a3-40e1303c69d0", "timestamp" "2025-10-24T15:37:11.375555000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "32ee4f77-5e3c-42d7-9cb6-b41b478c0afa" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "32ee4f77-5e3c-42d7-9cb6-b41b478c0afa", "stored" "2025-10-24T15:37:11.336287000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:11.336287000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d9338a9d-37df-4dcf-93c4-da3eb4337efd" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "d9338a9d-37df-4dcf-93c4-da3eb4337efd", "stored" "2025-10-24T15:37:11.299095000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:11.299095000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "a09188ea-7a64-4f93-acba-60f0499dd87f" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "a09188ea-7a64-4f93-acba-60f0499dd87f", "stored" "2025-10-24T15:37:11.268550000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:11.268550000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "080d74b1-c27f-4bda-8bf7-3ea42764db8e" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "080d74b1-c27f-4bda-8bf7-3ea42764db8e", "stored" "2025-10-24T15:37:11.245507000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:11.245507000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c45063c1-fec7-4ebd-8a71-09c145f9d5d6" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "c45063c1-fec7-4ebd-8a71-09c145f9d5d6", "stored" "2025-10-24T15:37:11.215554000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:11.215554000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7d1c07ff-5bee-45a0-8cd3-ada269c1b93f" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:11.187869000Z", "version" "1.0.0", "id" "7d1c07ff-5bee-45a0-8cd3-ada269c1b93f", "timestamp" "2025-10-24T15:37:11.187869000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "84fd7791-ccbb-49ed-9907-f133c90f90ca" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "84fd7791-ccbb-49ed-9907-f133c90f90ca", "timestamp" "2025-10-24T15:37:11.105590000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:11.105590000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "description" {"en-US" "A test attachment (description)"}, "contentType" "image/jpeg", "length" 15770, "sha2" "4d02ef2471928d329c03be883cf0b61f0986a790641210ed8ed2e74c1d75774d"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "3594a832-a164-40de-b00d-c432ca775045" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "3594a832-a164-40de-b00d-c432ca775045", "timestamp" "2025-10-24T15:37:11.076449000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:11.076449000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "description" {"en-US" "A test attachment (description)"}, "contentType" "text/plain; charset=ascii", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "fileUrl" "http://over.there.com/file.txt"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "be87ad99-f5f5-469e-ba75-54e4fcdbf3c1" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/test/unicode/target/6d2b43ad-ce8d-4d21-b70d-d85885320ef6", "display" {"pa-IN" "ਹਾਜ਼ਰ", "sk-SK" "zúčastnil", "ja-JP" "出席した", "en-US" "attended", "en-GB" "attended", "hy-AM" "ներկա է գտնվել", "ru-RU" "участие", "ar-EG" "حضر", "ko-KR" "참석", "is-IS" "sótti", "kn-IN" "ಹಾಜರಿದ್ದರು"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/unicode", "definition" {"name" {"pa-IN" "ਹਾਜ਼ਰ", "en" "Other", "sk-SK" "zúčastnil", "ja-JP" "出席した", "en-US" "attended", "en-GB" "attended", "hy-AM" "ներկա է գտնվել", "ru-RU" "участие", "ar-EG" "حضر", "ko-KR" "참석", "is-IS" "sótti", "kn-IN" "ಹಾಜರಿದ್ದರು"}, "description" {"en-US" "On this map, please mark Franklin, TN", "en-GB" "On this map, please mark Franklin, TN"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "other", "correctResponsesPattern" ["(35.937432,-86.868896)"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:37:11.029038000Z", "version" "1.0.0", "id" "be87ad99-f5f5-469e-ba75-54e4fcdbf3c1", "timestamp" "2025-10-24T15:37:11.029038000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "dbf91012-c840-4e47-aef4-f3c444d75974" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "dbf91012-c840-4e47-aef4-f3c444d75974", "stored" "2025-10-24T15:37:10.991758000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:10.991758000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b9a919d6-65af-4254-9e68-61243dbbb0f3" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "b9a919d6-65af-4254-9e68-61243dbbb0f3", "stored" "2025-10-24T15:37:10.958061000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:10.958061000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "07627aa1-5528-4b76-af5a-2987118f920b" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:10.919149000Z", "version" "1.0.0", "id" "07627aa1-5528-4b76-af5a-2987118f920b", "timestamp" "2025-10-24T15:37:10.919149000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c33b92bf-4ae2-4e8d-98c1-937dbcfd3255" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:10.801135000Z", "version" "1.0.0", "id" "c33b92bf-4ae2-4e8d-98c1-937dbcfd3255", "timestamp" "2025-10-24T15:37:10.801135000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "14414a4d-681c-4955-a239-adf6e7bea221" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:10.737532000Z", "version" "1.0.0", "id" "14414a4d-681c-4955-a239-adf6e7bea221", "timestamp" "2025-10-24T15:37:10.737532000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4d4d95fc-f492-498e-a5e9-d79f60c36d19" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:10.650537000Z", "version" "1.0.0", "id" "4d4d95fc-f492-498e-a5e9-d79f60c36d19", "timestamp" "2025-10-24T15:37:10.650537000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "875396ae-ceb2-44a7-a322-6e2b233f13c8" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "875396ae-ceb2-44a7-a322-6e2b233f13c8", "timestamp" "2025-10-24T15:37:10.609903000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:10.609903000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "P4W"}}, "2fe0a0d5-a133-4080-8fb8-ebd6c2a159af" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "P3Y"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:10.586330000Z", "version" "1.0.0", "id" "2fe0a0d5-a133-4080-8fb8-ebd6c2a159af", "timestamp" "2025-10-24T15:37:10.586330000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "6d89aa24-19cb-4f4d-8bf1-2d5abe07d1bf" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "6d89aa24-19cb-4f4d-8bf1-2d5abe07d1bf", "timestamp" "2025-10-24T15:37:10.564080000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:10.564080000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "P3Y1M29DT4H35M59.14S"}}, "30bf6983-ed72-4b4b-b0c5-ee86201939c0" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT16559.14S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:10.540799000Z", "version" "1.0.0", "id" "30bf6983-ed72-4b4b-b0c5-ee86201939c0", "timestamp" "2025-10-24T15:37:10.540799000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "cf14860b-dc41-48ad-b98f-d8d84335e78d" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "cf14860b-dc41-48ad-b98f-d8d84335e78d", "timestamp" "2025-10-24T15:37:10.517796000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:10.517796000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT4H35M59.14S"}}, "c6c8d090-9d20-44ac-a6a7-c10e9e591894" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0.1S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:10.439584000Z", "version" "1.0.0", "id" "c6c8d090-9d20-44ac-a6a7-c10e9e591894", "timestamp" "2025-10-24T15:37:10.439584000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "10259f9f-22e3-47ca-8a1a-e6b90df59984" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "10259f9f-22e3-47ca-8a1a-e6b90df59984", "timestamp" "2025-10-24T15:37:10.416171000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:10.416171000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0.1S"}}, "41d5b348-69c2-4e04-90c0-d210616db79a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" {}}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "41d5b348-69c2-4e04-90c0-d210616db79a", "stored" "2025-10-24T15:37:10.283644000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:10.283644000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c6395157-14d5-49fe-a5a2-9087f7973577" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" nil}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "c6395157-14d5-49fe-a5a2-9087f7973577", "stored" "2025-10-24T15:37:10.260723000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:10.260723000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "80be614e-029f-4c38-872c-ee989d8c8f1e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" ""}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "80be614e-029f-4c38-872c-ee989d8c8f1e", "stored" "2025-10-24T15:37:10.238203000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:10.238203000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "3b747f0a-6dd3-4e7c-8db0-f96294b5d079" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "3b747f0a-6dd3-4e7c-8db0-f96294b5d079", "stored" "2025-10-24T15:37:10.217241000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:10.217241000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f60f5efa-8675-444e-8ae3-cf185061d59a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" {}}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "f60f5efa-8675-444e-8ae3-cf185061d59a", "stored" "2025-10-24T15:37:10.193325000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:10.193325000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "727a672c-0a5b-4643-a094-c2ab00c76ea5" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" nil}}}}, "id" "727a672c-0a5b-4643-a094-c2ab00c76ea5", "stored" "2025-10-24T15:37:10.168472000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:10.168472000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "262e55c4-ea1d-4a03-a3c5-4197668dc8d0" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" ""}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "262e55c4-ea1d-4a03-a3c5-4197668dc8d0", "stored" "2025-10-24T15:37:10.145622000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:10.145622000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7b1c0f17-ee4b-436f-8b52-9e560bc064f5" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "7b1c0f17-ee4b-436f-8b52-9e560bc064f5", "stored" "2025-10-24T15:37:10.121812000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:10.121812000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f7f4a786-6b34-4b3f-b4d4-6c4b91dfb38b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" {}}}}}, "id" "f7f4a786-6b34-4b3f-b4d4-6c4b91dfb38b", "stored" "2025-10-24T15:37:10.097622000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:10.097622000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "88bc08bf-3a91-4022-80ae-ad08d08db12c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" nil}}}}, "id" "88bc08bf-3a91-4022-80ae-ad08d08db12c", "stored" "2025-10-24T15:37:10.069835000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:10.069835000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0a6bf71f-5bf2-47ca-ad07-be152df6e266" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" ""}}}}, "id" "0a6bf71f-5bf2-47ca-ad07-be152df6e266", "stored" "2025-10-24T15:37:10.043441000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:10.043441000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9e1b1b6d-4706-4108-b481-4a467c999595" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {}}}}, "id" "9e1b1b6d-4706-4108-b481-4a467c999595", "stored" "2025-10-24T15:37:10.020145000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:10.020145000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2aeb9522-6eb3-4757-8dbd-d9875af5a431" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "2aeb9522-6eb3-4757-8dbd-d9875af5a431", "timestamp" "2025-10-24T15:37:09.996682000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" {}}}, "version" "1.0.0", "stored" "2025-10-24T15:37:09.996682000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "8a235649-7ca4-4d07-a966-898763933bc8" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "8a235649-7ca4-4d07-a966-898763933bc8", "timestamp" "2025-10-24T15:37:09.974602000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" nil}}, "version" "1.0.0", "stored" "2025-10-24T15:37:09.974602000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "30f12a2b-8bbd-4162-8152-f9093c0ab9c4" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "30f12a2b-8bbd-4162-8152-f9093c0ab9c4", "timestamp" "2025-10-24T15:37:09.952416000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" ""}}, "version" "1.0.0", "stored" "2025-10-24T15:37:09.952416000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "b600d86c-2eb9-4ab5-8259-f754e53ad84d" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "b600d86c-2eb9-4ab5-8259-f754e53ad84d", "timestamp" "2025-10-24T15:37:09.929691000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {}}, "version" "1.0.0", "stored" "2025-10-24T15:37:09.929691000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "0dd2f78f-f7c7-44a9-8dbd-f094d2efc05b" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "0dd2f78f-f7c7-44a9-8dbd-f094d2efc05b", "timestamp" "2025-10-24T15:37:09.907411000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:09.907411000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" {}}}}, "038cb93b-9202-4cb1-8904-8d94c17ff47c" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "038cb93b-9202-4cb1-8904-8d94c17ff47c", "timestamp" "2025-10-24T15:37:09.884000000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:09.884000000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" nil}}}, "c16edaf7-91ff-4755-9c81-4a071fde5647" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "c16edaf7-91ff-4755-9c81-4a071fde5647", "timestamp" "2025-10-24T15:37:09.861645000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:09.861645000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" ""}}}, "6f19c907-33ea-4efc-baed-c486b12319fb" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "6f19c907-33ea-4efc-baed-c486b12319fb", "timestamp" "2025-10-24T15:37:09.838201000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:09.838201000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {}}}, "7ae18f17-5e88-47cf-878c-54175e706e0f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" {}}}}, "id" "7ae18f17-5e88-47cf-878c-54175e706e0f", "stored" "2025-10-24T15:37:09.816183000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:09.816183000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b1a6acc7-4a44-40f2-8616-d8fd0d55170f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" nil}}}, "id" "b1a6acc7-4a44-40f2-8616-d8fd0d55170f", "stored" "2025-10-24T15:37:09.793105000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:09.793105000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "61eda9e0-cd73-4b23-b4f2-a8dd0200c017" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" ""}}}, "id" "61eda9e0-cd73-4b23-b4f2-a8dd0200c017", "stored" "2025-10-24T15:37:09.769372000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:09.769372000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "08c7091d-e4c1-4e7f-bfe5-1f531868da42" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {}}}, "id" "08c7091d-e4c1-4e7f-bfe5-1f531868da42", "stored" "2025-10-24T15:37:09.747386000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:09.747386000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "dd259ee5-eab2-4cc5-9dc5-35d3563da715" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" {}}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:09.692056000Z", "version" "1.0.0", "id" "dd259ee5-eab2-4cc5-9dc5-35d3563da715", "timestamp" "2025-10-24T15:37:09.692056000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9ba079e4-6bfe-4bfa-8a25-59b6ba1cecf4" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" nil}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:09.665482000Z", "version" "1.0.0", "id" "9ba079e4-6bfe-4bfa-8a25-59b6ba1cecf4", "timestamp" "2025-10-24T15:37:09.665482000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b858eeee-9079-43ac-acea-a6528c833de3" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" ""}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:09.641780000Z", "version" "1.0.0", "id" "b858eeee-9079-43ac-acea-a6528c833de3", "timestamp" "2025-10-24T15:37:09.641780000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "19180894-fb06-42f2-b65f-ab3cd93cd012" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:09.619608000Z", "version" "1.0.0", "id" "19180894-fb06-42f2-b65f-ab3cd93cd012", "timestamp" "2025-10-24T15:37:09.619608000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ae09c4b5-0aa9-485d-84ea-424ca20704d2" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" {}}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:09.597845000Z", "version" "1.0.0", "id" "ae09c4b5-0aa9-485d-84ea-424ca20704d2", "timestamp" "2025-10-24T15:37:09.597845000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "80d268bd-d3c3-42ec-99d4-e564867da7db" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" nil}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:09.575862000Z", "version" "1.0.0", "id" "80d268bd-d3c3-42ec-99d4-e564867da7db", "timestamp" "2025-10-24T15:37:09.575862000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "98a0ab14-793c-47fc-a74d-6866081f3f8c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" ""}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:09.553909000Z", "version" "1.0.0", "id" "98a0ab14-793c-47fc-a74d-6866081f3f8c", "timestamp" "2025-10-24T15:37:09.553909000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1ef650b3-746d-4c89-937a-045bbf52039d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:09.531999000Z", "version" "1.0.0", "id" "1ef650b3-746d-4c89-937a-045bbf52039d", "timestamp" "2025-10-24T15:37:09.531999000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f92c7152-d2f7-415d-89a6-791493ad1853" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" {}}}}}, "stored" "2025-10-24T15:37:09.510481000Z", "version" "1.0.0", "id" "f92c7152-d2f7-415d-89a6-791493ad1853", "timestamp" "2025-10-24T15:37:09.510481000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1b2f0cac-9b9a-4c07-b5bf-8fff7849adcf" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" nil}}}}, "stored" "2025-10-24T15:37:09.488627000Z", "version" "1.0.0", "id" "1b2f0cac-9b9a-4c07-b5bf-8fff7849adcf", "timestamp" "2025-10-24T15:37:09.488627000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1a3978b4-bd0b-4539-a0b1-f111471f25da" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" ""}}}}, "stored" "2025-10-24T15:37:09.465787000Z", "version" "1.0.0", "id" "1a3978b4-bd0b-4539-a0b1-f111471f25da", "timestamp" "2025-10-24T15:37:09.465787000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7ab13b50-cf70-4ff6-a0e6-891742cb507f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {}}}}, "stored" "2025-10-24T15:37:09.443766000Z", "version" "1.0.0", "id" "7ab13b50-cf70-4ff6-a0e6-891742cb507f", "timestamp" "2025-10-24T15:37:09.443766000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "412d229b-f6fa-446f-a5ba-b1644ba72d0c" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "412d229b-f6fa-446f-a5ba-b1644ba72d0c", "timestamp" "2025-10-24T15:37:09.421744000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" {}}}, "version" "1.0.0", "stored" "2025-10-24T15:37:09.421744000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "df6547a0-1539-4fa5-86e7-62bb464d9cb6" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "df6547a0-1539-4fa5-86e7-62bb464d9cb6", "timestamp" "2025-10-24T15:37:09.400246000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" nil}}, "version" "1.0.0", "stored" "2025-10-24T15:37:09.400246000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "bb33cf24-fe4c-461c-b390-c8458e471d8b" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "bb33cf24-fe4c-461c-b390-c8458e471d8b", "timestamp" "2025-10-24T15:37:09.378823000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" ""}}, "version" "1.0.0", "stored" "2025-10-24T15:37:09.378823000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "a5e11c28-5816-4695-a117-59d5d098241f" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "a5e11c28-5816-4695-a117-59d5d098241f", "timestamp" "2025-10-24T15:37:09.358623000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {}}, "version" "1.0.0", "stored" "2025-10-24T15:37:09.358623000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "00d10f03-0ff7-42ef-9f1c-160c7a0d0eef" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "00d10f03-0ff7-42ef-9f1c-160c7a0d0eef", "timestamp" "2025-10-24T15:37:09.337148000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:09.337148000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" {}}}}, "1df3dfdc-dfad-4d78-bb7a-16eb5c95b4c5" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "1df3dfdc-dfad-4d78-bb7a-16eb5c95b4c5", "timestamp" "2025-10-24T15:37:09.316039000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:09.316039000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" nil}}}, "769f391f-d80b-49ce-802d-f33ce2330842" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "769f391f-d80b-49ce-802d-f33ce2330842", "timestamp" "2025-10-24T15:37:09.294998000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:09.294998000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" ""}}}, "159a755c-aad9-42e1-975e-e756cabb24f6" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "159a755c-aad9-42e1-975e-e756cabb24f6", "timestamp" "2025-10-24T15:37:09.267299000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:09.267299000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {}}}, "fa04eb12-d6e1-4625-9106-023b789e5e3f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" {}}}}, "stored" "2025-10-24T15:37:09.241656000Z", "version" "1.0.0", "id" "fa04eb12-d6e1-4625-9106-023b789e5e3f", "timestamp" "2025-10-24T15:37:09.241656000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b7792a94-82fd-4c3e-97c7-6dd5980e7a0a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" nil}}}, "stored" "2025-10-24T15:37:09.221388000Z", "version" "1.0.0", "id" "b7792a94-82fd-4c3e-97c7-6dd5980e7a0a", "timestamp" "2025-10-24T15:37:09.221388000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "65898944-4806-4ab0-96c6-8f6248ca658e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" ""}}}, "stored" "2025-10-24T15:37:09.200195000Z", "version" "1.0.0", "id" "65898944-4806-4ab0-96c6-8f6248ca658e", "timestamp" "2025-10-24T15:37:09.200195000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "af10194d-2b28-451a-9f13-6934a85647f1" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {}}}, "stored" "2025-10-24T15:37:09.178440000Z", "version" "1.0.0", "id" "af10194d-2b28-451a-9f13-6934a85647f1", "timestamp" "2025-10-24T15:37:09.178440000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "530b1d9f-2140-4c16-b759-8e5840f45816" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" "valid"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:09.157862000Z", "version" "1.0.0", "id" "530b1d9f-2140-4c16-b759-8e5840f45816", "timestamp" "2025-10-24T15:37:09.157862000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8a546714-812d-498a-857e-f84fd550d8be" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" {"key" "valid"}}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:09.138743000Z", "version" "1.0.0", "id" "8a546714-812d-498a-857e-f84fd550d8be", "timestamp" "2025-10-24T15:37:09.138743000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c7e9b3e7-42a7-4f38-8ab3-0ae656afe7ce" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" 12345}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:09.118132000Z", "version" "1.0.0", "id" "c7e9b3e7-42a7-4f38-8ab3-0ae656afe7ce", "timestamp" "2025-10-24T15:37:09.118132000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "663d4ce2-cb34-4e6a-a06c-c31b3ce79b19" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" true}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:09.098108000Z", "version" "1.0.0", "id" "663d4ce2-cb34-4e6a-a06c-c31b3ce79b19", "timestamp" "2025-10-24T15:37:09.098108000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "374ecdf5-d95b-4321-bf41-76fa62e45b6c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" "valid"}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:09.078927000Z", "version" "1.0.0", "id" "374ecdf5-d95b-4321-bf41-76fa62e45b6c", "timestamp" "2025-10-24T15:37:09.078927000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "259e1921-c278-4a45-8f2f-561f949175e5" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" {"key" "valid"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:09.057782000Z", "version" "1.0.0", "id" "259e1921-c278-4a45-8f2f-561f949175e5", "timestamp" "2025-10-24T15:37:09.057782000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "a0beb86a-033b-4527-8386-cc4a8acd7e7b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" 12345}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:09.035755000Z", "version" "1.0.0", "id" "a0beb86a-033b-4527-8386-cc4a8acd7e7b", "timestamp" "2025-10-24T15:37:09.035755000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "62cb3950-4a59-4f6f-a364-7add73e013b4" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" true}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:09.014852000Z", "version" "1.0.0", "id" "62cb3950-4a59-4f6f-a364-7add73e013b4", "timestamp" "2025-10-24T15:37:09.014852000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "89a0eac9-e804-48b5-b0d3-d30ee279cf26" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" "valid"}}}}, "stored" "2025-10-24T15:37:08.994491000Z", "version" "1.0.0", "id" "89a0eac9-e804-48b5-b0d3-d30ee279cf26", "timestamp" "2025-10-24T15:37:08.994491000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "55e61ff5-7371-4951-947c-81c1c9260b40" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" {"key" "valid"}}}}}, "stored" "2025-10-24T15:37:08.973515000Z", "version" "1.0.0", "id" "55e61ff5-7371-4951-947c-81c1c9260b40", "timestamp" "2025-10-24T15:37:08.973515000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d809e305-c8fa-4923-9ce0-0d66b406ab85" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" 12345}}}}, "stored" "2025-10-24T15:37:08.952875000Z", "version" "1.0.0", "id" "d809e305-c8fa-4923-9ce0-0d66b406ab85", "timestamp" "2025-10-24T15:37:08.952875000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c5d1a14b-c4be-4ff9-bf65-0b6c5256fc0d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" true}}}}, "stored" "2025-10-24T15:37:08.932183000Z", "version" "1.0.0", "id" "c5d1a14b-c4be-4ff9-bf65-0b6c5256fc0d", "timestamp" "2025-10-24T15:37:08.932183000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "349316b6-bf17-49db-903f-87bace45c30a" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "349316b6-bf17-49db-903f-87bace45c30a", "timestamp" "2025-10-24T15:37:08.911916000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" "valid"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:08.911916000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "fb0be7d8-13b3-4acb-bdf3-5decb8573c88" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "fb0be7d8-13b3-4acb-bdf3-5decb8573c88", "timestamp" "2025-10-24T15:37:08.891894000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" {"key" "valid"}}}, "version" "1.0.0", "stored" "2025-10-24T15:37:08.891894000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "6cd75ddc-38f5-496b-a36b-bbabe8b35b18" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "6cd75ddc-38f5-496b-a36b-bbabe8b35b18", "timestamp" "2025-10-24T15:37:08.868836000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" 12345}}, "version" "1.0.0", "stored" "2025-10-24T15:37:08.868836000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "63f49aac-bba2-416e-ae5d-0fc1adba4722" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "63f49aac-bba2-416e-ae5d-0fc1adba4722", "timestamp" "2025-10-24T15:37:08.842907000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" true}}, "version" "1.0.0", "stored" "2025-10-24T15:37:08.842907000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "b57b7707-84a8-4fea-8e2b-942bf5bf5f08" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "b57b7707-84a8-4fea-8e2b-942bf5bf5f08", "timestamp" "2025-10-24T15:37:08.819633000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:08.819633000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" "valid"}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "dccda7a2-dd0e-47d6-962b-e128794cc280" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "dccda7a2-dd0e-47d6-962b-e128794cc280", "timestamp" "2025-10-24T15:37:08.799887000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:08.799887000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" {"key" "valid"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "bef4c90c-1b44-452c-b8a0-c08ddd792db6" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "bef4c90c-1b44-452c-b8a0-c08ddd792db6", "timestamp" "2025-10-24T15:37:08.780078000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:08.780078000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" 12345}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "384156af-9dd9-417e-81a5-1af5ccaa43ed" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "384156af-9dd9-417e-81a5-1af5ccaa43ed", "timestamp" "2025-10-24T15:37:08.760036000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:08.760036000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" true}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "de3f06b5-59f4-408d-a7d9-1bbf25152b9d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" "valid"}}}, "stored" "2025-10-24T15:37:08.740673000Z", "version" "1.0.0", "id" "de3f06b5-59f4-408d-a7d9-1bbf25152b9d", "timestamp" "2025-10-24T15:37:08.740673000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f9721793-91c9-4ae5-9e4c-7cb1c3c7ea8d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" {"key" "valid"}}}}, "stored" "2025-10-24T15:37:08.722552000Z", "version" "1.0.0", "id" "f9721793-91c9-4ae5-9e4c-7cb1c3c7ea8d", "timestamp" "2025-10-24T15:37:08.722552000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e03cf6e9-cc3d-411a-815c-bc6cc52ca523" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" 12345}}}, "stored" "2025-10-24T15:37:08.703849000Z", "version" "1.0.0", "id" "e03cf6e9-cc3d-411a-815c-bc6cc52ca523", "timestamp" "2025-10-24T15:37:08.703849000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "cbf6b7ff-f9ad-46a4-b88c-ab9f2d248f27" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" true}}}, "stored" "2025-10-24T15:37:08.684959000Z", "version" "1.0.0", "id" "cbf6b7ff-f9ad-46a4-b88c-ab9f2d248f27", "timestamp" "2025-10-24T15:37:08.684959000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "da34c1f7-a5e8-4563-9895-2840a39af22c" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "da34c1f7-a5e8-4563-9895-2840a39af22c", "timestamp" "2025-10-24T15:37:08.658622000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:08.658622000Z", "attachments" [{"usageType" "http://adlnet.gov/expapi/attachments/signature", "display" {"en-US" "Signed by the Test Suite"}, "description" {"en-US" "Signed by the Test Suite"}, "contentType" "application/octet-stream", "length" 796, "sha2" "85779827407b58557929046e0428dc810b6d05f0d2ed22247683df49f562eb68"}], "actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}}, "3ec8f826-6529-461e-a3e2-f2ca5837ad37" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "3ec8f826-6529-461e-a3e2-f2ca5837ad37", "timestamp" "2025-10-24T15:37:08.636260000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:08.636260000Z", "attachments" [{"usageType" "http://adlnet.gov/expapi/attachments/signature", "display" {"en-US" "Signed by the Test Suite"}, "description" {"en-US" "Signed by the Test Suite"}, "contentType" "application/octet-stream", "length" 796, "sha2" "7e916e56b1e4ba8e6cbfcbf35f23a8fed6b8a1d337c7e3ef0646dae1337ff140"}], "actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}}, "ef30206a-ce5b-4071-993a-fb83ba4d1bd1" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "ef30206a-ce5b-4071-993a-fb83ba4d1bd1", "timestamp" "2025-10-24T15:37:08.616337000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:08.616337000Z", "attachments" [{"usageType" "http://adlnet.gov/expapi/attachments/signature", "display" {"en-US" "Signed by the Test Suite"}, "description" {"en-US" "Signed by the Test Suite"}, "contentType" "application/octet-stream", "length" 796, "sha2" "eea247d50f3b17f898fdb9238b079cfdcd37fb413268b3e91202463e6db03ff0"}], "actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}}, "24962705-e8c6-4156-b3cf-609cf8645a01" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:82db6360-a278-4b0f-bfab-6db60ccc79c7@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended223b7ad9-ef9c-45f4-b95c-d55279b1b341", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:0f2ad040-9ef0-44b1-ad6f-6b88cdf20883@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported8b1d0831-dd0d-4b17-bafa-040390d638c4", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/sub", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:sub@adlnet.gov"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534e62a2c1e-2af6-4c21-80ea-d9716f89cba0"}}, "stored" "2025-10-24T15:37:08.530505000Z", "version" "1.0.0", "id" "24962705-e8c6-4156-b3cf-609cf8645a01", "timestamp" "2025-10-24T15:37:08.530505000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e61e0ef7-8f10-4ad4-95e3-063a8a6e30e1" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534bd75714f-c963-4dfb-b2e6-12dd131b1c3a"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attendedc5c82f22-eb21-46bf-b9b6-edfe15f6251f", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "e61e0ef7-8f10-4ad4-95e3-063a8a6e30e1", "timestamp" "2025-10-24T15:37:08.489974000Z", "context" {"registration" "a5cc4d63-8536-4789-a5f0-2add4016f337", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/pri", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:cb69284e-0765-4b43-bfb6-cd9ef12fc871@adlnet.gov"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:08.489974000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:65492239-d4e4-426c-ba64-ffaf9f6a8ec5@adlnet.gov"}}, "0687cb0e-3007-438a-9a76-ccc21cbb9141" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:07.418297001Z", "version" "1.0.0", "id" "0687cb0e-3007-438a-9a76-ccc21cbb9141", "timestamp" "2025-10-24T15:37:07.418297001Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e2f80df8-78ff-4c8b-9590-fd3aa2cfab03" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:07.418297000Z", "version" "1.0.0", "id" "e2f80df8-78ff-4c8b-9590-fd3aa2cfab03", "timestamp" "2025-10-24T15:37:07.418297000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "12ee092e-988e-4a51-a94d-3654762d7072" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/test/more/target/two", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "12ee092e-988e-4a51-a94d-3654762d7072", "stored" "2025-10-24T15:37:07.374252001Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:07.374252001Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "fd3cccf9-b5ad-4b1c-83d8-16f88b3b7da3" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/test/more/target/one", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "fd3cccf9-b5ad-4b1c-83d8-16f88b3b7da3", "stored" "2025-10-24T15:37:07.374252000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:07.374252000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "3e56ac77-b0e0-4940-a713-2fcdf8e51f6b" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:07.347067001Z", "version" "1.0.0", "id" "3e56ac77-b0e0-4940-a713-2fcdf8e51f6b", "timestamp" "2025-10-24T15:37:07.347067001Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "936c8e64-cc19-478a-8908-530e507bdcee" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:07.347067000Z", "version" "1.0.0", "id" "936c8e64-cc19-478a-8908-530e507bdcee", "timestamp" "2025-10-24T15:37:07.347067000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2ee037c6-0582-4418-87eb-51fd148640f7" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "2ee037c6-0582-4418-87eb-51fd148640f7", "timestamp" "2025-10-24T15:37:07.266143000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:07.266143000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "description" {"en-US" "A test attachment (description)"}, "contentType" "text/plain; charset=ascii", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "fileUrl" "http://over.there.com/file.txt"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "03a1205c-ae39-449d-8ad0-4424fe860b08" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "version" "1.0.9", "stored" "2025-10-24T15:37:07.231412000Z", "id" "03a1205c-ae39-449d-8ad0-4424fe860b08", "timestamp" "2025-10-24T15:37:07.231412000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "67ff8d8c-3f21-4f6f-8db2-6a6e60ba5ac7" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "version" "1.0", "stored" "2025-10-24T15:37:07.212879000Z", "id" "67ff8d8c-3f21-4f6f-8db2-6a6e60ba5ac7", "timestamp" "2025-10-24T15:37:07.212879000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d80707fc-e2ad-413a-b78e-246d7c12e65c" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "d80707fc-e2ad-413a-b78e-246d7c12e65c", "version" "1.0.3", "stored" "2025-10-24T15:37:07.184358000Z", "timestamp" "2025-10-24T15:37:07.184358000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "54352e92-612f-4ecd-859b-e83931dab21e" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "54352e92-612f-4ecd-859b-e83931dab21e", "stored" "2025-10-24T15:37:07.153294000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:07.153294000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "6d2ba3e6-1316-492f-a637-d7c10625b43c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:07.120108000Z", "version" "1.0.0", "id" "6d2ba3e6-1316-492f-a637-d7c10625b43c", "timestamp" "2025-10-24T15:37:07.120108000Z"}, "d56f4c13-9cfb-4a0f-9f1d-f62546ab9e47" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:07.050403000Z", "version" "1.0.0", "id" "d56f4c13-9cfb-4a0f-9f1d-f62546ab9e47", "timestamp" "2025-10-24T15:37:07.050403000Z"}, "b287e6e8-ce92-43c7-b819-65175a18528c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:07.026676000Z", "version" "1.0.0", "id" "b287e6e8-ce92-43c7-b819-65175a18528c", "timestamp" "2025-10-24T15:37:07.026676000Z"}, "f997b824-4d51-42c7-ad7f-f5ad3a5ddffe" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:06.979096000Z", "id" "f997b824-4d51-42c7-ad7f-f5ad3a5ddffe", "version" "1.0.0", "timestamp" "2025-10-24T15:37:06.979096000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9d6d399d-265b-4b7f-81d1-0a302281cead" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:06.949622000Z", "version" "1.0.0", "id" "9d6d399d-265b-4b7f-81d1-0a302281cead", "timestamp" "2025-10-24T15:37:06.949622000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "41258e48-361b-4d3a-ad6a-64a019c99e71" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "timestamp" "2030-10-24T15:36:58.705Z"}, "stored" "2025-10-24T15:37:06.930943000Z", "version" "1.0.0", "id" "41258e48-361b-4d3a-ad6a-64a019c99e71", "timestamp" "2025-10-24T15:37:06.930943000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "01de176a-f43f-4112-8dfd-e65c7d313e78" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "timestamp" "2030-10-24T15:36:58.705Z", "stored" "2025-10-24T15:37:06.896602000Z", "version" "1.0.0", "id" "01de176a-f43f-4112-8dfd-e65c7d313e78", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "66d2b0c8-1342-4a9e-b0e8-fdb12e25ddc7" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "66d2b0c8-1342-4a9e-b0e8-fdb12e25ddc7", "stored" "2025-10-24T15:37:06.849800000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:06.849800000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4214a9a8-405b-420c-9240-679249cca9bc" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "4214a9a8-405b-420c-9240-679249cca9bc", "stored" "2025-10-24T15:37:06.819565000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:06.819565000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "13a553d3-bc60-42c6-bb65-25e7109a7e3d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "13a553d3-bc60-42c6-bb65-25e7109a7e3d", "stored" "2025-10-24T15:37:06.788292000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:06.788292000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e1a92a88-3e35-4f34-9a48-927ace8163ad" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "e1a92a88-3e35-4f34-9a48-927ace8163ad", "stored" "2025-10-24T15:37:06.759175000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:06.759175000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8ef0c7c3-f68d-489a-a0fe-bd8b2cd7bdfb" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "8ef0c7c3-f68d-489a-a0fe-bd8b2cd7bdfb", "timestamp" "2025-10-24T15:37:06.728925000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "1.0.0", "stored" "2025-10-24T15:37:06.728925000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "9795dfbf-84c6-40d3-84b9-a901091aff8f" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "9795dfbf-84c6-40d3-84b9-a901091aff8f", "timestamp" "2025-10-24T15:37:06.698823000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "1.0.0", "stored" "2025-10-24T15:37:06.698823000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "b3c65c73-ff97-4efb-9f92-1bd892239651" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "b3c65c73-ff97-4efb-9f92-1bd892239651", "timestamp" "2025-10-24T15:37:06.658199000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "1.0.0", "stored" "2025-10-24T15:37:06.658199000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "42bb542d-07de-4046-8c81-e87b73a7ba6e" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "42bb542d-07de-4046-8c81-e87b73a7ba6e", "timestamp" "2025-10-24T15:37:06.624595000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "1.0.0", "stored" "2025-10-24T15:37:06.624595000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "1fec00cd-c88e-4835-89ef-f6106c166152" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:06.599782000Z", "version" "1.0.0", "id" "1fec00cd-c88e-4835-89ef-f6106c166152", "timestamp" "2025-10-24T15:37:06.599782000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "db30621e-e55e-4f22-9466-8f735a5326b0" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:06.582897000Z", "version" "1.0.0", "id" "db30621e-e55e-4f22-9466-8f735a5326b0", "timestamp" "2025-10-24T15:37:06.582897000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "898db762-db7e-49cc-8933-86e9dc9afbdd" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:06.563216000Z", "version" "1.0.0", "id" "898db762-db7e-49cc-8933-86e9dc9afbdd", "timestamp" "2025-10-24T15:37:06.563216000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "75aba421-8209-43f7-a4ff-aefd22dcb444" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:06.545355000Z", "version" "1.0.0", "id" "75aba421-8209-43f7-a4ff-aefd22dcb444", "timestamp" "2025-10-24T15:37:06.545355000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c3666266-b242-4818-b356-54b9ff6a5aa4" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "c3666266-b242-4818-b356-54b9ff6a5aa4", "timestamp" "2025-10-24T15:37:06.521444000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}]}}, "version" "1.0.0", "stored" "2025-10-24T15:37:06.521444000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "74e8237c-9ef0-4c0c-9ba4-416be85ab66d" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "74e8237c-9ef0-4c0c-9ba4-416be85ab66d", "timestamp" "2025-10-24T15:37:06.503643000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}]}}, "version" "1.0.0", "stored" "2025-10-24T15:37:06.503643000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "75c560dd-05bf-4200-934f-effcb60f75c8" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "75c560dd-05bf-4200-934f-effcb60f75c8", "timestamp" "2025-10-24T15:37:06.485479000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}]}}, "version" "1.0.0", "stored" "2025-10-24T15:37:06.485479000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "b77fd6f5-2f0d-48c0-b3da-b4ac1a415f8d" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "b77fd6f5-2f0d-48c0-b3da-b4ac1a415f8d", "timestamp" "2025-10-24T15:37:06.466305000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}]}}, "version" "1.0.0", "stored" "2025-10-24T15:37:06.466305000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "514a85a3-0b38-40a5-b2be-36d4679c5ba9" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}], "category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}], "grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}], "parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:06.440902000Z", "version" "1.0.0", "id" "514a85a3-0b38-40a5-b2be-36d4679c5ba9", "timestamp" "2025-10-24T15:37:06.440902000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e25bbd14-ce37-44ef-ad7a-1109d8570016" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:06.423404000Z", "version" "1.0.0", "id" "e25bbd14-ce37-44ef-ad7a-1109d8570016", "timestamp" "2025-10-24T15:37:06.423404000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1e9b39f5-c95e-415c-b89f-9e631c0c8c0b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:06.402961000Z", "version" "1.0.0", "id" "1e9b39f5-c95e-415c-b89f-9e631c0c8c0b", "timestamp" "2025-10-24T15:37:06.402961000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5705c78e-bfc4-4e2a-a7dc-d8eeeeb45a2d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:06.384637000Z", "version" "1.0.0", "id" "5705c78e-bfc4-4e2a-a7dc-d8eeeeb45a2d", "timestamp" "2025-10-24T15:37:06.384637000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "3d51663b-1d78-4c43-a4b3-53c8bc9e2073" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:06.366613000Z", "version" "1.0.0", "id" "3d51663b-1d78-4c43-a4b3-53c8bc9e2073", "timestamp" "2025-10-24T15:37:06.366613000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8f4fd35a-b615-4595-8f3b-2d836d98a7b0" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "8f4fd35a-b615-4595-8f3b-2d836d98a7b0", "timestamp" "2025-10-24T15:37:06.341651000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}], "category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}], "grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}], "parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "1.0.0", "stored" "2025-10-24T15:37:06.341651000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "23800bf3-6cd8-4562-91ee-006331a16ca4" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "23800bf3-6cd8-4562-91ee-006331a16ca4", "timestamp" "2025-10-24T15:37:06.323871000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "1.0.0", "stored" "2025-10-24T15:37:06.323871000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "95d962de-66e3-4e3f-a7da-91759d30d9fb" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "95d962de-66e3-4e3f-a7da-91759d30d9fb", "timestamp" "2025-10-24T15:37:06.306164000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "1.0.0", "stored" "2025-10-24T15:37:06.306164000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "db6a174d-e863-4065-87ab-60f0a5e351df" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "db6a174d-e863-4065-87ab-60f0a5e351df", "timestamp" "2025-10-24T15:37:06.290650000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "1.0.0", "stored" "2025-10-24T15:37:06.290650000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "e99a7950-94d8-4f4a-a85e-e37d162eb183" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "e99a7950-94d8-4f4a-a85e-e37d162eb183", "timestamp" "2025-10-24T15:37:06.270995000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "1.0.0", "stored" "2025-10-24T15:37:06.270995000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "c926d743-6891-470f-b936-bc4f904fcbeb" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "object" {"id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:06.205107000Z", "version" "1.0.0", "id" "c926d743-6891-470f-b936-bc4f904fcbeb", "timestamp" "2025-10-24T15:37:06.205107000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "55203c9d-dc6d-499a-b43f-d011c52963f4" {"object" {"id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "55203c9d-dc6d-499a-b43f-d011c52963f4", "timestamp" "2025-10-24T15:37:06.170682000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "version" "1.0.0", "stored" "2025-10-24T15:37:06.170682000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "d1ba7d0b-a81a-4e61-800f-ad8ba852a0a8" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "object" {"id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:06.106881000Z", "version" "1.0.0", "id" "d1ba7d0b-a81a-4e61-800f-ad8ba852a0a8", "timestamp" "2025-10-24T15:37:06.106881000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5e579b51-f0ac-4bc3-a64d-358ce019aaa7" {"object" {"id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "5e579b51-f0ac-4bc3-a64d-358ce019aaa7", "timestamp" "2025-10-24T15:37:06.069363000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "version" "1.0.0", "stored" "2025-10-24T15:37:06.069363000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "8dc950bd-331f-4dd0-80a0-a0cdda70fa8c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100.6767676}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:05.901481000Z", "version" "1.0.0", "id" "8dc950bd-331f-4dd0-80a0-a0cdda70fa8c", "timestamp" "2025-10-24T15:37:05.901481000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "30a0cc95-8a3d-4621-aa13-5816cd8d68df" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "30a0cc95-8a3d-4621-aa13-5816cd8d68df", "timestamp" "2025-10-24T15:37:05.884613000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:05.884613000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100.6767676}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "6009573f-dfa4-4a0b-ad38-1c09389cd790" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0.6767676, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:05.856090000Z", "version" "1.0.0", "id" "6009573f-dfa4-4a0b-ad38-1c09389cd790", "timestamp" "2025-10-24T15:37:05.856090000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d3a380b0-81af-4953-be5b-68aac4b47f0d" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "d3a380b0-81af-4953-be5b-68aac4b47f0d", "timestamp" "2025-10-24T15:37:05.839631000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:05.839631000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0.6767676, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "8dd20484-edc3-4680-9985-9c5831375252" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 0.6767676, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:05.797877000Z", "version" "1.0.0", "id" "8dd20484-edc3-4680-9985-9c5831375252", "timestamp" "2025-10-24T15:37:05.797877000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "84160f5e-19fa-4d8b-bed5-dfaf3fcb44c5" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "84160f5e-19fa-4d8b-bed5-dfaf3fcb44c5", "timestamp" "2025-10-24T15:37:05.780958000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:05.780958000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 0.6767676, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "22c178c2-80d4-487f-a6d5-d1e9b054f82b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" -1, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:05.746662000Z", "version" "1.0.0", "id" "22c178c2-80d4-487f-a6d5-d1e9b054f82b", "timestamp" "2025-10-24T15:37:05.746662000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7f3aae5c-5d0e-438e-b642-e40142d5ceea" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "7f3aae5c-5d0e-438e-b642-e40142d5ceea", "timestamp" "2025-10-24T15:37:05.728030000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:05.728030000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 1, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "8cd67779-7b65-47cf-8b8f-640719998fbe" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.6767676, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:05.712907000Z", "version" "1.0.0", "id" "8cd67779-7b65-47cf-8b8f-640719998fbe", "timestamp" "2025-10-24T15:37:05.712907000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "6112123b-bf1c-4655-97ff-b7886c26b4ea" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "6112123b-bf1c-4655-97ff-b7886c26b4ea", "timestamp" "2025-10-24T15:37:05.696288000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:05.696288000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.6767676, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "a6a48b83-942f-4075-bb86-0034f5825e3c" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "a6a48b83-942f-4075-bb86-0034f5825e3c", "timestamp" "2025-10-24T15:37:05.627401000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:05.627401000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "P4W"}}, "1723f695-2507-476c-b101-ad6de6193068" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "P3Y"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:05.610280000Z", "version" "1.0.0", "id" "1723f695-2507-476c-b101-ad6de6193068", "timestamp" "2025-10-24T15:37:05.610280000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "a7392e56-ee69-4456-8262-b0a7e5f2e2dc" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "a7392e56-ee69-4456-8262-b0a7e5f2e2dc", "timestamp" "2025-10-24T15:37:05.594885000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:05.594885000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "P3Y1M29DT4H35M59.14S"}}, "46a1a23a-bbd2-4582-bd44-1476253a162c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT16559.14S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:05.578578000Z", "version" "1.0.0", "id" "46a1a23a-bbd2-4582-bd44-1476253a162c", "timestamp" "2025-10-24T15:37:05.578578000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "3458e8b8-2217-440c-8eab-d629bbe58bc9" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "3458e8b8-2217-440c-8eab-d629bbe58bc9", "timestamp" "2025-10-24T15:37:05.561536000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:05.561536000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT4H35M59.14S"}}, "a5cb2d2b-32fb-499f-98c3-06cfcb539155" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0.1S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:05.545359000Z", "version" "1.0.0", "id" "a5cb2d2b-32fb-499f-98c3-06cfcb539155", "timestamp" "2025-10-24T15:37:05.545359000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f1842a58-db3c-4548-9a1a-9c5ac22ceaa6" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "f1842a58-db3c-4548-9a1a-9c5ac22ceaa6", "timestamp" "2025-10-24T15:37:05.528426000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:05.528426000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0.1S"}}, "028c6105-5594-4022-a80f-56f84ecd17ac" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}}, "stored" "2025-10-24T15:37:05.353181000Z", "version" "1.0.0", "id" "028c6105-5594-4022-a80f-56f84ecd17ac", "timestamp" "2025-10-24T15:37:05.353181000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "952a4ebb-a2a8-40cb-bbf2-27e6aeb63e09" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}}, "stored" "2025-10-24T15:37:05.337488000Z", "version" "1.0.0", "id" "952a4ebb-a2a8-40cb-bbf2-27e6aeb63e09", "timestamp" "2025-10-24T15:37:05.337488000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c9ad47aa-1fcb-4a95-a1da-19cb6556a5c3" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "StatementRef", "id" "8f87ccde-bb56-4c2e-ab83-44982ef22df0"}}, "stored" "2025-10-24T15:37:05.322173000Z", "version" "1.0.0", "id" "c9ad47aa-1fcb-4a95-a1da-19cb6556a5c3", "timestamp" "2025-10-24T15:37:05.322173000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "01f1b310-93aa-4521-ac34-3fd6aac9aa32" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:05.306043000Z", "version" "1.0.0", "id" "01f1b310-93aa-4521-ac34-3fd6aac9aa32", "timestamp" "2025-10-24T15:37:05.306043000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d30c6e58-63c7-4c64-8fc3-56f611a65ad5" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:05.286531000Z", "version" "1.0.0", "id" "d30c6e58-63c7-4c64-8fc3-56f611a65ad5", "timestamp" "2025-10-24T15:37:05.286531000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "89f27a4a-e216-4a06-8ce0-04ebabdbe44a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Other"}, "description" {"en" "On this map, please mark Franklin, TN"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "other", "correctResponsesPattern" ["(35.937432,-86.868896)"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:37:05.111694000Z", "version" "1.0.0", "id" "89f27a4a-e216-4a06-8ce0-04ebabdbe44a", "timestamp" "2025-10-24T15:37:05.111694000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "538cee77-7b9d-4f7b-8481-2a2899be6488" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Numeric"}, "description" {"en" "How many jokes is Chris the butt of each day?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "numeric", "correctResponsesPattern" ["4[:]"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:37:05.094029000Z", "version" "1.0.0", "id" "538cee77-7b9d-4f7b-8481-2a2899be6488", "timestamp" "2025-10-24T15:37:05.094029000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b31c7293-5b5a-4554-9e82-6f92cf19aa52" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Likert"}, "description" {"en" "How awesome is Experience API?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "likert", "correctResponsesPattern" ["likert_3"], "scale" [{"id" "likert_0", "description" {"en-US" "It's OK"}} {"id" "likert_1", "description" {"en-US" "It's Pretty Cool"}} {"id" "likert_2", "description" {"en-US" "It's Damn Cool"}} {"id" "likert_3", "description" {"en-US" "It's Gonna Change the World"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:37:05.077555000Z", "version" "1.0.0", "id" "b31c7293-5b5a-4554-9e82-6f92cf19aa52", "timestamp" "2025-10-24T15:37:05.077555000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8b0de774-e848-486f-b92b-85a0e3b9ba65" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Sequencing"}, "description" {"en" "Order players by their pong ladder position:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "sequencing", "correctResponsesPattern" ["tim[,]mike[,]ells[,]ben"], "choices" [{"id" "tim", "description" {"en-US" "Tim"}} {"id" "ben", "description" {"en-US" "Ben"}} {"id" "ells", "description" {"en-US" "Ells"}} {"id" "mike", "description" {"en-US" "Mike"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:37:05.061571000Z", "version" "1.0.0", "id" "8b0de774-e848-486f-b92b-85a0e3b9ba65", "timestamp" "2025-10-24T15:37:05.061571000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "097e8656-141e-4f08-8519-8d72a3ce0c42" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Performance"}, "description" {"en" "This interaction measures performance over a day of RS sports:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "performance", "correctResponsesPattern" ["pong[.]1:[,]dg[.]:10[,]lunch[.]"], "steps" [{"id" "pong", "description" {"en-US" "Net pong matches won"}} {"id" "dg", "description" {"en-US" "Strokes over par in disc golf at Liberty"}} {"id" "lunch", "description" {"en-US" "Lunch having been eaten"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:37:05.045126000Z", "version" "1.0.0", "id" "097e8656-141e-4f08-8519-8d72a3ce0c42", "timestamp" "2025-10-24T15:37:05.045126000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9c0ccacf-0698-4a3b-ae1c-7af1e2721cca" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "matching", "name" {"en" "Matching"}, "source" [{"id" "ben", "description" {"en-US" "Ben"}} {"id" "chris", "description" {"en-US" "Chris"}} {"id" "troy", "description" {"en-US" "Troy"}} {"id" "freddie", "description" {"en-US" "Freddie"}}], "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "target" [{"id" "1", "description" {"en-US" "Swift Kick in the Grass"}} {"id" "2", "description" {"en-US" "We got Runs"}} {"id" "3", "description" {"en-US" "Duck"}} {"id" "4", "description" {"en-US" "Van Delay Industries"}}], "correctResponsesPattern" ["ben[.]3[,]chris[.]2[,]troy[.]4[,]freddie[.]1"], "description" {"en" "Match these people to their kickball team:"}}}}, "stored" "2025-10-24T15:37:05.028086000Z", "version" "1.0.0", "id" "9c0ccacf-0698-4a3b-ae1c-7af1e2721cca", "timestamp" "2025-10-24T15:37:05.028086000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0c31b36f-f52d-49c7-b832-557311a5f3ff" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Long-Fill-In"}, "description" {"en" "What is the purpose of the xAPI?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "long-fill-in", "correctResponsesPattern" ["{case_matters=false}{lang=en}To store and provide access to learning experiences."], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:37:05.011958000Z", "version" "1.0.0", "id" "0c31b36f-f52d-49c7-b832-557311a5f3ff", "timestamp" "2025-10-24T15:37:05.011958000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "62b44c60-e14b-4c5c-b8e5-edea17137511" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Fill-In"}, "description" {"en" "Ben is often heard saying:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "fill-in", "correctResponsesPattern" ["Bob's your uncle"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:37:04.996769000Z", "version" "1.0.0", "id" "62b44c60-e14b-4c5c-b8e5-edea17137511", "timestamp" "2025-10-24T15:37:04.996769000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b7fedeab-2d10-4883-b3d4-c2776ef77f9f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Choice"}, "description" {"en" "Which of these prototypes are available at the beta site?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "choice", "correctResponsesPattern" ["golf[,]tetris"], "choices" [{"id" "golf", "description" {"en-US" "Golf Example"}} {"id" "facebook", "description" {"en-US" "Facebook App"}} {"id" "tetris", "description" {"en-US" "Tetris Example"}} {"id" "scrabble", "description" {"en-US" "Scrabble Example"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:37:04.981761000Z", "version" "1.0.0", "id" "b7fedeab-2d10-4883-b3d4-c2776ef77f9f", "timestamp" "2025-10-24T15:37:04.981761000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "29d970d6-d366-4b3c-b25c-9a36bcfa26e3" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "True-False"}, "description" {"en" "Does the xAPI include the concept of statements?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "true-false", "correctResponsesPattern" ["true"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:37:04.966142000Z", "version" "1.0.0", "id" "29d970d6-d366-4b3c-b25c-9a36bcfa26e3", "timestamp" "2025-10-24T15:37:04.966142000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9464edd0-1450-4132-b452-1e9ab9a112da" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Other"}, "description" {"en" "On this map, please mark Franklin, TN"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "other", "correctResponsesPattern" ["(35.937432,-86.868896)"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:37:04.932484000Z", "version" "1.0.0", "id" "9464edd0-1450-4132-b452-1e9ab9a112da", "timestamp" "2025-10-24T15:37:04.932484000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "3976ffba-3f8d-422e-9b88-1330d3b4fb5a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Numeric"}, "description" {"en" "How many jokes is Chris the butt of each day?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "numeric", "correctResponsesPattern" ["4[:]"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:37:04.917600000Z", "version" "1.0.0", "id" "3976ffba-3f8d-422e-9b88-1330d3b4fb5a", "timestamp" "2025-10-24T15:37:04.917600000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ef66f6f3-b013-4848-9318-fb4cde0dd094" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Likert"}, "description" {"en" "How awesome is Experience API?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "likert", "correctResponsesPattern" ["likert_3"], "scale" [{"id" "likert_0", "description" {"en-US" "It's OK"}} {"id" "likert_1", "description" {"en-US" "It's Pretty Cool"}} {"id" "likert_2", "description" {"en-US" "It's Damn Cool"}} {"id" "likert_3", "description" {"en-US" "It's Gonna Change the World"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:37:04.897642000Z", "version" "1.0.0", "id" "ef66f6f3-b013-4848-9318-fb4cde0dd094", "timestamp" "2025-10-24T15:37:04.897642000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "bfd41478-e634-4729-95fd-df5c65e4c743" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Sequencing"}, "description" {"en" "Order players by their pong ladder position:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "sequencing", "correctResponsesPattern" ["tim[,]mike[,]ells[,]ben"], "choices" [{"id" "tim", "description" {"en-US" "Tim"}} {"id" "ben", "description" {"en-US" "Ben"}} {"id" "ells", "description" {"en-US" "Ells"}} {"id" "mike", "description" {"en-US" "Mike"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:37:04.882018000Z", "version" "1.0.0", "id" "bfd41478-e634-4729-95fd-df5c65e4c743", "timestamp" "2025-10-24T15:37:04.882018000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "44e9eb0a-c31b-4e36-b519-662c29c86a93" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Performance"}, "description" {"en" "This interaction measures performance over a day of RS sports:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "performance", "correctResponsesPattern" ["pong[.]1:[,]dg[.]:10[,]lunch[.]"], "steps" [{"id" "pong", "description" {"en-US" "Net pong matches won"}} {"id" "dg", "description" {"en-US" "Strokes over par in disc golf at Liberty"}} {"id" "lunch", "description" {"en-US" "Lunch having been eaten"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:37:04.862254000Z", "version" "1.0.0", "id" "44e9eb0a-c31b-4e36-b519-662c29c86a93", "timestamp" "2025-10-24T15:37:04.862254000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e0d286cf-a1ac-4906-ba8b-d87c88e46ba0" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "matching", "name" {"en" "Matching"}, "source" [{"id" "ben", "description" {"en-US" "Ben"}} {"id" "chris", "description" {"en-US" "Chris"}} {"id" "troy", "description" {"en-US" "Troy"}} {"id" "freddie", "description" {"en-US" "Freddie"}}], "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "target" [{"id" "1", "description" {"en-US" "Swift Kick in the Grass"}} {"id" "2", "description" {"en-US" "We got Runs"}} {"id" "3", "description" {"en-US" "Duck"}} {"id" "4", "description" {"en-US" "Van Delay Industries"}}], "correctResponsesPattern" ["ben[.]3[,]chris[.]2[,]troy[.]4[,]freddie[.]1"], "description" {"en" "Match these people to their kickball team:"}}}, "stored" "2025-10-24T15:37:04.843914000Z", "version" "1.0.0", "id" "e0d286cf-a1ac-4906-ba8b-d87c88e46ba0", "timestamp" "2025-10-24T15:37:04.843914000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "bc5ef9f6-9f4d-43c9-ac3c-9bac9fa05c37" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Long-Fill-In"}, "description" {"en" "What is the purpose of the xAPI?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "long-fill-in", "correctResponsesPattern" ["{case_matters=false}{lang=en}To store and provide access to learning experiences."], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:37:04.825492000Z", "version" "1.0.0", "id" "bc5ef9f6-9f4d-43c9-ac3c-9bac9fa05c37", "timestamp" "2025-10-24T15:37:04.825492000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ca4833ae-c8be-4733-99a8-177b5f777bb1" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Fill-In"}, "description" {"en" "Ben is often heard saying:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "fill-in", "correctResponsesPattern" ["Bob's your uncle"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:37:04.809763000Z", "version" "1.0.0", "id" "ca4833ae-c8be-4733-99a8-177b5f777bb1", "timestamp" "2025-10-24T15:37:04.809763000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "05ff503a-9bef-4836-ac36-df4af2fc1af5" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Choice"}, "description" {"en" "Which of these prototypes are available at the beta site?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "choice", "correctResponsesPattern" ["golf[,]tetris"], "choices" [{"id" "golf", "description" {"en-US" "Golf Example"}} {"id" "facebook", "description" {"en-US" "Facebook App"}} {"id" "tetris", "description" {"en-US" "Tetris Example"}} {"id" "scrabble", "description" {"en-US" "Scrabble Example"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:37:04.793751000Z", "version" "1.0.0", "id" "05ff503a-9bef-4836-ac36-df4af2fc1af5", "timestamp" "2025-10-24T15:37:04.793751000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "531c5dd7-8407-48fe-b5e5-29a6a4fe9805" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "True-False"}, "description" {"en" "Does the xAPI include the concept of statements?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "true-false", "correctResponsesPattern" ["true"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:37:04.778937000Z", "version" "1.0.0", "id" "531c5dd7-8407-48fe-b5e5-29a6a4fe9805", "timestamp" "2025-10-24T15:37:04.778937000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b46edcb7-a158-4021-924c-9a22483f9128" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:37:04.686637000Z", "version" "1.0.0", "id" "b46edcb7-a158-4021-924c-9a22483f9128", "timestamp" "2025-10-24T15:37:04.686637000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "dca103ec-04df-4aa2-bece-3c1ddd6ce209" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:37:04.665968000Z", "version" "1.0.0", "id" "dca103ec-04df-4aa2-bece-3c1ddd6ce209", "timestamp" "2025-10-24T15:37:04.665968000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "de78ccc6-b3b7-498d-b67d-02780eb96747" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:04.265253000Z", "version" "1.0.0", "id" "de78ccc6-b3b7-498d-b67d-02780eb96747", "timestamp" "2025-10-24T15:37:04.265253000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0ca41f41-f1cf-41a1-8386-184f7f169439" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:04.252029000Z", "version" "1.0.0", "id" "0ca41f41-f1cf-41a1-8386-184f7f169439", "timestamp" "2025-10-24T15:37:04.252029000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2ab41f9a-2e9c-4846-9bc0-c60c5a285aa9" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:04.237622000Z", "version" "1.0.0", "id" "2ab41f9a-2e9c-4846-9bc0-c60c5a285aa9", "timestamp" "2025-10-24T15:37:04.237622000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0eb5ed81-4fbc-4582-8479-640852f8db6d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:04.222563000Z", "version" "1.0.0", "id" "0eb5ed81-4fbc-4582-8479-640852f8db6d", "timestamp" "2025-10-24T15:37:04.222563000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "00db8290-dd3f-4edc-a5bc-37c450428f5a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:04.207900000Z", "version" "1.0.0", "id" "00db8290-dd3f-4edc-a5bc-37c450428f5a", "timestamp" "2025-10-24T15:37:04.207900000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f2325511-7c04-4ea9-b82a-0e91a5f40e6b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "stored" "2025-10-24T15:37:04.192643000Z", "version" "1.0.0", "id" "f2325511-7c04-4ea9-b82a-0e91a5f40e6b", "timestamp" "2025-10-24T15:37:04.192643000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "85a740e0-bd72-48e2-badc-39621e8874fc" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "stored" "2025-10-24T15:37:04.177718000Z", "version" "1.0.0", "id" "85a740e0-bd72-48e2-badc-39621e8874fc", "timestamp" "2025-10-24T15:37:04.177718000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0d9f169b-7ea6-441d-906a-4d9978a86cd7" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "0d9f169b-7ea6-441d-906a-4d9978a86cd7", "timestamp" "2025-10-24T15:37:04.162366000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:04.162366000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "1add9180-53de-4f11-892a-a451e894f740" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "1add9180-53de-4f11-892a-a451e894f740", "timestamp" "2025-10-24T15:37:04.147395000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:04.147395000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "cec5867b-2682-41c4-a19a-820dfaeb2289" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "cec5867b-2682-41c4-a19a-820dfaeb2289", "timestamp" "2025-10-24T15:37:04.131997000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:04.131997000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "281c0791-ba28-4454-a791-ba61239f9f3c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:04.115983000Z", "version" "1.0.0", "id" "281c0791-ba28-4454-a791-ba61239f9f3c", "timestamp" "2025-10-24T15:37:04.115983000Z"}, "47dbbd82-5461-43d9-b964-037a3ccf9f3f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:04.100203000Z", "version" "1.0.0", "id" "47dbbd82-5461-43d9-b964-037a3ccf9f3f", "timestamp" "2025-10-24T15:37:04.100203000Z"}, "58caab43-915b-4701-8945-f00014416c2b" {"actor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:04.085469000Z", "version" "1.0.0", "id" "58caab43-915b-4701-8945-f00014416c2b", "timestamp" "2025-10-24T15:37:04.085469000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f801e8da-db2a-400d-8106-0111930b88ed" {"actor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:04.070834000Z", "version" "1.0.0", "id" "f801e8da-db2a-400d-8106-0111930b88ed", "timestamp" "2025-10-24T15:37:04.070834000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "19ce45ce-b51d-4701-a4f8-c0f3c9b12e6b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:03.221321000Z", "version" "1.0.0", "id" "19ce45ce-b51d-4701-a4f8-c0f3c9b12e6b", "timestamp" "2025-10-24T15:37:03.221321000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c33ca768-2a55-4849-a2f9-1307fbd4677d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:03.205246000Z", "version" "1.0.0", "id" "c33ca768-2a55-4849-a2f9-1307fbd4677d", "timestamp" "2025-10-24T15:37:03.205246000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b6c9e237-6fe3-4ce6-89bd-783307c6fedd" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:03.191286000Z", "version" "1.0.0", "id" "b6c9e237-6fe3-4ce6-89bd-783307c6fedd", "timestamp" "2025-10-24T15:37:03.191286000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4d4ac8cc-109b-4f4b-9915-35004758e75f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:03.177157000Z", "version" "1.0.0", "id" "4d4ac8cc-109b-4f4b-9915-35004758e75f", "timestamp" "2025-10-24T15:37:03.177157000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "95110b07-e8e1-4f55-aea2-b56e7c607ca6" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:03.163168000Z", "version" "1.0.0", "id" "95110b07-e8e1-4f55-aea2-b56e7c607ca6", "timestamp" "2025-10-24T15:37:03.163168000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e235a09f-6114-471c-b5a2-3ce5d41990f3" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:03.148642000Z", "version" "1.0.0", "id" "e235a09f-6114-471c-b5a2-3ce5d41990f3", "timestamp" "2025-10-24T15:37:03.148642000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5dd69bea-ce4b-4af9-80fa-084b9c60a86e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:03.134963000Z", "version" "1.0.0", "id" "5dd69bea-ce4b-4af9-80fa-084b9c60a86e", "timestamp" "2025-10-24T15:37:03.134963000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c2f7552c-6635-44ff-8e3e-ef4e50d63b4b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:03.120963000Z", "version" "1.0.0", "id" "c2f7552c-6635-44ff-8e3e-ef4e50d63b4b", "timestamp" "2025-10-24T15:37:03.120963000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "460dab6f-03c9-4dcc-ad7b-efde371fbe28" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:03.107350000Z", "version" "1.0.0", "id" "460dab6f-03c9-4dcc-ad7b-efde371fbe28", "timestamp" "2025-10-24T15:37:03.107350000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "af26d6b5-76ea-460c-8cca-c4fa3f763446" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:03.093459000Z", "version" "1.0.0", "id" "af26d6b5-76ea-460c-8cca-c4fa3f763446", "timestamp" "2025-10-24T15:37:03.093459000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "3b6d660c-2da0-4291-9023-14bfc57c636c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:03.080126000Z", "version" "1.0.0", "id" "3b6d660c-2da0-4291-9023-14bfc57c636c", "timestamp" "2025-10-24T15:37:03.080126000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d0804c3c-33df-4991-8f14-ce3775fbb798" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:03.066410000Z", "version" "1.0.0", "id" "d0804c3c-33df-4991-8f14-ce3775fbb798", "timestamp" "2025-10-24T15:37:03.066410000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "db17e216-5770-4e42-a962-6e3a534a8efa" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "stored" "2025-10-24T15:37:03.051998000Z", "version" "1.0.0", "id" "db17e216-5770-4e42-a962-6e3a534a8efa", "timestamp" "2025-10-24T15:37:03.051998000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "529ff420-dd4b-4d9d-89f2-80435d654603" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345"}, "stored" "2025-10-24T15:37:03.038245000Z", "version" "1.0.0", "id" "529ff420-dd4b-4d9d-89f2-80435d654603", "timestamp" "2025-10-24T15:37:03.038245000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "164b72d6-62fb-4aa9-9e99-d53e4a565352" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "stored" "2025-10-24T15:37:03.024079000Z", "version" "1.0.0", "id" "164b72d6-62fb-4aa9-9e99-d53e4a565352", "timestamp" "2025-10-24T15:37:03.024079000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8f34e41e-2f6b-4d8a-ad69-e99df2f8c3dc" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:37:03.009480000Z", "version" "1.0.0", "id" "8f34e41e-2f6b-4d8a-ad69-e99df2f8c3dc", "timestamp" "2025-10-24T15:37:03.009480000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "75fab838-6920-4794-ad84-187cdbfb247e" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "75fab838-6920-4794-ad84-187cdbfb247e", "timestamp" "2025-10-24T15:37:02.996063000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:02.996063000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "28080128-17e1-4566-a838-5eeb988b62a7" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "28080128-17e1-4566-a838-5eeb988b62a7", "timestamp" "2025-10-24T15:37:02.984597000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:02.984597000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "d8c0e949-2667-47ff-a963-e3e92213a89d" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "d8c0e949-2667-47ff-a963-e3e92213a89d", "timestamp" "2025-10-24T15:37:02.970393000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:02.970393000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "25de9307-e0d4-4f36-af1f-f697ee916d9c" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "25de9307-e0d4-4f36-af1f-f697ee916d9c", "timestamp" "2025-10-24T15:37:02.956319000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:02.956319000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "3fff1940-2a05-4a8b-bd50-c0858627e223" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "3fff1940-2a05-4a8b-bd50-c0858627e223", "timestamp" "2025-10-24T15:37:02.942335000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:02.942335000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "448d8bbe-5f5e-4383-96a8-153846ade931" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "448d8bbe-5f5e-4383-96a8-153846ade931", "timestamp" "2025-10-24T15:37:02.928653000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:02.928653000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "f4a13a18-3d28-476b-ad88-a2a250078723" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "f4a13a18-3d28-476b-ad88-a2a250078723", "timestamp" "2025-10-24T15:37:02.915326000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:02.915326000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "fb7fd6ae-e587-4f48-bb5f-54ff0acbf250" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "fb7fd6ae-e587-4f48-bb5f-54ff0acbf250", "timestamp" "2025-10-24T15:37:02.902193000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:02.902193000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "61f17175-60e3-41f6-ab6d-b73c9fe7c318" {"actor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:02.889464000Z", "version" "1.0.0", "id" "61f17175-60e3-41f6-ab6d-b73c9fe7c318", "timestamp" "2025-10-24T15:37:02.889464000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "bcc8d4fa-b026-4cac-bca3-8e56c739133a" {"actor" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:02.877288000Z", "version" "1.0.0", "id" "bcc8d4fa-b026-4cac-bca3-8e56c739133a", "timestamp" "2025-10-24T15:37:02.877288000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "862cd41f-7f2a-4765-b29c-6fef9efd2b51" {"actor" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:02.865015000Z", "version" "1.0.0", "id" "862cd41f-7f2a-4765-b29c-6fef9efd2b51", "timestamp" "2025-10-24T15:37:02.865015000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "75cf77ab-fd14-4502-a6b2-765377f37501" {"actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:02.849590000Z", "version" "1.0.0", "id" "75cf77ab-fd14-4502-a6b2-765377f37501", "timestamp" "2025-10-24T15:37:02.849590000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "42080c30-590a-4554-8097-3c56944a0f6d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:02.835818000Z", "version" "1.0.0", "id" "42080c30-590a-4554-8097-3c56944a0f6d", "timestamp" "2025-10-24T15:37:02.835818000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "19d0cb91-d171-41c4-8148-2880ce034123" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:02.820671000Z", "version" "1.0.0", "id" "19d0cb91-d171-41c4-8148-2880ce034123", "timestamp" "2025-10-24T15:37:02.820671000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "352bad5c-f1f8-4dc0-9d4b-fe4639efa680" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:02.807393000Z", "version" "1.0.0", "id" "352bad5c-f1f8-4dc0-9d4b-fe4639efa680", "timestamp" "2025-10-24T15:37:02.807393000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d437e3d9-871e-4853-a00c-050229bf558d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:02.794488000Z", "version" "1.0.0", "id" "d437e3d9-871e-4853-a00c-050229bf558d", "timestamp" "2025-10-24T15:37:02.794488000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "13c25edb-a96e-40f5-8ce2-50f9254a95c6" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:02.781368000Z", "version" "1.0.0", "id" "13c25edb-a96e-40f5-8ce2-50f9254a95c6", "timestamp" "2025-10-24T15:37:02.781368000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1f86cb9b-cf59-49d7-9881-70f3891c12a7" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:02.768696000Z", "version" "1.0.0", "id" "1f86cb9b-cf59-49d7-9881-70f3891c12a7", "timestamp" "2025-10-24T15:37:02.768696000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e19f085d-d8f2-4da3-ae54-e5509be9fd59" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:02.755512000Z", "version" "1.0.0", "id" "e19f085d-d8f2-4da3-ae54-e5509be9fd59", "timestamp" "2025-10-24T15:37:02.755512000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "6c68e28a-5ef7-490c-872e-efca6317609f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:02.742885000Z", "version" "1.0.0", "id" "6c68e28a-5ef7-490c-872e-efca6317609f", "timestamp" "2025-10-24T15:37:02.742885000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b34a6c47-1304-46a1-8f56-f05dcf333675" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:02.730048000Z", "version" "1.0.0", "id" "b34a6c47-1304-46a1-8f56-f05dcf333675", "timestamp" "2025-10-24T15:37:02.730048000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b7e4a741-b434-4eba-afb4-bedbf18ebf6f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:02.717433000Z", "version" "1.0.0", "id" "b7e4a741-b434-4eba-afb4-bedbf18ebf6f", "timestamp" "2025-10-24T15:37:02.717433000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5b53c8ee-4af7-4f5e-a75c-91ed434d994d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:02.705674000Z", "version" "1.0.0", "id" "5b53c8ee-4af7-4f5e-a75c-91ed434d994d", "timestamp" "2025-10-24T15:37:02.705674000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4e545735-dc1a-4eec-9632-97792ec472d5" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:02.694188000Z", "version" "1.0.0", "id" "4e545735-dc1a-4eec-9632-97792ec472d5", "timestamp" "2025-10-24T15:37:02.694188000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "33ba63cb-be5f-48d6-a78e-20c7853b4b4a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "stored" "2025-10-24T15:37:02.682396000Z", "version" "1.0.0", "id" "33ba63cb-be5f-48d6-a78e-20c7853b4b4a", "timestamp" "2025-10-24T15:37:02.682396000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "a8137a6c-2a29-42da-855a-8dd258dcee1b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "stored" "2025-10-24T15:37:02.668389000Z", "version" "1.0.0", "id" "a8137a6c-2a29-42da-855a-8dd258dcee1b", "timestamp" "2025-10-24T15:37:02.668389000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9d3b7f08-305d-44f5-973d-a836509dae04" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "stored" "2025-10-24T15:37:02.644782000Z", "version" "1.0.0", "id" "9d3b7f08-305d-44f5-973d-a836509dae04", "timestamp" "2025-10-24T15:37:02.644782000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2bd7a6b3-a770-4760-aae4-010742096b75" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "stored" "2025-10-24T15:37:02.629051000Z", "version" "1.0.0", "id" "2bd7a6b3-a770-4760-aae4-010742096b75", "timestamp" "2025-10-24T15:37:02.629051000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7d88b6db-48b1-4ac3-937e-819cecabded7" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "7d88b6db-48b1-4ac3-937e-819cecabded7", "timestamp" "2025-10-24T15:37:02.616944000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:02.616944000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "f57af028-2057-49a1-8583-c09247570e93" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "f57af028-2057-49a1-8583-c09247570e93", "timestamp" "2025-10-24T15:37:02.605451000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:02.605451000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "b16db385-f757-467c-aae0-cf2fdfdd9c3b" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "b16db385-f757-467c-aae0-cf2fdfdd9c3b", "timestamp" "2025-10-24T15:37:02.592620000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:02.592620000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "4a15a797-5ba0-412f-b8e6-f092e478d3ea" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "4a15a797-5ba0-412f-b8e6-f092e478d3ea", "timestamp" "2025-10-24T15:37:02.581490000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:02.581490000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "0c421cd8-3a58-4af9-9d71-182d2fc987e2" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "0c421cd8-3a58-4af9-9d71-182d2fc987e2", "timestamp" "2025-10-24T15:37:02.568758000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:02.568758000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "44d7c281-f179-4600-a21b-a88fde6f7a62" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "44d7c281-f179-4600-a21b-a88fde6f7a62", "timestamp" "2025-10-24T15:37:02.556399000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:02.556399000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "528d6344-be97-4d2f-8cdf-308db6a3e467" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "528d6344-be97-4d2f-8cdf-308db6a3e467", "timestamp" "2025-10-24T15:37:02.543880000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:02.543880000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "a54d8ce2-dc95-462d-b8aa-86a9ed9ad235" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "a54d8ce2-dc95-462d-b8aa-86a9ed9ad235", "timestamp" "2025-10-24T15:37:02.531851000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:02.531851000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "a8472fc3-9ba7-400c-bb3d-6e317ff390eb" {"actor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:02.519746000Z", "version" "1.0.0", "id" "a8472fc3-9ba7-400c-bb3d-6e317ff390eb", "timestamp" "2025-10-24T15:37:02.519746000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d49d7bf8-fde9-4df8-96ac-af79527cc216" {"actor" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:02.507335000Z", "version" "1.0.0", "id" "d49d7bf8-fde9-4df8-96ac-af79527cc216", "timestamp" "2025-10-24T15:37:02.507335000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "11d65280-d920-48a5-a8f5-c533f68799ae" {"actor" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:02.494472000Z", "version" "1.0.0", "id" "11d65280-d920-48a5-a8f5-c533f68799ae", "timestamp" "2025-10-24T15:37:02.494472000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "83171c67-fefe-4dbe-86b3-5cea0b4f0b46" {"actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:02.480871000Z", "version" "1.0.0", "id" "83171c67-fefe-4dbe-86b3-5cea0b4f0b46", "timestamp" "2025-10-24T15:37:02.480871000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c758a32f-7a43-41f9-ac98-393d4948ad6d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:01.982371000Z", "version" "1.0.0", "id" "c758a32f-7a43-41f9-ac98-393d4948ad6d", "timestamp" "2025-10-24T15:37:01.982371000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "a3389eaa-3ece-44e9-801a-129933083c1b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:01.970036000Z", "version" "1.0.0", "id" "a3389eaa-3ece-44e9-801a-129933083c1b", "timestamp" "2025-10-24T15:37:01.970036000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7971cd0e-836a-4256-bd6b-93b7147719a2" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:37:01.957929000Z", "version" "1.0.0", "id" "7971cd0e-836a-4256-bd6b-93b7147719a2", "timestamp" "2025-10-24T15:37:01.957929000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "09c60574-7774-4c72-b035-227ba1587fb6" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "09c60574-7774-4c72-b035-227ba1587fb6", "timestamp" "2025-10-24T15:37:01.946197000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:01.946197000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "a0ebba80-e74a-42da-af8b-13f2ce816de6" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:01.932626000Z", "version" "1.0.0", "id" "a0ebba80-e74a-42da-af8b-13f2ce816de6", "timestamp" "2025-10-24T15:37:01.932626000Z"}, "420ced20-2c70-4a24-b063-40aef29bbbb5" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:01.921567000Z", "version" "1.0.0", "id" "420ced20-2c70-4a24-b063-40aef29bbbb5", "timestamp" "2025-10-24T15:37:01.921567000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "195ed07b-b4eb-49b0-8375-f6addc582f90" {"verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "actor" {"name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:37:01.910874000Z", "version" "1.0.0", "id" "195ed07b-b4eb-49b0-8375-f6addc582f90", "timestamp" "2025-10-24T15:37:01.910874000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "12fd5e85-df93-4988-87b9-dfda8ddfaec0" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI openid", "openid" "http://openid.example.org/12345"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:01.900037000Z", "version" "1.0.0", "id" "12fd5e85-df93-4988-87b9-dfda8ddfaec0", "timestamp" "2025-10-24T15:37:01.900037000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9054a58e-41a5-4222-bd79-671f32809ce5" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:01.889271000Z", "version" "1.0.0", "id" "9054a58e-41a5-4222-bd79-671f32809ce5", "timestamp" "2025-10-24T15:37:01.889271000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d10c4625-2f9f-4a3a-ab08-f78bff0e5b26" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:01.878512000Z", "version" "1.0.0", "id" "d10c4625-2f9f-4a3a-ab08-f78bff0e5b26", "timestamp" "2025-10-24T15:37:01.878512000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "225f9371-fd27-4e47-9a6e-e30364ec9d6e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:01.867801000Z", "version" "1.0.0", "id" "225f9371-fd27-4e47-9a6e-e30364ec9d6e", "timestamp" "2025-10-24T15:37:01.867801000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9d69ad12-91ce-4aab-8e5a-cd2c9587e1d4" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI openid", "openid" "http://openid.example.org/12345"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:01.851360000Z", "version" "1.0.0", "id" "9d69ad12-91ce-4aab-8e5a-cd2c9587e1d4", "timestamp" "2025-10-24T15:37:01.851360000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "549e5bb8-a608-4a48-871c-d540c9cb6831" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:01.840530000Z", "version" "1.0.0", "id" "549e5bb8-a608-4a48-871c-d540c9cb6831", "timestamp" "2025-10-24T15:37:01.840530000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b09ad734-339a-45ed-9fa8-0e0248a5cc09" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:01.829793000Z", "version" "1.0.0", "id" "b09ad734-339a-45ed-9fa8-0e0248a5cc09", "timestamp" "2025-10-24T15:37:01.829793000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f01c6207-403a-46ff-9318-cb8758606f3b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:01.819030000Z", "version" "1.0.0", "id" "f01c6207-403a-46ff-9318-cb8758606f3b", "timestamp" "2025-10-24T15:37:01.819030000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "6ac580ce-6c50-4f80-b0af-17c52324f17b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Agent", "name" "xAPI openid", "openid" "http://openid.example.org/12345"}, "stored" "2025-10-24T15:37:01.800438000Z", "version" "1.0.0", "id" "6ac580ce-6c50-4f80-b0af-17c52324f17b", "timestamp" "2025-10-24T15:37:01.800438000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "65b27d36-3b34-4a93-b157-6d729953dddb" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "stored" "2025-10-24T15:37:01.787526000Z", "version" "1.0.0", "id" "65b27d36-3b34-4a93-b157-6d729953dddb", "timestamp" "2025-10-24T15:37:01.787526000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "bd7f2150-21bd-4b0e-a726-6cab9a199e48" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:37:01.773387000Z", "version" "1.0.0", "id" "bd7f2150-21bd-4b0e-a726-6cab9a199e48", "timestamp" "2025-10-24T15:37:01.773387000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "495d5746-cc77-4048-8ec3-3ead5515565f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "stored" "2025-10-24T15:37:01.759842000Z", "version" "1.0.0", "id" "495d5746-cc77-4048-8ec3-3ead5515565f", "timestamp" "2025-10-24T15:37:01.759842000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "fceb4da7-2a5b-4970-855d-bf85ce630e10" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "fceb4da7-2a5b-4970-855d-bf85ce630e10", "timestamp" "2025-10-24T15:37:01.743506000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI openid", "openid" "http://openid.example.org/12345"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:01.743506000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "0ac5110f-a2f2-4bc4-9c37-991422e30ed2" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "0ac5110f-a2f2-4bc4-9c37-991422e30ed2", "timestamp" "2025-10-24T15:37:01.732300000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:01.732300000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "c53d7f99-aa28-4ea5-9235-2b7d8ee16759" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "c53d7f99-aa28-4ea5-9235-2b7d8ee16759", "timestamp" "2025-10-24T15:37:01.721164000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:01.721164000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "1a0f665b-6642-4475-9d6f-820b9b8ba766" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "1a0f665b-6642-4475-9d6f-820b9b8ba766", "timestamp" "2025-10-24T15:37:01.710388000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:37:01.710388000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "c284a9eb-aab2-4006-90dd-2f1b7d238d07" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:01.692845000Z", "version" "1.0.0", "id" "c284a9eb-aab2-4006-90dd-2f1b7d238d07", "timestamp" "2025-10-24T15:37:01.692845000Z"}, "908226d1-b276-46a0-9e91-1ae3d8472b76" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:01.682167000Z", "version" "1.0.0", "id" "908226d1-b276-46a0-9e91-1ae3d8472b76", "timestamp" "2025-10-24T15:37:01.682167000Z"}, "e7cf7c64-d7db-4e2b-9947-045021b1325c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:01.670029000Z", "version" "1.0.0", "id" "e7cf7c64-d7db-4e2b-9947-045021b1325c", "timestamp" "2025-10-24T15:37:01.670029000Z"}, "78eb67b0-8fda-42ee-b721-9058670e2c72" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:01.658995000Z", "version" "1.0.0", "id" "78eb67b0-8fda-42ee-b721-9058670e2c72", "timestamp" "2025-10-24T15:37:01.658995000Z"}, "76d02864-109a-4008-83ae-a7e6aa66cb24" {"actor" {"objectType" "Agent", "name" "xAPI openid", "openid" "http://openid.example.org/12345"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:01.641948000Z", "version" "1.0.0", "id" "76d02864-109a-4008-83ae-a7e6aa66cb24", "timestamp" "2025-10-24T15:37:01.641948000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "61864c65-40c8-4925-be5e-cace05d22df0" {"actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:01.630898000Z", "version" "1.0.0", "id" "61864c65-40c8-4925-be5e-cace05d22df0", "timestamp" "2025-10-24T15:37:01.630898000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d20a9609-13c7-4e86-ba4e-add59e2fbdc9" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:01.619071000Z", "version" "1.0.0", "id" "d20a9609-13c7-4e86-ba4e-add59e2fbdc9", "timestamp" "2025-10-24T15:37:01.619071000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "108dc173-11c4-4619-b2ac-76cf98329e74" {"actor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:01.606552000Z", "version" "1.0.0", "id" "108dc173-11c4-4619-b2ac-76cf98329e74", "timestamp" "2025-10-24T15:37:01.606552000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "a7211bea-ac09-4208-979a-ad32d301d119" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:01.361480000Z", "version" "1.0.0", "id" "a7211bea-ac09-4208-979a-ad32d301d119", "timestamp" "2025-10-24T15:37:01.361480000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "bc4dd5bb-c601-47d6-a887-5640997a4222" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-GB" "attended", "en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "8e54667f-d944-4131-b6f6-17911d5ca784"}, "stored" "2025-10-24T15:37:01.215580000Z", "version" "1.0.0", "id" "bc4dd5bb-c601-47d6-a887-5640997a4222", "timestamp" "2025-10-24T15:37:01.215580000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "bcb55e64-eae7-48ef-93f4-0ee1b884ac5a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "8e54667f-d944-4131-b6f6-17911d5ca784"}, "stored" "2025-10-24T15:37:01.195322000Z", "version" "1.0.0", "id" "bcb55e64-eae7-48ef-93f4-0ee1b884ac5a", "timestamp" "2025-10-24T15:37:01.195322000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b15884ca-92b4-4db9-8716-3315e6370b39" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "04bb0725-7e83-4d3e-83c5-68fb9bcb8328"}, "stored" "2025-10-24T15:37:00.105027000Z", "version" "1.0.0", "id" "b15884ca-92b4-4db9-8716-3315e6370b39", "timestamp" "2025-10-24T15:37:00.105027000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b94c84f8-a178-40f0-80aa-260e972e3b37" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-GB" "attended", "en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "8f87ccde-bb56-4c2e-ab83-44982ef22df0"}, "stored" "2025-10-24T15:37:00.081002000Z", "version" "1.0.0", "id" "b94c84f8-a178-40f0-80aa-260e972e3b37", "timestamp" "2025-10-24T15:37:00.081002000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f9156fe4-7581-4e02-b26b-914dbdb48ab5" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-GB" "attended", "en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "8f87ccde-bb56-4c2e-ab83-44982ef22df0"}, "stored" "2025-10-24T15:37:00.069981000Z", "version" "1.0.0", "id" "f9156fe4-7581-4e02-b26b-914dbdb48ab5", "timestamp" "2025-10-24T15:37:00.069981000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c3ddebfa-70a0-4c37-91e2-9dad57f78629" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:37:00.044510000Z", "version" "1.0.0", "id" "c3ddebfa-70a0-4c37-91e2-9dad57f78629", "timestamp" "2025-10-24T15:37:00.044510000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d3be427c-29db-495b-a87f-a5525df6ed28" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:37:00.033832000Z", "version" "1.0.0", "id" "d3be427c-29db-495b-a87f-a5525df6ed28", "timestamp" "2025-10-24T15:37:00.033832000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "cec3733e-d6eb-4ee9-8e91-75e63e875896" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "cec3733e-d6eb-4ee9-8e91-75e63e875896", "timestamp" "2025-10-24T15:37:00.022572000Z", "version" "1.0.0", "stored" "2025-10-24T15:37:00.022572000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "description" {"en-US" "A test attachment (description)"}, "contentType" "text/plain; charset=ascii", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "fileUrl" "http://over.there.com/file.txt"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "56d6aff5-e63c-41a7-804d-560cc186fe44" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:37:00.011878000Z", "version" "1.0.0", "id" "56d6aff5-e63c-41a7-804d-560cc186fe44", "timestamp" "2025-10-24T15:37:00.011878000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "fbf5773f-6229-4147-bd59-db31f39dddec" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:36:59.999550000Z", "version" "1.0.0", "id" "fbf5773f-6229-4147-bd59-db31f39dddec", "timestamp" "2025-10-24T15:36:59.999550000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7e95e8e8-b564-474e-a7e3-92df75222ec3" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.989109000Z", "version" "1.0.0", "id" "7e95e8e8-b564-474e-a7e3-92df75222ec3", "timestamp" "2025-10-24T15:36:59.989109000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "137824f9-f89b-410e-b40f-47cec69d9140" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.978867000Z", "version" "1.0.0", "id" "137824f9-f89b-410e-b40f-47cec69d9140", "timestamp" "2025-10-24T15:36:59.978867000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8077eb38-e74e-4db9-aff5-8d717c329333" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.968384000Z", "version" "1.0.0", "id" "8077eb38-e74e-4db9-aff5-8d717c329333", "timestamp" "2025-10-24T15:36:59.968384000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "31bce6b1-c219-450b-93b1-81d21be41269" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.958082000Z", "version" "1.0.0", "id" "31bce6b1-c219-450b-93b1-81d21be41269", "timestamp" "2025-10-24T15:36:59.958082000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c743c5f3-faed-4ab5-8367-be43d81506ee" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "c743c5f3-faed-4ab5-8367-be43d81506ee", "timestamp" "2025-10-24T15:36:59.947892000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "1.0.0", "stored" "2025-10-24T15:36:59.947892000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "a60d02b7-ac99-4fcd-beee-3e33064b4bd9" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "a60d02b7-ac99-4fcd-beee-3e33064b4bd9", "timestamp" "2025-10-24T15:36:59.937672000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "1.0.0", "stored" "2025-10-24T15:36:59.937672000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "a20aa8c8-a6c7-4e4a-9af3-93d08345d315" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "a20aa8c8-a6c7-4e4a-9af3-93d08345d315", "timestamp" "2025-10-24T15:36:59.927088000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "1.0.0", "stored" "2025-10-24T15:36:59.927088000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "e4209cd4-23d1-4b18-870c-606a0015c253" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "e4209cd4-23d1-4b18-870c-606a0015c253", "timestamp" "2025-10-24T15:36:59.916341000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "1.0.0", "stored" "2025-10-24T15:36:59.916341000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "94a05682-b1ef-44e3-a1c9-37ad20f5f42f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.898962000Z", "version" "1.0.0", "id" "94a05682-b1ef-44e3-a1c9-37ad20f5f42f", "timestamp" "2025-10-24T15:36:59.898962000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "13a8ea37-08b8-42a5-a7ac-d84bd204e8cb" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "13a8ea37-08b8-42a5-a7ac-d84bd204e8cb", "timestamp" "2025-10-24T15:36:59.887475000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "version" "1.0.0", "stored" "2025-10-24T15:36:59.887475000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "1083d8f2-4835-4189-a524-77393b10c5c5" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.873801000Z", "version" "1.0.0", "id" "1083d8f2-4835-4189-a524-77393b10c5c5", "timestamp" "2025-10-24T15:36:59.873801000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "bf5e56d5-84eb-471e-a79b-4ac7350be3f1" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "bf5e56d5-84eb-471e-a79b-4ac7350be3f1", "timestamp" "2025-10-24T15:36:59.863726000Z", "version" "1.0.0", "stored" "2025-10-24T15:36:59.863726000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "af0de795-4c9a-464e-bf17-00f4b5ecebaf" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "StatementRef", "id" "8f87ccde-bb56-4c2e-ab83-44982ef22df0"}}, "stored" "2025-10-24T15:36:59.855389000Z", "version" "1.0.0", "id" "af0de795-4c9a-464e-bf17-00f4b5ecebaf", "timestamp" "2025-10-24T15:36:59.855389000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "18995581-2261-4df2-ae45-2e62958b80c3" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "StatementRef", "id" "8f87ccde-bb56-4c2e-ab83-44982ef22df0"}, "stored" "2025-10-24T15:36:59.845448000Z", "version" "1.0.0", "id" "18995581-2261-4df2-ae45-2e62958b80c3", "timestamp" "2025-10-24T15:36:59.845448000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ede91ac5-896b-437b-b4f7-df1ab80b2dac" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.835593000Z", "version" "1.0.0", "id" "ede91ac5-896b-437b-b4f7-df1ab80b2dac", "timestamp" "2025-10-24T15:36:59.835593000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "62ad573f-33a2-4101-89da-186c79a0b983" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"interactionType" "fill-in", "correctResponsesPattern" ["Bob\"s your uncle"]}}}, "stored" "2025-10-24T15:36:59.825542000Z", "version" "1.0.0", "id" "62ad573f-33a2-4101-89da-186c79a0b983", "timestamp" "2025-10-24T15:36:59.825542000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0c1fb1ef-f61c-4afc-b32a-ad62dbc5a4aa" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:36:59.815807000Z", "version" "1.0.0", "id" "0c1fb1ef-f61c-4afc-b32a-ad62dbc5a4aa", "timestamp" "2025-10-24T15:36:59.815807000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "854d0142-73b9-4765-ac0f-69f54e6c6eca" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"moreInfo" "http://virtualmeeting.example.com/345256"}}}, "stored" "2025-10-24T15:36:59.806107000Z", "version" "1.0.0", "id" "854d0142-73b9-4765-ac0f-69f54e6c6eca", "timestamp" "2025-10-24T15:36:59.806107000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f4b3236a-07bb-4cc9-8cbd-a824fa1dd50e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting"}}}, "stored" "2025-10-24T15:36:59.796350000Z", "version" "1.0.0", "id" "f4b3236a-07bb-4cc9-8cbd-a824fa1dd50e", "timestamp" "2025-10-24T15:36:59.796350000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "820305c5-b6cd-4f88-8b53-ed69cc586c7c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}}}}, "stored" "2025-10-24T15:36:59.786792000Z", "version" "1.0.0", "id" "820305c5-b6cd-4f88-8b53-ed69cc586c7c", "timestamp" "2025-10-24T15:36:59.786792000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ec8c4011-288b-47ac-9dc7-0d0201e63316" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}}}}, "stored" "2025-10-24T15:36:59.777623000Z", "version" "1.0.0", "id" "ec8c4011-288b-47ac-9dc7-0d0201e63316", "timestamp" "2025-10-24T15:36:59.777623000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c75335b5-7178-4860-9b01-5181661ad3c2" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {}}}, "stored" "2025-10-24T15:36:59.768227000Z", "version" "1.0.0", "id" "c75335b5-7178-4860-9b01-5181661ad3c2", "timestamp" "2025-10-24T15:36:59.768227000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0785d39c-104b-4e36-b7c7-c67d43f3e38c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"interactionType" "fill-in", "correctResponsesPattern" ["Bob\"s your uncle"]}}, "stored" "2025-10-24T15:36:59.759037000Z", "version" "1.0.0", "id" "0785d39c-104b-4e36-b7c7-c67d43f3e38c", "timestamp" "2025-10-24T15:36:59.759037000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c60fed52-0824-4842-85b8-a1081cd48b82" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:36:59.749790000Z", "version" "1.0.0", "id" "c60fed52-0824-4842-85b8-a1081cd48b82", "timestamp" "2025-10-24T15:36:59.749790000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "89356cbc-a133-474c-b12f-7c8a0b3524e8" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"moreInfo" "http://virtualmeeting.example.com/345256"}}, "stored" "2025-10-24T15:36:59.740510000Z", "version" "1.0.0", "id" "89356cbc-a133-474c-b12f-7c8a0b3524e8", "timestamp" "2025-10-24T15:36:59.740510000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "27f9aea3-0ec0-4cd7-bb5f-0f99eb913f60" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting"}}, "stored" "2025-10-24T15:36:59.732529000Z", "version" "1.0.0", "id" "27f9aea3-0ec0-4cd7-bb5f-0f99eb913f60", "timestamp" "2025-10-24T15:36:59.732529000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0bb2d267-6f58-413e-bd94-2c61724deda7" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}}}, "stored" "2025-10-24T15:36:59.724401000Z", "version" "1.0.0", "id" "0bb2d267-6f58-413e-bd94-2c61724deda7", "timestamp" "2025-10-24T15:36:59.724401000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d4c9eb61-b491-40f9-a0c6-20cc8721b62c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}}}, "stored" "2025-10-24T15:36:59.714015000Z", "version" "1.0.0", "id" "d4c9eb61-b491-40f9-a0c6-20cc8721b62c", "timestamp" "2025-10-24T15:36:59.714015000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "452059a4-848b-48c6-91ae-6f6ab5a9018c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {}}, "stored" "2025-10-24T15:36:59.701850000Z", "version" "1.0.0", "id" "452059a4-848b-48c6-91ae-6f6ab5a9018c", "timestamp" "2025-10-24T15:36:59.701850000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "432dee12-e568-48b2-b132-23ee1cfe128e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Sequencing"}, "description" {"en" "Order players by their pong ladder position:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "sequencing", "correctResponsesPattern" ["tim[,]mike[,]ells[,]ben"], "choices" [{"id" "tim", "description" {"en-US" "Tim"}} {"id" "ben", "description" {"en-US" "Ben"}} {"id" "ells", "description" {"en-US" "Ells"}} {"id" "mike", "description" {"en-US" "Mike"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:36:59.691974000Z", "version" "1.0.0", "id" "432dee12-e568-48b2-b132-23ee1cfe128e", "timestamp" "2025-10-24T15:36:59.691974000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "3ea2fc4d-e16d-40a5-acb2-08f772329f3a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Performance"}, "description" {"en" "This interaction measures performance over a day of RS sports:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "performance", "correctResponsesPattern" ["pong[.]1:[,]dg[.]:10[,]lunch[.]"], "steps" [{"id" "pong", "description" {"en-US" "Net pong matches won"}} {"id" "dg", "description" {"en-US" "Strokes over par in disc golf at Liberty"}} {"id" "lunch", "description" {"en-US" "Lunch having been eaten"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:36:59.682529000Z", "version" "1.0.0", "id" "3ea2fc4d-e16d-40a5-acb2-08f772329f3a", "timestamp" "2025-10-24T15:36:59.682529000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4081dfc5-2ece-43a7-829b-5476fef0676e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "matching", "name" {"en" "Matching"}, "source" [{"id" "ben", "description" {"en-US" "Ben"}} {"id" "chris", "description" {"en-US" "Chris"}} {"id" "troy", "description" {"en-US" "Troy"}} {"id" "freddie", "description" {"en-US" "Freddie"}}], "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "target" [{"id" "1", "description" {"en-US" "Swift Kick in the Grass"}} {"id" "2", "description" {"en-US" "We got Runs"}} {"id" "3", "description" {"en-US" "Duck"}} {"id" "4", "description" {"en-US" "Van Delay Industries"}}], "correctResponsesPattern" ["ben[.]3[,]chris[.]2[,]troy[.]4[,]freddie[.]1"], "description" {"en" "Match these people to their kickball team:"}}}}, "stored" "2025-10-24T15:36:59.673004000Z", "version" "1.0.0", "id" "4081dfc5-2ece-43a7-829b-5476fef0676e", "timestamp" "2025-10-24T15:36:59.673004000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7b65bd91-82e5-4596-92e3-59563e9edc71" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Likert"}, "description" {"en" "How awesome is Experience API?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "likert", "correctResponsesPattern" ["likert_3"], "scale" [{"id" "likert_0", "description" {"en-US" "It's OK"}} {"id" "likert_1", "description" {"en-US" "It's Pretty Cool"}} {"id" "likert_2", "description" {"en-US" "It's Damn Cool"}} {"id" "likert_3", "description" {"en-US" "It's Gonna Change the World"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:36:59.663762000Z", "version" "1.0.0", "id" "7b65bd91-82e5-4596-92e3-59563e9edc71", "timestamp" "2025-10-24T15:36:59.663762000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "eb74b1ba-f280-45c9-ad57-07ee7b68f7c6" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Choice"}, "description" {"en" "Which of these prototypes are available at the beta site?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "choice", "correctResponsesPattern" ["golf[,]tetris"], "choices" [{"id" "golf", "description" {"en-US" "Golf Example"}} {"id" "facebook", "description" {"en-US" "Facebook App"}} {"id" "tetris", "description" {"en-US" "Tetris Example"}} {"id" "scrabble", "description" {"en-US" "Scrabble Example"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:36:59.654677000Z", "version" "1.0.0", "id" "eb74b1ba-f280-45c9-ad57-07ee7b68f7c6", "timestamp" "2025-10-24T15:36:59.654677000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ebd85de7-135e-4848-8563-2390c7e8a400" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "True-False"}, "description" {"en" "Does the xAPI include the concept of statements?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "true-false", "correctResponsesPattern" ["true"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:36:59.644954000Z", "version" "1.0.0", "id" "ebd85de7-135e-4848-8563-2390c7e8a400", "timestamp" "2025-10-24T15:36:59.644954000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ccf46e60-dc2a-43a3-aa06-40925b60b773" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Sequencing"}, "description" {"en" "Order players by their pong ladder position:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "sequencing", "correctResponsesPattern" ["tim[,]mike[,]ells[,]ben"], "choices" [{"id" "tim", "description" {"en-US" "Tim"}} {"id" "ben", "description" {"en-US" "Ben"}} {"id" "ells", "description" {"en-US" "Ells"}} {"id" "mike", "description" {"en-US" "Mike"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:36:59.636206000Z", "version" "1.0.0", "id" "ccf46e60-dc2a-43a3-aa06-40925b60b773", "timestamp" "2025-10-24T15:36:59.636206000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "37496e04-feba-4344-81e3-f0cf464b41da" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Performance"}, "description" {"en" "This interaction measures performance over a day of RS sports:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "performance", "correctResponsesPattern" ["pong[.]1:[,]dg[.]:10[,]lunch[.]"], "steps" [{"id" "pong", "description" {"en-US" "Net pong matches won"}} {"id" "dg", "description" {"en-US" "Strokes over par in disc golf at Liberty"}} {"id" "lunch", "description" {"en-US" "Lunch having been eaten"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:36:59.627197000Z", "version" "1.0.0", "id" "37496e04-feba-4344-81e3-f0cf464b41da", "timestamp" "2025-10-24T15:36:59.627197000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "20c5c2ce-785c-4a71-a6b4-6e80ce573932" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Other"}, "description" {"en" "On this map, please mark Franklin, TN"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "other", "correctResponsesPattern" ["(35.937432,-86.868896)"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:36:59.618379000Z", "version" "1.0.0", "id" "20c5c2ce-785c-4a71-a6b4-6e80ce573932", "timestamp" "2025-10-24T15:36:59.618379000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f54ec333-f4d5-41d8-87e5-6bdd9b8ec48d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "matching", "name" {"en" "Matching"}, "source" [{"id" "ben", "description" {"en-US" "Ben"}} {"id" "chris", "description" {"en-US" "Chris"}} {"id" "troy", "description" {"en-US" "Troy"}} {"id" "freddie", "description" {"en-US" "Freddie"}}], "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "target" [{"id" "1", "description" {"en-US" "Swift Kick in the Grass"}} {"id" "2", "description" {"en-US" "We got Runs"}} {"id" "3", "description" {"en-US" "Duck"}} {"id" "4", "description" {"en-US" "Van Delay Industries"}}], "correctResponsesPattern" ["ben[.]3[,]chris[.]2[,]troy[.]4[,]freddie[.]1"], "description" {"en" "Match these people to their kickball team:"}}}, "stored" "2025-10-24T15:36:59.609801000Z", "version" "1.0.0", "id" "f54ec333-f4d5-41d8-87e5-6bdd9b8ec48d", "timestamp" "2025-10-24T15:36:59.609801000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "87201855-5453-4b84-887f-49a3779dc258" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Long-Fill-In"}, "description" {"en" "What is the purpose of the xAPI?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "long-fill-in", "correctResponsesPattern" ["{case_matters=false}{lang=en}To store and provide access to learning experiences."], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:36:59.601018000Z", "version" "1.0.0", "id" "87201855-5453-4b84-887f-49a3779dc258", "timestamp" "2025-10-24T15:36:59.601018000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "64d3f998-2bdb-489e-b12e-29445ef01568" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Likert"}, "description" {"en" "How awesome is Experience API?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "likert", "correctResponsesPattern" ["likert_3"], "scale" [{"id" "likert_0", "description" {"en-US" "It's OK"}} {"id" "likert_1", "description" {"en-US" "It's Pretty Cool"}} {"id" "likert_2", "description" {"en-US" "It's Damn Cool"}} {"id" "likert_3", "description" {"en-US" "It's Gonna Change the World"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:36:59.592561000Z", "version" "1.0.0", "id" "64d3f998-2bdb-489e-b12e-29445ef01568", "timestamp" "2025-10-24T15:36:59.592561000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b94fd6ab-d054-4fae-adef-214863641d15" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Numeric"}, "description" {"en" "How many jokes is Chris the butt of each day?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "numeric", "correctResponsesPattern" ["4[:]"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:36:59.584241000Z", "version" "1.0.0", "id" "b94fd6ab-d054-4fae-adef-214863641d15", "timestamp" "2025-10-24T15:36:59.584241000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1a51de15-074e-4aea-a7ef-f8d1c48ca274" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Fill-In"}, "description" {"en" "Ben is often heard saying:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "fill-in", "correctResponsesPattern" ["Bob's your uncle"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:36:59.575760000Z", "version" "1.0.0", "id" "1a51de15-074e-4aea-a7ef-f8d1c48ca274", "timestamp" "2025-10-24T15:36:59.575760000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2ab111c8-a3c1-4777-9d7d-837e335812ea" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Choice"}, "description" {"en" "Which of these prototypes are available at the beta site?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "choice", "correctResponsesPattern" ["golf[,]tetris"], "choices" [{"id" "golf", "description" {"en-US" "Golf Example"}} {"id" "facebook", "description" {"en-US" "Facebook App"}} {"id" "tetris", "description" {"en-US" "Tetris Example"}} {"id" "scrabble", "description" {"en-US" "Scrabble Example"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:36:59.568790000Z", "version" "1.0.0", "id" "2ab111c8-a3c1-4777-9d7d-837e335812ea", "timestamp" "2025-10-24T15:36:59.568790000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4d6b25ea-83d3-4ba5-a034-89e60da9d7b1" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:36:59.561600000Z", "version" "1.0.0", "id" "4d6b25ea-83d3-4ba5-a034-89e60da9d7b1", "timestamp" "2025-10-24T15:36:59.561600000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b3443c7e-fa0b-4583-8c4b-eda6c179a3e3" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:36:59.552981000Z", "version" "1.0.0", "id" "b3443c7e-fa0b-4583-8c4b-eda6c179a3e3", "timestamp" "2025-10-24T15:36:59.552981000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d43f3aaf-3e50-4096-8b3e-8b8c2f43f6e8" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.544158000Z", "version" "1.0.0", "id" "d43f3aaf-3e50-4096-8b3e-8b8c2f43f6e8", "timestamp" "2025-10-24T15:36:59.544158000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0cb5bd8d-41c7-4903-b0bf-f2c79a89b5a8" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "StatementRef", "id" "8f87ccde-bb56-4c2e-ab83-44982ef22df0"}}, "stored" "2025-10-24T15:36:59.534585000Z", "version" "1.0.0", "id" "0cb5bd8d-41c7-4903-b0bf-f2c79a89b5a8", "timestamp" "2025-10-24T15:36:59.534585000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2bce9eac-06bb-4606-a016-cb3764afde39" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "StatementRef", "id" "8f87ccde-bb56-4c2e-ab83-44982ef22df0"}, "stored" "2025-10-24T15:36:59.527622000Z", "version" "1.0.0", "id" "2bce9eac-06bb-4606-a016-cb3764afde39", "timestamp" "2025-10-24T15:36:59.527622000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c77fa02e-d5ba-4d6b-aaba-4de9716e1456" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}}, "stored" "2025-10-24T15:36:59.520053000Z", "version" "1.0.0", "id" "c77fa02e-d5ba-4d6b-aaba-4de9716e1456", "timestamp" "2025-10-24T15:36:59.520053000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1bbf177b-94d5-41d6-8cb4-e498ff20db67" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:36:59.511817000Z", "version" "1.0.0", "id" "1bbf177b-94d5-41d6-8cb4-e498ff20db67", "timestamp" "2025-10-24T15:36:59.511817000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "cba7913a-8023-4d9d-8718-0b6541206408" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}}, "stored" "2025-10-24T15:36:59.501102000Z", "version" "1.0.0", "id" "cba7913a-8023-4d9d-8718-0b6541206408", "timestamp" "2025-10-24T15:36:59.501102000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c0fabeda-8f0d-4fa9-a46b-5cfe84ba2c48" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:36:59.493034000Z", "version" "1.0.0", "id" "c0fabeda-8f0d-4fa9-a46b-5cfe84ba2c48", "timestamp" "2025-10-24T15:36:59.493034000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c3ec70c5-42da-440d-ac84-e131d9ae9206" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:36:59.485063000Z", "version" "1.0.0", "id" "c3ec70c5-42da-440d-ac84-e131d9ae9206", "timestamp" "2025-10-24T15:36:59.485063000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5f13a8ef-72f6-4c9d-aa7d-60db5e837380" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:36:59.476852000Z", "version" "1.0.0", "id" "5f13a8ef-72f6-4c9d-aa7d-60db5e837380", "timestamp" "2025-10-24T15:36:59.476852000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "22388719-7694-4854-aeab-529d42f36fde" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.468641000Z", "version" "1.0.0", "id" "22388719-7694-4854-aeab-529d42f36fde", "timestamp" "2025-10-24T15:36:59.468641000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "49161b94-4e0e-4f01-8cf9-9e05a9355a57" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:36:59.460328000Z", "version" "1.0.0", "id" "49161b94-4e0e-4f01-8cf9-9e05a9355a57", "timestamp" "2025-10-24T15:36:59.460328000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8c884ad3-f054-4d8b-a67f-af20257be54d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Anonymous", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.451877000Z", "version" "1.0.0", "id" "8c884ad3-f054-4d8b-a67f-af20257be54d", "timestamp" "2025-10-24T15:36:59.451877000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "efbc38a8-d460-4f62-8ac4-b51028cb6898" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Anonymous", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.443679000Z", "version" "1.0.0", "id" "efbc38a8-d460-4f62-8ac4-b51028cb6898", "timestamp" "2025-10-24T15:36:59.443679000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2177b512-cb64-4fa3-82f6-29b96d4acc46" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Anonymous", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.435493000Z", "version" "1.0.0", "id" "2177b512-cb64-4fa3-82f6-29b96d4acc46", "timestamp" "2025-10-24T15:36:59.435493000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4279b6d2-6319-4234-9a7e-79da72b6d258" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Anonymous", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "stored" "2025-10-24T15:36:59.427180000Z", "version" "1.0.0", "id" "4279b6d2-6319-4234-9a7e-79da72b6d258", "timestamp" "2025-10-24T15:36:59.427180000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4979a041-981e-462e-aa43-3028a781d6f1" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "4979a041-981e-462e-aa43-3028a781d6f1", "timestamp" "2025-10-24T15:36:59.419405000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Anonymous", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:36:59.419405000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "fefd146d-fd7b-4130-a19f-7c7b0e678c2f" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "fefd146d-fd7b-4130-a19f-7c7b0e678c2f", "timestamp" "2025-10-24T15:36:59.411139000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Anonymous", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:36:59.411139000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "44dd047d-e42f-4a03-a491-470b2b79a842" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:36:59.402549000Z", "version" "1.0.0", "id" "44dd047d-e42f-4a03-a491-470b2b79a842", "timestamp" "2025-10-24T15:36:59.402549000Z"}, "ba65c77c-c9e9-4a67-9e6c-15490ea9d0ee" {"actor" {"objectType" "Group", "name" "Group Anonymous", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:36:59.393446000Z", "version" "1.0.0", "id" "ba65c77c-c9e9-4a67-9e6c-15490ea9d0ee", "timestamp" "2025-10-24T15:36:59.393446000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e23e8098-beb5-4fdc-9621-be7484142c38" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.384916000Z", "version" "1.0.0", "id" "e23e8098-beb5-4fdc-9621-be7484142c38", "timestamp" "2025-10-24T15:36:59.384916000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9cd563d0-d4dc-4689-b3c8-6fe6ebeb2c29" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.375748000Z", "version" "1.0.0", "id" "9cd563d0-d4dc-4689-b3c8-6fe6ebeb2c29", "timestamp" "2025-10-24T15:36:59.375748000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9f81b0d7-1b09-47ec-b35c-e4e05825bd0a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.365251000Z", "version" "1.0.0", "id" "9f81b0d7-1b09-47ec-b35c-e4e05825bd0a", "timestamp" "2025-10-24T15:36:59.365251000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "308c8c13-141b-4a02-85bc-c0f0e57af806" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:36:59.359039000Z", "version" "1.0.0", "id" "308c8c13-141b-4a02-85bc-c0f0e57af806", "timestamp" "2025-10-24T15:36:59.359039000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "6745c3b0-79be-4bed-9403-91b475efb679" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "6745c3b0-79be-4bed-9403-91b475efb679", "timestamp" "2025-10-24T15:36:59.351577000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:36:59.351577000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "ebaf6838-79c9-42f0-b30e-fec6433b52fb" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "ebaf6838-79c9-42f0-b30e-fec6433b52fb", "timestamp" "2025-10-24T15:36:59.343821000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:36:59.343821000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "cbc40ac8-2cc2-40c0-82c6-ed0df6d2370b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:36:59.337848000Z", "version" "1.0.0", "id" "cbc40ac8-2cc2-40c0-82c6-ed0df6d2370b", "timestamp" "2025-10-24T15:36:59.337848000Z"}, "d7f5e9a2-4c31-4ddc-a439-30795338d1d6" {"actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:36:59.331895000Z", "version" "1.0.0", "id" "d7f5e9a2-4c31-4ddc-a439-30795338d1d6", "timestamp" "2025-10-24T15:36:59.331895000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "fa632b5b-5e31-45d2-9aef-3bdefcc79356" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.326190000Z", "version" "1.0.0", "id" "fa632b5b-5e31-45d2-9aef-3bdefcc79356", "timestamp" "2025-10-24T15:36:59.326190000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f0b5156e-9676-4be4-a96d-5f2cf1214403" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.320379000Z", "version" "1.0.0", "id" "f0b5156e-9676-4be4-a96d-5f2cf1214403", "timestamp" "2025-10-24T15:36:59.320379000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "36d6c2a0-2ea1-4da6-b9ff-31602933ece0" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.314661000Z", "version" "1.0.0", "id" "36d6c2a0-2ea1-4da6-b9ff-31602933ece0", "timestamp" "2025-10-24T15:36:59.314661000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5af99df2-1839-4ffc-85a1-ad4206a72a91" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:36:59.308981000Z", "version" "1.0.0", "id" "5af99df2-1839-4ffc-85a1-ad4206a72a91", "timestamp" "2025-10-24T15:36:59.308981000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "cad15ad4-a556-4bfc-9635-d7531e20f8d3" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "cad15ad4-a556-4bfc-9635-d7531e20f8d3", "timestamp" "2025-10-24T15:36:59.303143000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:36:59.303143000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "8e5e2b34-e386-4431-bfe7-7067b3db7318" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "8e5e2b34-e386-4431-bfe7-7067b3db7318", "timestamp" "2025-10-24T15:36:59.297318000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:36:59.297318000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "ed34a3e9-ad17-49a6-9b1b-92c071d5804e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:36:59.291742000Z", "version" "1.0.0", "id" "ed34a3e9-ad17-49a6-9b1b-92c071d5804e", "timestamp" "2025-10-24T15:36:59.291742000Z"}, "bbdbf696-09bb-4416-862a-0281ddfe8c5e" {"actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:36:59.285893000Z", "version" "1.0.0", "id" "bbdbf696-09bb-4416-862a-0281ddfe8c5e", "timestamp" "2025-10-24T15:36:59.285893000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f2919582-4252-410a-be97-44ac67a4bd63" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.280244000Z", "version" "1.0.0", "id" "f2919582-4252-410a-be97-44ac67a4bd63", "timestamp" "2025-10-24T15:36:59.280244000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d135bdd8-80dd-4ee3-834e-b8c2e6419291" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.274734000Z", "version" "1.0.0", "id" "d135bdd8-80dd-4ee3-834e-b8c2e6419291", "timestamp" "2025-10-24T15:36:59.274734000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "22fa5b1b-0a60-4cfa-8a7b-06e51295ffec" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:36:59.269325000Z", "version" "1.0.0", "id" "22fa5b1b-0a60-4cfa-8a7b-06e51295ffec", "timestamp" "2025-10-24T15:36:59.269325000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b5c9f41f-a458-4ee3-a013-12bc19a8689e" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "b5c9f41f-a458-4ee3-a013-12bc19a8689e", "timestamp" "2025-10-24T15:36:59.263994000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "1.0.0", "stored" "2025-10-24T15:36:59.263994000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "f6b2f6c0-ead6-466e-8717-8ab6523db6b8" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:36:59.258761000Z", "version" "1.0.0", "id" "f6b2f6c0-ead6-466e-8717-8ab6523db6b8", "timestamp" "2025-10-24T15:36:59.258761000Z"}, "dbdad0f1-60bf-4566-9ecd-08a338d1d914" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:36:59.253160000Z", "version" "1.0.0", "id" "dbdad0f1-60bf-4566-9ecd-08a338d1d914", "timestamp" "2025-10-24T15:36:59.253160000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "fb51816e-3a88-477c-bbf8-562fea8efe0f" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "timestamp" "2013-05-18T05:32:34.804Z", "stored" "2025-10-24T15:36:59.247414000Z", "version" "1.0.0", "id" "fb51816e-3a88-477c-bbf8-562fea8efe0f", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1ee3ee68-4ee6-4c41-baa7-ee74f1afa821" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "1ee3ee68-4ee6-4c41-baa7-ee74f1afa821", "timestamp" "2025-10-24T15:36:59.214179000Z", "version" "1.0.0", "stored" "2025-10-24T15:36:59.214179000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.12123434, "raw" 12.125, "min" 0.12123434, "max" 45.45}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "3d383292-2608-41d2-8e60-67a6250f60e2" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "fr-CA", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.203596000Z", "version" "1.0.0", "id" "3d383292-2608-41d2-8e60-67a6250f60e2", "timestamp" "2025-10-24T15:36:59.203596000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9e474f9a-78a8-41e6-b2a7-4668cb9911ac" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "matching", "name" {"en" "Matching"}, "source" [{"id" "ben", "description" {"en-US" "Ben"}} {"id" "chris", "description" {"en-US" "Chris"}} {"id" "troy", "description" {"en-US" "Troy"}} {"id" "freddie", "description" {"en-US" "Freddie"}}], "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "target" [{"id" "1", "description" {"en-US" "Swift Kick in the Grass", "ja" "草でスイフトキック"}} {"id" "2", "description" {"en-US" "We got Runs"}} {"id" "3", "description" {"en-US" "Duck"}} {"id" "4", "description" {"en-US" "Van Delay Industries"}}], "correctResponsesPattern" ["ben[.]3[,]chris[.]2[,]troy[.]4[,]freddie[.]1"], "description" {"en" "Match these people to their kickball team:"}}}}, "stored" "2025-10-24T15:36:59.198189000Z", "version" "1.0.0", "id" "9e474f9a-78a8-41e6-b2a7-4668cb9911ac", "timestamp" "2025-10-24T15:36:59.198189000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7d1b0471-e373-4b46-9604-439b5bc2da69" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present.", "ase" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:36:59.187887000Z", "version" "1.0.0", "id" "7d1b0471-e373-4b46-9604-439b5bc2da69", "timestamp" "2025-10-24T15:36:59.187887000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "bf2605cb-a3cf-4a8d-a552-dc9ae5c8fdb5" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting", "zh-Hans-CN" "例如会议"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:36:59.177614000Z", "version" "1.0.0", "id" "bf2605cb-a3cf-4a8d-a552-dc9ae5c8fdb5", "timestamp" "2025-10-24T15:36:59.177614000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "bd80af29-222f-4a3c-987f-00bca84e9ef6" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported", "sr-Cyrl" "пријавио"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:59.167862000Z", "version" "1.0.0", "id" "bd80af29-222f-4a3c-987f-00bca84e9ef6", "timestamp" "2025-10-24T15:36:59.167862000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8612b006-8779-458f-8ea4-f24fcea78d61" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "8612b006-8779-458f-8ea4-f24fcea78d61", "timestamp" "2025-10-24T15:36:59.158264000Z", "version" "1.0.0", "stored" "2025-10-24T15:36:59.158264000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "description" {"en-US" "A test attachment (description)", "es-MX" "Un accesorio de prueba (descripción)"}, "contentType" "text/plain; charset=ascii", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "fileUrl" "http://over.there.com/file.txt"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "df091183-49bc-45ca-988d-67fcb62dbe44" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "df091183-49bc-45ca-988d-67fcb62dbe44", "timestamp" "2025-10-24T15:36:59.148051000Z", "version" "1.0.0", "stored" "2025-10-24T15:36:59.148051000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment", "es" "Un accesorio de prueba"}, "description" {"en-US" "A test attachment (description)"}, "contentType" "text/plain; charset=ascii", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "fileUrl" "http://over.there.com/file.txt"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "bdf59017-d8ec-4fa8-9d16-daf87fd9a233" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "bdf59017-d8ec-4fa8-9d16-daf87fd9a233", "timestamp" "2025-10-24T15:36:59.138372000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "cmn", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "version" "1.0.0", "stored" "2025-10-24T15:36:59.138372000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "a54ca04b-7800-413c-93eb-083d0c8d5551" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Likert"}, "description" {"en" "How awesome is Experience API?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "likert", "correctResponsesPattern" ["likert_3"], "scale" [{"id" "likert_0", "description" {"en-US" "It's OK", "sr-Latn-RS" "U redu je"}} {"id" "likert_1", "description" {"en-US" "It's Pretty Cool"}} {"id" "likert_2", "description" {"en-US" "It's Damn Cool"}} {"id" "likert_3", "description" {"en-US" "It's Gonna Change the World"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:36:59.133236000Z", "version" "1.0.0", "id" "a54ca04b-7800-413c-93eb-083d0c8d5551", "timestamp" "2025-10-24T15:36:59.133236000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "fcbd9ccd-5b29-4867-95b5-fa8167a2961f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting", "de-DE" "Beispiel Treffen"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present.", "zh-Hant" "所發生的與目前某些人特定場合的一個例子會議。"}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:36:59.123573000Z", "version" "1.0.0", "id" "fcbd9ccd-5b29-4867-95b5-fa8167a2961f", "timestamp" "2025-10-24T15:36:59.123573000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "81cb1cbc-d698-4906-a44e-5c7e95c5e197" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting", "de-DE" "Beispiel Treffen"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present.", "de-DE" "Ein Beispiel Sitzung, die auf einem bestimmten Anlass mit bestimmten Personen zufällig anwesend."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:36:59.114225000Z", "version" "1.0.0", "id" "81cb1cbc-d698-4906-a44e-5c7e95c5e197", "timestamp" "2025-10-24T15:36:59.114225000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5a7105eb-0517-465a-bc61-e1c538ec0a5f" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended", "de" "besucht"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:36:59.105019000Z", "version" "1.0.0", "id" "5a7105eb-0517-465a-bc61-e1c538ec0a5f", "timestamp" "2025-10-24T15:36:59.105019000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e6a2ab3c-abb7-4528-89bf-250bf9478c01" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/null" nil}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:58.866121000Z", "version" "1.0.0", "id" "e6a2ab3c-abb7-4528-89bf-250bf9478c01", "timestamp" "2025-10-24T15:36:58.866121000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ded78fd0-bddf-485a-bc20-b3a19a7a1e54" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/null" nil}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:36:58.859214000Z", "version" "1.0.0", "id" "ded78fd0-bddf-485a-bc20-b3a19a7a1e54", "timestamp" "2025-10-24T15:36:58.859214000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "053fbbb3-b754-4635-8940-f407d7880e48" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/null" nil}}}}, "stored" "2025-10-24T15:36:58.852415000Z", "version" "1.0.0", "id" "053fbbb3-b754-4635-8940-f407d7880e48", "timestamp" "2025-10-24T15:36:58.852415000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7008d779-6a79-4c13-84dd-240598d05dc5" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "7008d779-6a79-4c13-84dd-240598d05dc5", "timestamp" "2025-10-24T15:36:58.846387000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/null" nil}}, "version" "1.0.0", "stored" "2025-10-24T15:36:58.846387000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "686c114d-8c62-4768-bad0-571f171b9d06" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "686c114d-8c62-4768-bad0-571f171b9d06", "timestamp" "2025-10-24T15:36:58.840061000Z", "version" "1.0.0", "stored" "2025-10-24T15:36:58.840061000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/null" nil}}}, "def27264-2489-4201-9ffc-eb3cfb635087" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/null" nil}}}, "stored" "2025-10-24T15:36:58.833581000Z", "version" "1.0.0", "id" "def27264-2489-4201-9ffc-eb3cfb635087", "timestamp" "2025-10-24T15:36:58.833581000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8eb4be41-8841-4f21-8b14-7ad93ec7f83b" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "8eb4be41-8841-4f21-8b14-7ad93ec7f83b", "stored" "2025-10-24T15:36:58.761269000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:36:58.761269000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}}, :voided-statements {"04bb0725-7e83-4d3e-83c5-68fb9bcb8328" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "04bb0725-7e83-4d3e-83c5-68fb9bcb8328", "stored" "2025-10-24T15:37:00.095464000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:00.095464000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8e54667f-d944-4131-b6f6-17911d5ca784" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:37:01.170833000Z", "version" "1.0.0", "id" "8e54667f-d944-4131-b6f6-17911d5ca784", "timestamp" "2025-10-24T15:37:01.170833000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ad359f9d-0a9f-4a8e-a977-0d6e6101c07f" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "ad359f9d-0a9f-4a8e-a977-0d6e6101c07f", "stored" "2025-10-24T15:37:11.466041000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:11.466041000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0e534ee1-1181-4389-b01e-be10a331cde4" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "0e534ee1-1181-4389-b01e-be10a331cde4", "stored" "2025-10-24T15:37:11.779981000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:11.779981000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2077c13b-9c16-493c-9626-55769b59870e" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "2077c13b-9c16-493c-9626-55769b59870e", "stored" "2025-10-24T15:37:12.260944000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:12.260944000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1e2179db-9aa0-4824-b463-9c553075c477" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "1e2179db-9aa0-4824-b463-9c553075c477", "stored" "2025-10-24T15:37:12.728533000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:12.728533000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "fe666861-b43c-42fb-972b-ddd54e9c4007" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/test/voided/target/af664352-eb6a-48cb-b065-ca5af7cded1f", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "fe666861-b43c-42fb-972b-ddd54e9c4007", "stored" "2025-10-24T15:37:12.786144000Z", "version" "1.0.0", "timestamp" "2025-10-24T15:37:12.786144000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}}, :refs {"18995581-2261-4df2-ae45-2e62958b80c3" "8f87ccde-bb56-4c2e-ab83-44982ef22df0", "071ba960-c805-4c13-b52a-9d47566a1e16" "ad359f9d-0a9f-4a8e-a977-0d6e6101c07f", "f9156fe4-7581-4e02-b26b-914dbdb48ab5" "8f87ccde-bb56-4c2e-ab83-44982ef22df0", "2bce9eac-06bb-4606-a016-cb3764afde39" "8f87ccde-bb56-4c2e-ab83-44982ef22df0", "3a734da2-2551-4523-b6f4-202ab2db2a7b" "fe666861-b43c-42fb-972b-ddd54e9c4007", "b15884ca-92b4-4db9-8716-3315e6370b39" "04bb0725-7e83-4d3e-83c5-68fb9bcb8328", "9b4569dc-b7de-4a36-88e8-b207300402f1" "1e2179db-9aa0-4824-b463-9c553075c477", "b94c84f8-a178-40f0-80aa-260e972e3b37" "8f87ccde-bb56-4c2e-ab83-44982ef22df0", "bcb55e64-eae7-48ef-93f4-0ee1b884ac5a" "8e54667f-d944-4131-b6f6-17911d5ca784", "20a0a142-e212-481d-8e51-7d3bbfb73031" "fe666861-b43c-42fb-972b-ddd54e9c4007", "bc4dd5bb-c601-47d6-a887-5640997a4222" "8e54667f-d944-4131-b6f6-17911d5ca784", "6ac83866-6587-4def-869e-c6422816c2e2" "0e534ee1-1181-4389-b01e-be10a331cde4", "002e40fe-3abb-4639-b615-0424956b0dfc" "2077c13b-9c16-493c-9626-55769b59870e"}, :activities {"http://www.example.com/test/array/statements/pri" {"id" "http://www.example.com/test/array/statements/pri", "objectType" "Activity", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "http://www.example.com/meetings/occurances/34534678d3c7d-de9e-46d2-b2cf-8dc9a7554fda" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534678d3c7d-de9e-46d2-b2cf-8dc9a7554fda"}, "http://www.example.com/meetings/occurances/34534bd75714f-c963-4dfb-b2e6-12dd131b1c3a" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534bd75714f-c963-4dfb-b2e6-12dd131b1c3a"}, "http://www.example.com/unicode" {"objectType" "Activity", "id" "http://www.example.com/unicode", "definition" {"name" {"pa-IN" "ਹਾਜ਼ਰ", "en" "Other", "sk-SK" "zúčastnil", "ja-JP" "出席した", "en-US" "attended", "en-GB" "attended", "hy-AM" "ներկա է գտնվել", "ru-RU" "участие", "ar-EG" "حضر", "ko-KR" "참석", "is-IS" "sótti", "kn-IN" "ಹಾಜರಿದ್ದರು"}, "description" {"en-US" "On this map, please mark Franklin, TN", "en-GB" "On this map, please mark Franklin, TN"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "other", "correctResponsesPattern" ["(35.937432,-86.868896)"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "http://www.example.com/verify/complete/34534" {"objectType" "Activity", "id" "http://www.example.com/verify/complete/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "http://www.example.com/meetings/categories/teammeeting" {"id" "http://www.example.com/meetings/categories/teammeeting", "objectType" "Activity", "definition" {"extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "other", "name" {"en" "Other"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "correctResponsesPattern" ["(35.937432,-86.868896)"], "description" {"en" "On this map, please mark Franklin, TN"}}}, "http://www.example.com/meetings/occurances/34534f129598c-47ce-46f6-86f8-e41373c3713a" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534f129598c-47ce-46f6-86f8-e41373c3713a"}, "http://www.example.com/verify/complete/34534100123" {"id" "http://www.example.com/verify/complete/34534100123", "objectType" "Activity", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting", "fr-FR" "réunion"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "http://www.example.com/meetings/occurances/34534" {"id" "http://www.example.com/meetings/occurances/34534", "objectType" "Activity", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting", "de-DE" "Beispiel Treffen", "zh-Hans-CN" "例如会议"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present.", "de-DE" "Ein Beispiel Sitzung, die auf einem bestimmten Anlass mit bestimmten Personen zufällig anwesend.", "zh-Hant" "所發生的與目前某些人特定場合的一個例子會議。", "ase" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/null" nil, "http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" nil}, "interactionType" "fill-in", "correctResponsesPattern" ["Bob\"s your uncle"]}}, "http://www.example.com/meetings/occurances/34534e62a2c1e-2af6-4c21-80ea-d9716f89cba0" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534e62a2c1e-2af6-4c21-80ea-d9716f89cba0"}, "http://www.example.com/unicode/6ad7925c-0e63-4e13-af1a-5e606f83a6a3" {"objectType" "Activity", "id" "http://www.example.com/unicode/6ad7925c-0e63-4e13-af1a-5e606f83a6a3", "definition" {"name" {"pa-IN" "ਹਾਜ਼ਰ", "en" "Other", "sk-SK" "zúčastnil", "ja-JP" "出席した", "en-US" "attended", "en-GB" "attended", "hy-AM" "ներկա է գտնվել", "ru-RU" "участие", "ar-EG" "حضر", "ko-KR" "참석", "is-IS" "sótti", "kn-IN" "ಹಾಜರಿದ್ದರು"}, "description" {"en-US" "On this map, please mark Franklin, TN", "en-GB" "On this map, please mark Franklin, TN"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "other", "correctResponsesPattern" ["(35.937432,-86.868896)"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "http://www.example.com/test/array/statements/sub" {"id" "http://www.example.com/test/array/statements/sub", "objectType" "Activity", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, :agents {["mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"] {"objectType" "Person", "mbox_sha1sum" ["cd9b00a5611f94eaa7b1661edab976068e364975"], "name" ["xAPI mbox_sha1sum"]}, ["mbox" "mailto:04936178-d3d9-49f0-bacd-d829fb25466c@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:04936178-d3d9-49f0-bacd-d829fb25466c@adlnet.gov"], "name" ["xAPI account"]}, ["mbox" "mailto:agent99df6ae6-f17d-46aa-b522-c91b0175dcbc@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:agent99df6ae6-f17d-46aa-b522-c91b0175dcbc@adlnet.gov"], "name" ["xAPI account"]}, ["mbox" "mailto:1aa0e0e7-606b-44db-aa30-9ee95d99c195@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:1aa0e0e7-606b-44db-aa30-9ee95d99c195@adlnet.gov"], "name" ["xAPI mbox"]}, ["mbox" "mailto:cb69284e-0765-4b43-bfb6-cd9ef12fc871@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:cb69284e-0765-4b43-bfb6-cd9ef12fc871@adlnet.gov"], "name" ["xAPI mbox"]}, ["mbox" "mailto:xapi@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:xapi@adlnet.gov"], "name" ["xAPI mbox" "xAPI account"]}, ["mbox" "mailto:0f2ad040-9ef0-44b1-ad6f-6b88cdf20883@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:0f2ad040-9ef0-44b1-ad6f-6b88cdf20883@adlnet.gov"], "name" ["xAPI account"]}, ["account" {"homePage" "http://www.example.com", "name" "xAPI account name"}] {"objectType" "Person", "name" ["xAPI account"], "account" [{"homePage" "http://www.example.com", "name" "xAPI account name"}]}, ["mbox" "mailto:b2abe131-03ec-4dd6-a45c-bce86e931a80@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:b2abe131-03ec-4dd6-a45c-bce86e931a80@adlnet.gov"], "name" ["xAPI account"]}, ["mbox" "mailto:545ec397-6836-488c-999a-6adfa2c14377@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:545ec397-6836-488c-999a-6adfa2c14377@adlnet.gov"], "name" ["xAPI account"]}, ["mbox" "mailto:82db6360-a278-4b0f-bfab-6db60ccc79c7@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:82db6360-a278-4b0f-bfab-6db60ccc79c7@adlnet.gov"], "name" ["xAPI account"]}, ["account" {"name" "root", "homePage" "http://localhost:8080"}] {"objectType" "Person", "name" ["Memory LRS"], "account" [{"name" "root", "homePage" "http://localhost:8080"}]}, ["mbox" "mailto:sub@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:sub@adlnet.gov"], "name" ["xAPI mbox"]}, ["openid" "http://openid.example.org/12345"] {"objectType" "Person", "name" ["xAPI openid"], "openid" ["http://openid.example.org/12345"]}, ["mbox" "mailto:pri@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:pri@adlnet.gov"], "name" ["xAPI mbox"]}, ["mbox" "mailto:65492239-d4e4-426c-ba64-ffaf9f6a8ec5@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:65492239-d4e4-426c-ba64-ffaf9f6a8ec5@adlnet.gov"], "name" ["xAPI account"]}}, :attachments {"eea247d50f3b17f898fdb9238b079cfdcd37fb413268b3e91202463e6db03ff0" {:sha2 "eea247d50f3b17f898fdb9238b079cfdcd37fb413268b3e91202463e6db03ff0", :contentType "application/octet-stream", :length 796, :content [101 121 74 104 98 71 99 105 79 105 74 83 85 122 73 49 78 105 74 57 46 101 121 74 104 89 51 82 118 99 105 73 54 101 121 74 118 89 109 112 108 89 51 82 85 101 88 66 108 73 106 111 105 81 87 100 108 98 110 81 105 76 67 74 117 89 87 49 108 73 106 111 105 101 69 70 81 83 83 66 116 89 109 57 52 73 105 119 105 98 87 74 118 101 67 73 54 73 109 49 104 97 87 120 48 98 122 112 52 89 88 66 112 81 71 70 107 98 71 53 108 100 67 53 110 98 51 89 105 102 83 119 105 100 109 86 121 89 105 73 54 101 121 74 112 90 67 73 54 73 109 104 48 100 72 65 54 76 121 57 104 90 71 120 117 90 88 81 117 90 50 57 50 76 50 86 52 99 71 70 119 97 83 57 50 90 88 74 105 99 121 57 104 100 72 82 108 98 109 82 108 90 67 73 115 73 109 82 112 99 51 66 115 89 88 107 105 79 110 115 105 90 87 52 116 82 48 73 105 79 105 74 104 100 72 82 108 98 109 82 108 90 67 73 115 73 109 86 117 76 86 86 84 73 106 111 105 89 88 82 48 90 87 53 107 90 87 81 105 102 88 48 115 73 109 57 105 97 109 86 106 100 67 73 54 101 121 74 118 89 109 112 108 89 51 82 85 101 88 66 108 73 106 111 105 81 87 78 48 97 88 90 112 100 72 107 105 76 67 74 112 90 67 73 54 73 109 104 48 100 72 65 54 76 121 57 51 100 51 99 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 118 98 87 86 108 100 71 108 117 90 51 77 118 98 50 78 106 100 88 74 104 98 109 78 108 99 121 56 122 78 68 85 122 78 67 74 57 76 67 74 112 90 67 73 54 73 109 86 109 77 122 65 121 77 68 90 104 76 87 78 108 78 87 73 116 78 68 65 51 77 83 48 53 79 84 78 104 76 87 90 105 79 68 78 105 89 84 82 107 77 87 74 107 77 83 74 57 46 102 106 54 119 56 90 57 90 71 95 104 115 90 73 45 86 80 71 104 83 122 82 69 65 101 57 51 122 104 120 101 110 120 121 97 57 87 87 51 113 65 79 70 77 110 117 65 75 70 54 122 55 72 104 120 97 67 68 48 114 119 77 57 77 45 121 51 108 107 95 65 87 99 50 45 68 97 74 117 83 54 76 103 110 78 116 70 76 112 78 56 113 98 49 89 56 45 115 116 80 114 49 56 117 113 57 79 67 67 84 87 95 57 65 57 52 118 100 55 66 69 56 82 56 108 68 55 80 119 84 71 55 106 87 75 75 89 122 104 121 85 114 66 79 113 110 54 72 68 104 113 122 53 115 52 57 109 84 48 83 111 90 49 116 100 85 56 53 110 88 97 50 69 112 113 77 51 117 90 112 107 105 67 54 49 55 84 67 67 74 49 95 103 114 52 121 49 90 111 114 77 101 70 113 118 73 81 80 112 71 121 80 53 79 69 76 67 45 101 81 112 85 50 119 73 87 65 115 71 56 74 87 82 100 89 70 118 87 111 102 87 49 56 65 69 83 100 113 83 65 117 65 67 52 112 85 105 113 107 67 115 86 98 90 82 87 74 57 87 65 86 101 73 68 112 75 56 79 76 89 85 56 97 73 76 65 87 116 121 88 52 117 86 50 117 88 99 77 101 52 85 122 45 50 100 72 97 55 87 83 53 115 55 103 108 56 72 120 72 77 45 80 82 85 82 99 101 67 100 117 109 98 112 82 49 99 55 82 52 105 115 65]}, "7e916e56b1e4ba8e6cbfcbf35f23a8fed6b8a1d337c7e3ef0646dae1337ff140" {:sha2 "7e916e56b1e4ba8e6cbfcbf35f23a8fed6b8a1d337c7e3ef0646dae1337ff140", :contentType "application/octet-stream", :length 796, :content [101 121 74 104 98 71 99 105 79 105 74 83 85 122 77 52 78 67 74 57 46 101 121 74 104 89 51 82 118 99 105 73 54 101 121 74 118 89 109 112 108 89 51 82 85 101 88 66 108 73 106 111 105 81 87 100 108 98 110 81 105 76 67 74 117 89 87 49 108 73 106 111 105 101 69 70 81 83 83 66 116 89 109 57 52 73 105 119 105 98 87 74 118 101 67 73 54 73 109 49 104 97 87 120 48 98 122 112 52 89 88 66 112 81 71 70 107 98 71 53 108 100 67 53 110 98 51 89 105 102 83 119 105 100 109 86 121 89 105 73 54 101 121 74 112 90 67 73 54 73 109 104 48 100 72 65 54 76 121 57 104 90 71 120 117 90 88 81 117 90 50 57 50 76 50 86 52 99 71 70 119 97 83 57 50 90 88 74 105 99 121 57 104 100 72 82 108 98 109 82 108 90 67 73 115 73 109 82 112 99 51 66 115 89 88 107 105 79 110 115 105 90 87 52 116 82 48 73 105 79 105 74 104 100 72 82 108 98 109 82 108 90 67 73 115 73 109 86 117 76 86 86 84 73 106 111 105 89 88 82 48 90 87 53 107 90 87 81 105 102 88 48 115 73 109 57 105 97 109 86 106 100 67 73 54 101 121 74 118 89 109 112 108 89 51 82 85 101 88 66 108 73 106 111 105 81 87 78 48 97 88 90 112 100 72 107 105 76 67 74 112 90 67 73 54 73 109 104 48 100 72 65 54 76 121 57 51 100 51 99 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 118 98 87 86 108 100 71 108 117 90 51 77 118 98 50 78 106 100 88 74 104 98 109 78 108 99 121 56 122 78 68 85 122 78 67 74 57 76 67 74 112 90 67 73 54 73 106 78 108 89 122 104 109 79 68 73 50 76 84 89 49 77 106 107 116 78 68 89 120 90 83 49 104 77 50 85 121 76 87 89 121 89 50 69 49 79 68 77 51 89 87 81 122 78 121 74 57 46 79 78 97 98 102 56 74 107 114 70 69 45 105 83 68 111 50 120 54 68 97 109 121 76 117 81 119 86 87 104 70 83 72 89 111 116 70 118 119 121 86 82 116 72 76 111 122 50 108 104 111 112 86 109 75 80 99 65 78 79 99 75 118 81 88 121 72 83 114 51 49 95 105 110 87 84 79 100 65 69 122 117 56 73 75 110 111 122 67 101 101 67 103 71 57 65 104 79 67 105 97 89 87 85 56 75 110 83 88 65 102 81 83 112 99 73 56 106 81 120 73 118 53 111 101 122 80 68 55 74 87 110 87 85 56 70 75 108 110 101 108 104 107 89 108 73 111 49 82 55 72 56 72 108 51 84 118 97 68 74 75 109 84 103 86 118 66 115 121 57 111 118 88 66 110 50 122 118 101 106 89 80 86 70 120 48 73 53 112 71 98 69 87 117 71 75 72 118 85 119 117 54 50 99 122 86 78 76 114 72 53 103 51 116 77 97 117 74 79 101 80 55 84 103 85 111 56 95 68 54 105 114 67 88 45 104 66 102 68 48 85 74 109 90 122 105 81 103 49 90 101 114 73 90 55 105 109 121 68 102 72 108 115 49 85 78 71 82 98 53 78 99 84 115 57 50 122 56 53 80 69 81 83 119 90 105 111 109 45 86 56 65 112 50 52 71 122 51 65 118 48 80 72 115 85 121 82 81 80 78 122 118 116 76 112 48 66 53 48 98 89 73 89 110 114 119 90 88 57 107 108 45 66 118 66 100 117 109 114 53 83 103]}, "85779827407b58557929046e0428dc810b6d05f0d2ed22247683df49f562eb68" {:sha2 "85779827407b58557929046e0428dc810b6d05f0d2ed22247683df49f562eb68", :contentType "application/octet-stream", :length 796, :content [101 121 74 104 98 71 99 105 79 105 74 83 85 122 85 120 77 105 74 57 46 101 121 74 104 89 51 82 118 99 105 73 54 101 121 74 118 89 109 112 108 89 51 82 85 101 88 66 108 73 106 111 105 81 87 100 108 98 110 81 105 76 67 74 117 89 87 49 108 73 106 111 105 101 69 70 81 83 83 66 116 89 109 57 52 73 105 119 105 98 87 74 118 101 67 73 54 73 109 49 104 97 87 120 48 98 122 112 52 89 88 66 112 81 71 70 107 98 71 53 108 100 67 53 110 98 51 89 105 102 83 119 105 100 109 86 121 89 105 73 54 101 121 74 112 90 67 73 54 73 109 104 48 100 72 65 54 76 121 57 104 90 71 120 117 90 88 81 117 90 50 57 50 76 50 86 52 99 71 70 119 97 83 57 50 90 88 74 105 99 121 57 104 100 72 82 108 98 109 82 108 90 67 73 115 73 109 82 112 99 51 66 115 89 88 107 105 79 110 115 105 90 87 52 116 82 48 73 105 79 105 74 104 100 72 82 108 98 109 82 108 90 67 73 115 73 109 86 117 76 86 86 84 73 106 111 105 89 88 82 48 90 87 53 107 90 87 81 105 102 88 48 115 73 109 57 105 97 109 86 106 100 67 73 54 101 121 74 118 89 109 112 108 89 51 82 85 101 88 66 108 73 106 111 105 81 87 78 48 97 88 90 112 100 72 107 105 76 67 74 112 90 67 73 54 73 109 104 48 100 72 65 54 76 121 57 51 100 51 99 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 118 98 87 86 108 100 71 108 117 90 51 77 118 98 50 78 106 100 88 74 104 98 109 78 108 99 121 56 122 78 68 85 122 78 67 74 57 76 67 74 112 90 67 73 54 73 109 82 104 77 122 82 106 77 87 89 51 76 87 69 49 90 84 103 116 78 68 85 50 77 121 48 53 79 68 107 49 76 84 73 52 78 68 66 104 77 122 108 104 90 106 73 121 89 121 74 57 46 72 68 50 75 74 53 49 106 71 112 109 81 119 87 111 108 90 74 110 86 45 83 79 103 75 115 100 56 106 80 90 75 108 85 48 85 67 72 100 54 104 104 105 83 115 90 99 121 111 84 54 98 84 120 109 81 89 76 80 49 103 73 48 89 53 55 75 110 114 82 48 67 103 74 90 118 109 53 99 120 98 119 56 70 107 107 48 122 88 68 45 117 102 89 88 108 122 52 51 95 121 87 109 52 104 109 52 97 53 110 75 53 112 77 45 75 55 49 53 112 84 72 111 77 84 87 85 104 121 84 89 51 116 105 70 104 113 65 102 113 111 86 118 118 75 65 50 119 56 69 89 69 117 90 89 108 90 67 107 112 66 77 88 121 80 78 55 53 105 103 101 78 77 101 82 52 90 54 79 97 118 99 81 77 52 65 69 119 108 99 51 54 65 76 73 53 118 111 57 85 85 73 70 98 52 67 56 83 121 110 121 74 99 81 65 108 111 121 75 73 83 95 51 120 98 81 78 53 70 89 79 72 72 70 75 70 115 105 98 73 122 78 51 78 66 112 76 98 100 73 122 98 51 71 86 71 102 105 86 95 120 99 106 90 79 87 85 99 114 57 75 65 68 104 56 90 108 50 106 116 66 78 112 79 72 82 76 101 99 122 71 48 112 89 104 109 97 65 57 67 83 88 99 65 105 79 70 84 108 108 122 72 82 95 90 71 83 69 52 87 95 114 83 103 102 45 103 81 53 49 108 55 74 87 54 101 89 57 99 115 67 65]}, "4d02ef2471928d329c03be883cf0b61f0986a790641210ed8ed2e74c1d75774d" {:sha2 "4d02ef2471928d329c03be883cf0b61f0986a790641210ed8ed2e74c1d75774d", :contentType "image/jpeg", :length 31540, :content [102 102 100 56 102 102 101 48 48 48 49 48 52 97 52 54 52 57 52 54 48 48 48 49 48 49 48 49 48 48 52 56 48 48 52 56 48 48 48 48 102 102 101 50 48 55 98 56 52 57 52 51 52 51 53 102 53 48 53 50 52 102 52 54 52 57 52 99 52 53 48 48 48 49 48 49 48 48 48 48 48 55 97 56 54 49 55 48 55 48 54 99 48 50 50 48 48 48 48 48 54 100 54 101 55 52 55 50 53 50 52 55 52 50 50 48 53 56 53 57 53 97 50 48 48 55 100 57 48 48 48 50 48 48 49 57 48 48 48 98 48 48 49 97 48 48 48 98 54 49 54 51 55 51 55 48 52 49 53 48 53 48 52 99 48 48 48 48 48 48 48 48 54 49 55 48 55 48 54 99 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 102 54 100 54 48 48 48 49 48 48 48 48 48 48 48 48 100 51 50 100 54 49 55 48 55 48 54 99 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 98 54 52 54 53 55 51 54 51 48 48 48 48 48 49 48 56 48 48 48 48 48 48 54 102 54 52 55 51 54 51 54 100 48 48 48 48 48 49 55 56 48 48 48 48 48 53 54 99 54 51 55 48 55 50 55 52 48 48 48 48 48 54 101 52 48 48 48 48 48 48 51 56 55 55 55 52 55 48 55 52 48 48 48 48 48 55 49 99 48 48 48 48 48 48 49 52 55 50 53 56 53 57 53 97 48 48 48 48 48 55 51 48 48 48 48 48 48 48 49 52 54 55 53 56 53 57 53 97 48 48 48 48 48 55 52 52 48 48 48 48 48 48 49 52 54 50 53 56 53 57 53 97 48 48 48 48 48 55 53 56 48 48 48 48 48 48 49 52 55 50 53 52 53 50 52 51 48 48 48 48 48 55 54 99 48 48 48 48 48 48 48 101 54 51 54 56 54 49 54 52 48 48 48 48 48 55 55 99 48 48 48 48 48 48 50 99 54 50 53 52 53 50 52 51 48 48 48 48 48 55 54 99 48 48 48 48 48 48 48 101 54 55 53 52 53 50 52 51 48 48 48 48 48 55 54 99 48 48 48 48 48 48 48 101 54 52 54 53 55 51 54 51 48 48 48 48 48 48 48 48 48 48 48 48 48 48 49 52 52 55 54 53 54 101 54 53 55 50 54 57 54 51 50 48 53 50 52 55 52 50 50 48 53 48 55 50 54 102 54 54 54 57 54 99 54 53 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 49 52 52 55 54 53 54 101 54 53 55 50 54 57 54 51 50 48 53 50 52 55 52 50 50 48 53 48 55 50 54 102 54 54 54 57 54 99 54 53 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 54 100 54 99 55 53 54 51 48 48 48 48 48 48 48 48 48 48 48 48 48 48 49 101 48 48 48 48 48 48 48 99 55 51 54 98 53 51 52 98 48 48 48 48 48 48 50 56 48 48 48 48 48 49 55 56 54 56 55 50 52 56 53 50 48 48 48 48 48 48 50 56 48 48 48 48 48 49 97 48 54 51 54 49 52 53 53 51 48 48 48 48 48 48 50 52 48 48 48 48 48 49 99 56 55 48 55 52 52 50 53 50 48 48 48 48 48 48 50 54 48 48 48 48 48 49 101 99 55 53 54 98 53 53 52 49 48 48 48 48 48 48 50 97 48 48 48 48 48 50 49 50 54 54 55 50 52 54 53 53 48 48 48 48 48 48 50 56 48 48 48 48 48 50 51 99 55 97 54 56 53 52 53 55 48 48 48 48 48 48 49 54 48 48 48 48 48 50 54 52 54 57 55 52 52 57 53 52 48 48 48 48 48 48 50 56 48 48 48 48 48 50 55 97 54 101 54 50 52 101 52 102 48 48 48 48 48 48 50 54 48 48 48 48 48 50 97 50 54 98 54 102 52 98 53 50 48 48 48 48 48 48 49 54 48 48 48 48 48 50 99 56 54 51 55 51 52 51 53 97 48 48 48 48 48 48 50 50 48 48 48 48 48 50 100 101 54 56 54 53 52 57 52 99 48 48 48 48 48 48 49 101 48 48 48 48 48 51 48 48 54 52 54 53 52 52 52 53 48 48 48 48 48 48 50 99 48 48 48 48 48 51 49 101 54 56 55 53 52 56 53 53 48 48 48 48 48 48 50 56 48 48 48 48 48 51 52 97 55 51 55 54 53 51 52 53 48 48 48 48 48 48 50 54 48 48 48 48 48 50 97 50 55 97 54 56 52 51 52 101 48 48 48 48 48 48 49 54 48 48 48 48 48 51 55 50 54 97 54 49 52 97 53 48 48 48 48 48 48 48 49 97 48 48 48 48 48 51 56 56 55 50 54 102 53 50 52 102 48 48 48 48 48 48 50 52 48 48 48 48 48 51 97 50 54 53 54 99 52 55 53 50 48 48 48 48 48 48 50 50 48 48 48 48 48 51 99 54 55 48 55 52 53 48 52 102 48 48 48 48 48 48 50 54 48 48 48 48 48 51 101 56 54 101 54 99 52 101 52 99 48 48 48 48 48 48 50 56 48 48 48 48 48 52 48 101 54 53 55 51 52 53 53 51 48 48 48 48 48 48 50 54 48 48 48 48 48 51 101 56 55 52 54 56 53 52 52 56 48 48 48 48 48 48 50 52 48 48 48 48 48 52 51 54 55 52 55 50 53 52 53 50 48 48 48 48 48 48 50 50 48 48 48 48 48 52 53 97 54 54 54 57 52 54 52 57 48 48 48 48 48 48 50 56 48 48 48 48 48 52 55 99 55 48 54 99 53 48 52 99 48 48 48 48 48 48 50 99 48 48 48 48 48 52 97 52 55 50 55 53 53 50 53 53 48 48 48 48 48 48 50 50 48 48 48 48 48 52 100 48 54 49 55 50 52 53 52 55 48 48 48 48 48 48 50 54 48 48 48 48 48 52 102 50 54 53 54 101 53 53 53 51 48 48 48 48 48 48 50 54 48 48 48 48 48 53 49 56 54 52 54 49 52 52 52 98 48 48 48 48 48 48 50 101 48 48 48 48 48 53 51 101 48 48 53 54 48 49 54 49 48 48 54 53 48 48 54 102 48 48 54 50 48 48 54 53 48 48 54 51 48 48 54 101 48 48 102 100 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 55 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 52 55 48 48 54 53 48 48 54 101 48 48 54 53 48 48 55 50 48 48 54 57 48 49 48 100 48 48 54 98 48 48 54 57 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 55 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 53 48 48 48 54 53 48 48 55 50 48 48 54 54 48 48 54 57 48 48 54 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 54 55 48 48 54 53 48 48 54 101 48 48 101 56 48 48 55 50 48 48 54 57 48 48 54 51 48 48 53 48 48 48 54 53 48 48 55 50 48 48 54 54 48 48 54 57 48 48 54 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 52 55 48 48 54 53 48 48 54 101 48 48 101 57 48 48 55 50 48 48 54 57 48 48 54 51 48 48 54 102 48 52 49 55 48 52 51 48 48 52 51 51 48 52 51 48 48 52 51 98 48 52 52 99 48 52 51 100 48 52 51 56 48 52 51 57 48 48 50 48 48 52 51 102 48 52 52 48 48 52 51 101 48 52 52 52 48 52 51 48 48 52 51 57 48 52 51 98 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 53 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 50 48 48 48 54 55 48 48 101 57 48 48 54 101 48 48 101 57 48 48 55 50 48 48 54 57 48 48 55 49 48 48 55 53 48 48 54 53 48 48 50 48 48 48 53 50 48 48 53 54 48 48 52 50 57 48 49 97 55 53 50 56 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 56 50 55 50 53 102 54 57 54 51 99 102 56 102 102 48 48 48 53 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 54 102 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 54 55 48 48 54 53 48 48 54 101 48 48 54 53 48 48 55 50 48 48 54 57 48 48 54 51 48 48 54 102 48 48 52 55 48 48 54 53 48 48 54 101 48 48 54 53 48 48 55 50 48 48 54 57 48 48 55 51 48 48 54 98 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 100 48 48 55 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 99 55 55 99 98 99 49 56 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 100 53 48 52 98 56 53 99 100 51 48 99 99 55 55 99 48 48 52 102 48 48 54 50 48 48 54 53 48 48 54 51 48 48 54 101 48 48 102 100 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 55 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 53 101 52 48 53 101 56 48 53 100 53 48 53 101 52 48 53 100 57 48 53 100 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 53 100 98 48 53 100 99 48 53 100 99 48 53 100 57 48 48 52 49 48 48 54 99 48 48 54 99 48 48 54 55 48 48 54 53 48 48 54 100 48 48 54 53 48 48 54 57 48 48 54 101 48 48 54 53 48 48 55 51 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 100 48 48 53 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 99 49 48 48 54 99 48 48 55 52 48 48 54 49 48 48 54 99 48 48 101 49 48 48 54 101 48 48 54 102 48 48 55 51 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 55 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 54 54 54 101 57 48 49 97 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 54 51 99 102 56 102 102 48 54 53 56 55 52 101 102 54 52 101 48 48 56 50 50 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 51 48 100 55 51 48 101 100 51 48 100 53 51 48 97 49 51 48 97 52 51 48 101 98 48 48 53 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 54 55 48 48 54 53 48 48 54 101 48 48 54 53 48 48 55 50 48 48 54 57 48 48 54 51 48 51 57 51 48 51 98 53 48 51 98 100 48 51 98 57 48 51 98 97 48 51 99 99 48 48 50 48 48 51 99 48 48 51 99 49 48 51 98 102 48 51 99 54 48 51 97 102 48 51 98 98 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 53 48 48 48 54 53 48 48 55 50 48 48 54 54 48 48 54 57 48 48 54 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 54 55 48 48 54 53 48 48 54 101 48 48 101 57 48 48 55 50 48 48 54 57 48 48 54 51 48 48 54 102 48 48 52 49 48 48 54 99 48 48 54 55 48 48 54 53 48 48 54 100 48 48 54 53 48 48 54 53 48 48 54 101 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 100 48 48 55 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 53 48 48 54 99 48 101 52 50 48 101 49 98 48 101 50 51 48 101 52 52 48 101 49 102 48 101 50 53 48 101 52 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 101 49 55 48 101 51 49 48 101 52 56 48 101 50 55 48 101 52 52 48 101 49 98 48 48 52 55 48 48 54 53 48 48 54 101 48 48 54 53 48 48 54 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 53 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 54 57 48 48 53 57 48 48 54 99 48 48 54 53 48 48 54 57 48 48 54 101 48 48 54 53 48 48 54 101 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 100 48 48 55 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 57 48 48 54 99 48 48 54 57 48 48 53 53 48 48 54 101 48 48 54 57 48 48 55 55 48 48 54 53 48 48 55 50 48 48 55 51 48 48 54 49 48 48 54 99 48 48 54 101 48 48 55 57 48 48 50 48 48 48 55 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 52 49 101 48 52 51 49 48 52 52 57 48 52 51 56 48 52 51 57 48 48 50 48 48 52 51 102 48 52 52 48 48 52 51 101 48 52 52 52 48 52 51 56 48 52 51 98 48 52 52 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 54 52 53 48 54 52 52 48 54 52 49 48 48 50 48 48 54 50 97 48 54 51 57 48 54 51 49 48 54 52 97 48 54 52 49 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 54 50 55 48 54 52 52 48 54 51 57 48 54 50 55 48 54 52 53 48 48 52 55 48 48 54 53 48 48 54 101 48 48 54 53 48 48 55 50 48 48 54 57 48 48 54 51 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 53 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 54 53 48 48 52 55 48 48 54 53 48 48 54 101 48 48 54 53 48 48 55 50 48 48 54 53 48 48 54 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 100 48 48 54 50 48 48 54 53 48 48 55 51 48 48 54 98 48 48 55 50 48 48 54 57 48 48 55 54 48 48 54 53 48 48 54 99 48 48 55 51 48 48 54 53 55 52 54 53 55 56 55 52 48 48 48 48 48 48 48 48 52 51 54 102 55 48 55 57 55 50 54 57 54 55 54 56 55 52 50 48 51 50 51 48 51 48 51 55 50 48 52 49 55 48 55 48 54 99 54 53 50 48 52 57 54 101 54 51 50 101 50 99 50 48 54 49 54 99 54 99 50 48 55 50 54 57 54 55 54 56 55 52 55 51 50 48 55 50 54 53 55 51 54 53 55 50 55 54 54 53 54 52 50 101 48 48 53 56 53 57 53 97 50 48 48 48 48 48 48 48 48 48 48 48 48 48 102 51 53 50 48 48 48 49 48 48 48 48 48 48 48 49 49 54 99 102 53 56 53 57 53 97 50 48 48 48 48 48 48 48 48 48 48 48 48 48 55 52 52 100 48 48 48 48 51 100 101 101 48 48 48 48 48 51 100 48 53 56 53 57 53 97 50 48 48 48 48 48 48 48 48 48 48 48 48 48 53 97 55 53 48 48 48 48 97 99 55 51 48 48 48 48 49 55 51 52 53 56 53 57 53 97 50 48 48 48 48 48 48 48 48 48 48 48 48 48 50 56 49 97 48 48 48 48 49 53 57 102 48 48 48 48 98 56 51 54 54 51 55 53 55 50 55 54 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 49 48 49 99 100 48 48 48 48 55 51 54 54 51 51 51 50 48 48 48 48 48 48 48 48 48 48 48 49 48 99 52 50 48 48 48 48 48 53 100 101 102 102 102 102 102 51 50 54 48 48 48 48 48 55 57 50 48 48 48 48 102 100 57 49 102 102 102 102 102 98 97 50 102 102 102 102 102 100 97 51 48 48 48 48 48 51 100 99 48 48 48 48 99 48 54 99 102 102 101 49 48 48 97 97 52 53 55 56 54 57 54 54 48 48 48 48 52 100 52 100 48 48 50 97 48 48 48 48 48 48 48 56 48 48 48 54 48 49 49 50 48 48 48 51 48 48 48 48 48 48 48 49 48 48 48 49 48 48 48 48 48 49 49 97 48 48 48 53 48 48 48 48 48 48 48 49 48 48 48 48 48 48 53 54 48 49 49 98 48 48 48 53 48 48 48 48 48 48 48 49 48 48 48 48 48 48 53 101 48 49 50 56 48 48 48 51 48 48 48 48 48 48 48 49 48 48 48 50 48 48 48 48 48 49 51 49 48 48 48 50 48 48 48 48 48 48 49 101 48 48 48 48 48 48 54 54 56 55 54 57 48 48 48 52 48 48 48 48 48 48 48 49 48 48 48 48 48 48 56 52 48 48 48 48 48 48 48 48 48 48 48 48 48 48 52 56 48 48 48 48 48 48 48 49 48 48 48 48 48 48 52 56 48 48 48 48 48 48 48 49 52 49 54 52 54 102 54 50 54 53 50 48 53 48 54 56 54 102 55 52 54 102 55 51 54 56 54 102 55 48 50 48 52 51 53 51 51 53 50 48 52 100 54 49 54 51 54 57 54 101 55 52 54 102 55 51 54 56 48 48 48 48 48 50 97 48 48 50 48 48 48 52 48 48 48 48 48 48 48 49 48 48 48 48 48 49 48 48 97 48 48 51 48 48 48 52 48 48 48 48 48 48 48 49 48 48 48 48 48 49 48 48 48 48 48 48 48 48 48 48 102 102 100 98 48 48 52 51 48 48 48 50 48 50 48 50 48 50 48 50 48 49 48 50 48 50 48 50 48 50 48 50 48 50 48 50 48 51 48 51 48 54 48 52 48 51 48 51 48 51 48 51 48 55 48 53 48 53 48 52 48 54 48 56 48 55 48 56 48 56 48 56 48 55 48 56 48 56 48 57 48 97 48 100 48 98 48 57 48 57 48 99 48 97 48 56 48 56 48 98 48 102 48 98 48 99 48 100 48 101 48 101 48 101 48 101 48 57 48 98 49 48 49 49 48 102 48 101 49 49 48 100 48 101 48 101 48 101 102 102 100 98 48 48 52 51 48 49 48 50 48 50 48 50 48 51 48 51 48 51 48 54 48 52 48 52 48 54 48 101 48 57 48 56 48 57 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 102 102 99 48 48 48 49 49 48 56 48 49 48 48 48 49 48 48 48 51 48 49 50 50 48 48 48 50 49 49 48 49 48 51 49 49 48 49 102 102 99 52 48 48 49 102 48 48 48 48 48 49 48 53 48 49 48 49 48 49 48 49 48 49 48 49 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 49 48 50 48 51 48 52 48 53 48 54 48 55 48 56 48 57 48 97 48 98 102 102 99 52 48 48 98 53 49 48 48 48 48 50 48 49 48 51 48 51 48 50 48 52 48 51 48 53 48 53 48 52 48 52 48 48 48 48 48 49 55 100 48 49 48 50 48 51 48 48 48 52 49 49 48 53 49 50 50 49 51 49 52 49 48 54 49 51 53 49 54 49 48 55 50 50 55 49 49 52 51 50 56 49 57 49 97 49 48 56 50 51 52 50 98 49 99 49 49 53 53 50 100 49 102 48 50 52 51 51 54 50 55 50 56 50 48 57 48 97 49 54 49 55 49 56 49 57 49 97 50 53 50 54 50 55 50 56 50 57 50 97 51 52 51 53 51 54 51 55 51 56 51 57 51 97 52 51 52 52 52 53 52 54 52 55 52 56 52 57 52 97 53 51 53 52 53 53 53 54 53 55 53 56 53 57 53 97 54 51 54 52 54 53 54 54 54 55 54 56 54 57 54 97 55 51 55 52 55 53 55 54 55 55 55 56 55 57 55 97 56 51 56 52 56 53 56 54 56 55 56 56 56 57 56 97 57 50 57 51 57 52 57 53 57 54 57 55 57 56 57 57 57 97 97 50 97 51 97 52 97 53 97 54 97 55 97 56 97 57 97 97 98 50 98 51 98 52 98 53 98 54 98 55 98 56 98 57 98 97 99 50 99 51 99 52 99 53 99 54 99 55 99 56 99 57 99 97 100 50 100 51 100 52 100 53 100 54 100 55 100 56 100 57 100 97 101 49 101 50 101 51 101 52 101 53 101 54 101 55 101 56 101 57 101 97 102 49 102 50 102 51 102 52 102 53 102 54 102 55 102 56 102 57 102 97 102 102 99 52 48 48 49 102 48 49 48 48 48 51 48 49 48 49 48 49 48 49 48 49 48 49 48 49 48 49 48 49 48 48 48 48 48 48 48 48 48 48 48 48 48 49 48 50 48 51 48 52 48 53 48 54 48 55 48 56 48 57 48 97 48 98 102 102 99 52 48 48 98 53 49 49 48 48 48 50 48 49 48 50 48 52 48 52 48 51 48 52 48 55 48 53 48 52 48 52 48 48 48 49 48 50 55 55 48 48 48 49 48 50 48 51 49 49 48 52 48 53 50 49 51 49 48 54 49 50 52 49 53 49 48 55 54 49 55 49 49 51 50 50 51 50 56 49 48 56 49 52 52 50 57 49 97 49 98 49 99 49 48 57 50 51 51 51 53 50 102 48 49 53 54 50 55 50 100 49 48 97 49 54 50 52 51 52 101 49 50 53 102 49 49 55 49 56 49 57 49 97 50 54 50 55 50 56 50 57 50 97 51 53 51 54 51 55 51 56 51 57 51 97 52 51 52 52 52 53 52 54 52 55 52 56 52 57 52 97 53 51 53 52 53 53 53 54 53 55 53 56 53 57 53 97 54 51 54 52 54 53 54 54 54 55 54 56 54 57 54 97 55 51 55 52 55 53 55 54 55 55 55 56 55 57 55 97 56 50 56 51 56 52 56 53 56 54 56 55 56 56 56 57 56 97 57 50 57 51 57 52 57 53 57 54 57 55 57 56 57 57 57 97 97 50 97 51 97 52 97 53 97 54 97 55 97 56 97 57 97 97 98 50 98 51 98 52 98 53 98 54 98 55 98 56 98 57 98 97 99 50 99 51 99 52 99 53 99 54 99 55 99 56 99 57 99 97 100 50 100 51 100 52 100 53 100 54 100 55 100 56 100 57 100 97 101 50 101 51 101 52 101 53 101 54 101 55 101 56 101 57 101 97 102 50 102 51 102 52 102 53 102 54 102 55 102 56 102 57 102 97 102 102 100 97 48 48 48 99 48 51 48 49 48 48 48 50 49 49 48 51 49 49 48 48 51 102 48 48 102 52 51 102 56 49 102 102 48 48 48 50 51 101 49 98 102 99 52 49 100 50 102 99 53 98 97 56 55 56 98 57 51 53 57 56 53 97 100 51 53 54 57 54 51 56 97 52 98 52 100 52 49 97 50 53 53 53 48 52 102 100 101 49 56 51 102 57 100 55 98 99 52 55 102 98 50 98 55 101 99 102 97 51 49 56 100 52 51 53 102 50 55 98 55 102 99 52 101 53 102 102 48 48 102 56 57 97 99 53 102 100 57 98 101 50 50 98 102 48 100 51 101 50 48 56 99 55 53 100 53 101 55 102 101 54 54 98 100 97 50 50 100 99 98 49 52 100 56 56 56 56 56 99 49 50 56 54 54 99 56 51 98 52 102 97 57 49 100 56 55 98 100 55 101 48 49 56 99 99 53 100 55 53 53 101 53 49 56 99 100 97 53 101 97 55 48 52 54 98 99 102 57 57 97 55 97 102 100 101 55 57 100 50 102 101 99 98 57 102 98 51 102 101 101 48 97 50 102 102 48 48 53 99 50 100 101 57 102 100 98 52 100 57 102 102 48 48 100 48 54 97 53 102 102 56 54 53 57 102 56 48 54 51 102 101 53 101 102 53 102 102 48 48 102 99 49 99 51 102 102 56 53 55 97 55 53 97 100 56 53 56 99 100 54 54 51 49 54 98 49 50 98 48 102 57 53 56 56 102 98 99 48 102 97 101 55 97 102 98 100 53 97 56 97 100 55 99 97 57 98 54 52 101 99 53 101 50 102 101 49 57 52 55 102 50 54 102 55 102 55 97 99 101 51 56 98 99 52 102 102 51 98 102 98 99 101 97 56 102 51 98 101 57 102 56 98 51 99 57 55 102 101 49 57 54 55 101 48 49 57 101 98 55 57 97 101 102 102 101 48 101 53 102 102 102 48 48 56 57 97 54 57 102 100 57 53 98 101 48 48 57 102 102 48 48 57 55 98 100 55 102 102 102 48 48 48 55 48 102 102 102 48 48 99 52 100 55 98 54 55 102 54 55 99 51 102 100 99 51 56 102 53 100 100 53 54 55 102 98 50 101 100 99 99 52 98 102 50 98 55 52 101 98 57 97 100 97 51 56 98 99 52 55 102 51 98 102 98 99 100 51 57 50 55 100 57 55 100 101 99 102 48 56 102 102 48 48 56 54 53 52 102 56 48 48 55 97 100 100 102 56 56 51 102 102 48 48 48 55 48 102 102 101 49 52 56 55 102 54 53 52 102 100 57 102 102 102 48 48 101 55 102 51 53 102 49 102 102 55 49 57 55 49 102 102 48 48 98 50 100 55 98 97 57 100 50 54 50 101 97 51 55 48 102 99 54 97 48 54 100 50 101 51 53 101 48 56 57 51 102 51 97 100 49 54 50 102 49 49 102 99 101 102 101 102 49 55 50 52 102 98 55 101 55 102 101 54 55 56 57 102 102 99 51 50 98 102 99 48 48 53 53 102 102 56 102 100 100 55 99 48 49 101 57 97 99 98 102 102 48 48 102 49 51 53 53 102 102 101 49 57 55 102 102 54 55 98 99 57 102 102 48 48 56 57 56 101 98 100 102 102 48 48 56 51 57 57 51 102 102 56 57 97 102 54 102 51 97 53 52 54 53 52 56 48 54 52 49 57 49 101 100 53 56 101 102 97 49 52 97 49 99 101 100 48 99 101 51 100 52 48 97 98 102 97 100 101 50 55 97 52 100 102 100 101 54 51 53 49 52 100 54 100 49 102 99 102 102 99 99 102 50 50 55 102 100 57 55 51 102 54 55 102 54 57 48 57 49 97 98 54 98 99 56 51 100 51 102 98 53 52 57 102 101 54 98 52 100 51 102 98 50 99 102 101 99 102 102 102 48 48 102 52 49 98 100 55 55 102 102 48 54 55 102 102 48 48 100 56 100 55 97 97 51 101 57 51 51 50 49 51 102 98 98 54 99 55 54 102 57 54 97 97 49 98 53 51 57 99 49 49 99 56 102 53 97 100 49 54 51 51 49 51 102 99 101 99 101 55 55 51 97 56 98 55 56 102 101 55 102 101 54 55 57 54 98 102 101 99 97 55 102 48 48 49 100 102 50 55 99 52 51 101 50 50 53 102 52 48 51 53 52 99 55 102 101 99 57 52 48 102 100 57 53 55 102 54 55 97 57 52 49 53 49 101 50 49 100 55 50 52 54 49 99 49 100 98 97 97 48 50 55 51 102 102 48 48 55 99 100 55 97 50 53 99 53 97 98 53 99 52 101 50 100 54 51 48 101 97 56 48 56 51 55 48 101 97 55 101 101 97 102 102 48 48 55 55 51 101 97 54 98 50 97 52 98 48 48 98 97 56 53 100 99 51 48 97 55 100 57 54 100 56 50 97 57 57 53 101 51 101 51 48 56 48 49 51 56 49 102 101 100 49 51 100 101 98 53 53 56 101 99 52 55 102 51 98 51 49 57 53 55 57 99 55 101 99 102 101 55 102 101 54 55 48 102 50 55 101 99 57 57 102 98 51 100 51 54 55 51 97 102 55 56 56 53 55 100 55 51 97 97 55 102 102 48 48 54 49 53 101 53 98 102 49 48 102 102 54 55 101 102 56 51 49 101 48 102 100 51 50 49 98 57 102 48 98 100 99 54 98 102 97 98 101 97 99 97 52 51 57 54 57 101 102 102 55 99 49 49 50 102 50 51 57 48 49 52 54 53 56 102 101 57 56 102 97 53 55 98 100 99 55 55 49 55 49 49 100 57 97 52 53 49 100 98 99 98 55 50 53 53 52 98 98 57 54 55 99 55 57 54 56 52 57 50 97 48 57 51 100 52 101 50 98 99 101 98 99 55 52 51 99 101 98 51 54 57 49 55 50 49 50 52 98 53 52 51 56 51 102 53 51 53 100 51 52 51 49 57 56 56 55 53 50 50 57 99 100 101 101 56 101 48 99 52 54 51 101 97 97 52 57 52 55 52 100 98 97 98 102 102 51 50 98 55 99 48 50 102 100 57 55 98 101 49 53 55 99 52 49 102 100 57 98 55 52 57 102 49 52 55 56 57 54 100 51 99 52 51 50 54 97 102 55 49 51 52 97 98 50 51 53 98 54 97 99 102 48 97 54 49 53 99 56 49 56 53 48 51 100 48 53 55 98 54 50 102 101 99 53 100 102 48 51 49 55 97 53 56 102 56 98 48 102 102 100 99 55 97 52 102 102 48 48 48 97 101 56 55 102 54 53 50 53 100 57 102 98 49 54 55 56 55 53 55 102 101 57 98 99 102 102 48 48 102 97 51 53 97 98 101 56 101 101 102 53 101 53 53 54 99 53 53 55 53 53 97 52 57 52 100 100 97 101 55 101 56 55 52 54 56 99 50 53 48 52 100 97 51 101 53 55 102 102 48 48 56 54 51 50 102 56 49 101 48 54 48 53 56 55 56 97 98 102 102 48 55 98 50 55 102 56 53 49 102 102 48 48 48 99 54 53 102 48 51 102 102 101 55 99 51 99 53 53 102 102 48 48 56 51 101 57 55 102 99 50 98 101 97 97 53 101 102 52 101 97 101 99 97 51 56 57 97 102 102 99 101 99 49 101 49 54 57 55 102 50 57 102 50 56 102 102 48 48 99 51 49 55 102 99 48 100 51 102 102 51 48 102 102 49 53 55 102 101 48 102 97 53 102 102 48 48 48 97 55 55 102 99 51 49 54 102 99 48 99 101 102 54 49 101 50 98 102 102 48 48 99 49 102 52 98 102 101 49 53 102 53 55 56 101 57 52 98 57 97 102 52 101 57 54 50 50 98 53 98 101 50 54 54 55 102 53 51 97 49 54 102 56 53 49 102 50 55 49 102 100 56 97 102 101 48 53 102 102 48 48 99 102 56 55 56 97 102 102 48 48 102 48 55 100 50 100 50 55 102 99 51 49 53 55 99 48 97 102 102 97 48 55 102 56 97 102 102 102 48 48 48 55 102 50 102 102 48 48 56 53 55 100 54 53 52 53 55 53 52 55 49 49 53 57 55 100 97 54 52 55 100 52 101 56 55 102 50 97 51 101 52 99 102 102 48 48 56 54 50 97 102 56 49 52 55 102 101 54 49 102 101 50 99 102 102 99 49 102 99 98 102 101 49 52 57 102 102 48 99 53 51 102 48 50 98 102 101 56 49 102 101 50 99 102 102 99 49 102 99 98 102 101 49 53 102 53 98 50 97 101 101 99 102 51 56 97 55 55 100 99 102 55 99 100 54 101 97 98 100 54 102 101 54 48 102 97 57 100 48 102 101 53 52 55 99 57 48 98 102 98 49 51 55 99 48 57 54 99 102 102 48 48 97 48 55 56 98 51 102 102 48 48 48 97 48 57 55 102 99 50 57 49 98 102 54 50 53 102 56 49 48 51 49 57 100 51 102 99 53 56 55 102 101 101 54 48 57 55 102 99 50 98 101 98 54 55 54 48 55 49 53 49 57 55 97 100 97 51 53 97 98 55 102 51 51 48 102 97 57 53 48 102 101 53 52 55 99 57 56 55 102 54 50 54 102 56 49 49 100 98 52 102 102 49 54 55 102 101 48 102 101 53 102 102 48 48 48 97 97 99 100 102 98 49 51 55 99 48 55 54 49 56 51 97 55 102 56 98 55 102 102 48 97 48 57 55 102 99 50 98 101 98 55 50 55 51 52 54 55 51 53 100 53 48 97 57 53 55 102 57 57 56 55 100 52 98 48 102 102 99 56 56 102 56 102 100 102 102 48 48 54 49 98 102 56 48 52 102 100 54 99 51 99 54 51 102 102 56 53 49 52 98 102 101 49 53 99 55 102 56 101 51 102 54 50 101 102 56 49 98 101 49 98 102 56 52 51 101 50 53 102 49 49 54 57 57 54 49 101 50 98 102 101 100 50 100 51 55 52 102 57 50 101 54 100 98 99 102 100 55 54 53 57 50 51 100 101 97 51 50 51 55 50 57 49 56 50 51 100 97 98 101 101 101 50 55 49 53 99 48 102 99 53 50 102 57 98 102 54 54 101 102 49 99 56 99 55 53 100 49 97 54 49 102 97 53 55 52 100 51 97 57 53 49 98 52 57 99 56 99 98 49 51 56 52 97 53 49 97 51 51 54 97 51 54 54 57 51 102 99 56 102 57 53 55 102 54 55 52 52 102 102 48 48 56 98 55 49 101 51 102 102 48 48 102 98 48 99 52 102 102 99 99 100 55 98 49 99 51 51 48 53 57 52 100 99 52 52 56 99 98 49 51 55 99 97 101 53 99 55 99 98 50 49 49 99 49 99 49 101 99 55 101 98 100 54 98 99 56 102 102 54 55 56 49 102 102 49 54 101 55 99 55 98 102 102 48 48 54 49 56 57 102 102 48 48 57 57 97 102 54 56 98 48 100 102 54 57 49 101 99 54 48 53 97 100 99 51 49 50 97 101 51 57 100 98 57 51 57 99 49 102 99 52 102 53 97 102 99 99 55 49 55 49 102 102 48 48 54 56 57 102 102 53 100 48 102 48 97 56 52 54 102 51 51 53 97 49 53 56 101 51 53 48 50 51 56 53 54 51 53 51 102 51 55 99 97 51 49 57 99 56 97 98 48 56 99 97 97 55 51 98 55 97 102 53 48 55 97 49 97 48 56 99 98 56 54 99 101 55 50 51 51 57 99 101 55 51 52 101 48 97 48 100 54 50 97 50 55 97 57 49 56 101 56 51 100 53 54 50 50 51 51 48 57 54 56 49 98 102 98 98 57 99 97 102 101 52 55 102 97 53 52 98 101 54 52 98 49 56 102 100 101 52 53 98 57 55 98 98 52 53 99 101 51 101 97 51 97 100 52 53 101 53 100 51 56 50 98 48 51 57 48 99 55 51 102 53 97 98 52 97 99 51 54 56 98 51 49 100 100 52 54 101 51 101 52 54 52 55 102 97 51 54 50 57 99 99 101 49 56 56 100 100 56 48 51 101 98 53 52 57 100 48 51 56 49 101 54 50 52 54 102 102 48 48 101 102 50 102 51 102 57 100 52 50 100 54 102 54 101 48 55 99 100 54 100 48 57 102 97 56 99 102 102 53 97 100 97 51 52 101 102 97 56 98 57 55 99 99 98 54 102 55 49 54 98 49 56 102 57 101 53 56 57 52 102 97 49 55 97 97 97 51 53 48 98 52 54 57 52 57 49 50 54 53 48 48 101 51 48 56 52 102 102 52 97 52 54 48 97 56 51 49 49 99 55 49 52 54 55 102 100 57 52 48 50 56 52 54 55 99 57 49 98 57 56 55 55 51 102 51 49 97 100 54 51 48 49 55 50 98 50 52 54 57 56 101 99 100 100 49 99 48 100 56 99 54 55 55 52 56 55 54 48 51 102 57 102 50 54 98 48 54 101 50 48 51 51 99 99 100 50 99 102 50 101 100 99 57 101 50 51 56 48 54 48 55 101 50 99 55 57 51 102 57 53 54 100 51 97 49 55 53 51 57 101 97 55 100 54 97 97 57 56 53 99 55 53 53 102 99 54 98 52 55 48 100 48 57 57 100 51 98 97 51 49 51 101 99 99 97 57 48 56 52 56 101 50 53 56 100 48 49 99 56 48 98 101 98 100 99 57 51 100 99 102 98 100 53 53 57 97 100 99 51 99 52 99 56 99 51 50 97 52 49 99 100 54 102 98 50 102 99 98 100 51 57 97 56 57 101 49 53 51 100 52 48 50 55 100 50 97 57 52 49 57 99 102 50 97 51 97 54 99 55 57 101 100 101 100 97 97 52 51 54 102 49 53 56 100 98 101 53 49 97 55 55 50 48 98 49 51 57 50 48 55 55 54 51 102 52 49 99 53 55 57 97 102 56 102 54 49 52 56 101 50 51 49 97 56 99 50 48 56 49 49 53 55 100 55 48 51 51 56 97 102 53 98 55 52 102 51 54 101 101 101 50 101 99 101 55 54 101 52 99 53 49 55 100 48 49 102 57 56 102 101 50 55 56 97 102 50 97 102 56 56 50 52 55 57 54 53 99 55 52 49 49 97 48 51 102 57 57 97 101 97 99 51 52 51 102 55 98 49 102 53 52 55 99 101 101 51 54 57 97 53 54 102 53 52 55 98 56 102 101 99 98 52 98 56 102 100 56 100 55 99 51 98 100 98 102 55 98 51 102 49 102 102 54 100 53 97 98 101 56 55 97 102 57 102 51 102 54 53 101 49 102 102 49 56 55 51 101 49 101 49 102 102 52 100 97 55 102 102 100 49 97 100 53 102 52 51 48 49 56 97 102 51 97 98 53 51 53 101 100 101 53 101 97 55 101 56 98 52 49 102 101 101 57 48 98 52 97 48 54 52 53 50 53 52 55 51 99 102 49 100 98 50 48 50 100 98 57 57 57 56 101 49 49 49 52 54 53 57 99 102 97 48 49 53 100 98 52 50 48 53 100 97 101 99 98 49 56 99 56 97 56 49 101 101 97 100 97 51 55 100 98 50 53 99 52 50 56 100 100 99 51 51 56 99 100 52 51 102 54 54 98 56 98 57 50 52 100 101 51 98 100 98 99 53 102 102 51 101 102 48 98 102 99 99 55 102 100 102 55 102 101 56 51 102 51 97 57 49 57 55 52 101 98 51 52 48 56 54 51 98 48 56 51 100 57 101 51 48 52 57 102 99 102 50 52 100 55 97 53 52 97 49 55 48 98 50 98 100 98 55 50 53 56 101 55 98 54 57 53 98 49 49 100 99 52 50 101 55 102 100 57 55 49 53 54 51 101 101 55 98 101 54 98 50 101 52 57 98 52 57 57 52 54 49 100 54 99 49 102 102 101 100 57 48 49 102 97 56 48 50 57 97 57 49 99 54 53 52 98 54 57 100 55 52 99 55 54 102 102 48 48 99 98 50 55 57 51 55 99 54 55 100 98 100 53 55 102 53 97 101 101 56 100 50 49 98 97 54 54 97 51 98 48 51 56 97 56 99 98 100 51 48 102 48 51 101 54 50 51 50 51 97 101 48 102 49 102 57 100 53 48 57 50 102 97 100 100 54 53 51 49 52 54 53 101 101 97 55 102 102 57 101 53 48 97 101 101 54 97 101 57 56 53 49 50 54 51 49 54 102 54 50 101 57 51 57 97 52 97 97 57 54 98 55 53 102 54 57 98 54 54 57 51 99 97 54 56 98 49 50 49 52 99 51 49 101 55 56 97 98 48 52 101 54 98 97 54 51 52 100 50 48 55 49 54 57 100 57 56 101 50 55 49 52 100 50 55 51 52 99 100 100 52 100 97 101 56 56 100 51 54 99 97 53 49 49 100 98 97 98 56 55 102 56 57 57 102 102 50 54 102 49 101 51 53 48 55 102 101 56 49 49 51 55 102 50 49 53 100 99 48 50 48 55 98 53 55 48 98 102 49 50 98 102 101 52 56 48 55 56 99 98 57 102 102 48 48 57 56 52 99 98 102 99 97 98 97 97 57 53 50 98 51 52 54 55 56 98 56 102 102 48 48 98 51 100 52 102 52 55 102 57 49 102 50 102 55 101 99 102 49 99 55 99 51 97 102 49 101 102 98 54 98 49 51 102 102 48 48 51 51 53 101 101 57 54 48 55 50 57 56 101 101 50 98 99 51 55 102 54 55 57 101 51 101 49 99 55 56 102 56 55 97 54 98 49 51 102 102 48 48 51 51 53 101 101 55 54 48 51 48 98 57 102 97 53 55 101 53 100 56 99 56 102 102 48 48 98 52 52 99 102 57 52 99 51 51 102 55 56 98 53 49 56 100 57 55 57 50 99 48 51 101 101 50 56 48 99 57 101 99 48 102 53 49 102 57 100 53 102 49 102 50 97 54 55 98 100 53 49 99 49 49 97 98 56 51 100 56 99 52 55 102 52 50 50 97 100 57 51 102 98 98 97 99 54 51 48 98 57 101 97 52 55 53 52 52 56 48 51 101 51 56 50 51 102 49 97 52 50 53 56 102 52 99 48 102 99 54 57 50 56 97 100 97 51 48 52 56 97 98 56 57 56 54 102 53 49 53 48 57 54 51 98 102 51 57 101 48 55 48 48 55 98 100 51 97 52 55 50 97 98 56 49 100 52 100 52 51 57 99 48 51 101 98 53 97 97 56 56 48 100 50 99 101 53 98 100 54 97 55 52 52 50 98 49 56 99 57 49 57 51 100 54 97 50 56 53 48 57 54 100 99 52 53 53 57 100 98 101 102 53 98 52 54 49 54 48 49 51 48 100 102 101 99 100 50 54 49 56 48 51 57 48 97 52 55 97 54 50 97 52 97 50 98 53 53 49 98 48 49 53 100 56 50 102 57 48 99 55 48 48 55 54 101 50 98 49 50 102 54 55 102 50 51 52 101 57 101 52 101 101 98 49 57 50 51 101 98 56 97 100 57 57 100 102 54 57 50 98 57 101 102 57 51 53 99 100 101 98 48 53 53 98 52 101 54 52 50 51 56 55 50 49 51 97 102 97 98 48 49 53 54 101 48 54 49 53 57 102 98 97 54 48 99 56 52 99 55 54 51 49 52 53 56 49 102 50 97 48 99 102 97 57 51 100 52 57 102 99 99 57 97 102 50 51 102 56 56 50 48 49 100 51 97 54 55 99 102 53 56 100 55 102 48 101 52 100 55 97 102 53 100 48 50 102 51 51 48 101 100 57 97 102 49 99 102 56 56 48 100 56 56 54 101 49 55 51 99 49 56 53 52 56 49 102 56 57 97 100 102 48 102 52 102 102 55 98 48 102 53 52 55 99 98 101 54 48 100 97 98 55 97 57 101 102 102 48 48 102 98 50 101 55 102 99 57 57 98 102 56 55 56 102 102 48 48 100 51 53 57 102 102 48 48 102 52 54 98 53 55 100 48 100 53 102 51 99 102 101 99 98 57 102 102 48 48 50 54 55 49 101 49 100 102 102 97 101 98 51 102 102 101 56 100 54 97 102 97 49 97 98 56 101 98 53 51 102 100 102 52 98 100 52 102 100 48 55 48 101 102 102 55 54 56 52 55 54 53 52 56 49 101 52 55 54 100 97 97 97 51 50 99 55 100 48 53 52 49 54 99 97 99 51 51 55 100 55 49 57 53 57 101 52 53 102 57 52 49 102 102 48 48 57 54 51 49 57 101 52 48 49 101 101 52 55 50 52 102 101 49 52 100 98 98 100 97 101 57 48 52 50 55 57 52 57 54 55 52 53 55 49 101 97 98 57 99 57 49 102 97 53 49 55 56 99 54 52 98 54 102 50 99 57 99 49 57 101 52 53 56 99 57 102 52 48 99 55 57 102 100 51 51 53 100 55 52 54 57 98 51 97 49 50 100 49 55 57 56 97 57 101 54 100 100 50 48 57 52 99 57 50 53 98 53 97 98 48 99 99 54 97 57 99 52 57 50 48 102 53 50 55 102 56 52 49 101 100 100 99 102 98 53 53 56 56 57 50 51 56 48 49 102 50 50 50 56 101 49 99 102 53 50 97 51 101 54 51 102 53 54 51 99 57 102 99 101 56 54 55 100 100 50 49 54 99 55 53 101 57 101 99 50 57 56 52 102 49 57 54 51 56 48 51 97 57 51 53 101 98 53 49 97 53 54 50 53 98 54 99 57 98 99 101 57 51 102 101 55 97 52 57 102 102 55 100 53 53 48 57 50 102 57 101 53 57 53 97 49 98 52 52 51 55 53 50 56 51 102 51 98 54 55 48 56 57 102 101 102 51 55 102 52 101 98 53 48 56 100 100 55 100 102 51 98 49 55 56 97 99 51 51 56 49 98 52 101 49 97 55 102 99 55 98 50 102 98 102 53 51 53 55 48 54 100 52 56 100 54 51 56 100 53 50 50 56 57 55 101 101 97 50 48 99 48 49 53 100 102 48 97 55 54 50 98 57 53 52 55 100 52 97 56 54 99 56 52 57 56 51 55 98 51 99 57 55 54 100 102 102 51 99 100 52 57 52 56 56 55 101 49 100 52 102 101 50 54 97 100 97 54 99 56 97 49 102 50 101 49 56 100 50 49 56 102 102 98 98 49 97 101 100 49 102 102 48 48 100 55 102 99 54 97 56 52 56 102 55 51 55 49 55 102 50 52 49 54 102 50 56 98 54 56 97 49 48 51 99 100 57 52 97 101 101 50 53 56 56 99 56 53 48 50 57 100 49 52 102 50 55 100 56 97 101 51 99 102 100 97 54 52 56 52 98 50 51 51 50 56 99 48 54 99 48 99 101 55 100 98 97 100 55 52 50 97 54 99 100 51 57 54 52 100 49 49 101 57 98 102 102 50 48 52 52 55 102 101 102 99 98 50 51 55 102 101 51 100 56 102 101 57 53 55 55 48 54 97 97 54 57 100 102 50 54 56 49 54 52 48 102 53 51 48 56 51 102 57 57 50 55 102 97 100 53 57 50 99 48 49 101 98 53 100 53 48 97 52 51 57 50 98 99 57 56 101 48 55 49 52 99 50 102 98 55 97 53 51 48 98 57 51 101 100 52 99 97 101 57 56 100 50 50 57 52 52 55 51 51 54 101 97 101 50 55 101 50 52 55 102 99 57 98 102 55 56 99 56 55 97 101 57 53 50 102 102 48 48 50 97 101 100 50 98 56 56 102 56 57 50 55 51 102 48 48 55 99 54 50 51 102 101 97 49 53 50 102 102 48 48 50 97 101 97 97 55 52 102 53 51 49 99 53 97 102 102 48 48 54 55 97 57 101 56 102 102 48 48 50 51 101 54 55 102 100 57 101 56 102 102 48 48 99 53 98 97 102 49 101 102 102 100 56 54 54 101 51 102 57 57 97 102 55 50 98 48 101 54 51 50 55 100 52 100 55 56 54 102 101 99 102 52 51 102 101 50 100 100 102 56 102 55 102 101 99 51 49 55 49 102 102 97 49 49 97 102 55 49 98 50 50 51 54 49 102 54 51 99 100 55 101 52 100 56 97 56 55 101 102 101 52 55 99 53 101 49 100 102 98 99 53 98 99 101 55 53 53 56 56 102 102 100 51 51 55 102 101 57 53 55 52 102 100 99 49 102 53 97 99 101 53 51 102 102 48 48 49 51 50 56 52 102 97 99 54 100 102 100 50 98 52 48 98 48 100 56 51 101 98 53 57 50 56 101 56 55 97 102 49 100 56 55 100 51 53 98 97 54 54 57 97 53 100 52 102 55 97 56 54 53 57 51 57 101 98 53 97 97 97 54 53 48 99 50 100 98 97 52 51 102 97 57 97 56 99 49 99 98 55 98 53 51 52 57 101 51 100 99 100 51 99 50 102 50 48 48 101 52 100 54 98 49 56 56 97 101 53 57 48 100 98 53 55 49 99 53 52 57 98 102 51 56 48 51 101 102 49 101 100 53 53 49 56 54 49 52 57 50 55 56 49 52 50 52 57 56 54 100 100 99 54 55 100 101 98 54 53 48 48 98 57 55 57 56 56 53 49 57 50 54 97 51 48 99 100 98 55 55 51 55 51 57 101 56 50 97 49 101 54 54 57 52 49 51 100 51 51 53 50 51 57 100 57 49 102 98 102 54 97 100 49 52 52 52 53 53 57 53 98 51 55 48 100 101 100 53 99 101 101 97 99 51 50 50 49 102 54 98 56 52 102 101 55 53 100 48 49 49 99 98 54 52 101 52 101 54 98 48 55 53 52 53 100 99 50 50 51 100 56 52 99 56 52 102 102 100 102 53 53 55 99 97 54 49 53 57 102 98 97 54 53 53 99 50 101 100 48 99 55 98 57 51 53 101 50 55 101 51 102 99 49 98 57 57 51 55 55 100 100 102 50 57 55 51 102 57 57 97 102 54 101 98 99 51 99 57 97 102 49 48 102 56 56 49 99 99 101 102 102 102 48 48 53 99 48 55 102 51 51 53 100 49 56 55 56 55 101 102 54 49 101 97 56 102 57 56 99 99 102 54 53 101 97 55 100 48 57 102 98 50 101 98 48 49 102 98 49 98 102 56 55 55 102 101 98 97 99 102 56 102 102 98 102 97 100 53 102 52 48 57 54 102 54 102 100 54 98 101 55 97 102 100 57 55 102 102 48 48 101 52 99 101 55 99 51 57 102 102 48 48 53 100 54 55 102 102 48 48 100 49 97 100 53 102 52 49 53 54 55 50 97 53 102 98 100 57 49 102 97 48 101 49 98 102 56 53 49 50 48 57 102 56 57 97 99 99 102 51 56 49 55 52 98 102 99 56 100 50 100 100 50 99 57 50 100 97 56 102 50 52 56 49 51 50 51 50 98 99 55 57 101 56 52 56 51 57 99 53 52 53 55 97 100 98 50 99 55 99 100 99 55 102 97 97 57 49 50 52 51 56 102 52 48 99 48 57 102 100 51 51 53 54 56 98 48 101 97 51 57 48 55 97 54 50 98 98 54 56 100 49 101 56 55 54 54 97 57 50 54 51 54 48 98 56 52 98 56 98 55 49 50 50 56 50 97 55 51 56 54 53 51 100 53 52 56 101 97 48 100 53 53 48 51 101 100 102 50 57 50 100 99 100 56 97 51 54 51 54 101 55 49 101 55 98 48 101 97 51 102 100 100 49 100 102 100 52 102 49 52 98 55 48 52 99 98 50 52 55 54 57 49 57 50 56 54 52 99 98 52 97 99 98 99 49 53 52 102 101 50 51 102 53 51 99 48 49 53 54 99 49 52 53 52 53 52 52 53 53 52 52 53 48 49 53 49 53 52 55 48 97 48 55 52 49 53 101 57 100 50 97 52 99 55 99 98 54 100 53 48 97 99 100 100 51 56 49 101 56 48 48 49 56 48 50 57 51 97 102 53 97 52 50 101 56 97 48 57 54 55 53 53 49 102 101 100 49 99 53 52 50 98 51 52 50 101 99 52 52 55 50 99 55 50 49 49 100 52 50 98 48 51 56 97 101 101 56 53 49 98 54 101 50 53 48 54 53 48 52 57 97 101 54 100 54 52 57 101 51 102 101 99 102 98 98 98 56 50 102 51 51 52 56 97 102 49 50 101 53 53 98 51 56 99 55 51 100 98 49 56 99 53 49 55 51 98 97 100 55 99 50 102 55 54 54 54 54 53 51 55 48 99 56 99 102 50 57 48 55 50 51 55 51 55 54 49 102 52 49 56 49 53 55 99 98 102 49 56 48 55 97 102 53 97 99 97 100 52 98 102 55 97 57 54 98 54 56 48 102 99 100 55 49 51 97 97 101 51 100 56 55 50 55 102 52 97 101 97 97 55 52 56 100 101 48 97 102 50 52 54 56 52 55 57 56 101 99 101 48 56 102 51 56 100 98 49 50 97 101 51 102 101 48 50 50 57 54 57 53 56 101 101 55 50 55 98 49 51 57 97 54 101 101 97 101 57 56 100 51 49 53 56 53 97 52 100 100 52 100 99 57 102 53 97 54 49 54 48 51 100 101 98 55 56 100 51 50 57 50 98 56 102 99 101 54 98 56 56 102 56 57 48 55 102 101 50 99 49 102 56 99 48 55 102 100 52 50 97 53 102 101 53 53 100 56 51 51 54 55 100 97 98 56 98 102 56 56 98 99 102 99 48 54 102 49 56 55 102 100 56 50 97 53 102 101 53 53 100 53 48 97 50 102 55 51 49 99 54 52 54 100 56 54 97 57 101 56 102 102 48 48 50 51 101 54 101 102 100 57 102 52 101 51 101 49 100 102 56 102 55 102 101 99 51 49 55 49 102 102 48 48 97 49 49 97 102 54 54 98 55 55 48 48 48 49 57 97 102 49 51 102 100 57 102 57 102 49 102 48 101 55 99 55 100 56 101 100 97 99 53 99 55 102 51 51 53 101 98 100 54 99 99 55 101 53 51 101 102 53 102 56 102 54 50 97 51 102 98 102 57 49 102 48 55 56 55 57 55 98 99 54 99 55 57 57 102 102 48 48 49 51 53 98 55 101 102 102 48 48 98 98 55 97 98 56 53 99 101 99 99 101 52 57 99 100 54 54 54 55 102 101 50 54 102 54 102 102 48 48 101 101 51 102 102 50 49 53 97 51 98 55 101 52 101 98 100 101 97 54 51 49 51 100 57 56 52 98 52 49 99 100 50 49 48 57 99 55 48 55 98 53 53 55 50 100 98 100 102 97 57 51 53 50 52 56 52 98 49 99 53 51 48 50 57 49 100 102 102 49 97 97 53 49 54 100 56 100 98 98 57 50 56 49 56 50 48 102 53 51 57 101 48 53 52 101 49 52 57 99 53 52 51 49 97 49 50 99 48 102 101 53 53 54 49 56 101 48 54 100 53 50 55 50 52 53 55 52 50 56 100 56 49 48 100 54 48 49 99 101 51 102 56 53 55 97 57 102 53 51 53 53 52 102 99 100 51 54 49 55 97 54 54 97 100 98 102 99 57 49 55 57 54 97 55 57 101 102 53 48 99 54 51 54 98 54 51 100 54 98 52 53 48 48 54 99 98 54 97 48 50 52 51 102 52 49 57 97 97 97 101 102 98 57 102 50 55 56 97 57 97 55 57 51 49 48 56 52 101 102 102 100 50 97 57 101 55 48 50 98 54 56 100 51 49 48 97 53 102 57 54 101 51 98 100 54 49 54 97 52 55 102 100 49 56 49 51 102 102 51 100 57 51 102 57 56 97 100 55 54 55 102 98 100 99 101 54 98 57 102 100 53 97 52 50 98 54 55 50 49 101 99 49 57 52 101 55 100 51 57 49 53 97 98 97 54 54 55 53 55 54 50 57 53 100 57 102 57 57 102 101 98 53 101 50 51 101 51 100 101 54 101 50 55 51 102 102 52 99 49 55 102 57 57 97 102 54 54 98 101 54 102 57 99 57 49 101 102 53 101 50 98 101 51 56 101 54 54 98 56 49 102 102 52 99 49 55 102 102 52 50 51 53 100 51 56 55 97 55 102 98 100 56 55 97 97 102 99 99 102 57 56 99 100 49 54 57 102 51 51 101 56 51 102 100 57 55 99 101 51 102 54 51 56 102 48 101 55 102 100 55 53 57 102 102 102 48 48 52 54 98 53 55 100 48 51 53 102 51 100 55 101 99 99 48 52 56 102 100 56 101 98 99 51 98 100 102 102 48 48 55 98 51 102 102 101 56 100 54 97 102 97 48 56 57 48 55 97 102 49 53 52 101 56 98 55 51 54 55 101 56 100 56 51 53 102 98 57 56 56 101 50 48 51 50 51 50 98 55 50 97 52 54 48 56 102 54 97 97 53 54 53 50 51 48 56 54 52 98 55 55 51 98 57 101 48 55 100 57 57 51 100 100 55 97 97 57 102 99 98 102 57 53 53 56 50 52 55 97 57 51 53 53 57 101 50 55 102 101 100 49 53 98 56 56 53 57 51 50 99 48 50 52 97 56 101 55 48 49 56 55 54 50 48 102 97 56 101 55 101 98 53 100 100 52 101 56 100 57 57 100 56 57 54 56 100 48 57 55 51 48 53 101 98 100 101 48 57 101 100 50 101 54 100 101 48 99 99 54 49 49 99 52 56 56 52 101 55 57 99 102 54 48 54 97 98 102 100 56 54 102 57 100 55 102 55 102 97 99 51 50 102 54 99 52 51 49 55 102 56 101 50 97 100 100 99 53 99 97 100 98 53 98 101 102 99 51 98 98 49 50 49 53 49 49 55 97 98 98 49 101 56 48 53 53 55 51 54 51 49 99 97 56 97 100 55 101 97 54 55 98 57 50 52 57 55 100 98 50 98 48 53 53 102 102 54 52 54 48 102 52 49 101 98 100 99 100 55 97 55 52 97 57 53 56 98 56 51 54 57 54 97 53 50 57 50 100 51 52 56 98 55 102 57 97 102 50 101 54 54 98 56 55 50 55 56 51 50 99 100 102 100 48 53 53 56 98 55 56 97 48 98 55 100 55 57 57 54 100 101 49 52 56 97 51 54 98 53 48 100 56 53 99 102 51 102 51 56 102 53 102 97 100 50 53 99 100 97 53 57 100 98 101 56 98 55 98 101 52 53 98 52 49 49 51 49 56 53 98 50 100 56 99 98 55 52 102 53 51 57 99 55 101 49 52 101 53 54 102 102 48 48 56 57 101 53 98 57 99 102 100 101 98 49 102 101 97 97 54 98 98 97 49 52 56 100 51 55 52 54 56 102 54 97 99 98 56 100 98 99 102 102 48 48 49 51 99 100 50 102 102 99 98 51 98 53 56 102 54 50 102 102 48 48 98 101 100 100 52 102 101 53 57 97 98 49 55 53 55 50 57 54 57 54 51 50 52 101 102 100 49 52 55 48 51 100 52 102 54 49 53 53 50 100 54 50 98 98 98 55 100 51 57 49 53 54 49 56 49 101 55 57 48 57 57 54 55 51 50 52 100 98 55 48 99 100 100 48 54 51 49 100 56 54 50 98 97 50 49 52 99 53 48 56 101 56 100 57 97 55 52 99 55 57 49 50 51 52 100 99 101 99 97 56 51 100 53 56 101 50 97 57 49 56 54 101 97 52 51 57 57 97 102 53 54 50 53 51 102 99 49 54 97 57 102 102 48 48 98 51 51 55 102 56 53 53 49 98 55 98 50 56 50 53 49 50 100 101 51 97 51 100 99 56 99 98 48 98 55 56 101 54 55 50 101 48 101 51 56 100 99 100 101 98 57 50 51 56 49 100 50 98 55 56 100 50 101 101 53 52 54 57 97 101 97 99 100 48 51 55 100 54 54 99 48 49 102 98 53 99 48 51 102 101 100 97 48 97 57 52 51 50 98 97 48 55 52 54 53 55 52 51 100 48 56 51 57 48 54 97 57 52 50 50 50 53 102 50 52 99 50 102 98 56 51 98 54 100 57 100 53 101 51 48 55 50 100 56 50 52 57 99 54 51 101 53 51 99 54 51 49 100 51 49 102 57 100 49 54 101 97 50 50 100 52 101 102 50 49 56 99 48 53 56 55 48 98 50 48 53 48 51 48 49 52 57 99 56 51 56 102 99 97 98 97 97 49 52 97 99 56 98 101 52 53 100 48 98 100 53 99 53 102 99 52 53 50 51 102 101 49 52 51 55 56 99 48 55 102 100 52 50 97 53 102 101 53 53 100 56 54 52 48 48 55 56 99 100 55 49 51 102 49 49 48 102 102 99 53 56 57 102 49 55 102 102 48 48 100 56 50 101 53 102 101 53 53 100 51 48 97 54 55 50 54 51 97 51 102 101 99 100 53 51 102 99 50 102 102 50 51 101 54 99 102 100 57 102 100 52 57 102 56 55 53 102 49 48 51 102 101 99 51 49 55 49 102 102 48 48 97 49 51 53 55 98 48 100 97 102 100 99 53 97 102 50 48 102 100 57 102 56 56 102 102 56 53 55 55 101 51 101 51 102 102 53 49 56 98 56 102 101 54 54 98 100 55 54 49 57 49 53 51 50 99 52 56 99 48 49 57 51 53 102 56 97 101 50 97 49 102 98 102 57 49 102 57 100 100 48 55 97 57 97 98 48 57 100 102 97 97 52 56 101 55 101 101 99 55 49 56 52 49 102 53 51 99 57 102 100 48 53 53 99 55 57 55 54 99 55 57 99 55 101 98 53 52 50 99 98 50 98 97 55 99 54 101 99 51 101 55 57 55 102 55 56 100 102 56 102 52 102 100 51 49 53 51 101 52 99 57 50 55 98 48 97 57 56 99 49 53 56 102 54 54 48 102 52 50 52 49 102 51 101 48 100 52 101 97 57 98 57 56 50 102 54 101 102 52 48 52 48 49 52 49 51 100 55 100 50 97 99 48 100 57 49 99 54 51 50 52 101 102 51 100 54 98 53 53 48 98 49 97 49 50 97 56 49 49 97 55 102 98 52 55 97 48 97 56 102 55 101 100 48 53 99 102 50 99 55 97 53 52 52 99 52 54 51 50 55 51 98 56 56 101 51 100 56 53 52 54 55 48 48 54 101 50 55 98 55 48 50 98 54 56 100 51 48 50 52 50 99 51 48 52 57 102 98 100 52 97 56 48 50 97 57 54 54 51 99 48 97 97 98 100 53 102 51 99 100 51 54 52 54 102 57 102 54 101 55 56 49 53 98 99 54 57 97 49 97 52 51 100 101 53 50 99 102 57 102 53 97 56 56 57 99 100 51 51 55 53 52 54 53 56 53 54 102 49 97 54 53 100 56 57 48 57 102 57 52 101 48 100 54 50 54 97 49 49 55 57 100 54 51 51 48 101 51 57 52 51 53 97 56 100 102 55 48 100 53 50 55 49 98 98 51 101 57 56 101 54 98 53 102 54 52 56 99 101 97 101 99 55 51 51 51 52 57 101 54 100 97 52 53 50 101 55 51 98 57 48 49 102 99 55 49 53 101 51 100 101 51 53 101 54 102 97 54 49 101 98 48 97 102 102 101 56 52 54 98 100 53 53 57 98 99 97 57 54 101 50 100 48 57 102 102 48 48 53 54 101 53 57 51 102 100 100 51 99 56 97 102 50 97 102 49 55 57 48 100 97 97 98 56 102 102 48 48 97 54 50 98 57 102 99 99 100 55 52 54 49 101 57 100 97 97 99 51 100 53 55 101 54 55 99 97 101 54 56 102 100 100 102 57 57 101 102 57 102 98 51 48 57 99 55 101 99 55 57 101 49 100 102 102 48 48 97 101 98 51 102 102 48 48 101 56 100 54 97 102 97 48 51 55 48 97 102 57 101 98 102 54 54 50 54 102 102 56 99 51 98 102 48 101 102 102 48 48 100 55 53 57 102 102 48 48 102 52 54 98 53 55 98 102 101 55 51 53 100 57 101 99 55 100 101 51 102 52 97 99 49 52 53 102 98 48 56 102 97 48 102 97 50 97 49 99 57 51 100 50 56 99 101 100 51 57 54 101 57 53 100 100 52 97 56 51 51 97 98 57 52 97 98 49 98 55 57 102 101 50 48 57 54 52 51 99 99 53 54 56 51 54 97 55 98 99 56 99 51 57 51 102 56 48 102 101 55 53 55 56 102 51 101 100 56 97 99 99 100 51 57 56 49 100 50 51 99 101 50 52 48 51 50 99 98 50 52 97 52 102 98 54 101 99 55 102 50 53 97 56 51 101 100 55 55 53 55 98 50 51 99 55 97 55 52 54 48 52 52 48 101 100 55 98 97 57 51 56 52 53 102 97 55 97 57 97 101 102 97 55 52 56 100 54 53 52 100 98 55 54 101 99 52 102 55 52 55 101 100 57 55 56 98 97 54 99 52 99 100 98 52 57 100 100 55 52 101 98 102 99 48 57 100 99 54 55 100 52 102 52 97 57 97 52 100 97 98 97 102 100 97 48 53 53 48 97 97 50 100 101 52 48 48 54 55 97 48 49 98 54 57 100 54 102 48 52 55 54 98 54 57 101 53 52 52 53 57 56 57 51 98 97 52 57 49 98 101 102 52 56 100 101 97 55 102 97 48 101 100 53 53 101 101 97 99 97 52 98 97 98 57 56 52 56 57 102 99 57 56 48 50 98 50 99 97 53 52 102 99 101 52 49 99 55 48 51 101 98 56 101 98 53 100 55 49 97 52 53 50 98 53 101 100 100 48 54 99 54 55 102 98 52 51 53 50 49 55 48 99 51 55 53 56 100 98 98 54 50 50 48 52 55 49 50 99 57 101 98 102 52 49 102 101 49 53 97 48 52 57 99 57 51 57 51 57 51 100 52 101 54 97 49 57 54 52 52 98 55 56 54 51 53 53 56 50 54 102 50 53 53 55 48 48 52 53 49 57 54 48 56 51 102 48 101 54 97 97 57 100 52 101 99 56 55 100 101 57 102 54 49 102 52 54 53 50 48 102 102 48 48 50 97 101 57 56 53 50 48 98 51 55 98 50 51 52 48 55 53 97 99 98 98 49 54 57 49 101 100 50 100 97 51 52 57 52 50 49 56 48 57 52 57 100 48 57 101 55 56 50 55 51 99 54 51 57 99 102 100 52 53 50 102 102 54 57 100 57 48 102 98 98 51 55 57 56 52 102 54 52 53 50 99 55 102 52 49 53 53 50 54 56 57 97 102 50 101 52 52 100 54 102 54 98 55 55 54 57 50 55 52 102 98 52 98 51 55 57 52 48 56 102 55 48 55 57 54 102 99 97 98 97 97 49 52 53 57 97 52 54 48 101 100 97 57 97 102 98 54 50 102 98 52 49 57 56 99 55 49 56 57 52 50 101 51 55 57 101 98 56 101 102 102 48 48 102 101 98 97 97 53 54 97 102 101 55 99 100 55 53 55 52 98 102 101 97 101 52 55 49 49 99 52 55 100 52 50 54 55 50 55 102 51 51 102 97 53 53 55 51 97 55 51 99 57 57 53 98 56 100 53 50 102 50 55 56 55 102 56 57 48 50 56 52 100 100 102 56 101 54 97 102 102 48 48 99 98 49 99 52 57 49 99 54 97 49 50 51 53 49 98 53 53 52 55 52 53 48 51 98 53 55 52 99 54 57 50 98 49 53 99 97 57 50 50 52 99 100 55 49 51 102 49 48 99 101 55 101 48 53 102 56 98 98 102 101 99 49 55 50 102 102 50 97 101 98 97 98 56 101 102 56 56 52 55 102 101 50 99 53 102 56 98 98 102 101 99 49 55 50 102 102 50 97 100 97 51 52 56 101 52 99 55 50 102 102 54 53 97 57 102 101 49 55 102 57 49 102 51 53 55 101 99 102 97 102 57 102 56 55 55 102 49 48 98 50 55 57 49 97 99 53 99 55 102 101 56 52 54 98 100 53 50 50 55 51 55 53 55 48 54 100 52 49 99 52 50 57 56 102 98 52 51 56 102 99 99 50 48 102 55 51 102 97 53 55 57 48 55 101 99 102 54 99 52 102 99 51 97 102 56 56 56 52 55 54 100 53 97 101 51 102 102 48 48 52 50 54 97 101 101 101 49 54 98 99 56 102 52 55 54 56 101 52 56 57 97 100 100 48 49 50 102 50 52 56 53 99 54 101 57 53 56 57 101 48 48 102 54 101 57 102 57 53 55 101 49 102 56 97 56 100 97 98 52 56 102 99 97 101 49 53 97 100 50 51 100 50 57 50 52 100 100 48 49 48 51 48 48 57 49 99 48 101 99 50 97 52 52 54 53 56 99 55 99 100 99 51 55 55 97 101 53 48 101 97 56 100 49 52 101 57 48 99 54 53 53 99 52 52 99 56 57 51 99 56 55 57 49 57 51 99 54 48 55 98 100 53 101 98 97 100 52 48 97 57 52 53 56 101 51 51 50 52 99 101 100 98 53 49 52 49 101 53 56 102 98 102 97 48 97 99 100 52 49 102 52 51 100 53 56 54 50 49 53 56 100 98 51 55 56 97 99 101 55 49 57 54 50 51 97 53 52 99 98 51 54 100 102 57 101 52 101 55 101 97 54 98 57 48 48 51 53 49 50 100 57 55 98 98 98 55 98 55 53 51 102 99 51 48 97 54 101 54 49 101 100 57 51 99 53 51 57 97 50 56 102 54 102 101 102 53 101 101 50 101 48 102 97 99 98 50 57 99 55 101 52 50 98 54 56 99 53 57 97 97 99 52 57 100 52 51 53 102 52 50 54 52 50 53 101 52 56 100 55 49 100 56 98 56 97 56 49 98 53 50 98 55 55 57 51 102 100 55 52 51 56 49 99 55 48 101 51 56 97 99 48 53 57 54 100 100 49 51 54 97 52 49 54 102 56 102 55 56 99 49 102 101 55 52 100 49 51 99 52 97 55 56 56 50 100 102 102 48 48 101 102 100 50 100 55 52 52 54 50 99 98 56 101 50 51 98 57 100 48 56 100 52 101 99 100 53 52 102 101 102 101 49 99 56 102 102 54 98 51 53 49 49 100 53 50 99 100 98 51 102 98 102 56 55 51 102 53 51 53 56 101 50 102 48 50 101 51 54 99 55 48 50 102 100 50 50 53 102 102 48 48 48 97 55 51 53 102 49 50 51 48 99 98 49 49 49 101 56 53 49 52 100 54 102 49 56 57 97 55 100 54 53 50 51 53 48 53 101 50 51 56 102 57 54 52 56 99 102 97 54 49 56 53 48 54 55 50 48 102 53 99 53 54 48 51 99 98 54 57 50 49 50 53 97 100 54 100 56 98 55 102 55 57 53 55 54 57 102 99 99 53 52 52 54 53 57 49 55 102 100 52 53 99 57 53 102 102 48 48 54 54 54 53 100 101 51 102 51 97 100 101 51 52 101 99 50 102 97 99 49 100 49 48 57 49 57 56 54 55 50 52 48 97 56 54 55 57 51 54 99 50 100 100 98 56 101 50 98 57 102 49 97 100 52 98 49 52 97 98 49 53 101 52 53 49 99 51 98 56 102 99 98 50 50 49 100 99 56 55 100 98 51 100 97 97 98 53 102 101 97 98 50 97 48 56 100 50 51 52 52 57 54 52 57 53 98 54 97 56 50 100 98 52 55 52 99 102 53 51 53 98 99 54 51 97 49 49 51 99 52 99 54 100 98 57 52 98 53 50 52 52 57 54 101 53 52 56 98 97 57 54 100 97 55 100 97 52 48 50 56 52 54 53 56 55 100 48 100 55 56 102 55 56 56 54 101 100 100 97 102 49 56 52 99 55 55 51 48 52 51 49 57 54 102 53 99 49 51 99 100 55 55 51 55 57 55 51 48 100 99 101 97 48 50 53 57 55 99 101 56 56 99 56 49 53 49 54 52 52 51 102 51 52 50 101 51 50 48 97 102 98 54 55 51 53 101 54 98 101 50 100 51 49 100 98 54 97 49 101 53 97 49 57 49 100 52 52 51 98 57 100 57 98 57 50 52 57 50 55 50 52 100 54 100 52 50 51 102 98 100 56 55 97 97 51 101 53 55 51 51 97 100 55 98 55 97 57 102 52 98 102 101 99 99 54 101 52 55 101 99 55 55 101 49 101 99 55 102 99 102 53 57 102 102 102 48 48 52 54 98 53 55 98 101 57 54 50 55 97 57 99 100 55 99 102 51 102 98 50 102 51 101 101 102 100 56 101 51 99 51 97 52 102 102 99 102 54 57 102 98 102 102 100 51 53 54 97 102 97 48 54 98 100 54 56 53 49 98 98 51 102 53 98 99 98 101 50 57 101 49 97 49 101 56 52 101 49 101 97 50 57 56 99 56 100 54 55 51 48 56 56 54 54 52 50 56 52 50 102 51 100 102 49 99 53 51 55 51 52 97 48 101 50 98 98 97 57 100 49 51 98 54 100 54 51 50 50 100 102 52 100 98 99 55 98 50 56 50 49 98 102 98 97 49 49 100 98 50 50 56 49 102 54 54 56 51 101 102 49 102 54 50 100 100 51 102 57 100 54 100 97 101 100 52 56 57 50 51 52 52 53 56 101 51 52 49 56 52 52 53 101 56 97 50 57 51 98 102 53 97 53 99 55 100 50 98 98 97 49 52 97 99 49 51 55 50 57 51 49 99 48 101 54 56 48 52 57 97 54 48 54 102 102 48 48 54 54 56 50 100 57 101 102 56 97 101 56 56 100 51 50 55 57 51 98 56 97 97 100 98 52 57 99 54 55 51 101 98 52 49 57 53 99 55 52 55 54 102 102 48 48 98 101 97 97 51 50 55 51 100 54 97 51 54 54 99 54 51 98 100 55 52 52 54 57 100 99 98 53 49 50 54 51 51 52 98 56 102 98 101 100 102 56 49 97 56 53 57 102 101 54 99 102 53 99 102 97 100 51 49 57 98 55 53 51 54 98 97 50 49 52 99 98 52 57 50 49 52 57 99 57 97 54 57 51 102 56 100 50 54 101 97 54 100 55 52 99 54 57 48 99 55 54 101 97 101 50 102 101 50 50 49 102 102 56 98 49 51 101 50 102 102 102 48 48 98 48 53 52 98 102 99 97 98 98 50 97 101 49 102 101 50 51 98 102 102 99 53 56 53 102 49 56 49 49 100 98 52 57 57 55 102 57 53 54 101 97 57 57 99 98 56 102 102 102 48 48 55 53 97 98 102 101 49 55 102 57 51 51 101 54 49 102 100 57 101 50 52 99 102 99 51 53 102 56 56 100 102 102 48 48 54 49 55 98 56 102 101 54 100 53 101 97 49 98 54 51 98 56 98 51 55 56 54 52 102 98 97 101 51 48 55 48 55 49 53 102 51 102 102 99 51 54 57 102 53 102 102 48 100 102 99 51 97 102 49 53 101 57 100 54 97 57 54 102 48 100 100 54 97 55 97 99 52 99 102 101 55 57 57 100 52 102 57 55 49 54 102 51 100 48 55 102 55 56 102 101 56 50 98 97 101 56 54 101 51 99 53 49 57 99 55 102 54 57 48 51 102 102 48 48 54 100 53 50 98 102 48 101 99 52 54 49 54 97 98 97 100 50 55 49 56 51 54 56 102 99 52 53 101 51 101 57 50 57 98 53 55 51 100 51 52 100 98 57 56 98 52 99 49 54 102 48 54 101 48 99 49 99 51 101 101 57 48 101 55 55 51 48 51 57 99 57 51 53 51 52 50 102 55 48 54 101 99 100 99 100 100 97 97 97 99 56 49 52 97 52 55 49 97 51 54 52 50 101 55 97 98 49 51 101 97 54 98 99 102 53 50 101 55 99 52 100 56 102 102 57 48 57 54 55 102 101 100 98 50 53 52 56 54 101 98 99 52 102 100 55 102 98 52 55 102 102 48 48 50 50 97 53 52 52 55 48 57 53 98 102 101 55 100 98 51 97 97 49 56 101 97 55 54 100 99 102 52 57 51 55 53 99 102 53 99 55 100 54 97 50 54 98 99 51 57 99 54 101 97 102 51 54 55 57 55 99 52 55 50 50 101 49 98 53 49 51 102 53 49 51 50 53 52 49 98 51 99 52 53 102 102 52 49 52 55 102 102 98 102 99 57 53 100 49 49 99 50 100 54 102 102 57 102 54 99 100 55 102 98 52 54 50 55 97 55 49 98 57 100 99 98 56 50 49 52 102 101 49 53 52 53 101 101 56 97 51 101 48 101 55 100 56 100 55 57 102 56 51 101 50 49 49 102 102 48 48 51 49 49 50 55 101 98 51 97 53 48 99 102 101 50 48 50 51 48 54 102 57 49 98 101 98 50 97 53 54 99 98 48 98 53 57 102 102 48 48 99 98 98 54 48 102 51 49 56 98 51 98 100 102 98 54 55 100 55 102 51 97 54 57 98 99 48 51 97 56 48 54 98 99 102 49 57 55 53 102 51 102 102 51 49 48 50 98 102 52 57 57 50 97 49 54 56 98 99 52 51 99 54 51 53 52 54 102 102 98 102 97 57 53 98 52 55 48 100 53 102 102 48 48 101 55 100 98 50 49 101 54 50 56 102 52 55 51 55 56 51 98 49 50 50 57 98 102 54 99 51 101 98 57 97 102 51 97 51 48 54 98 100 57 48 54 52 100 54 57 48 54 52 54 55 54 57 57 57 52 49 102 101 53 52 48 52 100 54 53 55 102 101 54 50 102 48 57 102 97 100 99 48 102 102 48 97 100 101 51 56 53 97 102 102 102 48 48 51 101 100 102 102 53 102 51 48 53 57 57 50 51 98 101 57 54 101 57 50 53 56 53 97 51 57 48 54 102 52 54 101 97 48 100 54 51 52 56 50 102 57 97 54 98 55 56 53 50 52 56 101 54 98 54 52 57 57 53 99 51 98 51 101 49 100 48 48 101 99 55 100 54 98 57 97 54 102 101 100 56 49 99 55 102 54 97 100 98 55 102 100 102 101 53 97 97 102 50 52 57 97 101 48 53 101 51 53 55 98 54 49 102 52 57 57 55 102 99 50 98 54 56 101 49 54 98 55 102 99 102 98 54 52 52 102 51 49 56 98 100 99 101 97 101 54 98 54 98 53 51 55 102 102 54 97 57 49 48 49 57 99 49 99 56 99 51 57 99 49 51 101 97 52 55 52 50 54 98 99 99 51 99 54 102 50 101 101 98 101 55 53 53 48 51 57 56 48 55 52 102 97 57 97 98 98 51 51 101 98 100 101 54 49 54 102 101 100 97 56 51 49 101 56 54 101 49 55 49 102 99 97 98 48 97 102 50 100 55 53 50 98 99 56 101 55 102 98 52 53 101 53 56 100 99 99 98 101 53 57 100 97 99 54 55 53 100 100 99 48 50 55 49 53 100 55 56 55 99 50 53 54 55 53 50 51 102 98 98 54 98 53 52 55 57 49 56 99 99 55 53 51 57 97 98 50 101 101 55 100 50 100 102 98 50 98 99 56 53 98 102 54 51 50 102 48 101 57 48 55 102 101 53 98 52 101 51 102 102 48 48 50 50 98 53 55 100 49 50 49 56 102 51 99 100 55 99 54 102 102 48 48 102 99 55 55 97 53 102 56 49 102 102 48 48 54 54 55 100 49 51 99 51 100 97 100 53 97 54 97 50 102 97 56 52 52 102 50 51 98 102 100 57 99 52 54 99 57 56 54 55 50 99 48 54 52 98 56 101 55 48 55 100 50 98 100 97 100 51 101 51 50 55 56 54 53 99 102 49 54 55 97 99 102 102 48 48 100 102 98 56 98 102 102 56 98 97 102 55 54 57 54 49 57 100 57 54 56 55 101 99 53 57 55 101 55 100 57 55 52 51 48 102 48 56 52 97 98 50 52 100 49 101 98 56 52 56 101 100 53 50 48 99 98 55 53 101 50 98 99 56 98 102 101 49 55 48 102 56 54 99 52 99 49 48 53 57 54 98 50 99 52 56 99 57 51 98 50 50 101 51 102 102 48 48 50 50 53 52 102 102 48 48 102 48 98 55 55 99 51 57 102 102 48 48 51 101 55 97 99 55 102 100 102 49 49 55 102 102 48 48 49 55 53 100 57 49 99 51 98 52 55 54 55 102 97 99 49 57 54 102 102 99 102 101 52 55 97 99 54 55 100 101 57 54 98 99 57 98 102 101 49 54 100 102 56 54 102 102 48 48 101 55 100 51 53 55 102 102 48 48 98 101 50 50 102 102 48 48 101 50 101 57 100 102 102 48 98 55 55 99 51 56 51 102 101 53 99 102 53 55 102 102 48 48 98 101 54 50 102 102 48 48 101 50 101 98 97 49 53 48 50 53 101 55 102 57 54 102 102 99 102 101 52 55 97 98 55 52 97 54 57 55 102 52 101 54 98 99 97 52 102 99 53 100 102 48 101 49 102 102 48 48 57 55 50 100 54 51 102 101 102 57 56 98 102 102 48 48 56 98 97 52 102 102 48 48 56 53 98 57 101 49 99 102 102 57 102 50 100 54 51 102 101 102 56 56 98 102 102 56 98 97 101 56 56 53 50 48 53 99 52 49 57 54 102 102 48 48 99 102 101 52 55 97 97 51 51 54 101 97 54 100 55 57 54 55 102 99 50 100 99 102 48 101 55 102 99 102 57 54 98 49 102 102 48 48 55 99 52 55 102 102 48 48 99 53 100 52 55 102 102 48 98 55 55 99 51 98 102 102 48 48 51 101 49 97 99 102 102 100 102 49 49 55 102 102 48 48 49 55 53 100 49 49 97 52 99 97 102 102 48 48 53 56 51 50 100 102 102 57 102 99 56 102 53 53 100 99 54 57 98 53 101 53 54 51 101 50 101 102 56 55 51 98 100 56 101 98 50 51 102 101 48 49 49 55 102 102 48 48 49 55 52 100 54 102 56 98 57 101 49 98 51 56 102 102 48 48 52 51 100 54 51 102 101 102 100 99 55 102 102 99 53 100 54 101 97 57 97 52 48 98 56 56 51 50 100 102 102 57 102 99 56 102 53 52 54 54 100 98 56 101 102 53 49 98 51 54 55 49 100 97 98 99 97 99 102 99 53 99 102 48 100 48 49 99 100 97 54 98 49 102 102 55 101 101 50 102 102 101 50 101 97 50 54 102 56 99 51 101 49 57 53 102 102 57 55 51 100 54 52 102 102 99 48 50 50 102 102 101 50 101 98 53 101 53 54 53 55 102 97 99 51 57 54 50 102 102 48 48 57 55 100 49 51 100 54 48 57 50 55 97 57 97 101 50 51 101 50 52 98 54 100 102 100 57 102 102 48 48 99 54 52 55 102 101 97 49 51 51 55 102 50 49 53 99 98 51 102 99 54 97 102 48 98 50 101 55 102 100 48 98 53 98 51 56 102 52 56 101 50 102 102 101 51 57 53 99 97 102 56 99 51 101 50 99 55 56 55 98 99 52 51 102 48 99 51 99 52 49 97 48 53 56 100 97 54 97 99 57 55 57 55 102 54 51 50 53 98 99 48 100 51 50 99 52 49 48 51 51 48 101 51 55 49 48 101 52 56 49 102 56 53 53 50 56 51 51 56 55 51 48 101 50 53 99 97 101 53 56 54 97 57 49 53 53 101 51 55 55 49 55 100 55 99 56 102 57 54 98 102 54 53 101 102 100 57 97 51 101 49 52 55 99 53 97 102 56 55 102 101 51 48 100 54 55 99 54 98 97 54 101 98 100 55 53 55 100 54 57 101 50 49 57 97 100 97 48 51 54 55 97 100 99 102 54 97 97 49 48 54 48 101 48 56 52 50 51 50 55 100 101 98 101 97 50 49 102 98 48 98 102 101 99 102 48 51 97 54 56 55 101 50 100 102 99 55 99 53 53 55 55 102 102 48 48 99 53 53 54 48 102 101 99 51 56 57 101 53 102 99 49 55 102 49 101 102 49 102 102 48 48 51 51 53 52 101 55 102 57 53 55 100 98 57 98 97 98 102 50 49 97 100 53 50 97 50 97 56 100 50 57 49 99 53 57 55 101 49 50 56 100 52 97 49 49 57 51 56 97 54 100 100 102 102 51 51 101 52 52 102 102 48 48 56 54 49 98 102 100 57 101 98 98 101 56 55 101 50 99 51 102 102 55 51 52 100 100 102 102 48 48 102 49 53 52 57 102 102 48 99 51 100 102 98 51 100 56 101 57 97 49 102 56 97 102 102 49 102 49 52 53 100 102 102 102 48 48 49 53 53 102 53 100 53 49 52 101 51 53 50 97 102 102 48 48 51 51 51 98 57 54 53 98 56 54 101 98 48 53 102 55 49 102 50 50 57 102 100 56 55 98 102 54 55 98 102 102 48 48 97 48 49 55 56 97 98 102 102 48 97 56 98 97 102 102 48 48 101 50 97 56 102 102 48 48 56 54 49 100 102 100 57 101 56 102 102 99 99 48 98 99 53 55 102 102 48 48 56 53 52 53 100 102 102 102 48 48 49 53 53 102 53 98 54 102 102 54 97 54 54 55 101 98 53 98 99 54 55 53 51 98 57 53 102 100 57 98 56 53 102 102 48 48 57 102 54 98 101 101 51 101 52 56 51 102 98 48 102 102 48 48 101 99 102 51 102 102 48 48 52 48 50 102 49 53 102 102 48 48 101 49 53 49 55 55 102 102 48 48 99 53 53 51 55 102 101 49 56 55 102 102 48 48 54 55 98 102 102 97 48 49 102 56 97 102 102 102 48 48 48 97 56 98 98 102 102 101 50 97 98 101 98 56 97 54 49 51 57 97 101 57 56 99 97 55 100 99 54 98 50 98 99 50 55 102 99 102 98 53 102 55 49 102 50 53 55 102 99 51 48 102 102 101 99 102 55 100 98 52 51 102 49 53 56 102 102 98 57 97 50 101 98 102 102 56 97 97 52 102 102 56 54 50 50 102 100 57 101 102 102 101 56 48 51 101 50 97 102 102 48 48 99 50 97 50 101 102 102 102 48 48 56 97 97 102 97 99 102 55 53 49 56 51 100 101 98 97 50 51 99 102 100 99 97 102 101 99 99 99 50 55 102 99 102 98 53 102 55 49 102 49 101 99 102 102 48 48 98 48 99 102 101 99 102 102 48 48 51 52 97 53 57 55 52 101 102 49 55 52 52 97 55 97 50 56 102 49 48 99 99 100 56 102 99 52 101 52 100 53 55 51 102 98 48 56 55 99 48 49 102 102 48 48 57 102 51 102 49 56 56 102 102 98 57 56 50 53 97 102 98 50 48 51 55 97 48 99 53 50 55 52 101 102 53 98 99 53 99 98 98 56 100 54 53 53 56 53 102 102 48 48 57 102 54 56 102 56 100 56 55 101 99 50 98 102 48 48 56 54 51 49 54 55 101 51 49 101 51 102 101 97 51 102 50 100 50 57 102 100 56 53 51 101 48 50 49 49 102 102 48 48 49 101 55 101 51 48 49 102 102 55 49 102 57 50 98 101 99 55 100 100 52 99 50 55 49 53 98 52 54 51 51 50 98 102 98 50 51 48 55 102 102 51 101 100 49 102 49 97 51 102 101 99 49 102 102 48 48 100 98 102 101 53 100 98 99 54 54 51 101 57 97 102 99 57 102 101 49 53 101 53 55 102 49 56 51 102 54 52 52 102 56 51 57 102 48 101 55 101 48 52 54 97 57 101 51 48 102 48 101 100 97 102 56 57 56 101 98 49 54 57 51 99 48 57 48 102 100 98 51 53 56 57 50 54 56 98 49 50 52 56 49 49 98 50 97 55 97 102 48 52 101 50 98 102 52 55 50 98 99 49 55 102 54 57 56 53 100 100 102 98 49 101 55 56 56 57 55 102 101 57 101 97 100 51 102 102 48 48 52 55 97 100 51 102 54 55 50 51 48 99 54 101 53 57 56 53 97 55 56 54 57 99 101 51 48 52 57 97 52 99 102 56 48 55 102 54 55 97 102 100 57 101 51 101 49 49 102 56 102 55 102 54 55 98 56 98 99 52 55 101 51 53 56 102 99 52 50 57 55 101 100 55 55 50 50 55 57 100 54 98 97 98 99 100 49 52 54 52 48 54 99 48 48 53 53 55 98 102 98 100 55 100 48 100 48 102 101 99 57 57 102 98 51 56 99 55 54 99 51 48 100 101 50 53 54 52 48 51 97 98 54 98 100 55 49 53 56 51 102 98 50 101 99 54 48 55 101 99 53 98 49 49 51 99 48 54 100 52 50 52 101 55 100 51 101 55 49 53 101 101 99 50 53 102 51 97 100 50 52 56 101 50 53 57 49 48 49 50 99 57 49 99 56 53 55 101 53 50 99 51 98 54 54 98 101 49 57 53 55 97 97 97 97 99 98 100 101 55 54 98 102 55 51 99 48 97 51 55 57 51 55 99 99 57 51 100 53 102 55 101 102 101 97 55 57 55 102 102 48 48 99 51 50 57 102 101 99 101 53 98 52 54 51 102 101 49 50 50 102 97 102 102 48 48 54 102 53 99 53 48 55 102 54 53 49 102 100 57 99 52 56 101 55 102 101 49 50 50 102 102 48 48 99 49 102 53 99 100 55 97 97 99 55 97 50 100 57 98 99 50 56 54 48 49 55 50 56 102 56 49 56 55 102 51 48 57 54 48 55 98 101 52 55 52 101 98 53 54 101 51 98 51 99 52 56 50 50 98 56 54 48 98 50 54 51 101 53 54 53 102 98 97 102 102 48 48 101 48 55 100 97 98 100 57 99 50 53 54 97 99 101 100 55 55 102 56 57 97 102 100 53 97 50 102 55 97 55 49 102 101 98 101 54 55 56 101 56 102 100 57 51 55 102 54 55 49 54 48 55 49 102 102 48 48 48 57 49 101 51 102 101 99 51 102 55 49 52 55 102 99 51 50 53 55 101 99 101 52 55 97 55 102 99 50 52 57 102 102 48 48 56 51 102 98 56 97 102 55 48 56 101 99 56 48 48 49 49 52 57 54 102 97 57 49 53 50 49 98 50 56 56 49 99 49 51 50 51 49 102 52 53 51 53 101 101 100 49 57 53 52 98 54 101 49 102 53 50 97 55 102 102 51 101 97 51 102 100 55 99 99 102 48 56 51 102 98 50 52 102 101 99 101 50 55 98 55 56 57 51 102 102 48 55 102 55 51 52 100 51 102 98 50 52 102 101 99 101 53 101 57 101 50 52 102 102 99 49 102 100 99 53 55 98 100 55 102 54 54 97 98 55 102 99 98 51 57 53 55 101 97 100 53 49 52 57 97 54 54 49 102 49 98 99 56 102 97 100 55 54 50 57 52 100 55 102 52 99 51 101 97 49 48 102 102 48 48 57 102 53 49 102 98 98 102 101 48 57 101 48 102 102 102 48 48 48 99 57 53 102 98 51 57 55 97 55 56 57 55 102 102 48 48 48 97 48 98 56 97 54 102 102 99 51 50 53 102 101 99 101 53 101 57 101 50 52 102 102 99 50 56 50 101 54 98 100 101 51 102 98 51 57 55 102 56 97 52 51 102 97 53 50 102 102 54 55 100 98 97 101 51 55 52 97 51 102 49 51 53 97 52 54 53 51 54 48 98 48 49 52 102 102 101 55 100 52 55 102 97 102 57 57 101 48 101 55 102 54 52 97 102 100 57 99 55 100 55 99 52 57 102 102 56 51 102 98 56 97 54 57 102 100 57 50 55 102 54 55 52 51 100 49 55 99 52 99 55 102 101 101 51 100 55 51 53 101 102 55 101 52 53 97 97 102 48 49 100 52 102 100 48 53 51 56 102 57 50 49 55 48 97 99 98 53 97 97 57 52 56 100 49 54 53 102 52 51 97 100 50 56 102 100 100 102 102 48 48 48 52 102 48 49 51 102 98 50 51 102 101 99 101 100 102 100 99 102 49 51 48 102 102 48 48 98 56 102 53 99 100 53 52 57 55 102 54 52 99 102 100 57 98 100 55 51 98 99 102 56 57 57 52 102 102 48 48 100 56 55 97 101 54 98 100 102 54 55 57 50 51 54 57 53 54 49 52 48 102 56 101 98 50 98 97 48 101 53 49 55 102 99 52 102 52 97 99 100 102 51 54 100 98 101 100 51 55 51 48 52 48 56 102 49 99 54 97 99 48 99 56 101 99 100 57 100 56 97 48 55 98 102 55 50 54 57 102 98 52 57 50 50 54 55 56 49 99 51 97 102 102 48 48 57 55 55 49 102 98 98 102 101 48 57 101 49 53 55 49 102 98 50 55 55 101 99 100 52 54 100 99 54 102 57 51 99 52 97 56 48 55 55 49 101 50 48 98 57 49 53 101 53 55 102 49 50 51 102 54 55 56 102 100 57 102 102 99 50 98 101 48 49 98 56 98 101 102 48 100 52 51 101 50 53 100 52 51 53 101 48 56 99 102 54 100 101 54 54 98 98 55 48 102 48 99 51 98 55 97 98 51 97 57 101 49 98 100 48 50 102 102 48 48 56 53 55 100 53 51 55 53 55 55 49 102 57 52 55 55 52 51 51 52 100 50 48 56 98 55 98 56 52 52 99 57 53 53 101 99 52 102 101 49 53 101 51 55 102 49 51 48 56 57 51 99 50 49 55 50 97 49 49 52 50 49 98 51 57 48 56 51 56 101 52 56 101 50 57 52 101 97 99 102 52 98 51 51 101 55 102 51 50 55 48 97 55 52 100 102 50 52 50 50 98 54 100 57 51 101 102 101 97 55 97 100 102 101 99 52 48 100 98 98 101 48 101 102 56 102 98 49 102 55 55 102 101 49 50 98 57 102 49 102 57 48 97 102 98 54 54 98 101 50 51 102 100 56 56 52 54 100 102 56 50 98 101 51 98 102 55 102 49 53 53 99 55 102 52 97 102 98 53 55 98 102 53 97 102 56 101 97 98 52 102 100 102 54 99 102 98 54 99 97 57 55 102 98 50 99 55 101 55 102 57 98 50 53 50 101 51 98 55 51 53 49 49 50 52 102 53 97 52 50 55 49 100 51 51 52 99 50 55 51 53 55 49 97 54 55 97 52 97 50 51 56 57 99 53 51 52 57 99 100 52 54 100 50 50 50 52 54 99 101 101 99 97 56 56 51 97 98 51 49 99 48 97 97 54 50 102 48 52 98 57 51 54 98 54 100 55 55 55 54 56 48 102 100 102 56 101 51 102 57 55 102 51 51 100 54 98 97 54 51 52 56 98 53 48 54 102 54 50 101 101 101 97 52 48 51 51 53 52 102 101 100 55 51 50 55 51 50 54 57 100 97 56 50 50 102 55 51 101 53 54 55 102 57 53 49 48 100 101 53 98 52 99 101 53 54 51 57 57 52 98 102 55 52 51 99 51 48 102 99 48 100 55 52 52 54 48 53 55 98 51 57 49 54 100 53 98 97 100 50 55 52 101 102 52 57 98 97 57 56 52 101 50 98 55 56 53 50 54 99 97 53 49 49 102 98 97 57 56 52 101 50 57 97 52 101 54 56 99 53 55 53 99 50 57 50 52 53 97 56 56 49 51 57 97 51 48 54 57 97 99 100 98 51 49 99 54 55 51 52 100 50 101 53 98 97 48 102 100 54 98 55 56 100 51 50 100 50 49 55 55 55 98 53 55 56 53 102 101 100 49 99 98 98 98 102 54 52 54 102 49 48 97 102 102 100 51 99 100 97 102 102 48 48 101 56 102 53 97 102 55 48 100 98 101 102 53 101 50 49 102 98 52 52 48 99 102 101 99 57 100 97 102 56 101 102 102 54 57 98 53 102 102 100 49 99 98 53 97 102 98 50 51 56 98 51 51 102 102 55 51 97 98 102 101 49 55 102 57 49 102 51 55 55 101 99 100 48 57 102 102 49 56 53 55 48 52 54 97 51 57 51 55 98 50 55 102 101 56 54 50 98 100 100 51 52 101 49 49 99 53 54 101 101 48 48 102 51 50 100 57 100 56 101 102 53 55 102 53 99 102 50 52 55 97 56 97 102 49 56 102 100 57 98 101 51 102 50 55 102 54 51 57 98 52 99 55 50 99 54 101 100 99 57 102 102 48 48 98 101 101 98 100 101 50 99 54 55 52 98 54 98 49 98 54 56 50 101 50 51 53 100 97 51 50 50 50 54 55 53 48 53 53 98 57 50 55 102 51 97 102 99 100 100 100 51 98 100 54 55 101 97 55 99 101 54 48 101 48 57 98 98 98 102 101 98 53 51 54 97 49 56 54 50 98 55 98 53 50 98 48 99 53 98 55 51 57 50 52 101 52 57 99 101 55 101 98 52 99 55 98 53 53 57 97 51 48 50 53 99 51 97 98 48 101 52 49 101 100 102 52 97 57 99 99 57 98 57 52 57 99 49 50 55 98 100 50 98 51 49 102 51 52 48 53 99 48 49 56 97 102 97 48 99 50 99 49 54 99 55 97 100 101 99 101 51 54 52 53 53 53 98 52 51 48 51 54 54 51 57 100 57 56 54 51 101 101 99 97 51 51 102 97 100 50 57 55 53 53 101 54 53 56 100 97 51 49 57 101 49 56 102 50 98 102 57 56 97 57 57 99 97 97 52 52 99 99 52 101 54 57 98 49 52 56 52 99 55 57 49 98 55 57 102 53 97 102 53 101 57 52 50 99 56 53 101 99 100 48 100 54 50 55 49 102 50 101 48 56 102 53 99 100 53 55 54 48 53 56 57 50 52 102 101 98 52 98 51 50 53 98 98 49 50 99 100 49 97 56 54 102 102 48 48 97 54 52 52 97 102 102 50 101 50 97 56 55 100 57 50 48 99 102 100 100 57 56 102 98 55 57 99 100 53 100 50 102 98 51 50 53 99 48 57 100 100 54 51 53 53 99 98 98 97 56 49 101 101 100 53 48 101 102 98 53 99 102 102 48 48 97 102 56 55 102 101 102 98 49 52 99 49 54 98 54 99 97 55 50 50 100 54 49 99 102 97 98 48 50 99 55 102 53 50 54 97 52 48 97 48 54 51 49 49 99 54 98 56 102 52 56 99 48 102 101 57 53 54 57 51 48 53 52 56 56 99 49 48 102 102 48 48 101 97 50 50 57 97 55 102 53 50 97 98 99 55 101 54 55 56 97 54 98 53 98 99 99 99 51 102 55 57 50 99 55 54 99 51 102 98 97 56 48 51 98 55 101 55 100 48 53 52 97 99 99 101 55 49 57 54 54 51 56 102 53 50 54 97 50 51 99 57 49 57 99 102 101 51 53 54 97 50 53 50 97 50 50 48 98 54 56 101 51 56 55 54 99 55 100 51 51 57 54 50 53 98 50 53 56 102 97 57 51 101 98 53 52 50 101 97 100 100 53 97 100 54 53 52 102 98 56 49 99 49 100 99 53 52 48 99 57 101 51 49 102 56 100 53 98 54 99 101 48 102 51 56 102 99 50 98 51 101 55 54 102 57 55 97 57 97 98 52 56 99 101 97 52 53 50 100 48 99 52 57 50 49 49 49 99 53 49 53 57 99 54 99 53 101 54 98 56 99 56 55 55 55 51 99 57 102 57 55 57 54 51 101 99 48 48 97 102 50 50 102 56 57 101 50 51 53 102 48 99 52 101 97 98 102 55 53 54 99 101 52 48 48 57 102 52 101 50 98 100 56 50 50 54 102 51 51 53 48 55 98 56 50 52 57 49 56 51 49 99 53 99 55 54 48 51 57 51 102 57 102 49 53 101 50 53 102 49 51 101 52 50 100 101 49 99 98 98 49 57 101 48 53 98 52 98 102 99 99 53 48 100 50 53 54 102 53 53 102 57 57 102 50 57 57 99 99 53 50 97 51 102 51 102 102 48 48 50 51 100 55 51 102 54 50 55 99 97 102 99 49 53 102 49 98 56 102 102 97 57 97 54 101 51 102 97 53 55 100 57 99 52 101 54 98 101 51 52 102 100 56 98 56 101 51 101 48 99 102 56 100 99 54 51 102 101 54 54 57 98 56 102 101 57 53 102 54 52 54 51 57 101 52 100 55 99 100 99 97 57 53 101 52 99 102 97 100 99 97 51 102 100 100 50 49 102 51 102 99 100 56 54 101 97 56 50 54 57 56 99 53 98 49 50 51 52 51 51 53 99 52 56 55 49 49 99 54 51 56 50 55 100 99 57 101 99 48 55 55 51 53 50 57 55 53 53 56 100 57 99 57 99 50 97 56 99 57 51 101 56 50 97 98 53 98 50 57 51 49 57 98 97 57 52 54 50 55 57 100 52 49 101 55 102 56 50 51 102 101 49 53 102 99 55 97 57 102 102 101 98 53 54 97 97 57 57 101 97 99 54 51 100 53 56 56 98 54 97 56 53 98 99 101 98 100 57 49 54 101 101 53 53 101 52 48 50 51 49 49 52 55 102 52 49 100 102 101 97 55 102 50 97 53 102 98 53 102 57 102 102 101 97 50 51 57 97 102 51 54 102 49 98 57 48 55 99 56 51 102 101 48 52 55 48 51 102 50 97 56 97 51 53 49 55 52 49 54 101 50 55 49 101 54 52 54 52 101 54 49 56 53 98 101 101 56 49 100 57 57 56 55 55 50 55 97 56 48 55 56 48 51 49 53 54 57 57 99 57 99 54 55 57 99 55 52 49 100 56 55 100 51 100 50 98 97 50 49 52 56 100 49 97 101 101 52 51 98 101 101 99 55 52 98 51 52 48 55 100 52 53 99 50 53 50 51 50 57 98 97 48 53 54 101 101 100 48 54 48 48 101 49 57 57 100 53 56 56 102 97 49 48 55 50 48 100 51 100 100 100 52 50 49 54 55 54 48 56 97 97 51 50 52 57 51 99 48 97 97 51 101 55 53 99 53 100 50 101 54 100 51 49 48 53 98 57 102 102 48 48 57 55 57 57 49 55 101 102 55 102 98 56 98 100 102 101 98 100 50 98 55 56 100 50 50 97 48 97 101 101 101 53 57 57 50 53 56 50 100 54 100 53 51 99 102 98 56 99 48 48 51 101 102 52 97 52 54 101 54 102 99 97 97 98 48 98 97 98 56 57 100 52 102 100 56 97 100 53 99 97 49 102 102 57 54 100 51 102 101 101 100 51 102 53 101 52 102 101 49 53 50 99 53 54 100 54 100 54 101 100 101 54 50 97 57 57 54 55 102 101 50 57 101 54 50 49 57 99 102 102 48 48 52 49 102 56 53 52 99 102 50 49 54 50 48 57 51 98 98 102 100 97 99 101 54 98 97 54 49 52 97 99 53 100 97 51 55 50 56 100 97 99 98 55 50 54 102 54 102 54 51 98 56 57 54 51 57 52 99 52 99 97 48 49 52 53 100 97 51 57 48 52 57 97 98 97 53 99 98 48 101 57 100 51 100 101 98 51 97 99 52 54 54 101 51 53 50 57 51 102 98 100 55 55 98 55 102 101 102 57 53 102 102 101 98 100 53 102 100 99 51 98 100 55 52 52 54 48 53 52 57 54 97 50 101 100 97 54 57 55 99 55 54 97 54 57 54 102 52 51 52 99 99 100 55 52 52 50 57 48 102 57 52 55 51 49 49 99 54 50 98 99 52 55 102 54 56 54 102 102 48 48 57 51 53 49 100 55 56 102 102 100 51 99 100 97 102 102 48 48 101 56 101 53 97 102 54 97 100 100 53 101 50 49 102 98 52 51 57 99 102 101 99 97 55 97 102 55 102 100 55 99 100 97 102 102 48 48 101 56 101 53 97 100 98 100 57 97 98 49 99 51 57 97 102 102 48 48 98 57 53 54 102 102 48 48 48 98 102 99 56 102 48 99 102 100 57 101 98 48 51 102 54 51 98 98 51 48 48 54 48 55 100 97 49 102 102 102 48 48 52 54 53 55 98 56 97 56 49 102 54 52 98 54 56 57 56 48 54 48 53 51 50 99 48 56 101 51 57 97 102 48 100 102 100 57 102 55 102 101 52 100 48 101 100 48 55 102 100 51 99 51 102 102 48 48 101 56 55 53 101 101 51 102 102 50 102 57 49 50 102 54 100 97 48 55 101 57 53 102 57 98 52 54 51 102 98 99 57 49 101 48 54 48 55 101 48 98 57 55 50 100 53 98 54 50 51 53 98 51 54 53 98 54 49 99 97 57 102 53 48 55 97 55 102 56 53 53 97 57 97 52 102 50 99 57 99 102 99 98 57 102 52 97 97 98 49 54 51 102 98 52 100 100 99 57 99 48 51 48 48 50 55 51 101 99 54 97 51 98 97 57 51 55 52 56 57 57 51 100 52 54 55 49 53 101 99 54 49 57 53 57 49 101 97 55 100 57 48 57 48 52 98 50 48 48 51 50 49 98 51 100 56 53 52 100 50 51 57 56 97 99 101 51 53 99 56 49 99 55 101 55 53 52 97 51 57 48 56 57 57 55 48 55 56 99 102 52 97 57 54 52 54 49 50 51 57 50 99 98 99 55 54 97 102 53 97 57 99 55 52 50 53 50 49 100 49 98 98 99 56 99 52 48 102 52 101 102 52 55 99 100 101 97 51 102 51 97 53 52 101 102 56 99 48 48 48 53 51 48 98 55 97 55 51 53 100 49 49 53 97 48 101 100 97 48 57 102 51 102 98 53 51 55 101 55 49 102 99 52 50 57 52 98 55 98 100 51 51 51 53 54 56 54 57 51 54 48 52 98 57 101 97 52 55 101 55 52 100 54 50 55 49 57 50 51 56 97 53 97 54 51 57 102 100 100 57 97 98 56 99 52 100 49 52 53 49 53 100 99 102 48 54 98 49 101 102 101 53 102 50 97 99 101 54 57 48 55 53 48 97 52 100 54 56 99 97 100 57 99 54 50 98 48 102 53 51 51 98 97 100 48 52 55 102 100 102 55 53 53 102 99 48 57 97 97 54 57 100 56 101 53 97 100 97 52 53 98 50 50 53 49 101 52 99 51 48 50 54 55 101 101 52 54 51 51 102 53 99 54 52 102 101 98 53 101 50 51 102 49 50 56 54 101 102 48 102 100 100 54 51 57 99 100 97 99 57 56 102 100 50 98 100 98 50 101 49 98 102 55 98 101 56 50 98 99 52 98 101 50 49 98 54 101 100 48 54 55 99 49 99 56 102 98 51 52 57 102 100 50 97 101 53 49 98 53 98 100 53 55 101 56 55 99 56 101 55 54 102 102 48 48 55 53 54 102 51 102 102 50 51 100 57 51 102 54 51 50 51 102 102 49 54 55 51 99 54 102 102 102 48 48 54 51 52 53 99 55 102 52 97 102 98 49 52 48 99 53 55 99 55 51 102 98 49 97 49 99 55 99 49 100 102 49 98 55 102 100 56 100 49 55 49 102 100 50 98 101 99 50 50 55 49 53 101 49 55 98 51 98 98 51 101 99 51 50 54 53 102 101 99 55 48 102 57 102 101 54 99 56 50 102 57 98 51 97 51 100 99 56 102 53 52 99 55 101 54 52 48 97 53 98 101 55 51 49 101 57 100 55 56 101 98 99 49 48 56 100 56 102 101 53 53 48 100 102 49 99 101 57 49 55 50 55 100 49 51 51 102 57 49 99 100 53 97 57 56 50 52 56 98 50 50 51 56 48 99 56 102 57 48 52 55 97 56 51 53 98 52 50 57 97 51 100 56 52 98 52 52 50 98 50 97 97 48 53 52 52 101 49 49 52 48 53 53 49 101 99 48 54 48 53 52 54 101 101 57 49 52 52 100 50 52 56 101 49 50 51 53 49 57 54 54 51 100 97 97 48 98 54 53 57 101 51 56 100 101 50 57 55 101 54 52 56 99 56 49 49 99 97 52 102 100 102 53 102 55 102 55 49 100 101 97 48 52 99 53 101 52 99 98 51 98 56 100 100 54 56 56 100 102 98 56 52 54 49 99 52 97 99 51 102 56 99 102 102 48 48 98 50 51 98 55 97 57 97 101 57 56 53 51 50 98 57 49 55 53 49 53 54 51 51 55 57 50 48 98 56 98 57 53 50 50 100 99 54 48 99 51 54 101 101 51 101 102 102 48 48 102 98 54 101 51 102 57 48 102 99 52 100 53 97 54 54 54 57 49 98 50 52 57 50 55 100 54 57 52 102 99 99 55 50 99 55 50 52 102 53 50 55 98 100 51 55 55 48 101 102 53 100 49 49 97 54 51 100 99 97 49 51 52 55 102 54 98 100 53 98 101 99 101 101 99 52 53 97 99 51 49 56 55 57 53 52 51 54 51 55 98 49 102 98 97 97 52 102 97 55 48 52 100 51 97 100 57 53 54 49 100 52 54 101 97 48 56 56 57 49 48 50 97 50 51 50 97 54 101 50 52 50 57 51 57 99 56 48 52 102 54 101 51 51 56 97 56 101 53 56 50 101 99 53 101 99 57 51 53 97 53 99 52 48 56 50 52 48 98 98 100 50 53 52 50 52 54 52 48 101 48 56 50 51 101 98 52 102 53 52 49 54 98 97 55 99 99 99 102 50 57 57 54 52 51 57 57 50 53 57 55 49 56 100 99 55 49 100 56 55 54 48 51 97 48 102 99 54 98 97 50 51 52 98 97 57 97 101 57 54 98 49 49 101 57 97 100 102 102 49 50 99 54 57 51 49 102 101 98 50 101 50 52 54 102 100 55 49 102 100 50 97 101 57 51 57 101 97 54 97 56 54 57 102 57 52 100 48 97 100 49 52 102 53 51 49 101 101 51 102 56 57 50 55 102 97 100 53 98 99 101 54 98 55 56 99 49 50 48 57 54 101 99 55 54 101 97 54 53 49 52 100 100 99 51 100 54 98 53 52 97 101 52 97 52 51 97 98 99 52 55 102 54 56 52 51 98 98 102 54 53 52 100 55 98 98 55 102 97 52 100 97 102 102 48 48 101 56 101 53 97 102 54 55 50 52 57 101 98 53 101 50 100 102 98 52 49 55 102 99 57 97 97 101 98 98 102 102 48 48 53 102 51 54 100 102 102 97 51 57 54 97 102 57 49 53 56 101 51 99 100 54 51 102 101 99 51 53 98 102 99 50 102 102 48 48 50 51 99 51 51 102 54 55 100 54 102 102 48 48 56 99 52 51 98 51 102 55 98 57 55 102 102 100 49 57 53 101 101 54 48 54 101 98 99 53 54 49 100 57 48 55 51 53 101 49 53 102 98 51 101 102 102 99 57 97 51 100 56 102 102 100 55 99 98 102 102 101 56 55 53 101 101 55 54 97 102 98 57 57 99 102 53 99 50 56 49 53 102 57 98 52 54 51 102 98 99 54 55 56 49 56 48 53 55 56 50 50 99 51 51 101 100 57 54 51 53 102 101 102 99 52 55 51 102 52 99 56 97 56 54 54 54 99 100 99 55 102 50 102 97 53 50 52 57 50 48 51 97 99 52 50 51 51 99 48 56 48 57 51 102 57 56 97 54 49 53 102 51 49 99 99 56 52 102 50 100 100 50 98 100 53 99 51 52 52 102 53 54 100 55 53 54 49 53 53 100 52 52 56 48 102 97 53 51 100 97 53 102 57 55 55 102 52 48 51 97 48 102 53 97 56 48 97 49 48 101 52 55 54 51 52 101 54 99 54 51 50 100 99 50 56 101 56 50 98 100 55 97 55 49 100 48 99 97 99 50 97 98 51 48 48 53 100 98 51 101 99 51 100 54 97 53 99 100 53 55 53 50 53 101 55 99 102 53 53 49 53 51 101 55 49 53 98 55 50 49 55 49 56 56 53 49 57 99 53 51 48 98 55 101 49 52 99 50 100 56 97 100 54 51 52 99 100 48 55 49 51 57 101 98 56 97 56 101 52 50 48 52 54 54 57 97 53 56 57 102 54 97 56 97 52 51 56 56 101 98 54 53 48 100 48 53 55 50 98 98 102 52 49 53 56 98 55 99 55 51 50 53 98 102 102 48 48 100 55 55 53 97 100 51 55 54 101 52 100 54 52 53 102 51 49 100 102 54 102 57 101 100 51 97 100 49 99 56 55 50 54 50 49 102 98 97 99 97 100 55 97 102 98 53 52 98 49 101 48 48 53 101 54 98 99 54 51 99 55 97 100 102 102 48 48 49 52 102 52 99 55 102 101 57 100 97 52 102 101 57 53 101 98 57 97 57 51 56 51 49 57 53 48 55 102 56 55 50 55 57 97 102 50 48 102 49 99 54 53 98 99 51 49 50 49 50 55 57 102 98 50 99 57 102 99 99 53 48 101 51 97 97 102 53 53 102 57 57 102 49 102 57 100 98 98 99 53 102 102 48 48 53 100 53 49 101 100 51 102 98 49 98 55 102 99 57 49 101 102 49 98 55 102 100 56 100 49 55 49 102 100 50 98 101 98 102 97 102 56 102 98 102 54 51 55 99 102 102 99 50 97 48 102 49 98 102 51 102 102 48 48 51 51 52 53 99 55 102 52 97 102 97 102 52 101 55 100 50 98 99 99 56 99 48 102 98 54 99 57 49 55 102 98 49 52 49 102 102 53 98 98 48 57 49 51 99 101 98 53 57 54 51 101 57 98 100 48 97 102 101 54 51 49 53 53 101 100 97 54 51 51 53 56 52 52 99 52 55 99 101 49 55 54 98 56 102 52 54 49 99 49 97 57 98 54 100 53 50 53 51 101 52 54 98 53 50 52 54 51 101 101 52 101 98 101 54 50 102 102 48 48 98 99 51 56 54 102 101 56 54 98 55 56 100 50 51 100 56 52 97 101 57 56 102 98 57 48 53 102 99 98 98 54 48 99 53 48 52 99 99 52 51 98 48 51 99 56 53 48 51 50 100 56 102 55 50 51 56 102 99 54 97 55 54 57 97 49 52 99 54 101 54 56 97 50 53 48 51 48 97 51 55 48 48 48 48 49 100 48 48 97 97 102 55 53 54 100 48 53 100 97 50 50 99 100 101 54 54 49 52 101 52 49 56 100 102 54 57 97 99 100 57 97 100 55 52 53 98 51 50 51 99 102 52 50 53 56 56 99 56 49 50 52 97 99 100 99 55 97 102 49 53 100 51 49 97 52 53 99 54 50 57 101 56 99 98 53 51 54 97 57 54 51 49 49 99 51 53 99 50 57 51 101 56 98 57 51 52 99 56 51 53 51 56 54 101 54 101 100 50 50 56 101 51 57 102 101 54 48 55 48 99 99 57 56 48 55 48 51 50 54 97 49 56 97 102 50 100 52 51 54 100 100 51 54 99 48 99 57 50 55 102 100 51 50 56 51 49 102 56 57 54 51 52 102 102 98 52 51 100 100 52 102 97 52 99 101 100 98 56 54 102 50 102 56 53 50 55 51 56 102 57 48 102 102 48 48 56 53 54 102 49 56 50 52 54 57 99 97 98 98 49 97 51 98 97 98 51 55 53 51 55 54 102 101 99 101 102 50 53 51 57 57 50 55 54 49 49 97 48 49 101 101 54 97 102 102 48 48 102 48 100 54 54 101 101 102 51 102 99 53 48 98 99 101 53 50 100 50 51 100 101 55 102 100 102 54 101 48 55 102 53 51 102 56 53 54 57 99 98 55 50 54 57 97 100 52 100 51 99 50 97 101 49 53 55 101 101 97 56 48 97 98 102 52 49 99 55 102 52 97 54 57 54 49 101 98 53 49 98 51 55 99 98 57 51 56 48 48 55 55 97 97 49 50 101 97 51 54 53 49 49 100 97 54 55 48 101 102 57 99 54 100 56 99 54 101 51 102 97 53 54 56 97 51 54 100 99 97 53 48 54 100 57 55 102 55 49 102 53 97 54 49 51 56 97 97 48 50 102 54 52 55 57 48 97 50 100 57 53 99 102 57 56 48 54 55 54 49 50 97 49 98 49 102 52 50 54 97 53 56 97 55 49 50 52 97 102 49 98 50 52 57 48 99 99 98 102 55 97 51 57 48 54 48 56 48 55 97 49 102 55 49 53 97 97 56 57 97 102 50 98 50 99 49 51 57 97 102 49 56 102 100 97 48 48 101 55 102 54 53 57 100 55 98 102 101 98 101 50 100 98 102 102 52 55 50 100 55 98 50 54 101 97 102 49 56 102 56 102 100 102 102 48 48 50 54 98 98 97 101 102 102 48 48 100 55 99 53 98 55 102 101 56 101 53 97 98 53 49 51 99 100 99 101 49 55 102 98 48 100 54 102 102 48 98 102 99 56 102 48 99 102 100 57 102 48 102 102 48 48 99 54 50 52 53 57 102 98 53 99 51 102 102 101 56 55 53 101 99 98 54 51 55 50 51 55 52 56 51 49 100 52 102 55 97 102 49 53 102 56 48 48 52 56 102 100 57 48 101 100 55 102 101 98 98 99 57 102 102 97 49 100 55 97 97 53 97 51 49 49 55 50 97 51 50 55 57 51 53 102 57 97 102 50 100 97 97 51 51 101 54 102 48 51 50 55 49 56 52 52 100 55 100 99 52 101 97 102 57 99 57 51 57 56 57 56 55 101 97 50 97 102 97 102 48 101 56 97 51 97 54 50 98 51 53 52 56 49 97 98 99 54 51 98 57 56 100 98 102 57 56 97 98 101 52 102 101 102 49 54 98 100 54 99 50 52 52 102 53 101 57 97 98 97 50 54 55 54 53 53 56 52 98 51 49 101 52 49 97 97 48 102 50 57 55 54 101 55 56 49 101 57 53 54 50 53 99 57 56 56 102 55 50 51 57 97 97 56 57 57 55 57 48 48 101 100 100 101 98 100 54 56 52 52 57 57 50 50 100 99 55 102 50 99 54 48 102 97 100 50 57 51 99 102 49 53 49 57 54 50 55 97 55 48 50 57 56 52 101 50 98 97 97 51 48 50 97 101 51 99 98 49 50 55 100 50 57 56 52 101 50 57 97 52 101 54 57 50 98 52 52 56 57 55 50 49 52 57 99 100 51 49 102 101 101 49 97 51 55 53 51 49 99 56 49 49 57 101 54 97 100 52 52 99 100 98 50 57 99 57 99 56 49 102 52 97 99 53 100 52 48 57 99 99 53 99 102 102 48 48 99 98 55 52 102 101 55 53 98 49 50 51 53 54 50 54 97 50 55 102 55 48 97 100 101 57 50 97 102 102 48 48 51 97 53 99 97 54 49 53 102 101 49 54 54 52 100 100 98 54 48 99 102 57 101 98 56 48 50 98 99 97 102 99 54 99 97 55 102 101 49 49 55 55 49 102 102 52 101 97 102 102 48 48 100 50 98 100 50 54 102 100 98 50 50 53 51 100 55 57 99 53 55 57 99 55 56 100 56 56 102 102 48 48 56 52 54 97 52 99 49 99 101 50 100 57 99 55 102 50 97 50 50 98 100 101 53 101 97 98 102 51 51 101 51 55 51 52 55 55 56 98 102 101 98 97 57 101 99 53 102 98 49 100 55 51 102 48 56 51 99 54 97 51 100 51 99 53 49 55 49 102 100 50 98 101 98 102 48 54 98 101 51 101 102 100 56 101 99 101 51 101 49 48 55 56 100 51 49 102 102 52 51 52 53 99 55 102 52 97 102 97 101 99 57 50 52 100 55 50 100 51 97 53 55 52 56 102 98 100 99 56 101 100 102 53 50 97 55 102 100 55 53 54 51 98 55 54 48 102 49 99 100 52 49 51 52 54 57 51 97 48 48 101 53 57 53 57 52 101 53 49 100 52 101 49 57 52 102 97 56 97 55 101 101 97 54 49 50 52 100 55 52 52 54 48 57 49 101 98 57 49 53 100 100 99 55 57 49 54 99 53 57 53 52 99 57 50 49 50 49 54 51 52 101 101 101 99 55 56 48 50 57 54 48 56 100 97 100 101 51 54 48 54 52 51 50 52 101 101 55 51 51 52 56 48 102 100 101 51 101 56 51 102 100 57 49 100 98 102 51 97 97 97 51 51 50 102 56 56 51 50 55 57 52 98 53 56 102 55 48 102 102 55 100 98 56 49 102 57 48 99 57 97 98 55 98 98 49 56 101 50 98 52 52 98 53 50 100 99 55 52 98 48 102 55 57 48 56 56 100 56 99 56 101 99 53 48 48 99 98 54 52 102 49 53 56 98 54 101 100 102 101 56 51 97 50 98 48 101 57 101 54 57 48 51 102 49 100 102 56 97 55 52 102 50 51 53 102 100 100 51 53 56 99 50 100 56 56 49 55 48 54 101 54 53 49 100 56 54 55 101 101 56 102 55 51 53 51 53 100 98 97 97 99 102 54 50 55 48 97 57 49 97 100 99 97 101 48 55 52 48 97 48 48 51 99 55 101 49 53 55 49 56 57 98 52 50 51 54 50 52 98 57 98 56 52 98 53 98 51 55 57 57 99 102 48 51 97 48 101 101 52 102 97 53 52 51 54 102 54 100 50 50 54 57 101 51 99 100 57 97 53 56 54 101 54 53 55 102 51 50 54 50 56 48 49 51 57 51 100 49 55 57 102 52 49 102 97 57 51 53 48 52 50 53 97 102 97 102 53 50 102 49 99 55 102 97 50 52 52 100 102 101 56 101 56 52 55 102 97 99 54 102 101 102 57 102 54 49 102 99 101 98 52 48 57 50 52 101 52 102 50 54 98 53 53 48 50 57 97 98 50 50 98 57 98 52 98 54 50 55 51 50 48 57 54 101 100 98 100 54 55 57 51 55 48 102 102 98 101 52 54 48 53 52 53 54 101 49 48 100 102 52 102 55 51 98 54 50 52 51 49 98 102 57 51 48 48 48 97 49 52 50 48 48 48 54 52 56 102 55 50 52 101 51 51 53 54 98 55 53 54 51 99 56 102 49 52 51 55 55 51 52 49 55 97 99 102 49 99 49 50 52 97 54 52 56 97 52 49 56 99 49 50 52 48 99 97 57 50 52 49 99 49 101 51 101 98 53 97 50 56 102 54 50 97 50 57 98 50 99 98 56 54 49 49 50 53 98 98 99 55 57 55 51 50 101 54 50 57 49 53 52 57 100 99 99 53 98 50 52 101 55 98 51 54 51 97 102 98 48 102 52 97 55 99 98 56 53 100 55 101 48 50 98 100 52 99 52 101 48 102 100 51 50 51 49 102 97 100 52 56 102 55 98 54 101 49 48 98 50 99 102 48 56 48 52 55 51 56 55 49 53 52 54 100 53 99 100 99 100 99 99 98 55 100 99 56 56 56 97 102 57 53 54 102 57 102 101 50 49 57 99 98 51 55 100 51 51 56 49 102 56 49 97 100 49 52 48 100 49 50 55 100 52 100 51 50 100 100 52 48 97 102 49 56 102 56 102 97 52 102 102 48 48 99 51 50 102 54 98 98 102 102 53 102 49 54 100 102 102 48 48 97 51 57 54 98 100 56 49 57 98 97 53 55 56 100 55 99 55 98 51 57 102 100 57 55 102 53 100 102 102 48 48 97 102 56 98 54 102 102 100 49 97 50 98 52 52 56 102 51 51 51 56 56 102 102 98 48 53 54 102 102 48 99 98 102 50 51 99 51 55 101 48 49 49 102 102 48 48 56 99 52 53 98 55 102 102 48 48 97 101 101 102 102 102 48 48 97 49 100 55 97 55 100 97 51 101 52 98 54 51 56 50 97 51 56 50 55 100 54 98 99 97 98 101 48 52 51 54 99 102 100 56 101 101 49 50 48 102 50 50 55 55 102 102 48 48 100 48 101 98 100 49 101 100 101 53 49 49 53 98 48 54 51 56 100 98 98 52 57 54 97 102 99 99 101 53 49 102 100 101 98 51 101 52 98 48 57 50 98 52 54 49 55 51 55 54 100 100 99 98 101 97 56 101 102 100 52 52 54 56 49 51 51 101 101 52 101 52 102 101 56 50 98 53 55 55 55 101 102 52 54 55 56 49 56 97 99 52 98 53 48 99 50 100 50 51 54 99 102 99 102 50 55 101 102 53 98 102 101 48 53 100 51 102 52 99 53 54 97 50 99 56 49 101 51 100 97 100 102 55 56 53 55 97 100 56 52 56 101 57 55 51 100 97 97 54 102 52 50 99 101 101 50 48 102 49 52 100 100 100 56 101 100 57 97 56 55 56 50 55 97 57 97 52 101 51 100 52 102 101 53 53 101 99 53 50 56 97 49 51 57 50 50 52 50 55 51 52 57 53 49 101 52 53 51 55 56 102 53 51 53 100 50 97 50 54 54 101 52 99 57 51 55 53 51 54 97 50 101 48 102 55 97 52 101 51 102 98 99 54 97 102 57 52 57 50 52 50 100 101 57 53 49 51 57 99 50 49 97 54 54 101 51 101 97 55 102 51 97 56 57 56 56 99 49 48 52 101 52 102 97 53 54 56 97 50 51 98 49 48 99 56 100 53 56 102 97 57 56 50 100 97 54 99 101 49 55 57 51 98 55 50 51 101 97 51 57 97 100 51 57 53 102 101 54 101 50 98 51 97 101 49 99 48 56 57 98 51 99 102 49 56 97 54 101 50 54 49 53 100 102 98 56 55 51 49 55 52 101 49 101 49 53 54 49 56 99 51 50 101 101 51 102 56 100 55 57 99 102 56 99 52 98 49 100 49 54 54 48 52 102 99 56 50 100 97 52 99 48 102 99 52 53 55 55 97 48 101 100 98 53 55 56 49 102 57 57 54 51 55 50 51 102 101 48 51 100 52 49 97 102 51 102 102 48 48 49 56 52 56 49 98 52 56 98 56 53 48 48 57 99 53 97 98 101 52 102 101 50 50 97 54 51 49 102 55 57 55 97 97 51 101 50 98 51 51 55 101 101 49 101 99 53 102 98 49 100 52 98 57 102 56 52 57 101 51 55 48 51 102 101 56 54 56 98 56 102 101 57 53 102 53 102 54 55 51 53 102 49 97 55 101 99 54 52 101 53 98 101 49 49 102 56 101 56 57 102 102 48 48 97 49 97 54 101 51 102 97 53 55 100 56 101 53 102 100 97 98 48 97 54 98 52 52 55 101 56 51 57 48 97 98 101 48 54 57 100 98 99 102 102 51 54 51 101 57 97 53 98 102 49 97 56 102 55 49 97 54 101 55 48 54 98 54 53 48 101 101 55 98 54 97 48 53 50 98 55 57 57 49 49 55 53 48 98 57 57 49 100 53 49 53 101 101 52 56 100 99 99 55 98 50 97 56 49 102 100 52 100 52 50 48 100 99 101 97 50 97 53 100 50 53 102 98 50 53 56 49 51 56 53 54 48 51 101 55 57 55 49 101 57 101 100 101 102 52 52 53 97 53 100 97 52 54 101 49 101 53 102 51 50 101 100 102 51 98 98 49 50 51 54 49 48 55 101 48 51 97 102 101 50 55 102 48 97 100 48 50 55 51 102 57 54 51 49 100 51 49 53 54 97 48 54 99 100 97 100 100 48 100 56 100 50 50 56 50 100 57 54 49 56 49 51 54 52 52 98 100 98 51 57 50 52 102 97 57 51 100 99 100 52 53 55 49 54 102 49 53 100 50 50 50 52 102 98 57 57 49 53 99 51 54 49 52 101 51 51 101 100 53 50 54 101 97 54 100 54 97 97 50 48 97 102 55 98 56 57 50 49 57 52 99 54 48 52 48 54 49 56 99 97 102 48 49 53 57 52 101 100 48 51 100 48 54 51 97 53 53 55 100 102 55 99 51 56 51 54 57 48 51 102 98 97 53 99 56 102 101 98 53 54 48 57 101 50 57 56 99 99 55 49 53 97 50 56 57 97 50 52 53 55 102 51 97 102 98 49 99 53 56 99 54 48 102 97 98 53 99 97 101 50 97 51 54 56 101 102 50 55 53 54 52 98 56 57 54 100 50 49 56 57 98 97 99 55 49 97 55 57 97 52 102 102 100 102 53 99 53 53 57 50 102 56 101 100 52 99 100 99 55 98 55 49 53 54 97 50 53 99 55 52 100 56 97 98 102 54 48 100 51 100 53 56 49 49 54 51 48 49 50 51 97 54 101 48 52 102 101 55 100 98 102 52 97 98 52 99 99 53 98 49 100 48 54 48 54 48 54 48 54 50 57 57 57 49 101 98 52 100 50 99 54 98 52 53 49 101 101 49 55 49 99 52 101 50 98 99 54 102 101 51 100 57 99 102 101 99 98 102 97 101 55 102 100 55 99 53 98 55 102 101 56 101 53 97 102 54 48 99 56 102 53 97 102 49 57 102 56 102 97 102 56 102 100 57 55 98 53 99 102 102 97 102 56 98 54 102 102 48 48 100 49 99 98 53 54 97 50 101 99 55 57 55 57 100 52 98 102 100 56 50 98 102 102 48 48 56 54 53 102 57 49 101 48 102 102 48 48 48 51 54 52 99 55 101 99 55 51 48 102 51 56 99 100 99 98 102 102 48 48 101 56 55 53 100 100 56 57 55 101 100 49 50 52 55 54 97 57 102 55 48 48 48 54 55 55 48 55 101 101 56 51 102 99 51 102 53 51 53 101 54 51 102 48 51 101 54 51 102 102 48 48 48 99 55 51 48 102 102 100 55 99 51 101 51 100 99 101 102 97 100 100 53 100 52 54 101 101 50 100 51 98 54 50 50 99 102 48 51 50 57 100 100 51 99 97 99 98 56 100 99 101 52 102 48 97 98 101 98 100 56 53 55 101 54 51 53 98 52 97 56 99 102 56 50 56 101 50 49 52 49 52 53 51 102 101 98 53 51 100 54 49 54 54 99 52 57 49 98 48 102 52 99 54 48 55 54 99 55 54 97 98 48 54 55 48 53 99 51 48 50 49 55 102 97 100 55 49 56 102 97 97 57 56 101 101 101 49 56 57 48 48 57 51 101 54 53 53 57 49 56 57 101 49 48 57 101 100 102 53 97 98 98 51 54 97 101 98 48 50 97 56 54 52 51 50 98 98 57 99 50 97 50 48 99 57 54 51 53 101 98 101 49 97 53 49 98 49 101 98 99 55 49 98 49 101 101 55 52 101 50 101 55 49 100 55 101 54 102 99 54 97 52 49 51 48 54 101 57 53 99 57 55 100 98 97 101 100 99 102 100 99 56 50 100 52 55 102 98 54 102 98 100 56 55 101 48 50 57 101 98 50 50 98 48 102 100 101 100 101 53 99 52 56 100 101 56 97 55 99 98 49 53 101 98 100 51 57 97 98 48 55 100 55 50 50 99 101 97 56 99 97 51 56 99 57 48 51 101 98 52 100 102 51 57 55 102 98 99 98 102 57 100 55 51 56 48 100 97 102 48 48 100 98 56 54 51 102 100 101 55 57 49 56 100 51 99 48 98 55 101 100 54 102 48 49 102 102 48 48 98 54 56 100 102 101 51 53 100 50 97 101 99 97 53 56 57 52 99 100 99 54 57 100 55 51 99 98 97 48 102 102 48 48 56 49 48 97 56 56 100 99 99 50 51 102 101 53 97 52 54 52 57 101 56 48 51 48 50 52 100 54 52 48 51 54 97 51 56 102 98 50 52 48 49 102 98 54 52 49 51 102 100 54 56 99 53 97 102 53 51 54 100 48 54 101 51 100 99 50 101 50 98 53 52 51 102 97 99 55 54 54 54 98 102 57 56 53 98 102 100 57 53 102 52 48 54 57 51 99 99 48 49 55 98 53 54 50 98 52 55 54 101 51 101 101 55 57 98 49 49 102 53 52 57 48 56 102 101 55 53 49 98 52 98 55 52 56 98 57 56 101 54 56 101 55 48 48 55 100 100 57 48 54 100 51 102 57 100 54 56 98 100 48 52 101 98 55 55 51 52 54 53 57 51 101 54 51 56 101 54 98 51 54 101 97 52 101 100 57 102 97 100 53 49 55 100 53 48 48 57 98 99 98 57 53 49 97 48 57 56 102 52 53 55 51 102 55 98 101 57 101 98 53 57 98 55 51 97 56 49 52 54 53 48 57 49 98 99 99 101 99 52 101 51 54 56 101 98 56 101 52 100 48 100 97 54 55 49 53 55 99 53 99 49 50 98 53 99 97 102 97 57 99 53 50 49 57 98 55 100 98 52 101 57 48 99 101 99 97 48 52 56 53 57 51 55 48 99 55 54 102 99 54 98 99 99 102 99 52 55 51 102 57 100 101 49 56 57 97 52 54 48 49 53 56 99 49 50 50 57 99 55 52 101 49 98 49 53 100 55 100 101 99 100 49 51 100 101 57 57 50 51 98 57 54 56 97 54 55 52 48 100 49 51 102 53 49 100 48 56 50 97 52 55 97 101 54 98 56 51 102 49 52 48 102 98 51 102 56 54 52 99 51 98 99 98 98 55 100 57 54 52 50 99 100 56 99 54 52 57 54 48 52 102 49 102 56 100 52 50 53 101 102 97 102 53 53 102 57 57 102 50 49 57 57 53 54 52 100 102 102 48 48 53 100 99 102 54 57 102 100 56 98 53 98 55 55 99 50 49 102 49 100 49 102 102 97 57 97 97 55 102 101 57 53 102 54 53 57 51 56 51 53 102 57 101 53 102 98 51 55 102 99 52 51 100 50 102 101 49 57 55 99 51 99 102 49 52 54 57 100 97 101 100 57 100 101 53 100 52 102 55 98 97 102 52 102 55 51 49 49 98 51 57 97 49 50 97 49 48 57 99 48 99 101 101 55 48 55 51 99 54 54 98 101 56 100 53 102 100 97 49 102 99 50 48 100 100 51 52 97 100 55 55 102 101 102 98 98 55 102 102 101 51 57 53 51 52 97 48 102 57 53 49 102 55 49 57 50 102 49 48 54 53 100 52 55 48 55 48 97 55 51 97 97 57 51 53 55 100 51 53 101 101 55 98 102 49 51 57 97 54 100 55 56 52 50 102 101 100 48 49 101 49 51 54 102 102 57 56 53 101 98 52 51 101 98 50 53 98 102 102 102 48 48 49 99 97 53 51 102 49 102 51 99 50 97 51 102 101 54 49 55 97 99 57 102 102 98 54 57 54 102 102 102 48 48 99 55 50 98 55 53 48 54 55 98 49 102 101 98 49 101 53 57 102 102 48 48 51 102 57 55 101 50 55 98 97 54 101 97 54 100 55 56 53 49 102 56 102 102 48 48 101 49 52 99 55 102 99 56 50 55 53 97 102 102 48 48 98 102 57 54 102 102 48 48 102 99 55 50 97 51 54 102 100 97 48 55 99 50 97 48 102 102 48 48 99 56 50 98 53 98 49 102 102 48 51 98 55 102 102 101 51 57 53 54 97 48 99 54 98 56 57 55 50 98 102 102 48 48 57 102 99 98 102 49 51 100 101 51 50 51 100 54 57 56 53 102 56 97 102 48 53 54 102 100 97 48 55 99 50 57 99 55 102 99 52 97 102 53 97 102 102 98 102 57 54 102 102 102 48 48 99 55 50 57 57 102 102 48 100 48 51 101 49 51 51 100 55 52 98 100 54 102 102 101 102 101 53 98 102 102 48 48 102 49 99 97 98 53 52 100 57 97 50 101 50 54 99 97 98 102 101 55 102 50 102 99 55 102 99 56 102 55 57 54 54 97 54 49 51 57 97 102 48 100 53 102 56 102 55 101 49 52 54 101 57 97 53 101 98 51 102 102 48 48 55 102 50 48 102 102 48 48 101 51 57 52 97 55 101 51 99 102 56 53 98 102 101 56 49 98 97 99 56 102 102 56 49 99 48 55 102 102 48 48 54 55 97 100 54 51 52 57 57 54 98 56 57 55 50 98 102 102 48 48 57 102 99 98 102 49 102 102 48 48 50 51 100 98 99 57 99 53 51 52 98 55 101 49 53 101 49 101 55 101 51 100 55 56 52 53 52 56 48 100 54 57 97 57 50 49 99 54 55 48 54 53 56 51 51 102 102 97 49 100 52 54 55 101 51 101 55 56 52 51 102 101 55 100 55 53 49 49 102 102 48 48 54 100 97 48 102 102 48 48 101 50 101 97 102 100 57 99 56 52 102 56 57 98 50 99 102 102 48 48 57 102 99 98 102 49 102 102 48 48 50 51 100 99 98 50 50 57 98 98 98 100 101 98 99 50 99 102 99 55 98 102 48 56 54 51 102 101 51 100 98 53 48 102 102 98 102 100 48 55 102 102 48 48 49 55 53 49 51 55 99 55 102 102 48 48 48 55 50 102 53 98 53 100 52 52 102 100 50 54 56 51 102 102 48 48 56 98 97 100 49 53 51 54 52 51 101 50 54 99 97 102 102 101 55 102 50 102 99 55 102 99 56 102 55 53 50 55 51 53 101 50 98 102 98 52 49 51 54 100 102 100 57 54 51 53 101 54 102 102 48 48 97 55 56 98 54 102 102 100 49 99 98 53 57 55 50 55 101 100 48 102 101 48 99 53 51 99 100 57 101 97 56 55 101 57 51 52 49 102 102 99 53 100 55 57 97 55 99 53 50 102 56 99 51 101 49 97 102 49 98 102 99 49 55 100 53 51 99 51 53 97 53 52 49 55 53 54 102 55 100 55 49 50 52 53 50 52 55 50 53 99 99 102 48 101 99 99 52 54 101 49 99 56 51 98 53 99 57 99 57 48 51 56 101 50 98 52 53 48 54 55 57 55 57 98 102 49 50 101 53 57 53 51 48 53 53 54 49 48 97 99 57 98 55 49 54 57 54 102 98 100 98 100 48 101 50 98 101 48 55 53 99 97 97 55 101 99 54 57 48 98 51 98 48 48 51 101 100 56 100 100 55 97 55 100 102 97 101 99 54 54 57 97 49 98 98 98 53 50 57 101 54 98 56 101 52 49 53 54 52 49 57 50 48 56 51 57 48 55 57 97 102 48 53 102 48 52 54 97 98 97 57 54 57 51 102 98 51 97 54 57 57 101 49 55 52 57 54 49 98 52 57 48 99 101 100 51 100 99 52 99 57 55 48 57 57 51 57 51 99 50 48 101 55 56 49 101 98 53 98 100 54 102 55 57 97 57 50 52 55 102 102 50 49 56 98 56 100 100 57 101 55 102 100 50 53 50 98 102 51 52 97 57 56 55 97 99 101 97 51 98 52 49 98 52 55 99 49 100 53 99 55 100 97 55 99 97 98 53 52 98 102 99 99 102 54 54 52 50 57 49 101 57 56 48 52 54 99 102 50 99 56 98 51 48 57 53 98 99 100 53 99 51 52 56 100 100 102 97 55 52 102 54 97 57 97 51 98 56 51 50 53 101 49 98 97 57 101 51 57 50 48 100 97 97 53 50 50 56 99 102 100 101 101 55 97 98 49 102 101 53 53 101 51 99 50 102 55 53 56 99 54 53 55 53 97 57 98 102 49 98 56 52 97 51 101 100 98 97 101 55 102 100 48 54 57 102 102 102 48 48 48 50 49 50 98 98 54 56 54 49 101 98 97 102 102 57 55 52 102 102 48 48 48 102 102 51 49 55 102 54 57 98 53 100 48 102 54 53 51 55 54 98 98 56 101 100 50 101 51 101 97 50 97 50 54 98 102 100 56 52 49 55 99 101 51 51 53 101 51 55 102 54 100 100 55 51 98 54 98 51 50 102 102 101 48 52 97 53 48 50 102 55 53 55 99 102 51 97 98 99 56 52 55 98 100 99 97 49 97 102 53 50 49 52 55 49 48 102 102 101 53 100 98 102 99 51 102 99 99 56 55 57 97 98 55 100 48 102 54 100 56 102 53 50 102 51 48 56 99 54 51 49 101 97 50 97 55 49 55 56 52 51 48 50 53 56 101 51 100 56 53 55 56 99 52 53 97 98 54 97 49 49 99 53 98 55 102 98 52 49 99 102 98 102 57 101 57 102 101 51 52 98 102 100 98 49 97 56 55 102 100 48 52 97 53 102 102 99 48 57 52 102 102 49 97 101 100 56 53 49 97 101 57 55 102 48 100 102 101 48 53 52 55 51 53 52 98 55 51 100 57 102 102 98 52 48 50 102 52 49 102 56 57 51 52 56 51 53 49 50 48 102 51 98 52 102 101 49 53 101 51 48 55 53 56 100 52 52 55 102 99 99 52 50 53 102 99 54 101 53 51 102 99 54 57 99 51 53 98 100 52 56 48 102 102 57 48 56 98 55 102 100 102 101 52 102 102 49 97 100 50 51 52 98 49 49 102 102 48 48 51 101 100 102 101 48 54 57 102 100 97 101 56 102 54 55 102 101 100 48 52 100 98 57 50 99 97 48 102 97 48 49 52 99 55 100 52 52 49 52 102 57 55 50 52 102 98 56 97 102 49 53 55 100 55 55 53 98 100 102 102 98 57 100 52 53 52 50 101 51 98 99 101 57 57 102 101 55 53 48 51 54 98 51 97 102 98 55 100 101 100 53 56 97 102 100 50 101 49 50 97 98 100 57 53 55 98 102 102 48 100 102 101 49 102 101 54 50 55 57 99 97 51 100 53 50 102 50 54 56 101 101 52 54 99 57 98 55 51 51 49 51 57 52 48 97 51 48 53 55 100 102 101 98 53 52 53 54 53 98 102 57 50 101 54 100 97 50 51 54 101 102 50 50 52 55 50 101 55 101 100 48 98 56 99 54 100 101 55 97 102 97 49 97 102 51 51 102 101 100 51 100 54 51 99 100 54 54 102 101 100 53 51 98 56 102 53 99 99 99 56 54 97 49 57 55 53 53 100 54 48 48 101 51 53 56 57 51 102 48 57 100 51 102 99 54 56 53 52 51 49 48 100 102 102 48 100 102 101 48 55 50 52 102 51 50 52 100 100 102 53 102 99 48 102 52 50 98 57 98 54 53 51 97 56 48 57 97 52 55 57 49 52 50 98 102 57 56 50 100 99 51 54 53 51 55 55 97 57 102 102 48 97 101 50 55 99 54 53 50 102 102 48 48 99 52 98 57 56 48 51 57 102 102 48 48 52 54 57 51 102 97 53 55 51 54 102 97 57 101 98 54 56 99 99 99 55 53 101 57 57 100 56 102 97 99 101 57 102 101 51 53 57 53 55 51 55 55 97 57 100 101 53 98 98 100 98 100 100 54 97 49 49 53 100 54 101 56 99 99 54 97 54 52 57 57 51 56 99 102 100 48 100 53 52 50 56 53 55 55 50 52 98 100 57 98 53 97 97 101 100 102 101 54 55 56 102 56 57 99 54 50 57 54 99 56 102 102 100 57]}, "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a" {:sha2 "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", :contentType "text/plain", :length 27, :content [104 101 114 101 32 105 115 32 97 32 115 105 109 112 108 101 32 97 116 116 97 99 104 109 101 110 116]}, "7063d0a4cfa93373753ad2f5a6ffcf684559fb1df3c2f0473a14ece7d4edb06a" {:sha2 "7063d0a4cfa93373753ad2f5a6ffcf684559fb1df3c2f0473a14ece7d4edb06a", :contentType "text/plain", :length 33, :content [104 101 114 101 32 105 115 32 97 110 111 116 104 101 114 32 115 105 109 112 108 101 32 97 116 116 97 99 104 109 101 110 116]}}, :documents {["http://www.example.com/activityId/hashset" {"objectType" "Agent", "account" {"homePage" "http://www.example.com/agentId/1", "name" "Rick James"}} "e40d165a-c0cf-420b-9b2f-f44a3b3aad7a"] {}, ["http://www.example.com/activityId/hashset" {"objectType" "Agent", "account" {"homePage" "http://www.example.com/agentId/1", "name" "Rick James"}} "c1e7177e-33b5-4828-ae1a-d00f79200621"] {"ed227c58-23a0-4c95-9b13-3bd35a2f472a" {:contents [123 34 110 97 109 101 34 58 34 99 99 101 55 51 99 97 49 45 102 101 98 52 45 52 55 97 56 45 57 53 100 100 45 55 102 99 102 101 56 49 55 102 51 101 101 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 52 100 51 55 101 51 102 56 45 56 102 101 99 45 52 54 54 99 45 97 52 51 97 45 50 56 54 55 57 98 99 54 50 49 52 49 34 125 44 34 53 56 48 50 50 99 98 101 45 52 48 98 100 45 52 98 98 54 45 56 56 102 101 45 57 48 99 49 51 49 52 101 56 57 97 53 34 58 34 98 57 97 57 55 56 53 57 45 48 101 99 99 45 52 101 100 49 45 98 51 99 53 45 48 53 51 56 49 101 97 50 49 97 97 55 34 125], :content-type "application/json", :content-length 184, :id "ed227c58-23a0-4c95-9b13-3bd35a2f472a", :registration "c1e7177e-33b5-4828-ae1a-d00f79200621", :updated "2025-10-24T15:37:14.688476000Z"}}, ["http://www.example.com/activityId/hashset" {"objectType" "Agent", "account" {"homePage" "http://www.example.com/agentId/1", "name" "Rick James"}}] {"ddb240d1-3d0c-4d0b-8fcb-1c4824c502f7" {:contents [123 34 110 97 109 101 34 58 34 100 50 53 49 54 102 101 48 45 53 55 52 57 45 52 53 97 102 45 56 54 52 97 45 50 56 50 102 100 55 57 51 53 48 52 98 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 51 50 54 56 52 101 99 57 45 50 102 52 50 45 52 98 102 99 45 56 57 101 49 45 52 52 49 97 53 97 52 100 48 98 97 49 34 125 44 34 99 98 98 102 56 97 101 102 45 55 98 57 99 45 52 97 97 57 45 56 50 54 56 45 54 101 102 101 101 99 55 57 56 55 49 99 34 58 34 49 50 48 99 98 49 48 56 45 57 55 49 53 45 52 53 49 97 45 56 49 102 51 45 56 101 100 48 56 49 98 102 102 52 51 50 34 125], :content-type "application/json", :content-length 184, :id "ddb240d1-3d0c-4d0b-8fcb-1c4824c502f7", :updated "2025-10-24T15:37:14.465601000Z"}, "a154150a-c57e-49b1-bd8f-026b8fae4537" {:contents [123 34 110 97 109 101 34 58 34 100 53 54 98 48 98 54 56 45 52 102 102 97 45 52 53 51 51 45 97 48 99 102 45 54 101 97 51 102 56 49 57 48 49 98 50 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 101 54 100 56 54 52 54 49 45 57 54 52 102 45 52 99 53 51 45 57 53 48 50 45 98 98 55 54 100 102 51 100 99 101 99 50 34 125 44 34 100 49 54 48 97 54 55 48 45 51 101 97 56 45 52 97 51 49 45 57 56 100 51 45 48 53 55 54 53 54 99 52 49 48 56 98 34 58 34 50 98 48 54 99 101 50 54 45 52 97 99 97 45 52 53 99 98 45 98 57 50 50 45 100 102 53 51 100 48 98 52 55 49 56 99 34 125], :content-type "application/json", :content-length 184, :id "a154150a-c57e-49b1-bd8f-026b8fae4537", :updated "2025-10-24T15:37:14.959113000Z"}, "340c130e-f43b-40d7-a6a6-3b4de6f0c873" {:contents [123 34 110 97 109 101 34 58 34 51 48 53 98 98 54 55 98 45 48 57 97 51 45 52 101 100 56 45 97 54 102 50 45 52 48 53 49 102 51 49 54 97 99 100 54 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 53 49 98 102 57 51 55 48 45 52 50 53 99 45 52 57 54 101 45 57 56 97 54 45 101 48 56 100 50 100 98 100 101 55 48 101 34 125 44 34 102 49 50 100 50 52 102 57 45 54 54 55 55 45 52 100 53 53 45 56 50 52 54 45 57 49 97 98 55 56 100 48 52 52 55 51 34 58 34 102 51 52 54 49 57 52 100 45 52 56 99 49 45 52 48 97 55 45 97 53 55 98 45 56 100 56 55 49 51 50 51 53 54 97 51 34 125], :content-type "application/json", :content-length 184, :id "340c130e-f43b-40d7-a6a6-3b4de6f0c873", :updated "2025-10-24T15:37:15.146066000Z"}, "6e639c91-53f6-4b53-9f93-d70f3eb054b7" {:contents [123 34 110 97 109 101 34 58 34 57 55 52 98 102 54 99 48 45 54 53 101 99 45 52 97 53 55 45 97 54 100 97 45 52 102 52 53 49 54 53 102 55 48 52 57 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 55 102 54 100 52 53 99 98 45 50 55 57 57 45 52 53 57 55 45 56 98 97 57 45 57 49 57 52 97 48 49 57 54 97 54 48 34 125 44 34 97 55 50 55 97 52 56 50 45 54 57 101 50 45 52 97 97 51 45 98 101 55 56 45 51 48 102 100 55 98 53 52 101 100 98 97 34 58 34 56 49 101 57 102 49 49 50 45 99 97 51 49 45 52 51 54 51 45 97 100 57 51 45 49 48 52 55 99 52 51 100 53 51 53 51 34 125], :content-type "application/json", :content-length 184, :id "6e639c91-53f6-4b53-9f93-d70f3eb054b7", :updated "2025-10-24T15:37:10.860973000Z"}, "bf930235-b306-4f1e-ae93-41ec69fa9f67" {:contents [123 34 110 97 109 101 34 58 34 48 99 102 52 56 48 50 101 45 100 48 56 48 45 52 99 56 53 45 56 53 98 99 45 51 100 100 102 100 50 100 52 51 52 101 99 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 50 49 51 56 55 48 100 98 45 57 99 52 51 45 52 49 54 98 45 57 49 48 97 45 98 52 55 56 48 48 50 50 48 97 48 49 34 125 44 34 50 48 50 97 102 48 97 99 45 50 97 50 50 45 52 48 102 53 45 97 51 97 50 45 51 97 102 54 49 51 98 52 99 54 101 48 34 58 34 98 53 101 50 57 54 51 102 45 99 99 48 49 45 52 49 56 100 45 97 51 52 57 45 57 50 51 49 51 56 100 55 48 48 51 56 34 125], :content-type "application/json", :content-length 184, :id "bf930235-b306-4f1e-ae93-41ec69fa9f67", :updated "2025-10-24T15:37:14.365846000Z"}, "d061c3ea-d4a4-489a-b4e7-b888a2b7f749" {:contents [123 34 110 97 109 101 34 58 34 57 48 99 97 98 97 48 57 45 49 55 52 53 45 52 98 55 49 45 97 99 97 101 45 56 97 98 51 55 99 49 100 50 55 55 57 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 100 54 53 55 102 50 98 48 45 48 48 101 100 45 52 99 97 51 45 57 51 54 98 45 102 98 54 55 57 102 102 100 53 102 52 54 34 125 44 34 53 102 97 57 48 100 51 98 45 55 52 57 49 45 52 56 52 51 45 98 98 54 55 45 56 97 52 55 102 56 50 53 54 102 100 50 34 58 34 102 100 101 56 56 102 97 101 45 101 102 50 54 45 52 56 48 54 45 97 97 57 97 45 50 101 55 55 102 56 51 48 49 57 97 57 34 125], :content-type "application/json", :content-length 184, :id "d061c3ea-d4a4-489a-b4e7-b888a2b7f749", :updated "2025-10-24T15:37:14.717817000Z"}, "84c9aada-afcc-4706-be35-c148e604b92d" {:contents [123 34 110 97 109 101 34 58 34 55 48 102 100 99 51 100 55 45 97 56 48 54 45 52 99 48 53 45 56 54 54 48 45 53 56 97 48 49 49 51 101 100 102 57 97 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 98 49 99 56 98 101 54 102 45 97 48 52 50 45 52 52 56 50 45 56 102 101 97 45 97 54 50 48 50 99 50 102 56 98 53 57 34 125 44 34 100 50 49 49 101 101 57 48 45 49 57 51 49 45 52 53 98 102 45 56 54 56 53 45 98 48 54 56 98 97 99 54 98 98 100 56 34 58 34 97 97 57 49 50 97 54 50 45 56 54 55 54 45 52 52 54 99 45 98 99 48 52 45 57 102 48 101 55 49 98 53 98 52 52 49 34 125], :content-type "application/json", :content-length 184, :id "84c9aada-afcc-4706-be35-c148e604b92d", :updated "2025-10-24T15:37:14.339589000Z"}, "f24e6d15-dd89-4d23-ad3e-269feab231d7" {:contents [123 34 99 97 114 34 58 34 77 75 90 34 125], :content-type "application/json", :content-length 13, :id "f24e6d15-dd89-4d23-ad3e-269feab231d7", :updated "2025-10-24T15:37:14.232647000Z"}, "5297b91b-7215-4327-8870-5729d495ef0f" {:contents [123 34 110 97 109 101 34 58 34 101 48 102 55 97 101 99 99 45 52 53 52 55 45 52 50 55 49 45 98 101 55 102 45 50 52 52 55 101 102 50 50 53 102 57 55 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 55 55 49 55 101 102 56 49 45 101 57 53 55 45 52 102 52 48 45 56 102 98 55 45 57 101 52 97 55 57 49 55 56 50 48 53 34 125 44 34 48 102 54 97 52 51 101 52 45 52 51 51 56 45 52 97 48 101 45 97 53 51 101 45 100 57 53 57 97 53 55 50 49 53 57 50 34 58 34 98 55 51 53 101 51 48 98 45 54 102 51 52 45 52 51 52 97 45 97 49 97 100 45 56 55 99 101 98 100 101 56 98 57 97 53 34 125], :content-type "application/json", :content-length 184, :id "5297b91b-7215-4327-8870-5729d495ef0f", :updated "2025-10-24T15:37:15.215219000Z"}, "e8af5c10-d9b0-4a5c-8d2b-2eb6dd827e68" {:contents [123 34 110 97 109 101 34 58 34 97 98 99 48 53 50 101 99 45 53 99 100 52 45 52 50 102 50 45 56 52 56 52 45 100 57 97 54 49 97 54 57 48 101 98 50 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 100 102 48 102 52 99 101 53 45 101 53 99 52 45 52 53 100 49 45 97 50 54 55 45 49 102 49 97 51 52 101 100 50 55 53 55 34 125 44 34 98 98 50 53 53 55 100 51 45 57 101 97 50 45 52 55 100 55 45 56 57 98 97 45 98 55 50 53 97 97 52 50 50 100 49 102 34 58 34 55 54 49 51 100 54 98 48 45 102 97 55 102 45 52 99 48 49 45 57 55 56 53 45 49 52 51 53 50 50 53 48 101 48 55 51 34 125], :content-type "application/json", :content-length 184, :id "e8af5c10-d9b0-4a5c-8d2b-2eb6dd827e68", :updated "2025-10-24T15:37:14.747380000Z"}, "52187673-08ed-4c4a-857a-897b6acf3c95" {:contents [123 34 110 97 109 101 34 58 34 52 98 48 54 48 55 55 102 45 100 56 48 98 45 52 55 56 54 45 97 51 98 53 45 97 56 97 55 102 99 51 56 52 52 100 100 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 51 53 56 57 49 57 97 51 45 56 52 100 49 45 52 52 52 51 45 98 57 53 51 45 54 101 50 99 100 101 97 54 53 49 97 56 34 125 44 34 97 48 99 100 51 101 52 101 45 99 98 55 97 45 52 48 51 57 45 97 48 102 52 45 98 50 97 50 102 97 102 55 99 50 50 100 34 58 34 98 52 50 102 102 99 49 50 45 55 57 50 51 45 52 54 56 97 45 56 53 54 102 45 52 52 100 57 56 98 49 99 51 49 54 51 34 125], :content-type "application/json", :content-length 184, :id "52187673-08ed-4c4a-857a-897b6acf3c95", :updated "2025-10-24T15:37:14.933214000Z"}, "daee0c71-88eb-42de-847b-a66b336b82e1" {:contents [123 34 110 97 109 101 34 58 34 52 52 55 50 97 100 48 57 45 48 51 51 49 45 52 54 56 51 45 97 53 101 100 45 56 49 52 56 102 49 57 52 50 54 52 99 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 98 53 55 55 100 49 101 52 45 97 101 98 97 45 52 52 55 98 45 98 102 99 52 45 97 48 48 98 49 49 100 101 53 48 102 102 34 125 44 34 54 57 99 98 101 57 52 99 45 49 54 101 50 45 52 55 97 54 45 57 48 100 99 45 52 57 56 101 48 49 56 98 52 57 51 49 34 58 34 98 54 52 48 56 97 54 50 45 97 50 52 98 45 52 48 49 102 45 98 101 101 56 45 98 97 54 51 51 55 57 55 48 56 100 55 34 125], :content-type "application/json", :content-length 184, :id "daee0c71-88eb-42de-847b-a66b336b82e1", :updated "2025-10-24T15:37:15.098061000Z"}, "60ffd585-98b5-43a1-b661-4f47bc765550" {:contents [123 34 110 97 109 101 34 58 34 97 102 98 56 52 98 49 54 45 48 102 54 100 45 52 49 55 51 45 97 49 102 56 45 54 97 55 53 53 102 52 56 52 56 101 57 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 100 54 102 97 51 51 50 99 45 52 97 100 99 45 52 54 98 54 45 97 50 49 51 45 51 99 97 53 52 57 57 101 52 52 55 98 34 125 44 34 56 56 48 57 102 101 54 102 45 99 56 53 102 45 52 57 97 101 45 98 101 53 98 45 57 101 53 53 52 49 100 56 53 48 53 51 34 58 34 98 98 55 51 49 50 100 100 45 54 53 100 53 45 52 102 49 48 45 98 57 56 49 45 50 100 57 56 55 100 57 97 53 51 53 99 34 125], :content-type "application/json", :content-length 184, :id "60ffd585-98b5-43a1-b661-4f47bc765550", :updated "2025-10-24T15:37:14.391511000Z"}, "dc3f0d25-f487-4b58-ba78-37d1e0d1abfa" {:contents [123 34 110 97 109 101 34 58 34 56 102 57 51 99 49 102 99 45 100 56 100 52 45 52 100 101 50 45 56 54 98 50 45 50 55 98 51 51 52 53 98 97 99 55 55 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 102 97 50 54 51 56 102 54 45 54 98 48 98 45 52 54 55 53 45 97 49 98 102 45 53 51 98 49 54 99 48 52 52 48 56 48 34 125 44 34 55 55 56 48 57 56 56 101 45 49 100 49 100 45 52 50 49 52 45 97 101 50 57 45 99 102 49 50 57 53 54 102 98 54 97 101 34 58 34 56 100 52 48 101 101 53 50 45 54 99 57 54 45 52 99 101 97 45 98 50 48 99 45 55 99 52 102 51 102 56 97 56 52 102 55 34 125], :content-type "application/json", :content-length 184, :id "dc3f0d25-f487-4b58-ba78-37d1e0d1abfa", :updated "2025-10-24T15:37:15.279054000Z"}, "4a34e6a6-5a87-44ec-8a52-e3ca6d1b264c" {:contents [123 34 110 97 109 101 34 58 34 50 49 55 57 102 98 56 52 45 102 99 54 97 45 52 48 97 98 45 57 56 57 55 45 52 101 98 98 97 52 54 100 57 49 57 53 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 52 97 57 53 52 51 55 97 45 56 102 99 99 45 52 50 53 100 45 98 97 48 55 45 102 55 51 48 55 102 97 55 57 98 99 101 34 125 44 34 100 48 50 101 98 48 53 57 45 100 101 56 101 45 52 50 101 48 45 57 50 98 53 45 100 98 54 53 55 48 49 57 57 97 48 56 34 58 34 48 101 56 54 54 51 100 97 45 51 49 54 49 45 52 57 53 101 45 98 99 50 53 45 49 99 100 98 98 100 101 98 99 54 53 57 34 125], :content-type "application/json", :content-length 184, :id "4a34e6a6-5a87-44ec-8a52-e3ca6d1b264c", :updated "2025-10-24T15:37:15.047784000Z"}, "9eadfe89-d92d-4b4e-aa70-155eea846aea" {:contents [123 34 99 97 114 34 58 123 34 109 97 107 101 34 58 34 68 111 100 103 101 34 44 34 109 111 100 101 108 34 58 34 82 97 109 34 125 44 34 100 114 105 118 101 114 34 58 34 74 101 102 102 34 44 34 115 101 114 105 101 115 34 58 123 34 110 97 115 99 97 114 34 58 123 34 115 101 114 105 101 115 34 58 34 110 101 120 116 101 108 34 125 125 125], :content-type "application/json", :content-length 94, :id "9eadfe89-d92d-4b4e-aa70-155eea846aea", :updated "2025-10-24T15:37:14.290597000Z"}, "cef5575a-9bb1-44ab-a722-a1a2ac616933" {:contents [123 34 99 97 114 34 58 34 72 111 110 100 97 34 44 34 116 121 112 101 34 58 34 67 105 118 105 99 34 125], :content-type "application/json", :content-length 30, :id "cef5575a-9bb1-44ab-a722-a1a2ac616933", :updated "2025-10-24T15:37:14.797325000Z"}, "df0fa64b-daec-41ec-862a-5cc1a842b3e3" {:contents [47 32 97 115 100 102 32 47 32 117 110 100 101 102 105 110 101 100], :content-type "application/octet-stream", :content-length 18, :id "df0fa64b-daec-41ec-862a-5cc1a842b3e3", :updated "2025-10-24T15:37:15.246221000Z"}, "4356b9cb-1f05-4c86-aebf-64460772051d" {:contents [123 34 110 97 109 101 34 58 34 50 57 54 56 48 101 50 101 45 48 55 54 52 45 52 54 53 52 45 97 50 102 99 45 98 100 101 100 100 48 98 57 99 52 98 52 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 102 55 54 50 56 101 51 56 45 97 49 101 54 45 52 102 48 48 45 57 99 97 100 45 100 56 52 56 98 54 48 99 57 49 101 49 34 125 44 34 56 49 50 57 102 99 54 49 45 49 51 57 50 45 52 102 99 52 45 56 52 53 56 45 98 48 101 57 55 101 56 53 55 97 101 51 34 58 34 101 54 101 102 100 48 97 53 45 101 49 98 54 45 52 101 53 100 45 98 99 50 100 45 50 54 56 55 98 49 49 102 49 55 101 57 34 125], :content-type "application/json", :content-length 184, :id "4356b9cb-1f05-4c86-aebf-64460772051d", :updated "2025-10-24T15:37:14.317118000Z"}, "b2000463-bb4a-4459-bcec-1d18b928af5c" {:contents [123 34 110 97 109 101 34 58 34 52 52 55 50 97 100 48 57 45 48 51 51 49 45 52 54 56 51 45 97 53 101 100 45 56 49 52 56 102 49 57 52 50 54 52 99 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 98 53 55 55 100 49 101 52 45 97 101 98 97 45 52 52 55 98 45 98 102 99 52 45 97 48 48 98 49 49 100 101 53 48 102 102 34 125 44 34 54 57 99 98 101 57 52 99 45 49 54 101 50 45 52 55 97 54 45 57 48 100 99 45 52 57 56 101 48 49 56 98 52 57 51 49 34 58 34 98 54 52 48 56 97 54 50 45 97 50 52 98 45 52 48 49 102 45 98 101 101 56 45 98 97 54 51 51 55 57 55 48 56 100 55 34 125], :content-type "application/json", :content-length 184, :id "b2000463-bb4a-4459-bcec-1d18b928af5c", :updated "2025-10-24T15:37:15.075753000Z"}, "f4fb4a72-49bf-43e2-b324-5db5dcaf5e1c" {:contents [123 34 110 97 109 101 34 58 34 49 51 54 55 98 56 56 56 45 97 101 49 99 45 52 99 51 56 45 97 56 53 98 45 98 102 101 50 101 53 53 51 102 51 102 55 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 48 56 50 98 50 55 97 50 45 50 98 98 101 45 52 57 97 55 45 57 52 55 98 45 52 49 48 54 48 56 52 52 97 99 48 100 34 125 44 34 54 52 100 57 56 49 101 49 45 56 102 98 101 45 52 55 49 53 45 97 101 50 49 45 97 97 50 53 55 57 54 102 99 52 100 48 34 58 34 52 51 50 48 52 99 102 97 45 97 98 101 55 45 52 101 99 49 45 57 55 49 50 45 102 57 97 53 48 51 101 51 53 56 102 53 34 125], :content-type "application/json", :content-length 184, :id "f4fb4a72-49bf-43e2-b324-5db5dcaf5e1c", :updated "2025-10-24T15:37:10.711056000Z"}}, ["http://www.example.com/activityId/hashset" {"objectType" "Agent", "account" {"homePage" "http://www.example.com/agentId/1", "name" "Rick James"}} "242e78d2-9d82-40bb-8296-fba188d4a54d"] {"4b9c451e-d814-44b3-9382-0b04260a7dcc" {:contents [123 34 110 97 109 101 34 58 34 53 48 53 54 49 101 52 99 45 56 54 102 99 45 52 54 54 102 45 98 101 57 102 45 57 57 97 49 48 54 49 102 97 102 97 50 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 50 51 55 54 99 99 99 55 45 52 101 97 97 45 52 56 49 100 45 98 97 48 98 45 99 54 102 53 51 100 97 101 98 52 49 56 34 125 44 34 52 98 53 101 57 56 55 57 45 55 49 52 52 45 52 50 52 51 45 98 101 99 98 45 55 54 52 52 57 48 98 100 54 102 56 51 34 58 34 53 102 97 52 100 97 53 97 45 99 56 52 97 45 52 53 102 50 45 98 55 51 54 45 99 102 54 55 49 55 98 51 97 54 56 99 34 125], :content-type "application/json", :content-length 184, :id "4b9c451e-d814-44b3-9382-0b04260a7dcc", :registration "242e78d2-9d82-40bb-8296-fba188d4a54d", :updated "2025-10-24T15:37:14.853900000Z"}}, ["http://www.example.com/activityId/hashset" {"objectType" "Agent", "account" {"homePage" "http://www.example.com/agentId/1", "name" "Rick James"}} "02160649-32bf-4da9-99da-6f7e980d81c8"] {"98c560e1-796d-41d8-abc2-f52035ec5ea8" {:contents [123 34 110 97 109 101 34 58 34 48 99 98 57 52 100 49 55 45 52 49 50 50 45 52 100 56 50 45 57 98 56 55 45 51 49 102 52 54 49 53 102 100 55 102 102 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 50 57 48 102 99 54 101 54 45 56 53 55 98 45 52 54 101 54 45 97 102 49 102 45 49 97 100 52 100 55 49 48 57 54 100 98 34 125 44 34 102 53 50 51 100 50 54 101 45 56 99 48 99 45 52 102 51 102 45 98 55 49 101 45 101 53 48 53 51 53 57 99 48 55 100 57 34 58 34 102 49 53 101 48 55 54 102 45 51 54 102 53 45 52 57 56 98 45 97 99 57 97 45 99 100 57 57 52 48 54 102 48 55 56 98 34 125], :content-type "application/json", :content-length 184, :id "98c560e1-796d-41d8-abc2-f52035ec5ea8", :registration "02160649-32bf-4da9-99da-6f7e980d81c8", :updated "2025-10-24T15:37:14.830662000Z"}}, "http://www.example.com/activityId/hashsetc55b6f9f-ed2a-4956-9d25-0e6eada1a17a" {"e94bfb11-b6f2-4bde-9c7d-3fcc209b0d51" {:contents [123 34 110 97 109 101 34 58 34 98 99 56 100 51 50 57 97 45 99 48 53 99 45 52 100 102 100 45 97 100 100 48 45 50 100 54 57 97 101 98 50 101 50 50 53 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 102 57 52 97 49 100 52 102 45 57 55 98 56 45 52 100 98 50 45 57 50 52 49 45 49 100 48 53 50 52 99 52 54 57 49 97 34 125 44 34 102 50 51 98 99 57 102 53 45 49 97 98 48 45 52 48 52 100 45 97 56 102 48 45 50 97 48 97 97 53 100 54 52 101 56 99 34 58 34 54 98 98 56 97 56 49 51 45 53 97 102 51 45 52 52 55 99 45 56 99 48 98 45 48 53 101 50 50 53 55 57 101 56 55 54 34 125], :content-type "application/json", :content-length 184, :id "e94bfb11-b6f2-4bde-9c7d-3fcc209b0d51", :updated "2025-10-24T15:37:16.442401000Z"}}, "http://www.example.com/activityId/hashsetb18bd72e-74ff-4e7c-86da-3ffc3518c238" {"693db9d0-a3ca-40ec-92c9-71df8fa88783" {:contents [123 34 110 97 109 101 34 58 34 48 97 97 101 51 101 48 50 45 50 50 97 98 45 52 52 53 102 45 97 54 53 101 45 57 51 54 53 53 102 99 54 97 54 57 99 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 51 100 97 100 51 97 102 100 45 54 52 55 100 45 52 98 52 99 45 98 102 53 99 45 48 97 99 48 55 98 51 52 52 101 97 56 34 125 44 34 99 100 54 102 101 97 57 56 45 99 51 50 98 45 52 49 97 56 45 98 54 48 99 45 54 101 54 55 99 50 51 51 50 98 100 101 34 58 34 55 54 97 54 102 51 100 51 45 50 48 54 48 45 52 50 98 99 45 57 48 100 48 45 101 51 48 50 102 50 101 101 98 99 50 102 34 125], :content-type "application/json", :content-length 184, :id "693db9d0-a3ca-40ec-92c9-71df8fa88783", :updated "2025-10-24T15:37:16.381473000Z"}}, {"objectType" "Agent", "account" {"homePage" "http://www.example.com/agentId/1", "name" "Rick James"}} {"31b61c2c-59ff-4ea9-ae7d-8123ca69500d" {:contents [123 34 110 97 109 101 34 58 34 51 98 51 98 50 54 101 52 45 57 48 48 53 45 52 97 55 101 45 57 55 102 48 45 54 99 48 97 50 57 56 55 56 53 49 56 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 56 98 53 55 52 52 49 99 45 50 48 52 102 45 52 52 98 51 45 57 56 56 50 45 54 55 54 48 57 99 97 102 101 49 48 98 34 125 44 34 49 97 99 52 57 54 53 57 45 53 100 55 50 45 52 48 56 97 45 98 98 51 50 45 50 98 51 102 49 55 54 53 101 98 56 51 34 58 34 101 50 52 55 53 57 56 48 45 52 54 102 100 45 52 102 49 57 45 98 53 98 53 45 53 52 100 54 102 50 55 48 50 54 100 52 34 125], :content-type "application/json", :content-length 184, :id "31b61c2c-59ff-4ea9-ae7d-8123ca69500d", :updated "2025-10-24T15:37:15.820276000Z"}, "7e4e109b-980e-419d-8827-25151ceb7483" {:contents [123 34 110 97 109 101 34 58 34 52 51 51 50 98 101 99 55 45 48 101 102 48 45 52 49 48 48 45 97 98 102 55 45 101 49 53 51 51 97 50 52 48 56 101 98 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 52 49 100 97 51 51 49 55 45 99 48 49 49 45 52 52 102 97 45 97 49 98 97 45 54 99 49 48 99 54 97 53 49 56 54 55 34 125 44 34 52 53 57 101 49 52 56 97 45 98 56 101 56 45 52 97 51 49 45 57 50 54 98 45 102 51 50 52 102 57 56 99 98 48 100 56 34 58 34 55 98 98 99 54 52 99 97 45 50 97 101 51 45 52 102 53 97 45 97 97 98 99 45 99 50 55 55 97 49 50 53 100 102 52 102 34 125], :content-type "application/json", :content-length 184, :id "7e4e109b-980e-419d-8827-25151ceb7483", :updated "2025-10-24T15:37:16.763834000Z"}, "bc0f84a6-1db8-4ca2-bc70-42358d903c11" {:contents [123 34 110 97 109 101 34 58 34 51 100 98 97 52 52 99 51 45 55 57 53 97 45 52 52 57 51 45 98 53 56 53 45 55 55 99 98 51 53 53 49 52 51 57 102 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 99 49 52 98 50 56 97 55 45 53 55 101 57 45 52 100 52 99 45 97 99 101 101 45 100 57 100 50 57 97 49 102 101 57 56 53 34 125 44 34 49 52 98 53 56 101 52 48 45 55 99 100 54 45 52 97 51 98 45 97 57 101 98 45 97 51 51 98 100 52 57 101 97 101 54 50 34 58 34 53 48 97 97 53 99 102 57 45 98 98 102 57 45 52 56 100 97 45 57 49 48 52 45 102 99 48 99 52 55 51 55 56 100 55 97 34 125], :content-type "application/json", :content-length 184, :id "bc0f84a6-1db8-4ca2-bc70-42358d903c11", :updated "2025-10-24T15:37:16.909958000Z"}, "f937ddb2-002d-4229-8418-55d1a4d79316" {:contents [123 34 110 97 109 101 34 58 34 99 98 100 49 53 101 99 101 45 54 55 49 52 45 52 52 50 48 45 97 48 52 55 45 54 54 102 51 50 55 57 57 55 57 99 54 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 98 99 49 100 102 50 52 98 45 99 98 98 48 45 52 50 53 51 45 98 101 99 48 45 99 50 51 52 53 49 48 57 50 50 97 53 34 125 44 34 100 98 100 97 51 50 56 101 45 57 53 49 97 45 52 102 51 56 45 97 101 53 100 45 97 102 98 52 49 49 51 56 54 52 55 100 34 58 34 52 51 48 50 54 56 54 57 45 56 101 102 54 45 52 52 52 56 45 97 97 99 52 45 54 97 97 48 98 50 102 55 101 100 100 97 34 125], :content-type "application/json", :content-length 184, :id "f937ddb2-002d-4229-8418-55d1a4d79316", :updated "2025-10-24T15:37:16.191981000Z"}, "f6467944-173e-4d93-9329-de1a42540bc1" {:contents [123 34 110 97 109 101 34 58 34 55 56 101 48 55 53 56 53 45 57 57 54 49 45 52 101 97 53 45 57 48 56 57 45 48 52 97 100 100 51 48 101 56 52 100 57 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 52 55 57 48 101 97 56 56 45 56 99 57 53 45 52 98 52 57 45 57 53 54 52 45 100 57 100 52 101 56 57 55 50 102 98 57 34 125 44 34 99 102 54 54 99 52 52 51 45 48 49 98 49 45 52 102 100 56 45 56 102 51 54 45 97 102 54 53 54 55 57 97 50 100 99 55 34 58 34 52 56 56 52 51 55 56 51 45 49 52 101 48 45 52 49 99 48 45 57 57 97 49 45 102 100 51 98 102 54 55 100 48 55 48 99 34 125], :content-type "application/json", :content-length 184, :id "f6467944-173e-4d93-9329-de1a42540bc1", :updated "2025-10-24T15:37:15.921033000Z"}, "22c5b8f1-76b7-4369-9406-f2346cf36d32" {:contents [123 34 110 97 109 101 34 58 34 54 97 56 100 57 53 55 56 45 51 52 48 97 45 52 98 52 49 45 98 99 51 100 45 101 98 49 48 97 101 51 49 98 49 55 48 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 101 56 51 54 53 51 55 56 45 97 102 51 51 45 52 102 50 51 45 98 98 50 102 45 55 56 102 100 50 100 51 102 55 56 50 49 34 125 44 34 101 52 99 97 57 99 101 48 45 51 57 102 100 45 52 57 100 49 45 97 57 54 55 45 57 98 50 51 97 56 101 57 51 52 57 54 34 58 34 53 100 48 49 100 50 51 56 45 54 56 102 54 45 52 56 51 48 45 56 100 56 51 45 49 50 99 50 55 98 50 55 56 52 97 54 34 125], :content-type "application/json", :content-length 184, :id "22c5b8f1-76b7-4369-9406-f2346cf36d32", :updated "2025-10-24T15:37:15.787736000Z"}, "69a6728b-2733-474c-8978-96f112f4cda6" {:contents [123 34 110 97 109 101 34 58 34 56 55 100 57 55 102 99 97 45 52 55 49 48 45 52 101 102 56 45 98 101 100 48 45 53 54 50 57 57 56 102 49 102 53 56 102 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 57 56 53 55 98 53 55 52 45 99 102 53 52 45 52 57 101 57 45 97 54 98 48 45 97 52 98 50 52 97 51 55 48 52 99 49 34 125 44 34 51 98 53 51 97 56 102 55 45 50 97 101 50 45 52 101 57 55 45 97 56 99 97 45 52 57 97 57 100 102 51 54 53 101 50 54 34 58 34 49 49 97 53 53 54 51 50 45 54 53 100 53 45 52 52 100 57 45 98 49 102 51 45 97 100 102 101 97 99 53 97 51 48 102 102 34 125], :content-type "application/json", :content-length 184, :id "69a6728b-2733-474c-8978-96f112f4cda6", :updated "2025-10-24T15:37:10.768636000Z"}, "baa1f120-1a08-4b9c-953f-5fb488a419cf" {:contents [123 34 110 97 109 101 34 58 34 101 52 56 100 102 53 53 50 45 98 101 48 97 45 52 102 48 51 45 56 53 100 98 45 99 97 55 52 51 53 99 53 102 102 97 50 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 48 52 97 97 54 102 54 100 45 99 52 100 54 45 52 102 52 98 45 56 56 49 50 45 101 57 102 57 52 48 52 57 101 55 48 99 34 125 44 34 55 98 100 57 49 53 53 100 45 56 51 51 50 45 52 97 49 56 45 56 49 99 100 45 54 102 99 55 51 49 50 101 55 101 97 53 34 58 34 97 50 100 101 55 56 49 102 45 48 100 99 56 45 52 55 50 100 45 98 99 53 52 45 98 50 50 102 54 55 50 48 54 49 51 102 34 125], :content-type "application/json", :content-length 184, :id "baa1f120-1a08-4b9c-953f-5fb488a419cf", :updated "2025-10-24T15:37:15.845974000Z"}, "a863d941-3bec-40d1-bcab-3f2afb4e305d" {:contents [123 34 110 97 109 101 34 58 34 55 99 54 50 98 101 99 102 45 57 49 100 97 45 52 102 100 51 45 97 100 100 54 45 51 49 48 99 99 56 101 98 98 51 57 55 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 52 48 56 97 102 101 53 48 45 102 54 48 57 45 52 54 100 49 45 98 52 97 98 45 55 51 54 99 52 99 49 100 51 55 51 99 34 125 44 34 99 54 52 101 102 101 49 48 45 101 98 49 53 45 52 56 56 97 45 57 49 48 99 45 56 102 53 101 55 48 50 52 49 102 102 50 34 58 34 50 101 54 52 102 98 54 52 45 51 49 101 49 45 52 99 51 99 45 97 97 55 97 45 54 49 49 99 97 102 52 101 55 57 56 98 34 125], :content-type "application/json", :content-length 184, :id "a863d941-3bec-40d1-bcab-3f2afb4e305d", :updated "2025-10-24T15:37:15.947862000Z"}, "4c413169-23b2-4524-b91e-3fcbddae5002" {:contents [123 34 110 97 109 101 34 58 34 51 97 55 97 48 56 100 53 45 53 49 54 100 45 52 49 55 48 45 97 54 51 52 45 51 100 48 101 53 51 101 48 51 101 54 54 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 55 102 49 98 49 51 54 56 45 54 98 52 52 45 52 102 49 48 45 57 54 102 97 45 98 98 48 52 102 102 102 49 53 98 54 55 34 125 44 34 57 97 53 48 52 100 50 102 45 51 54 97 51 45 52 57 56 99 45 56 48 49 50 45 57 100 101 57 97 53 101 52 50 101 97 98 34 58 34 52 48 51 55 100 55 100 57 45 52 98 50 53 45 52 100 102 54 45 57 99 99 48 45 56 57 55 101 52 99 97 50 53 55 97 101 34 125], :content-type "application/json", :content-length 184, :id "4c413169-23b2-4524-b91e-3fcbddae5002", :updated "2025-10-24T15:37:16.039731000Z"}, "f4bb24bf-6a45-40ae-ae80-87a0e202b90d" {:contents [123 34 110 97 109 101 34 58 34 53 98 100 102 55 97 100 56 45 54 48 57 101 45 52 99 48 50 45 97 100 56 48 45 50 56 99 98 48 102 52 101 54 99 102 102 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 51 52 48 50 99 56 55 100 45 49 53 53 51 45 52 48 51 50 45 57 50 54 57 45 57 102 102 102 101 99 50 54 100 53 57 101 34 125 44 34 100 99 101 55 49 99 52 57 45 98 53 101 56 45 52 54 50 57 45 98 50 49 50 45 97 98 50 54 98 48 97 50 102 48 55 50 34 58 34 50 100 99 57 101 55 53 101 45 57 99 99 48 45 52 54 49 52 45 97 100 101 101 45 57 99 49 48 101 100 55 57 56 50 52 52 34 125], :content-type "application/json", :content-length 184, :id "f4bb24bf-6a45-40ae-ae80-87a0e202b90d", :updated "2025-10-24T15:37:15.983142000Z"}, "f0198923-e5f5-4267-9312-71edd966390f" {:contents [123 34 110 97 109 101 34 58 34 57 99 101 54 51 102 100 49 45 57 101 48 55 45 52 57 51 53 45 98 101 50 102 45 99 57 100 56 53 57 99 54 50 102 99 48 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 53 100 97 56 101 56 50 102 45 101 57 101 51 45 52 97 48 54 45 57 52 57 101 45 51 52 57 100 50 57 50 54 51 101 100 97 34 125 44 34 52 54 100 55 102 56 97 51 45 97 98 53 97 45 52 49 48 97 45 57 102 54 49 45 48 54 57 50 98 52 56 100 53 99 50 48 34 58 34 56 98 102 97 101 53 98 51 45 49 53 57 53 45 52 49 97 101 45 97 55 52 54 45 97 53 53 50 49 52 54 53 57 97 98 56 34 125], :content-type "application/json", :content-length 184, :id "f0198923-e5f5-4267-9312-71edd966390f", :updated "2025-10-24T15:37:16.823956000Z"}, "949b8284-945b-4ed1-8e56-412d482b7941" {:contents [123 34 110 97 109 101 34 58 34 48 54 53 101 55 53 52 53 45 52 57 98 98 45 52 57 102 98 45 97 99 97 101 45 99 98 55 54 56 102 56 99 102 101 99 98 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 51 48 100 57 97 50 50 50 45 48 57 101 48 45 52 100 52 98 45 97 100 49 53 45 102 49 48 57 100 100 97 102 55 97 53 54 34 125 44 34 55 100 98 57 49 102 56 50 45 48 48 51 99 45 52 55 55 48 45 97 57 54 51 45 102 99 102 57 50 54 53 97 55 55 101 51 34 58 34 56 53 54 53 97 100 48 53 45 100 56 48 54 45 52 48 56 51 45 97 48 56 54 45 50 53 57 49 102 101 53 98 100 54 101 54 34 125], :content-type "application/json", :content-length 184, :id "949b8284-945b-4ed1-8e56-412d482b7941", :updated "2025-10-24T15:37:10.892829000Z"}, "490ab452-f780-4ca9-8045-731faa4b11b2" {:contents [123 34 110 97 109 101 34 58 34 97 51 98 54 51 98 50 53 45 56 102 48 52 45 52 98 97 53 45 57 101 53 51 45 99 53 55 101 97 99 49 52 48 101 51 55 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 98 55 52 53 100 98 52 101 45 98 97 98 50 45 52 51 101 50 45 56 57 102 57 45 97 102 98 54 55 99 48 99 51 57 57 56 34 125 44 34 97 53 50 53 55 98 55 52 45 55 48 55 100 45 52 53 100 54 45 97 57 51 98 45 55 52 48 54 102 57 53 97 53 99 54 51 34 58 34 54 102 99 99 52 99 97 55 45 100 48 99 55 45 52 50 100 99 45 56 100 97 56 45 50 97 99 53 57 56 49 50 50 97 50 101 34 125], :content-type "application/json", :content-length 184, :id "490ab452-f780-4ca9-8045-731faa4b11b2", :updated "2025-10-24T15:37:16.129371000Z"}, "76ae26fc-3916-45d4-96bc-5be2ae91a571" {:contents [47 32 97 115 100 102 32 47 32 117 110 100 101 102 105 110 101 100], :content-type "application/octet-stream", :content-length 18, :id "76ae26fc-3916-45d4-96bc-5be2ae91a571", :updated "2025-10-24T15:37:16.160756000Z"}, "382fa48c-7ccc-415a-8919-5f6f3a395a2e" {:contents [123 34 110 97 109 101 34 58 34 50 52 97 52 54 98 99 54 45 48 55 51 57 45 52 101 56 100 45 57 56 48 48 45 55 56 56 57 101 57 57 55 57 52 48 98 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 49 100 102 100 52 51 101 57 45 101 52 102 100 45 52 97 48 99 45 97 97 101 52 45 56 97 101 51 55 54 98 49 53 52 49 97 34 125 44 34 51 55 98 97 49 57 51 101 45 48 55 55 54 45 52 57 98 97 45 57 99 56 100 45 98 99 52 100 56 55 53 98 52 49 51 49 34 58 34 102 100 98 97 50 54 102 51 45 49 56 52 52 45 52 101 101 101 45 56 100 50 53 45 100 53 99 48 102 102 102 97 55 53 102 56 34 125], :content-type "application/json", :content-length 184, :id "382fa48c-7ccc-415a-8919-5f6f3a395a2e", :updated "2025-10-24T15:37:16.853059000Z"}, "284508c3-f548-4d6a-a060-7bfec18fc909" {:contents [123 34 110 97 109 101 34 58 34 55 53 50 51 50 99 55 48 45 100 97 100 48 45 52 97 56 55 45 97 99 53 56 45 100 52 102 99 56 50 49 50 57 98 99 55 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 53 97 100 52 57 97 99 56 45 52 99 52 50 45 52 99 98 57 45 56 56 98 57 45 98 100 55 102 54 97 57 102 55 57 53 57 34 125 44 34 52 48 98 56 48 98 99 52 45 57 101 57 54 45 52 99 54 50 45 98 55 98 55 45 53 52 48 100 55 52 101 57 55 55 54 102 34 58 34 52 56 54 99 49 49 99 48 45 100 48 100 52 45 52 55 53 54 45 57 100 99 55 45 100 100 101 101 102 48 56 52 100 100 48 51 34 125], :content-type "application/json", :content-length 184, :id "284508c3-f548-4d6a-a060-7bfec18fc909", :updated "2025-10-24T15:37:16.009043000Z"}, "c1f406ac-7d24-4e4e-ba11-72fa4e0014fa" {:contents [123 34 99 97 114 34 58 34 72 111 110 100 97 34 44 34 116 121 112 101 34 58 34 67 105 118 105 99 34 125], :content-type "application/json", :content-length 30, :id "c1f406ac-7d24-4e4e-ba11-72fa4e0014fa", :updated "2025-10-24T15:37:15.894952000Z"}, "21308424-886b-4286-af3d-c1c600ef89a4" {:contents [123 34 110 97 109 101 34 58 34 55 98 52 101 54 54 57 101 45 55 102 98 102 45 52 54 102 99 45 98 51 49 53 45 97 102 52 54 100 54 48 51 56 54 97 101 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 48 57 100 54 54 102 98 48 45 97 56 48 55 45 52 50 55 57 45 98 51 98 52 45 101 97 50 99 53 57 98 51 55 102 53 48 34 125 44 34 50 101 102 101 52 100 97 51 45 52 101 100 56 45 52 101 53 48 45 98 53 53 101 45 49 102 49 51 100 57 52 54 56 57 97 55 34 58 34 56 98 99 98 49 51 49 49 45 48 102 99 50 45 52 52 101 49 45 97 101 53 48 45 102 48 48 55 56 101 54 51 101 49 98 49 34 125], :content-type "application/json", :content-length 184, :id "21308424-886b-4286-af3d-c1c600ef89a4", :updated "2025-10-24T15:37:16.960884000Z"}, "eaabe7fc-9c4d-4344-921c-3c55a8caf4da" {:contents [123 34 110 97 109 101 34 58 34 56 102 53 49 54 100 54 98 45 49 55 101 102 45 52 99 97 98 45 97 52 98 49 45 101 55 102 98 54 102 100 50 48 55 48 55 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 99 49 102 97 98 51 55 49 45 53 53 102 98 45 52 50 48 49 45 97 50 102 98 45 99 102 97 48 56 101 53 51 53 56 50 50 34 125 44 34 101 97 53 51 49 102 55 48 45 48 49 99 55 45 52 57 97 55 45 98 51 101 100 45 100 51 57 99 56 56 53 55 98 54 50 102 34 58 34 101 48 56 102 102 48 52 99 45 48 99 102 51 45 52 98 48 48 45 97 57 53 98 45 56 97 55 54 54 98 57 52 53 98 51 102 34 125], :content-type "application/json", :content-length 184, :id "eaabe7fc-9c4d-4344-921c-3c55a8caf4da", :updated "2025-10-24T15:37:15.736015000Z"}}, "http://www.example.com/activityId/hashset" {"fc6e5bae-ecf6-458e-beec-35e9f8d2fb49" {:contents [123 34 97 99 116 105 118 105 116 121 73 100 34 58 34 104 116 116 112 58 47 47 119 119 119 46 101 120 97 109 112 108 101 46 99 111 109 47 97 99 116 105 118 105 116 121 73 100 47 104 97 115 104 115 101 116 34 44 34 112 114 111 102 105 108 101 73 100 34 58 34 54 49 49 56 51 100 56 99 45 50 97 98 52 45 52 48 101 97 45 98 54 98 98 45 54 53 100 55 50 51 57 56 57 54 49 54 34 125], :content-type "application/json", :content-length 109, :id "fc6e5bae-ecf6-458e-beec-35e9f8d2fb49", :updated "2025-10-24T15:37:16.610246000Z"}, "7ba3564a-8c53-4c63-a27a-f84e646e23db" {:contents [123 34 110 97 109 101 34 58 34 56 102 101 97 102 98 100 102 45 50 100 51 98 45 52 101 52 55 45 98 56 57 55 45 48 97 56 53 52 49 56 98 48 54 51 57 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 50 99 55 49 98 57 50 99 45 51 53 53 100 45 52 49 53 53 45 56 51 53 50 45 100 49 57 50 98 53 101 100 99 51 102 56 34 125 44 34 57 51 97 56 102 98 100 100 45 97 100 57 48 45 52 48 54 98 45 98 48 99 48 45 100 102 98 100 101 54 97 54 56 99 100 49 34 58 34 99 53 53 102 102 53 52 49 45 102 102 98 52 45 52 57 100 49 45 98 54 49 50 45 97 57 57 97 56 56 51 98 49 57 55 50 34 125], :content-type "application/json", :content-length 184, :id "7ba3564a-8c53-4c63-a27a-f84e646e23db", :updated "2025-10-24T15:37:16.292125000Z"}, "89919a67-a99c-4ab7-8398-43212d104217" {:contents [123 34 110 97 109 101 34 58 34 48 98 98 52 101 55 102 52 45 57 99 55 100 45 52 57 49 52 45 57 97 100 99 45 50 98 97 99 52 100 57 97 56 97 99 98 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 56 51 51 100 56 48 51 57 45 101 57 52 48 45 52 50 54 51 45 56 57 99 97 45 57 55 100 101 52 102 97 53 57 50 49 57 34 125 44 34 49 97 101 51 51 102 101 98 45 55 57 52 53 45 52 50 53 52 45 56 54 56 102 45 51 97 52 101 55 55 57 57 99 52 101 57 34 58 34 52 98 99 97 56 52 54 51 45 52 52 49 56 45 52 100 50 57 45 97 102 101 54 45 57 50 102 57 101 97 99 52 49 56 55 50 34 125], :content-type "application/json", :content-length 184, :id "89919a67-a99c-4ab7-8398-43212d104217", :updated "2025-10-24T15:37:16.468733000Z"}, "b0600341-6d80-4f85-b77c-37ac46e7c2b0" {:contents [123 34 110 97 109 101 34 58 34 48 101 55 49 56 55 97 57 45 98 55 97 99 45 52 97 102 48 45 56 54 100 102 45 55 54 101 57 55 56 100 53 53 51 101 57 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 48 55 50 100 57 97 54 54 45 48 101 50 51 45 52 54 53 101 45 57 101 97 101 45 51 48 102 101 48 50 49 53 55 56 48 55 34 125 44 34 100 97 99 54 102 52 99 55 45 97 51 50 50 45 52 55 50 55 45 98 52 52 101 45 56 57 53 49 99 51 49 51 51 56 50 98 34 58 34 53 53 56 49 50 101 98 50 45 99 100 54 100 45 52 97 99 50 45 56 51 48 53 45 101 48 55 53 99 57 56 54 57 56 97 100 34 125], :content-type "application/json", :content-length 184, :id "b0600341-6d80-4f85-b77c-37ac46e7c2b0", :updated "2025-10-24T15:37:16.225666000Z"}, "fae9f3d4-7ffa-4647-bbd0-769853c04015" {:contents [123 34 110 97 109 101 34 58 34 57 97 52 99 97 55 55 48 45 48 50 50 101 45 52 56 51 100 45 57 99 100 98 45 56 51 97 56 53 97 49 52 57 55 102 99 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 98 99 57 54 54 57 100 97 45 101 97 53 53 45 52 50 53 98 45 56 98 52 101 45 50 100 57 97 102 53 102 52 48 102 56 102 34 125 44 34 102 53 52 52 48 50 100 99 45 55 50 97 48 45 52 99 49 50 45 56 100 99 53 45 101 51 100 100 102 49 100 52 101 54 100 57 34 58 34 53 101 55 52 51 97 55 49 45 48 97 98 99 45 52 50 55 100 45 98 100 50 48 45 102 51 97 100 51 101 97 99 99 53 53 54 34 125], :content-type "application/json", :content-length 184, :id "fae9f3d4-7ffa-4647-bbd0-769853c04015", :updated "2025-10-24T15:37:16.248226000Z"}, "ccdd8884-5b49-4415-b0a8-48988eac2914" {:contents [123 34 110 97 109 101 34 58 34 54 99 50 54 50 97 48 99 45 100 53 49 53 45 52 102 102 57 45 98 48 57 98 45 53 52 49 100 57 56 98 100 49 50 50 56 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 53 55 97 97 57 101 55 50 45 101 98 50 48 45 52 100 100 102 45 98 52 48 52 45 101 48 101 98 54 51 100 57 55 56 55 102 34 125 44 34 52 49 55 50 56 52 57 52 45 56 56 97 98 45 52 98 48 50 45 97 100 98 49 45 52 49 102 57 100 50 55 55 99 48 57 54 34 58 34 98 57 51 52 101 50 100 57 45 55 54 100 49 45 52 101 99 99 45 57 52 50 99 45 51 101 98 100 57 55 101 56 101 55 51 49 34 125], :content-type "application/json", :content-length 184, :id "ccdd8884-5b49-4415-b0a8-48988eac2914", :updated "2025-10-24T15:37:16.794555000Z"}, "dc92c5e0-ddc1-4979-ac38-36282f13cc93" {:contents [123 34 110 97 109 101 34 58 34 48 97 98 98 50 50 100 101 45 102 98 101 54 45 52 54 57 57 45 97 101 99 51 45 57 56 51 56 52 99 57 57 57 53 53 98 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 56 48 101 51 56 49 55 98 45 50 99 52 97 45 52 52 102 54 45 57 56 102 48 45 57 55 53 51 57 97 98 48 100 53 100 48 34 125 44 34 57 49 52 49 53 99 55 51 45 53 101 101 49 45 52 51 56 99 45 56 98 52 54 45 55 101 97 56 98 51 49 52 51 101 102 52 34 58 34 98 99 97 98 57 97 102 97 45 101 57 56 101 45 52 51 100 101 45 56 48 53 56 45 57 50 101 48 57 55 49 101 51 54 53 54 34 125], :content-type "application/json", :content-length 184, :id "dc92c5e0-ddc1-4979-ac38-36282f13cc93", :updated "2025-10-24T15:37:16.320163000Z"}, "e3251f70-be61-474e-bf30-43fd939160c7" {:contents [123 34 110 97 109 101 34 58 34 99 52 49 52 99 52 56 49 45 54 57 50 102 45 52 49 54 55 45 56 50 99 56 45 98 50 57 50 56 53 102 51 52 49 51 51 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 57 52 101 54 101 57 99 98 45 50 52 50 97 45 52 100 50 52 45 97 57 53 53 45 52 98 51 49 99 49 57 48 50 102 55 48 34 125 44 34 55 53 97 56 49 57 52 101 45 101 98 53 98 45 52 56 56 99 45 98 51 50 101 45 48 54 49 51 98 99 57 53 102 50 97 98 34 58 34 97 54 56 55 102 99 97 98 45 49 98 102 98 45 52 51 98 98 45 56 100 52 48 45 100 50 99 102 98 53 50 52 101 98 97 97 34 125], :content-type "application/json", :content-length 184, :id "e3251f70-be61-474e-bf30-43fd939160c7", :updated "2025-10-24T15:37:16.676293000Z"}, "91cc0c89-db05-4954-9f51-2ff2b58a5a89" {:contents [47 32 97 115 100 102 32 47 32 117 110 100 101 102 105 110 101 100], :content-type "application/octet-stream", :content-length 18, :id "91cc0c89-db05-4954-9f51-2ff2b58a5a89", :updated "2025-10-24T15:37:16.642823000Z"}, "f49d9693-e057-4d42-9fe7-e2eeb29fa142" {:contents [123 34 99 97 114 34 58 34 72 111 110 100 97 34 44 34 116 121 112 101 34 58 34 67 105 118 105 99 34 125], :content-type "application/json", :content-length 30, :id "f49d9693-e057-4d42-9fe7-e2eeb29fa142", :updated "2025-10-24T15:37:16.518628000Z"}, "b59b8d70-cd84-4b79-9dec-ada1cdde6886" {:contents [123 34 110 97 109 101 34 58 34 97 56 53 101 49 97 99 55 45 55 55 49 54 45 52 101 51 57 45 57 53 53 50 45 100 50 101 55 102 102 98 102 48 99 100 51 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 55 57 52 53 51 56 100 50 45 51 52 102 50 45 52 49 99 49 45 98 102 99 55 45 52 56 100 54 49 52 102 53 100 50 99 97 34 125 44 34 99 102 100 50 55 101 101 51 45 50 99 49 52 45 52 50 53 100 45 57 98 50 50 45 100 54 48 57 97 48 56 55 99 50 51 51 34 58 34 97 97 101 48 51 97 57 52 45 53 52 99 48 45 52 48 52 57 45 97 98 57 50 45 51 101 48 97 99 56 51 101 57 50 99 57 34 125], :content-type "application/json", :content-length 184, :id "b59b8d70-cd84-4b79-9dec-ada1cdde6886", :updated "2025-10-24T15:37:10.681577000Z"}, "85f0d576-6ce8-45bc-b5cd-95e48bfd0bf5" {:contents [123 34 110 97 109 101 34 58 34 57 102 52 100 53 57 50 51 45 49 56 100 100 45 52 52 97 57 45 97 97 98 50 45 54 55 57 49 51 97 54 49 97 54 98 99 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 98 51 102 98 56 99 55 54 45 98 53 52 100 45 52 56 56 57 45 98 49 57 102 45 48 98 98 48 100 98 57 55 97 99 50 99 34 125 44 34 53 56 56 54 56 102 57 102 45 56 55 49 98 45 52 99 98 48 45 97 56 102 99 45 102 54 99 101 98 101 56 98 99 57 49 57 34 58 34 48 57 99 53 98 50 57 101 45 55 53 52 49 45 52 97 98 51 45 97 51 54 100 45 52 102 102 48 56 55 57 48 57 52 57 100 34 125], :content-type "application/json", :content-length 184, :id "85f0d576-6ce8-45bc-b5cd-95e48bfd0bf5", :updated "2025-10-24T15:37:10.829853000Z"}, "1df034dd-a181-44d8-976f-9ddbedcd8338" {:contents [123 34 110 97 109 101 34 58 34 55 51 51 55 99 55 101 56 45 102 102 56 100 45 52 54 51 52 45 56 51 56 101 45 51 49 48 97 99 100 97 54 54 55 54 53 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 98 51 48 55 50 97 98 102 45 97 100 50 50 45 52 54 99 52 45 56 98 49 101 45 99 54 57 97 52 50 53 55 54 54 102 54 34 125 44 34 101 48 53 99 56 55 98 54 45 99 98 49 49 45 52 99 57 51 45 98 50 49 102 45 99 48 99 52 55 99 97 48 50 98 97 50 34 58 34 102 98 56 53 55 50 50 55 45 100 52 55 55 45 52 56 48 54 45 97 50 101 53 45 55 102 99 98 48 101 56 49 100 51 101 57 34 125], :content-type "application/json", :content-length 184, :id "1df034dd-a181-44d8-976f-9ddbedcd8338", :updated "2025-10-24T15:37:16.997928000Z"}, "4c415410-f73f-46c0-818b-01e3df82c969" {:contents [123 34 110 97 109 101 34 58 34 50 101 54 56 53 100 51 50 45 52 52 54 102 45 52 52 49 99 45 98 51 102 97 45 100 56 102 49 54 48 49 53 52 56 55 53 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 56 51 98 97 52 98 48 56 45 98 48 53 50 45 52 57 54 57 45 98 57 50 100 45 101 101 97 101 50 99 49 56 56 100 49 54 34 125 44 34 49 48 57 97 99 99 51 56 45 57 49 100 56 45 52 97 49 100 45 56 98 56 99 45 102 97 55 55 50 54 100 53 100 97 49 51 34 58 34 102 50 53 49 97 54 49 49 45 55 100 99 53 45 52 99 54 57 45 98 98 53 54 45 98 51 53 56 57 98 57 98 97 55 52 53 34 125], :content-type "application/json", :content-length 184, :id "4c415410-f73f-46c0-818b-01e3df82c969", :updated "2025-10-24T15:37:16.578207000Z"}, "06b86b17-30ef-478d-9814-78dbfef3e475" {:contents [123 34 110 97 109 101 34 58 34 52 99 55 102 99 51 97 53 45 48 100 99 55 45 52 53 52 48 45 98 100 54 50 45 56 99 48 98 56 51 48 97 53 51 49 98 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 101 53 55 49 52 55 102 53 45 57 102 52 50 45 52 52 51 102 45 56 99 57 54 45 56 51 102 48 102 53 53 51 51 55 101 56 34 125 44 34 51 98 53 49 56 99 51 97 45 50 49 100 57 45 52 98 48 97 45 97 57 97 101 45 50 100 100 101 50 98 48 53 57 49 52 57 34 58 34 101 53 101 51 97 51 54 98 45 55 55 57 100 45 52 50 50 54 45 57 53 100 50 45 48 48 48 101 56 50 55 51 55 49 102 99 34 125], :content-type "application/json", :content-length 184, :id "06b86b17-30ef-478d-9814-78dbfef3e475", :updated "2025-10-24T15:37:16.933710000Z"}, "b0aa40b5-c087-44f0-90b6-d11be26c1be2" {:contents [123 34 110 97 109 101 34 58 34 99 48 53 101 98 56 49 53 45 56 53 48 52 45 52 50 97 57 45 56 52 50 52 45 53 102 97 50 53 98 54 56 57 99 101 102 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 51 56 56 99 54 50 99 57 45 98 48 48 100 45 52 55 97 97 45 57 102 55 97 45 99 99 57 57 100 99 57 55 100 49 98 102 34 125 44 34 101 49 51 49 57 49 53 54 45 57 52 53 54 45 52 99 97 50 45 56 49 100 54 45 48 102 101 48 49 97 54 54 98 100 48 49 34 58 34 48 102 98 57 48 56 50 97 45 53 54 100 100 45 52 49 98 53 45 57 51 100 100 45 52 102 54 51 102 49 102 54 51 55 100 50 34 125], :content-type "application/json", :content-length 184, :id "b0aa40b5-c087-44f0-90b6-d11be26c1be2", :updated "2025-10-24T15:37:16.545611000Z"}, "f87c27bf-7ddf-4a3e-af49-8b09c19594de" {:contents [123 34 110 97 109 101 34 58 34 53 48 49 57 54 57 51 100 45 53 48 49 99 45 52 56 101 101 45 98 48 99 98 45 97 48 52 49 49 57 102 56 57 101 53 56 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 100 50 50 101 48 56 97 52 45 53 53 97 102 45 52 52 99 56 45 56 100 56 56 45 57 54 52 54 49 99 100 50 50 98 54 98 34 125 44 34 98 101 54 99 52 98 51 50 45 99 98 102 100 45 52 50 51 97 45 57 48 48 101 45 49 55 52 100 52 48 48 100 51 55 48 56 34 58 34 57 49 99 54 54 50 101 99 45 102 53 48 98 45 52 102 98 50 45 98 101 54 98 45 49 102 99 54 50 56 99 49 57 50 53 101 34 125], :content-type "application/json", :content-length 184, :id "f87c27bf-7ddf-4a3e-af49-8b09c19594de", :updated "2025-10-24T15:37:16.414287000Z"}}}} \ No newline at end of file diff --git a/dev-resources/lrs/after_conf_v2.edn b/dev-resources/lrs/after_conf_v2.edn new file mode 100644 index 00000000..08f1c5a9 --- /dev/null +++ b/dev-resources/lrs/after_conf_v2.edn @@ -0,0 +1 @@ +#:state{:statements {"512acba4-69a0-4299-8848-491c153262cc" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "512acba4-69a0-4299-8848-491c153262cc", "stored" "2025-10-24T15:22:00.817017000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:22:00.817017000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c0e8cdfc-2ae1-4648-b867-61b084a4aca9" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "c0e8cdfc-2ae1-4648-b867-61b084a4aca9", "stored" "2025-10-24T15:22:00.807777000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:22:00.807777000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2f7318fb-3a66-4b72-94b9-f9f775612476" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "2f7318fb-3a66-4b72-94b9-f9f775612476", "stored" "2025-10-24T15:22:00.778971000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:22:00.778971000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1046326e-9ecb-478f-bd65-fe216941547a" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "1046326e-9ecb-478f-bd65-fe216941547a", "stored" "2025-10-24T15:22:00.716072000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:22:00.716072000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4ef3098c-322d-46a3-bde3-d1c6305b5c47" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "4ef3098c-322d-46a3-bde3-d1c6305b5c47", "stored" "2025-10-24T15:22:00.668010000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:22:00.668010000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "915446b6-4fc8-4c1b-b6e0-d81fc17f3066" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/test/unicode/target/fe4d51db-8922-4211-9a6a-ad7eea7b8c97", "display" {"pa-IN" "ਹਾਜ਼ਰ", "sk-SK" "zúčastnil", "ja-JP" "出席した", "en-US" "attended", "en-GB" "attended", "hy-AM" "ներկա է գտնվել", "ru-RU" "участие", "ar-EG" "حضر", "ko-KR" "참석", "is-IS" "sótti", "kn-IN" "ಹಾಜರಿದ್ದರು"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/unicode", "definition" {"name" {"pa-IN" "ਹਾਜ਼ਰ", "en" "Other", "sk-SK" "zúčastnil", "ja-JP" "出席した", "en-US" "attended", "en-GB" "attended", "hy-AM" "ներկա է գտնվել", "ru-RU" "участие", "ar-EG" "حضر", "ko-KR" "참석", "is-IS" "sótti", "kn-IN" "ಹಾಜರಿದ್ದರು"}, "description" {"en-US" "On this map, please mark Franklin, TN", "en-GB" "On this map, please mark Franklin, TN"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "other", "correctResponsesPattern" ["(35.937432,-86.868896)"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:57.270896000Z", "version" "2.0.0", "id" "915446b6-4fc8-4c1b-b6e0-d81fc17f3066", "timestamp" "2025-10-24T15:21:57.270896000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b489e407-ed50-4eca-82dd-9ae9662d7b15" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:57.239077000Z", "version" "2.0.0", "id" "b489e407-ed50-4eca-82dd-9ae9662d7b15", "timestamp" "2025-10-24T15:21:57.239077000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "29661e52-e4f7-460d-b745-f0d91e30c144" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:57.122133000Z", "version" "2.0.0", "id" "29661e52-e4f7-460d-b745-f0d91e30c144", "timestamp" "2025-10-24T15:21:57.122133000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1852ea19-2d2b-4280-8b7e-0cd390338dec" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:57.062651000Z", "version" "2.0.0", "id" "1852ea19-2d2b-4280-8b7e-0cd390338dec", "timestamp" "2025-10-24T15:21:57.062651000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "716bdda8-ffb5-4eb1-815d-92e4005b7cf2" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:56.974494000Z", "version" "2.0.0", "id" "716bdda8-ffb5-4eb1-815d-92e4005b7cf2", "timestamp" "2025-10-24T15:21:56.974494000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "01b55708-a65e-4d92-a572-d75a5cdfedd4" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "01b55708-a65e-4d92-a572-d75a5cdfedd4", "timestamp" "2025-10-24T15:21:56.930807000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:56.930807000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "P4W"}}, "7f17ecd7-33bd-47e9-b17b-2b9b22218afa" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "P3Y"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:56.905373000Z", "version" "2.0.0", "id" "7f17ecd7-33bd-47e9-b17b-2b9b22218afa", "timestamp" "2025-10-24T15:21:56.905373000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "29891788-89af-4ea3-8dc5-5e287eabc9bc" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "29891788-89af-4ea3-8dc5-5e287eabc9bc", "timestamp" "2025-10-24T15:21:56.878791000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:56.878791000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "P3Y1M29DT4H35M59.14S"}}, "f608c789-23ff-425a-a8f7-aebf4915bc8e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT16559.14S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:56.852342000Z", "version" "2.0.0", "id" "f608c789-23ff-425a-a8f7-aebf4915bc8e", "timestamp" "2025-10-24T15:21:56.852342000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "aefae91b-4278-4d93-b6e1-51ac33438226" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "aefae91b-4278-4d93-b6e1-51ac33438226", "timestamp" "2025-10-24T15:21:56.825904000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:56.825904000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT4H35M59.14S"}}, "299daa7b-e585-470a-bd05-d39d876c22cd" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0.1S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:56.759579000Z", "version" "2.0.0", "id" "299daa7b-e585-470a-bd05-d39d876c22cd", "timestamp" "2025-10-24T15:21:56.759579000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7dd2b62a-f4e7-4c45-bf63-16eba370b7ee" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "7dd2b62a-f4e7-4c45-bf63-16eba370b7ee", "timestamp" "2025-10-24T15:21:56.735326000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:56.735326000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0.1S"}}, "5f414c4f-f00c-4e53-b0e1-91f8816f9ba4" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "timestamp" "2008-09-15T15:53:00.601+00:00", "stored" "2025-10-24T15:21:56.690168000Z", "version" "2.0.0", "id" "5f414c4f-f00c-4e53-b0e1-91f8816f9ba4", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "73ab7d4d-f29b-457b-ac40-8d4470d7e6c0" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "timestamp" "2008-09-15T15:53:00.601+00:00", "stored" "2025-10-24T15:21:56.637055000Z", "version" "2.0.0", "id" "73ab7d4d-f29b-457b-ac40-8d4470d7e6c0", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "a12d6ebd-66a9-4883-94de-e766167e7219" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" {}}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "a12d6ebd-66a9-4883-94de-e766167e7219", "stored" "2025-10-24T15:21:56.534985000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:56.534985000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "67868627-4140-44c8-8f42-30b52b8a6231" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" nil}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "67868627-4140-44c8-8f42-30b52b8a6231", "stored" "2025-10-24T15:21:56.509400000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:56.509400000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c54f7d67-a333-444a-8f32-fb6d3664f9b0" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" ""}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "c54f7d67-a333-444a-8f32-fb6d3664f9b0", "stored" "2025-10-24T15:21:56.483746000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:56.483746000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "41c7d1b1-3a91-47be-a514-d8df8677b731" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "41c7d1b1-3a91-47be-a514-d8df8677b731", "stored" "2025-10-24T15:21:56.458121000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:56.458121000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "456ecc10-bfed-4552-b94d-214b3e88b5f2" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" {}}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "456ecc10-bfed-4552-b94d-214b3e88b5f2", "stored" "2025-10-24T15:21:56.432294000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:56.432294000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "a256b55f-538b-4339-8fc7-c132cd0eab65" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" nil}}}}, "id" "a256b55f-538b-4339-8fc7-c132cd0eab65", "stored" "2025-10-24T15:21:56.406758000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:56.406758000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c8505692-c64b-4d14-9466-7f9f1e22b0d6" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" ""}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "c8505692-c64b-4d14-9466-7f9f1e22b0d6", "stored" "2025-10-24T15:21:56.380974000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:56.380974000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "cd28ef9e-0252-45d5-9ade-9847eb6369cf" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "cd28ef9e-0252-45d5-9ade-9847eb6369cf", "stored" "2025-10-24T15:21:56.354209000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:56.354209000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "a7898f4f-7852-4e66-94f5-0bb310ad8808" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" {}}}}}, "id" "a7898f4f-7852-4e66-94f5-0bb310ad8808", "stored" "2025-10-24T15:21:56.329286000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:56.329286000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "69452e1f-a94c-4669-ac82-456ce5d9d813" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" nil}}}}, "id" "69452e1f-a94c-4669-ac82-456ce5d9d813", "stored" "2025-10-24T15:21:56.303850000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:56.303850000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "754ffeb2-c839-443b-8385-d10baa1db404" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" ""}}}}, "id" "754ffeb2-c839-443b-8385-d10baa1db404", "stored" "2025-10-24T15:21:56.278350000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:56.278350000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f656ead6-c27d-4487-9030-9cd1a8f61082" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {}}}}, "id" "f656ead6-c27d-4487-9030-9cd1a8f61082", "stored" "2025-10-24T15:21:56.253069000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:56.253069000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "fdc490d2-a25c-4aaa-b272-26b5f05354c6" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "fdc490d2-a25c-4aaa-b272-26b5f05354c6", "timestamp" "2025-10-24T15:21:56.227163000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" {}}}, "version" "2.0.0", "stored" "2025-10-24T15:21:56.227163000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "55a80d6a-3293-442a-9ad1-a933c5cf57bf" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "55a80d6a-3293-442a-9ad1-a933c5cf57bf", "timestamp" "2025-10-24T15:21:56.201985000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" nil}}, "version" "2.0.0", "stored" "2025-10-24T15:21:56.201985000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "12e6209f-aa4e-4df9-9964-4e00f23e147e" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "12e6209f-aa4e-4df9-9964-4e00f23e147e", "timestamp" "2025-10-24T15:21:56.176917000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" ""}}, "version" "2.0.0", "stored" "2025-10-24T15:21:56.176917000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "2e5966eb-4bcf-4707-869c-fd9cb2754cdf" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "2e5966eb-4bcf-4707-869c-fd9cb2754cdf", "timestamp" "2025-10-24T15:21:56.151434000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {}}, "version" "2.0.0", "stored" "2025-10-24T15:21:56.151434000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "99c4a5b6-2791-4664-b90b-9ce747d47123" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "99c4a5b6-2791-4664-b90b-9ce747d47123", "timestamp" "2025-10-24T15:21:56.126500000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:56.126500000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" {}}}}, "dd428ace-7fc9-4810-b6ab-5e3ebf55cd8e" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "dd428ace-7fc9-4810-b6ab-5e3ebf55cd8e", "timestamp" "2025-10-24T15:21:56.102075000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:56.102075000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" nil}}}, "15305871-2ff2-442d-ba7f-97e04ce727bf" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "15305871-2ff2-442d-ba7f-97e04ce727bf", "timestamp" "2025-10-24T15:21:56.077672000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:56.077672000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" ""}}}, "b0ad1859-13cf-4c82-a0fe-5c673e567c1e" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "b0ad1859-13cf-4c82-a0fe-5c673e567c1e", "timestamp" "2025-10-24T15:21:56.052164000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:56.052164000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {}}}, "01719d7f-40ea-43a1-8298-c0a9aeb9f7d2" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" {}}}}, "id" "01719d7f-40ea-43a1-8298-c0a9aeb9f7d2", "stored" "2025-10-24T15:21:56.023993000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:56.023993000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "546f1bf3-a7a2-44c5-a1ea-4ceed80a7e95" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" nil}}}, "id" "546f1bf3-a7a2-44c5-a1ea-4ceed80a7e95", "stored" "2025-10-24T15:21:55.998761000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:55.998761000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9af80437-e725-4368-9340-5bef85ff1b0d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" ""}}}, "id" "9af80437-e725-4368-9340-5bef85ff1b0d", "stored" "2025-10-24T15:21:55.973467000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:55.973467000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "a9dafb06-b267-4240-ac14-fc0b5a4bca28" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {}}}, "id" "a9dafb06-b267-4240-ac14-fc0b5a4bca28", "stored" "2025-10-24T15:21:55.949182000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:55.949182000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2f451f22-6784-47f3-96ce-dabfbc7b3418" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" {}}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:55.889887000Z", "version" "2.0.0", "id" "2f451f22-6784-47f3-96ce-dabfbc7b3418", "timestamp" "2025-10-24T15:21:55.889887000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "093aea54-6b79-4bab-be2d-aa8cbab05d64" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" nil}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:55.865701000Z", "version" "2.0.0", "id" "093aea54-6b79-4bab-be2d-aa8cbab05d64", "timestamp" "2025-10-24T15:21:55.865701000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d4b8ed0e-625d-4883-a7ed-dccd8f6bc2c9" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" ""}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:55.841731000Z", "version" "2.0.0", "id" "d4b8ed0e-625d-4883-a7ed-dccd8f6bc2c9", "timestamp" "2025-10-24T15:21:55.841731000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7f57bfb3-78b1-437b-adeb-8aaf8d6dd83e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:55.816911000Z", "version" "2.0.0", "id" "7f57bfb3-78b1-437b-adeb-8aaf8d6dd83e", "timestamp" "2025-10-24T15:21:55.816911000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5b6dd782-634e-4c7e-9f05-46d95da43917" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" {}}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:55.791754000Z", "version" "2.0.0", "id" "5b6dd782-634e-4c7e-9f05-46d95da43917", "timestamp" "2025-10-24T15:21:55.791754000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "434b12aa-6f00-4bbb-bf1c-8dd12c4d1a57" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" nil}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:55.767377000Z", "version" "2.0.0", "id" "434b12aa-6f00-4bbb-bf1c-8dd12c4d1a57", "timestamp" "2025-10-24T15:21:55.767377000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "67de659f-2a56-4f3d-8234-69522a6afec0" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" ""}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:55.743353000Z", "version" "2.0.0", "id" "67de659f-2a56-4f3d-8234-69522a6afec0", "timestamp" "2025-10-24T15:21:55.743353000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0791830e-0b12-4826-8f38-e5704011bfd5" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:55.719584000Z", "version" "2.0.0", "id" "0791830e-0b12-4826-8f38-e5704011bfd5", "timestamp" "2025-10-24T15:21:55.719584000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "382726ab-e256-424f-a381-5e5a0f947fbd" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" {}}}}}, "stored" "2025-10-24T15:21:55.695746000Z", "version" "2.0.0", "id" "382726ab-e256-424f-a381-5e5a0f947fbd", "timestamp" "2025-10-24T15:21:55.695746000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5167736e-2cd1-45bd-b0f9-16c8d86cf387" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" nil}}}}, "stored" "2025-10-24T15:21:55.671691000Z", "version" "2.0.0", "id" "5167736e-2cd1-45bd-b0f9-16c8d86cf387", "timestamp" "2025-10-24T15:21:55.671691000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7ce6fc48-4939-4525-84ee-70e67c0ade9e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" ""}}}}, "stored" "2025-10-24T15:21:55.646122000Z", "version" "2.0.0", "id" "7ce6fc48-4939-4525-84ee-70e67c0ade9e", "timestamp" "2025-10-24T15:21:55.646122000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e3c35cfd-cb75-4772-b176-fc245becfe60" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {}}}}, "stored" "2025-10-24T15:21:55.622479000Z", "version" "2.0.0", "id" "e3c35cfd-cb75-4772-b176-fc245becfe60", "timestamp" "2025-10-24T15:21:55.622479000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "dde66509-7019-410f-a3e3-456d06ab1069" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "dde66509-7019-410f-a3e3-456d06ab1069", "timestamp" "2025-10-24T15:21:55.599773000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" {}}}, "version" "2.0.0", "stored" "2025-10-24T15:21:55.599773000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "9cd6653a-4557-42e5-ba6d-f6923f2b4775" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "9cd6653a-4557-42e5-ba6d-f6923f2b4775", "timestamp" "2025-10-24T15:21:55.574700000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" nil}}, "version" "2.0.0", "stored" "2025-10-24T15:21:55.574700000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "6c9a0d5b-33c2-4b8c-abde-3bf3531f5302" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "6c9a0d5b-33c2-4b8c-abde-3bf3531f5302", "timestamp" "2025-10-24T15:21:55.551179000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/ex" ""}}, "version" "2.0.0", "stored" "2025-10-24T15:21:55.551179000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "a6398cd2-eea7-4232-8f5c-61a6c28b8656" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "a6398cd2-eea7-4232-8f5c-61a6c28b8656", "timestamp" "2025-10-24T15:21:55.527516000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {}}, "version" "2.0.0", "stored" "2025-10-24T15:21:55.527516000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "48965e6e-d1e2-4eba-83ef-65587b859d27" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "48965e6e-d1e2-4eba-83ef-65587b859d27", "timestamp" "2025-10-24T15:21:55.504049000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:55.504049000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" {}}}}, "10b6b10d-fcab-4e14-a933-717bd7d94963" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "10b6b10d-fcab-4e14-a933-717bd7d94963", "timestamp" "2025-10-24T15:21:55.480562000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:55.480562000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" nil}}}, "657f50b2-4502-4d20-aaf1-5fdd9cfc4c50" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "657f50b2-4502-4d20-aaf1-5fdd9cfc4c50", "timestamp" "2025-10-24T15:21:55.455972000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:55.455972000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/ex" ""}}}, "91d36f29-481f-4e6e-b87f-93fb2091f0c4" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "91d36f29-481f-4e6e-b87f-93fb2091f0c4", "timestamp" "2025-10-24T15:21:55.432305000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:55.432305000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {}}}, "f98907b6-0bff-4414-b0f7-bcb8aa62eb90" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" {}}}}, "stored" "2025-10-24T15:21:55.407104000Z", "version" "2.0.0", "id" "f98907b6-0bff-4414-b0f7-bcb8aa62eb90", "timestamp" "2025-10-24T15:21:55.407104000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "a8741919-eaf9-436e-8111-55cc20eeb28c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" nil}}}, "stored" "2025-10-24T15:21:55.383341000Z", "version" "2.0.0", "id" "a8741919-eaf9-436e-8111-55cc20eeb28c", "timestamp" "2025-10-24T15:21:55.383341000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f1f9bc07-355d-4cde-98bd-028eef1671b3" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/ex" ""}}}, "stored" "2025-10-24T15:21:55.359322000Z", "version" "2.0.0", "id" "f1f9bc07-355d-4cde-98bd-028eef1671b3", "timestamp" "2025-10-24T15:21:55.359322000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0ed35ae0-ba7f-485e-af3f-f82a51bcce64" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {}}}, "stored" "2025-10-24T15:21:55.334697000Z", "version" "2.0.0", "id" "0ed35ae0-ba7f-485e-af3f-f82a51bcce64", "timestamp" "2025-10-24T15:21:55.334697000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "dea2dc3b-7a3b-41f2-a85a-cac27dc34e4d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" "valid"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:55.310682000Z", "version" "2.0.0", "id" "dea2dc3b-7a3b-41f2-a85a-cac27dc34e4d", "timestamp" "2025-10-24T15:21:55.310682000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d66e4b02-6eb1-49b0-9616-a71c4b7e289f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" {"key" "valid"}}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:55.286778000Z", "version" "2.0.0", "id" "d66e4b02-6eb1-49b0-9616-a71c4b7e289f", "timestamp" "2025-10-24T15:21:55.286778000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e8a6b021-6b11-4511-9ebf-a591ea53a37c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" 12345}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:55.263507000Z", "version" "2.0.0", "id" "e8a6b021-6b11-4511-9ebf-a591ea53a37c", "timestamp" "2025-10-24T15:21:55.263507000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "824d9c89-12cd-4db3-8694-134ff2efba4b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" true}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:55.239953000Z", "version" "2.0.0", "id" "824d9c89-12cd-4db3-8694-134ff2efba4b", "timestamp" "2025-10-24T15:21:55.239953000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ede86a37-c76d-4f5e-9791-2e90b52912c2" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" "valid"}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:55.216835000Z", "version" "2.0.0", "id" "ede86a37-c76d-4f5e-9791-2e90b52912c2", "timestamp" "2025-10-24T15:21:55.216835000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "55e31d5d-97c2-4c35-895b-229d427d0cb7" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" {"key" "valid"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:55.193654000Z", "version" "2.0.0", "id" "55e31d5d-97c2-4c35-895b-229d427d0cb7", "timestamp" "2025-10-24T15:21:55.193654000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "3389a400-29da-4f15-a4fa-d7b884b53e08" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" 12345}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:55.169985000Z", "version" "2.0.0", "id" "3389a400-29da-4f15-a4fa-d7b884b53e08", "timestamp" "2025-10-24T15:21:55.169985000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0d642712-5ca9-4feb-87b9-4c130f2626d7" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" true}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:55.142853000Z", "version" "2.0.0", "id" "0d642712-5ca9-4feb-87b9-4c130f2626d7", "timestamp" "2025-10-24T15:21:55.142853000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7e32a200-b09b-499c-9743-7cf2f087ca83" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" "valid"}}}}, "stored" "2025-10-24T15:21:55.119996000Z", "version" "2.0.0", "id" "7e32a200-b09b-499c-9743-7cf2f087ca83", "timestamp" "2025-10-24T15:21:55.119996000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9786451a-6aa7-473f-ada5-14f52252aa66" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" {"key" "valid"}}}}}, "stored" "2025-10-24T15:21:55.098944000Z", "version" "2.0.0", "id" "9786451a-6aa7-473f-ada5-14f52252aa66", "timestamp" "2025-10-24T15:21:55.098944000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "97ff40c0-f9d5-4875-834f-5e2f5643dd7b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" 12345}}}}, "stored" "2025-10-24T15:21:55.076194000Z", "version" "2.0.0", "id" "97ff40c0-f9d5-4875-834f-5e2f5643dd7b", "timestamp" "2025-10-24T15:21:55.076194000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1148b551-ef17-40ab-894b-e8a0f4fb821e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" true}}}}, "stored" "2025-10-24T15:21:55.052399000Z", "version" "2.0.0", "id" "1148b551-ef17-40ab-894b-e8a0f4fb821e", "timestamp" "2025-10-24T15:21:55.052399000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "caedadb1-74c9-4d1b-b89c-38e9876715ed" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "caedadb1-74c9-4d1b-b89c-38e9876715ed", "timestamp" "2025-10-24T15:21:55.029212000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" "valid"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:55.029212000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "0dce5b53-a88a-4f7c-bbe9-f0f407ae5332" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "0dce5b53-a88a-4f7c-bbe9-f0f407ae5332", "timestamp" "2025-10-24T15:21:55.006455000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" {"key" "valid"}}}, "version" "2.0.0", "stored" "2025-10-24T15:21:55.006455000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "a97efaac-44f9-4c5b-8593-b1c13e5080da" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "a97efaac-44f9-4c5b-8593-b1c13e5080da", "timestamp" "2025-10-24T15:21:54.983536000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" 12345}}, "version" "2.0.0", "stored" "2025-10-24T15:21:54.983536000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "cd13b57e-3dac-49a3-a619-b7feeb48af76" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "cd13b57e-3dac-49a3-a619-b7feeb48af76", "timestamp" "2025-10-24T15:21:54.960650000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" true}}, "version" "2.0.0", "stored" "2025-10-24T15:21:54.960650000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "251f9bf2-e3b9-4f7e-b6e7-b88d703b1bd9" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "251f9bf2-e3b9-4f7e-b6e7-b88d703b1bd9", "timestamp" "2025-10-24T15:21:54.937954000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:54.937954000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" "valid"}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "b2bd99b7-e1b8-4b36-9cba-e10d1cf1e28a" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "b2bd99b7-e1b8-4b36-9cba-e10d1cf1e28a", "timestamp" "2025-10-24T15:21:54.915769000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:54.915769000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" {"key" "valid"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "5641a8dc-46ee-4979-9e03-838d6d582b3b" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "5641a8dc-46ee-4979-9e03-838d6d582b3b", "timestamp" "2025-10-24T15:21:54.892801000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:54.892801000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" 12345}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "f9c2a36f-dab0-4102-a7bf-3ccbe430a0d0" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "f9c2a36f-dab0-4102-a7bf-3ccbe430a0d0", "timestamp" "2025-10-24T15:21:54.870000000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:54.870000000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" true}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "73b89bea-816b-411b-9564-5aae3d73b3c0" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" "valid"}}}, "stored" "2025-10-24T15:21:54.845131000Z", "version" "2.0.0", "id" "73b89bea-816b-411b-9564-5aae3d73b3c0", "timestamp" "2025-10-24T15:21:54.845131000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "6fa4eddc-6653-4bd7-b3da-2ac35dee7445" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" {"key" "valid"}}}}, "stored" "2025-10-24T15:21:54.821602000Z", "version" "2.0.0", "id" "6fa4eddc-6653-4bd7-b3da-2ac35dee7445", "timestamp" "2025-10-24T15:21:54.821602000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e2dcee95-c4a6-4793-8a95-9e7fbd5aa618" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" 12345}}}, "stored" "2025-10-24T15:21:54.799321000Z", "version" "2.0.0", "id" "e2dcee95-c4a6-4793-8a95-9e7fbd5aa618", "timestamp" "2025-10-24T15:21:54.799321000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "70360874-08cb-431c-9ba3-ceea6680dd27" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/ex" true}}}, "stored" "2025-10-24T15:21:54.775964000Z", "version" "2.0.0", "id" "70360874-08cb-431c-9ba3-ceea6680dd27", "timestamp" "2025-10-24T15:21:54.775964000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "a0756587-71ae-47c0-8eec-453314ed03a8" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "a0756587-71ae-47c0-8eec-453314ed03a8", "timestamp" "2025-10-24T15:21:54.750681000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:54.750681000Z", "attachments" [{"usageType" "http://adlnet.gov/expapi/attachments/signature", "display" {"en-US" "Signed by the Test Suite"}, "description" {"en-US" "Signed by the Test Suite"}, "contentType" "application/octet-stream", "length" 796, "sha2" "6f371b137db09a06185694f99b6c767be625ad80074b8df47435d6a2bebce219"}], "actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}}, "5ddaa620-5223-43f3-aabb-8bc3f1e2cb90" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "5ddaa620-5223-43f3-aabb-8bc3f1e2cb90", "timestamp" "2025-10-24T15:21:54.728364000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:54.728364000Z", "attachments" [{"usageType" "http://adlnet.gov/expapi/attachments/signature", "display" {"en-US" "Signed by the Test Suite"}, "description" {"en-US" "Signed by the Test Suite"}, "contentType" "application/octet-stream", "length" 796, "sha2" "7d82cf41ee48cdd5f6765a28f3da3a865773148f2f8b07bd07433e8bb9efca90"}], "actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}}, "6e2af1d0-b56a-405f-ae2f-9860fcf54fd5" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "6e2af1d0-b56a-405f-ae2f-9860fcf54fd5", "timestamp" "2025-10-24T15:21:54.702008000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:54.702008000Z", "attachments" [{"usageType" "http://adlnet.gov/expapi/attachments/signature", "display" {"en-US" "Signed by the Test Suite"}, "description" {"en-US" "Signed by the Test Suite"}, "contentType" "application/octet-stream", "length" 796, "sha2" "a93a74a831eb58834d0a47744bc13d063599b23a51ed3b74cce63e10d6ac6165"}], "actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}}, "f76baa26-fcb7-4a17-9fd6-152153e403c7" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:d10214bc-e768-4f46-b523-16bab4b61e61@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended18124a37-0a07-4690-a1a6-97f4f1238c31", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:1a9666d5-300e-4304-837d-9a8782917ee8@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported9d237e61-1b97-4438-90f0-9160fd768216", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/sub", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:sub@adlnet.gov"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/3453411357d21-5130-49ab-91e2-a95320019b53"}}, "stored" "2025-10-24T15:21:53.575159000Z", "version" "2.0.0", "id" "f76baa26-fcb7-4a17-9fd6-152153e403c7", "timestamp" "2025-10-24T15:21:53.575159000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "49c542ed-fac5-410e-ad18-0d4c04021ee3" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/345341b571e06-2e8b-4a41-97e1-eeffbd6c8032"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attendedf224c578-4f21-4505-9b0a-590c926b2140", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "49c542ed-fac5-410e-ad18-0d4c04021ee3", "timestamp" "2025-10-24T15:21:53.532627000Z", "context" {"registration" "70c349ed-9225-4c64-a6d3-2ddd501af107", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/pri", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:af9d7b2a-bb7e-416f-bdc2-5cd09e25fe68@adlnet.gov"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:53.532627000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:2a7ee93c-f315-46e4-bc55-c2497ebb1f93@adlnet.gov"}}, "cdfb8d86-ef9d-43e0-b8bd-152e43ad8157" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:52.453066001Z", "version" "2.0.0", "id" "cdfb8d86-ef9d-43e0-b8bd-152e43ad8157", "timestamp" "2025-10-24T15:21:52.453066001Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1b5af7ff-9431-4d9e-a617-4e123c6bad9d" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:52.453066000Z", "version" "2.0.0", "id" "1b5af7ff-9431-4d9e-a617-4e123c6bad9d", "timestamp" "2025-10-24T15:21:52.453066000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4b9c2316-8bc1-467c-a6cb-b232890a4e3f" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/test/more/target/two", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "4b9c2316-8bc1-467c-a6cb-b232890a4e3f", "stored" "2025-10-24T15:21:52.392974001Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:52.392974001Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ab976ea3-d509-4eb6-871d-6421f7cdd5f2" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/test/more/target/one", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "ab976ea3-d509-4eb6-871d-6421f7cdd5f2", "stored" "2025-10-24T15:21:52.392974000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:52.392974000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b4bb9cf9-92e2-4657-8157-44de471456d1" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:51.323196001Z", "version" "2.0.0", "id" "b4bb9cf9-92e2-4657-8157-44de471456d1", "timestamp" "2025-10-24T15:21:51.323196001Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "733d65b5-f8fe-4655-8c0e-35340eddeaea" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:51.323196000Z", "version" "2.0.0", "id" "733d65b5-f8fe-4655-8c0e-35340eddeaea", "timestamp" "2025-10-24T15:21:51.323196000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b7205270-4071-4395-a8af-62745ccd3662" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:51.289909000Z", "version" "2.0.0", "id" "b7205270-4071-4395-a8af-62745ccd3662", "timestamp" "2025-10-24T15:21:51.289909000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "286a07f9-b1b4-46ea-97ed-7f062c4950dd" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:51.268347000Z", "version" "2.0.0", "id" "286a07f9-b1b4-46ea-97ed-7f062c4950dd", "timestamp" "2025-10-24T15:21:51.268347000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "790413e0-5043-4129-927e-8420f79efa96" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "790413e0-5043-4129-927e-8420f79efa96", "timestamp" "2025-10-24T15:21:51.245723000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:51.245723000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "description" {"en-US" "A test attachment (description)"}, "contentType" "text/plain; charset=ascii", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "fileUrl" "http://over.there.com/file.txt"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "9f0a2210-f37e-42be-b389-def5c2bc4335" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:51.223856000Z", "version" "2.0.0", "id" "9f0a2210-f37e-42be-b389-def5c2bc4335", "timestamp" "2025-10-24T15:21:51.223856000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "92c5d316-52f0-4619-84b2-a05349ad91cf" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:51.202103000Z", "version" "2.0.0", "id" "92c5d316-52f0-4619-84b2-a05349ad91cf", "timestamp" "2025-10-24T15:21:51.202103000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5d3128e6-cd11-4c79-9541-ef5240331ec1" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:51.180209000Z", "version" "2.0.0", "id" "5d3128e6-cd11-4c79-9541-ef5240331ec1", "timestamp" "2025-10-24T15:21:51.180209000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8512ccfe-3e74-423e-aa8e-3db101ee7269" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:51.158077000Z", "version" "2.0.0", "id" "8512ccfe-3e74-423e-aa8e-3db101ee7269", "timestamp" "2025-10-24T15:21:51.158077000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "044904e0-e42f-46dd-be7f-3945cddc8ba3" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:51.138175000Z", "version" "2.0.0", "id" "044904e0-e42f-46dd-be7f-3945cddc8ba3", "timestamp" "2025-10-24T15:21:51.138175000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "74e8fedd-d1a4-4e45-9d9d-bdc39da0105b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:51.116414000Z", "version" "2.0.0", "id" "74e8fedd-d1a4-4e45-9d9d-bdc39da0105b", "timestamp" "2025-10-24T15:21:51.116414000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "3264a036-be99-42b4-ba1a-67bb9a852a3c" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "3264a036-be99-42b4-ba1a-67bb9a852a3c", "timestamp" "2025-10-24T15:21:51.094206000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "2.0.0", "stored" "2025-10-24T15:21:51.094206000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "581133a1-acf1-4deb-ae3c-bb870ebf3d3f" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "581133a1-acf1-4deb-ae3c-bb870ebf3d3f", "timestamp" "2025-10-24T15:21:51.072217000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "2.0.0", "stored" "2025-10-24T15:21:51.072217000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "5a1e778a-6b3c-4006-ad44-260f7cd95ace" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "5a1e778a-6b3c-4006-ad44-260f7cd95ace", "timestamp" "2025-10-24T15:21:51.049133000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "2.0.0", "stored" "2025-10-24T15:21:51.049133000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "b2e764c8-08ca-42b6-bfc3-1448597ce85b" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "b2e764c8-08ca-42b6-bfc3-1448597ce85b", "timestamp" "2025-10-24T15:21:51.027865000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "2.0.0", "stored" "2025-10-24T15:21:51.027865000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "81785054-5baf-4b67-b996-abfcd116b353" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:51.006726000Z", "version" "2.0.0", "id" "81785054-5baf-4b67-b996-abfcd116b353", "timestamp" "2025-10-24T15:21:51.006726000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "887c92fe-0946-4e8a-b158-e170bd8546a1" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "887c92fe-0946-4e8a-b158-e170bd8546a1", "timestamp" "2025-10-24T15:21:50.986025000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "version" "2.0.0", "stored" "2025-10-24T15:21:50.986025000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "d0e46d70-1d88-4e0f-a8c0-8dfca3b94ff8" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:50.967122000Z", "version" "2.0.0", "id" "d0e46d70-1d88-4e0f-a8c0-8dfca3b94ff8", "timestamp" "2025-10-24T15:21:50.967122000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "989aa9fa-0b41-4248-a1af-da9af1cac517" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "989aa9fa-0b41-4248-a1af-da9af1cac517", "timestamp" "2025-10-24T15:21:50.946496000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:50.946496000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "e48b733d-4704-49c7-b401-e0a3fc1298fd" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "StatementRef", "id" "8f87ccde-bb56-4c2e-ab83-44982ef22df0"}}, "stored" "2025-10-24T15:21:50.924195000Z", "version" "2.0.0", "id" "e48b733d-4704-49c7-b401-e0a3fc1298fd", "timestamp" "2025-10-24T15:21:50.924195000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "10ad138b-4e4b-4062-9986-cee2cc63d54f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "StatementRef", "id" "8f87ccde-bb56-4c2e-ab83-44982ef22df0"}, "stored" "2025-10-24T15:21:50.903004000Z", "version" "2.0.0", "id" "10ad138b-4e4b-4062-9986-cee2cc63d54f", "timestamp" "2025-10-24T15:21:50.903004000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c98da0b5-a2cc-4dff-9415-53947bfb0eb9" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:50.882044000Z", "version" "2.0.0", "id" "c98da0b5-a2cc-4dff-9415-53947bfb0eb9", "timestamp" "2025-10-24T15:21:50.882044000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e9be3869-e03c-4f10-8c1f-558307c912cb" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"interactionType" "fill-in", "correctResponsesPattern" ["Bob\"s your uncle"]}}}, "stored" "2025-10-24T15:21:50.860907000Z", "version" "2.0.0", "id" "e9be3869-e03c-4f10-8c1f-558307c912cb", "timestamp" "2025-10-24T15:21:50.860907000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d657efd2-7709-4c41-8e46-1c80acf7584a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:50.838449000Z", "version" "2.0.0", "id" "d657efd2-7709-4c41-8e46-1c80acf7584a", "timestamp" "2025-10-24T15:21:50.838449000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c44e77ff-8828-486d-ad32-f2801c8a75ac" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"moreInfo" "http://virtualmeeting.example.com/345256"}}}, "stored" "2025-10-24T15:21:50.815919000Z", "version" "2.0.0", "id" "c44e77ff-8828-486d-ad32-f2801c8a75ac", "timestamp" "2025-10-24T15:21:50.815919000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e3e1223e-16e2-41ff-8583-c60a8086e674" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting"}}}, "stored" "2025-10-24T15:21:50.795373000Z", "version" "2.0.0", "id" "e3e1223e-16e2-41ff-8583-c60a8086e674", "timestamp" "2025-10-24T15:21:50.795373000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f21766c5-c849-4a28-a118-916d3ec02dcf" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}}}}, "stored" "2025-10-24T15:21:50.774254000Z", "version" "2.0.0", "id" "f21766c5-c849-4a28-a118-916d3ec02dcf", "timestamp" "2025-10-24T15:21:50.774254000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "09bcf878-04a1-4e48-80f8-dfe6c0fcd02e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}}}}, "stored" "2025-10-24T15:21:50.754275000Z", "version" "2.0.0", "id" "09bcf878-04a1-4e48-80f8-dfe6c0fcd02e", "timestamp" "2025-10-24T15:21:50.754275000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b5bcf59c-7496-45a9-8f09-fddb6e7a6b5f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {}}}, "stored" "2025-10-24T15:21:50.734622000Z", "version" "2.0.0", "id" "b5bcf59c-7496-45a9-8f09-fddb6e7a6b5f", "timestamp" "2025-10-24T15:21:50.734622000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "95cf7419-43d9-42b1-9f55-2bdc0193ebbd" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"interactionType" "fill-in", "correctResponsesPattern" ["Bob\"s your uncle"]}}, "stored" "2025-10-24T15:21:50.712976000Z", "version" "2.0.0", "id" "95cf7419-43d9-42b1-9f55-2bdc0193ebbd", "timestamp" "2025-10-24T15:21:50.712976000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "484a620d-bd31-457b-81c1-61547190f142" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:50.692448000Z", "version" "2.0.0", "id" "484a620d-bd31-457b-81c1-61547190f142", "timestamp" "2025-10-24T15:21:50.692448000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "fd9cb566-a830-4070-93c1-1af267cd98e8" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"moreInfo" "http://virtualmeeting.example.com/345256"}}, "stored" "2025-10-24T15:21:50.671263000Z", "version" "2.0.0", "id" "fd9cb566-a830-4070-93c1-1af267cd98e8", "timestamp" "2025-10-24T15:21:50.671263000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ed763a84-c771-42c4-9a6d-295ff32213b8" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting"}}, "stored" "2025-10-24T15:21:50.649283000Z", "version" "2.0.0", "id" "ed763a84-c771-42c4-9a6d-295ff32213b8", "timestamp" "2025-10-24T15:21:50.649283000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2b180670-4242-40ed-aedc-9ed369cc074d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}}}, "stored" "2025-10-24T15:21:50.628972000Z", "version" "2.0.0", "id" "2b180670-4242-40ed-aedc-9ed369cc074d", "timestamp" "2025-10-24T15:21:50.628972000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d92dd11f-608a-4f5a-8b54-5d1c3be3e31e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}}}, "stored" "2025-10-24T15:21:50.609576000Z", "version" "2.0.0", "id" "d92dd11f-608a-4f5a-8b54-5d1c3be3e31e", "timestamp" "2025-10-24T15:21:50.609576000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d2c95040-8b97-46d0-9784-8940eb820146" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {}}, "stored" "2025-10-24T15:21:50.586019000Z", "version" "2.0.0", "id" "d2c95040-8b97-46d0-9784-8940eb820146", "timestamp" "2025-10-24T15:21:50.586019000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0f972c49-9d54-41db-9e9a-4adf00334223" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Sequencing"}, "description" {"en" "Order players by their pong ladder position:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "sequencing", "correctResponsesPattern" ["tim[,]mike[,]ells[,]ben"], "choices" [{"id" "tim", "description" {"en-US" "Tim"}} {"id" "ben", "description" {"en-US" "Ben"}} {"id" "ells", "description" {"en-US" "Ells"}} {"id" "mike", "description" {"en-US" "Mike"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:50.565270000Z", "version" "2.0.0", "id" "0f972c49-9d54-41db-9e9a-4adf00334223", "timestamp" "2025-10-24T15:21:50.565270000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0d460457-8588-425f-8f39-e00891b636ab" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Performance"}, "description" {"en" "This interaction measures performance over a day of RS sports:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "performance", "correctResponsesPattern" ["pong[.]1:[,]dg[.]:10[,]lunch[.]"], "steps" [{"id" "pong", "description" {"en-US" "Net pong matches won"}} {"id" "dg", "description" {"en-US" "Strokes over par in disc golf at Liberty"}} {"id" "lunch", "description" {"en-US" "Lunch having been eaten"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:50.543886000Z", "version" "2.0.0", "id" "0d460457-8588-425f-8f39-e00891b636ab", "timestamp" "2025-10-24T15:21:50.543886000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "152ebf94-e090-4e0d-975c-a8e9cc46ab12" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "matching", "name" {"en" "Matching"}, "source" [{"id" "ben", "description" {"en-US" "Ben"}} {"id" "chris", "description" {"en-US" "Chris"}} {"id" "troy", "description" {"en-US" "Troy"}} {"id" "freddie", "description" {"en-US" "Freddie"}}], "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "target" [{"id" "1", "description" {"en-US" "Swift Kick in the Grass"}} {"id" "2", "description" {"en-US" "We got Runs"}} {"id" "3", "description" {"en-US" "Duck"}} {"id" "4", "description" {"en-US" "Van Delay Industries"}}], "correctResponsesPattern" ["ben[.]3[,]chris[.]2[,]troy[.]4[,]freddie[.]1"], "description" {"en" "Match these people to their kickball team:"}}}}, "stored" "2025-10-24T15:21:50.523252000Z", "version" "2.0.0", "id" "152ebf94-e090-4e0d-975c-a8e9cc46ab12", "timestamp" "2025-10-24T15:21:50.523252000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "20914371-53fc-4507-9a6d-60d0ef8cdbce" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Likert"}, "description" {"en" "How awesome is Experience API?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "likert", "correctResponsesPattern" ["likert_3"], "scale" [{"id" "likert_0", "description" {"en-US" "It's OK"}} {"id" "likert_1", "description" {"en-US" "It's Pretty Cool"}} {"id" "likert_2", "description" {"en-US" "It's Damn Cool"}} {"id" "likert_3", "description" {"en-US" "It's Gonna Change the World"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:50.503145000Z", "version" "2.0.0", "id" "20914371-53fc-4507-9a6d-60d0ef8cdbce", "timestamp" "2025-10-24T15:21:50.503145000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "850f7f66-6053-4725-8622-a245de9a45b6" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Choice"}, "description" {"en" "Which of these prototypes are available at the beta site?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "choice", "correctResponsesPattern" ["golf[,]tetris"], "choices" [{"id" "golf", "description" {"en-US" "Golf Example"}} {"id" "facebook", "description" {"en-US" "Facebook App"}} {"id" "tetris", "description" {"en-US" "Tetris Example"}} {"id" "scrabble", "description" {"en-US" "Scrabble Example"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:50.481855000Z", "version" "2.0.0", "id" "850f7f66-6053-4725-8622-a245de9a45b6", "timestamp" "2025-10-24T15:21:50.481855000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "afca7d11-67aa-414a-a226-36e3713d1e71" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "True-False"}, "description" {"en" "Does the xAPI include the concept of statements?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "true-false", "correctResponsesPattern" ["true"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:50.462167000Z", "version" "2.0.0", "id" "afca7d11-67aa-414a-a226-36e3713d1e71", "timestamp" "2025-10-24T15:21:50.462167000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "92704674-bd6a-4c37-af70-0c25bbcd98f0" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Sequencing"}, "description" {"en" "Order players by their pong ladder position:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "sequencing", "correctResponsesPattern" ["tim[,]mike[,]ells[,]ben"], "choices" [{"id" "tim", "description" {"en-US" "Tim"}} {"id" "ben", "description" {"en-US" "Ben"}} {"id" "ells", "description" {"en-US" "Ells"}} {"id" "mike", "description" {"en-US" "Mike"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:50.442194000Z", "version" "2.0.0", "id" "92704674-bd6a-4c37-af70-0c25bbcd98f0", "timestamp" "2025-10-24T15:21:50.442194000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4b8abae2-3a5c-45ce-8845-a4b9322fe668" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Performance"}, "description" {"en" "This interaction measures performance over a day of RS sports:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "performance", "correctResponsesPattern" ["pong[.]1:[,]dg[.]:10[,]lunch[.]"], "steps" [{"id" "pong", "description" {"en-US" "Net pong matches won"}} {"id" "dg", "description" {"en-US" "Strokes over par in disc golf at Liberty"}} {"id" "lunch", "description" {"en-US" "Lunch having been eaten"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:50.421684000Z", "version" "2.0.0", "id" "4b8abae2-3a5c-45ce-8845-a4b9322fe668", "timestamp" "2025-10-24T15:21:50.421684000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "49bbaf6e-4ef4-4451-9618-ef6a6230ce17" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Other"}, "description" {"en" "On this map, please mark Franklin, TN"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "other", "correctResponsesPattern" ["(35.937432,-86.868896)"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:50.402001000Z", "version" "2.0.0", "id" "49bbaf6e-4ef4-4451-9618-ef6a6230ce17", "timestamp" "2025-10-24T15:21:50.402001000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7f7a4cb9-0ff2-4149-be8d-60943b47997f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "matching", "name" {"en" "Matching"}, "source" [{"id" "ben", "description" {"en-US" "Ben"}} {"id" "chris", "description" {"en-US" "Chris"}} {"id" "troy", "description" {"en-US" "Troy"}} {"id" "freddie", "description" {"en-US" "Freddie"}}], "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "target" [{"id" "1", "description" {"en-US" "Swift Kick in the Grass"}} {"id" "2", "description" {"en-US" "We got Runs"}} {"id" "3", "description" {"en-US" "Duck"}} {"id" "4", "description" {"en-US" "Van Delay Industries"}}], "correctResponsesPattern" ["ben[.]3[,]chris[.]2[,]troy[.]4[,]freddie[.]1"], "description" {"en" "Match these people to their kickball team:"}}}, "stored" "2025-10-24T15:21:50.383924000Z", "version" "2.0.0", "id" "7f7a4cb9-0ff2-4149-be8d-60943b47997f", "timestamp" "2025-10-24T15:21:50.383924000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "460f48dc-ad3b-4eaf-8c63-30bbb81a9db4" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Long-Fill-In"}, "description" {"en" "What is the purpose of the xAPI?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "long-fill-in", "correctResponsesPattern" ["{case_matters=false}{lang=en}To store and provide access to learning experiences."], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:50.364519000Z", "version" "2.0.0", "id" "460f48dc-ad3b-4eaf-8c63-30bbb81a9db4", "timestamp" "2025-10-24T15:21:50.364519000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c15c5208-5315-43eb-92ff-28e86f117ecc" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Likert"}, "description" {"en" "How awesome is Experience API?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "likert", "correctResponsesPattern" ["likert_3"], "scale" [{"id" "likert_0", "description" {"en-US" "It's OK"}} {"id" "likert_1", "description" {"en-US" "It's Pretty Cool"}} {"id" "likert_2", "description" {"en-US" "It's Damn Cool"}} {"id" "likert_3", "description" {"en-US" "It's Gonna Change the World"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:50.340288000Z", "version" "2.0.0", "id" "c15c5208-5315-43eb-92ff-28e86f117ecc", "timestamp" "2025-10-24T15:21:50.340288000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2c28216c-0809-466a-a127-ff529ae5bd66" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Numeric"}, "description" {"en" "How many jokes is Chris the butt of each day?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "numeric", "correctResponsesPattern" ["4[:]"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:50.320993000Z", "version" "2.0.0", "id" "2c28216c-0809-466a-a127-ff529ae5bd66", "timestamp" "2025-10-24T15:21:50.320993000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "63449b71-eaf7-4395-b470-0597d7329691" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Fill-In"}, "description" {"en" "Ben is often heard saying:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "fill-in", "correctResponsesPattern" ["Bob's your uncle"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:50.300778000Z", "version" "2.0.0", "id" "63449b71-eaf7-4395-b470-0597d7329691", "timestamp" "2025-10-24T15:21:50.300778000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f35d4344-8363-4811-be74-556cc2510f37" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Choice"}, "description" {"en" "Which of these prototypes are available at the beta site?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "choice", "correctResponsesPattern" ["golf[,]tetris"], "choices" [{"id" "golf", "description" {"en-US" "Golf Example"}} {"id" "facebook", "description" {"en-US" "Facebook App"}} {"id" "tetris", "description" {"en-US" "Tetris Example"}} {"id" "scrabble", "description" {"en-US" "Scrabble Example"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:50.280187000Z", "version" "2.0.0", "id" "f35d4344-8363-4811-be74-556cc2510f37", "timestamp" "2025-10-24T15:21:50.280187000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "cc283587-2aeb-43a1-a082-3b163f3580be" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:50.259609000Z", "version" "2.0.0", "id" "cc283587-2aeb-43a1-a082-3b163f3580be", "timestamp" "2025-10-24T15:21:50.259609000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "affc0895-3a7a-49da-95f8-aaea227213e1" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:50.239665000Z", "version" "2.0.0", "id" "affc0895-3a7a-49da-95f8-aaea227213e1", "timestamp" "2025-10-24T15:21:50.239665000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "6aec0c97-2c71-4444-971a-59a3b8673a17" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:50.219729000Z", "version" "2.0.0", "id" "6aec0c97-2c71-4444-971a-59a3b8673a17", "timestamp" "2025-10-24T15:21:50.219729000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "29f9a4d4-002f-4524-a5ea-92ba0a317999" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "StatementRef", "id" "8f87ccde-bb56-4c2e-ab83-44982ef22df0"}}, "stored" "2025-10-24T15:21:50.200338000Z", "version" "2.0.0", "id" "29f9a4d4-002f-4524-a5ea-92ba0a317999", "timestamp" "2025-10-24T15:21:50.200338000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "cb3ccc63-d6a5-40b6-bd21-77397af7b4c1" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "StatementRef", "id" "8f87ccde-bb56-4c2e-ab83-44982ef22df0"}, "stored" "2025-10-24T15:21:50.180822000Z", "version" "2.0.0", "id" "cb3ccc63-d6a5-40b6-bd21-77397af7b4c1", "timestamp" "2025-10-24T15:21:50.180822000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "87374429-6537-4437-aece-6909b80afc18" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}}, "stored" "2025-10-24T15:21:50.162718000Z", "version" "2.0.0", "id" "87374429-6537-4437-aece-6909b80afc18", "timestamp" "2025-10-24T15:21:50.162718000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b602bfc8-6af0-4170-acfe-cb37773dc536" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:21:50.144825000Z", "version" "2.0.0", "id" "b602bfc8-6af0-4170-acfe-cb37773dc536", "timestamp" "2025-10-24T15:21:50.144825000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "96a93480-d64d-4977-9a09-749a5a7b5677" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}}, "stored" "2025-10-24T15:21:50.126224000Z", "version" "2.0.0", "id" "96a93480-d64d-4977-9a09-749a5a7b5677", "timestamp" "2025-10-24T15:21:50.126224000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c015bbc1-ad4a-4a0f-8f2c-3b9964968ad9" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:21:50.106465000Z", "version" "2.0.0", "id" "c015bbc1-ad4a-4a0f-8f2c-3b9964968ad9", "timestamp" "2025-10-24T15:21:50.106465000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "cadcbbc4-8a13-4002-818c-a68943e1be57" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:50.086041000Z", "version" "2.0.0", "id" "cadcbbc4-8a13-4002-818c-a68943e1be57", "timestamp" "2025-10-24T15:21:50.086041000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d2d5f247-1332-4ec6-9ea5-6bbae9686d93" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:50.066958000Z", "version" "2.0.0", "id" "d2d5f247-1332-4ec6-9ea5-6bbae9686d93", "timestamp" "2025-10-24T15:21:50.066958000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e142604c-ef96-4be9-87ba-882fe48fb240" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:50.046550000Z", "version" "2.0.0", "id" "e142604c-ef96-4be9-87ba-882fe48fb240", "timestamp" "2025-10-24T15:21:50.046550000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7e880c37-d5c0-4642-9c28-edce2db79b76" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:50.027082000Z", "version" "2.0.0", "id" "7e880c37-d5c0-4642-9c28-edce2db79b76", "timestamp" "2025-10-24T15:21:50.027082000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d1eaa8af-21ec-4cf7-8c15-54c07f251f2a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Anonymous", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:50.007991000Z", "version" "2.0.0", "id" "d1eaa8af-21ec-4cf7-8c15-54c07f251f2a", "timestamp" "2025-10-24T15:21:50.007991000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "92c7d736-2748-401c-9e96-791ac886afbf" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Anonymous", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:49.988965000Z", "version" "2.0.0", "id" "92c7d736-2748-401c-9e96-791ac886afbf", "timestamp" "2025-10-24T15:21:49.988965000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "288d66f6-82c3-457b-bc3a-5bd9ae3c5665" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Anonymous", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:49.969878000Z", "version" "2.0.0", "id" "288d66f6-82c3-457b-bc3a-5bd9ae3c5665", "timestamp" "2025-10-24T15:21:49.969878000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "11b7ece0-4679-4827-9b2c-058f2ba0d60a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Anonymous", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "stored" "2025-10-24T15:21:49.952528000Z", "version" "2.0.0", "id" "11b7ece0-4679-4827-9b2c-058f2ba0d60a", "timestamp" "2025-10-24T15:21:49.952528000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5a33fe8b-9911-4c96-9f99-85c007f3dfb7" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "5a33fe8b-9911-4c96-9f99-85c007f3dfb7", "timestamp" "2025-10-24T15:21:49.933724000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Anonymous", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:49.933724000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "6217b76e-f4db-4778-a6e8-0607d9f5204b" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "6217b76e-f4db-4778-a6e8-0607d9f5204b", "timestamp" "2025-10-24T15:21:49.914297000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Anonymous", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:49.914297000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "b54bf8ab-7134-443a-a488-c700daa71450" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:49.895046000Z", "version" "2.0.0", "id" "b54bf8ab-7134-443a-a488-c700daa71450", "timestamp" "2025-10-24T15:21:49.895046000Z"}, "bc553c88-589e-4455-a683-e8e70a2fbe15" {"actor" {"objectType" "Group", "name" "Group Anonymous", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:49.876475000Z", "version" "2.0.0", "id" "bc553c88-589e-4455-a683-e8e70a2fbe15", "timestamp" "2025-10-24T15:21:49.876475000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e6909be1-51e2-4ee7-bb14-3e41cfb3d82c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:49.855902000Z", "version" "2.0.0", "id" "e6909be1-51e2-4ee7-bb14-3e41cfb3d82c", "timestamp" "2025-10-24T15:21:49.855902000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9a1ce5f0-b187-47f3-a5eb-467ff481599a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:49.837682000Z", "version" "2.0.0", "id" "9a1ce5f0-b187-47f3-a5eb-467ff481599a", "timestamp" "2025-10-24T15:21:49.837682000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "45ac6fb1-3d3f-43fc-94a9-5cf204e6c8d3" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:49.818351000Z", "version" "2.0.0", "id" "45ac6fb1-3d3f-43fc-94a9-5cf204e6c8d3", "timestamp" "2025-10-24T15:21:49.818351000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1b62140b-19c8-4af0-8454-9bb2ebdb3fcf" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:21:49.799765000Z", "version" "2.0.0", "id" "1b62140b-19c8-4af0-8454-9bb2ebdb3fcf", "timestamp" "2025-10-24T15:21:49.799765000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "585712ef-6d55-4ac4-82e6-bb2c61875180" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "585712ef-6d55-4ac4-82e6-bb2c61875180", "timestamp" "2025-10-24T15:21:49.780600000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:49.780600000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "3ee27957-47a1-486e-8a01-72c932393dd1" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "3ee27957-47a1-486e-8a01-72c932393dd1", "timestamp" "2025-10-24T15:21:49.762070000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:49.762070000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "95be26c1-622a-4d52-8b36-832d1155cee4" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:49.742848000Z", "version" "2.0.0", "id" "95be26c1-622a-4d52-8b36-832d1155cee4", "timestamp" "2025-10-24T15:21:49.742848000Z"}, "619a2d07-3f7f-43b2-9ffe-fab2894e802b" {"actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:49.723890000Z", "version" "2.0.0", "id" "619a2d07-3f7f-43b2-9ffe-fab2894e802b", "timestamp" "2025-10-24T15:21:49.723890000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "adee0511-6cc8-420b-bf7d-48ee12f5a6f4" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:49.704186000Z", "version" "2.0.0", "id" "adee0511-6cc8-420b-bf7d-48ee12f5a6f4", "timestamp" "2025-10-24T15:21:49.704186000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "a9a3c865-bca3-423e-84df-c89d2dd8df81" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:49.686169000Z", "version" "2.0.0", "id" "a9a3c865-bca3-423e-84df-c89d2dd8df81", "timestamp" "2025-10-24T15:21:49.686169000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8f16c5a0-3ad8-43dd-9d71-2d0f49a4f396" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:49.667825000Z", "version" "2.0.0", "id" "8f16c5a0-3ad8-43dd-9d71-2d0f49a4f396", "timestamp" "2025-10-24T15:21:49.667825000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1580b5fb-05d0-44f3-af7f-34eedebe2acd" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:21:49.648051000Z", "version" "2.0.0", "id" "1580b5fb-05d0-44f3-af7f-34eedebe2acd", "timestamp" "2025-10-24T15:21:49.648051000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "cec3d67e-dfd9-446a-97d2-fd67463bd447" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "cec3d67e-dfd9-446a-97d2-fd67463bd447", "timestamp" "2025-10-24T15:21:49.629147000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:49.629147000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "57536455-a004-4abb-a0f0-e114188993c2" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "57536455-a004-4abb-a0f0-e114188993c2", "timestamp" "2025-10-24T15:21:49.612269000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:49.612269000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "0bc1518b-c7db-4364-92b7-905d18e3e2d8" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:49.594654000Z", "version" "2.0.0", "id" "0bc1518b-c7db-4364-92b7-905d18e3e2d8", "timestamp" "2025-10-24T15:21:49.594654000Z"}, "ad1b5b6d-824f-464f-bed8-b2e76be689f9" {"actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:49.573333000Z", "version" "2.0.0", "id" "ad1b5b6d-824f-464f-bed8-b2e76be689f9", "timestamp" "2025-10-24T15:21:49.573333000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5708d268-5da0-4bf6-9ae9-18e511dbb428" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:49.555484000Z", "version" "2.0.0", "id" "5708d268-5da0-4bf6-9ae9-18e511dbb428", "timestamp" "2025-10-24T15:21:49.555484000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9e5849a9-a658-4b16-95b0-4582dc80c977" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:49.537272000Z", "version" "2.0.0", "id" "9e5849a9-a658-4b16-95b0-4582dc80c977", "timestamp" "2025-10-24T15:21:49.537272000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d8e9b08a-755b-4a9a-a561-6c93e8849fce" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:21:49.518964000Z", "version" "2.0.0", "id" "d8e9b08a-755b-4a9a-a561-6c93e8849fce", "timestamp" "2025-10-24T15:21:49.518964000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "90d759f4-b803-4594-b944-fb85ef3123df" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "90d759f4-b803-4594-b944-fb85ef3123df", "timestamp" "2025-10-24T15:21:49.500602000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:49.500602000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "3f973e47-0d21-45ca-a2b3-97ef09d254e4" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:49.482558000Z", "version" "2.0.0", "id" "3f973e47-0d21-45ca-a2b3-97ef09d254e4", "timestamp" "2025-10-24T15:21:49.482558000Z"}, "3bf53bc5-f27c-4340-88c5-f3b6babd02e9" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:49.464443000Z", "version" "2.0.0", "id" "3bf53bc5-f27c-4340-88c5-f3b6babd02e9", "timestamp" "2025-10-24T15:21:49.464443000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "6a7efa38-93df-41fd-897b-fb978fe17436" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "timestamp" "2013-05-18T05:32:34.804Z", "stored" "2025-10-24T15:21:49.446701000Z", "version" "2.0.0", "id" "6a7efa38-93df-41fd-897b-fb978fe17436", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f512eb1d-c468-4985-a7c6-882bd9d1f8b2" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "f512eb1d-c468-4985-a7c6-882bd9d1f8b2", "timestamp" "2025-10-24T15:21:49.410454000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:49.410454000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.12123434, "raw" 12.125, "min" 0.12123434, "max" 45.45}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "2c8ab7c6-6df0-45cf-8d0b-0ff5780b0e62" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "fr-CA", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:49.385919000Z", "version" "2.0.0", "id" "2c8ab7c6-6df0-45cf-8d0b-0ff5780b0e62", "timestamp" "2025-10-24T15:21:49.385919000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "151b00b6-8946-42fa-92f3-9b0c3f87b877" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "matching", "name" {"en" "Matching"}, "source" [{"id" "ben", "description" {"en-US" "Ben"}} {"id" "chris", "description" {"en-US" "Chris"}} {"id" "troy", "description" {"en-US" "Troy"}} {"id" "freddie", "description" {"en-US" "Freddie"}}], "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "target" [{"id" "1", "description" {"en-US" "Swift Kick in the Grass", "ja" "草でスイフトキック"}} {"id" "2", "description" {"en-US" "We got Runs"}} {"id" "3", "description" {"en-US" "Duck"}} {"id" "4", "description" {"en-US" "Van Delay Industries"}}], "correctResponsesPattern" ["ben[.]3[,]chris[.]2[,]troy[.]4[,]freddie[.]1"], "description" {"en" "Match these people to their kickball team:"}}}}, "stored" "2025-10-24T15:21:49.368183000Z", "version" "2.0.0", "id" "151b00b6-8946-42fa-92f3-9b0c3f87b877", "timestamp" "2025-10-24T15:21:49.368183000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8fad63aa-6b20-4e88-8a6a-0ccc22f71dc6" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present.", "ase" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:49.344728000Z", "version" "2.0.0", "id" "8fad63aa-6b20-4e88-8a6a-0ccc22f71dc6", "timestamp" "2025-10-24T15:21:49.344728000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "bede1688-1325-4cdd-b6ca-5a6fe350b02b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting", "zh-Hans-CN" "例如会议"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:49.320847000Z", "version" "2.0.0", "id" "bede1688-1325-4cdd-b6ca-5a6fe350b02b", "timestamp" "2025-10-24T15:21:49.320847000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0280528a-5884-4236-8415-e08bdc90cfe8" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported", "sr-Cyrl" "пријавио"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:49.297098000Z", "version" "2.0.0", "id" "0280528a-5884-4236-8415-e08bdc90cfe8", "timestamp" "2025-10-24T15:21:49.297098000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5145ca51-91ea-4c9a-892d-6afe620cd36f" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "5145ca51-91ea-4c9a-892d-6afe620cd36f", "timestamp" "2025-10-24T15:21:49.272997000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:49.272997000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "description" {"en-US" "A test attachment (description)", "es-MX" "Un accesorio de prueba (descripción)"}, "contentType" "text/plain; charset=ascii", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "fileUrl" "http://over.there.com/file.txt"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "35cbb590-b1e9-4594-bdb9-f4bb33e3fcba" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "35cbb590-b1e9-4594-bdb9-f4bb33e3fcba", "timestamp" "2025-10-24T15:21:49.250239000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:49.250239000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment", "es" "Un accesorio de prueba"}, "description" {"en-US" "A test attachment (description)"}, "contentType" "text/plain; charset=ascii", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "fileUrl" "http://over.there.com/file.txt"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "5841b5f5-d567-4c6a-b9f1-2c4cad3f088c" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "5841b5f5-d567-4c6a-b9f1-2c4cad3f088c", "timestamp" "2025-10-24T15:21:49.228071000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "cmn", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "version" "2.0.0", "stored" "2025-10-24T15:21:49.228071000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "af18dcd6-b76b-46c6-9eeb-e5c8aac102e4" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Likert"}, "description" {"en" "How awesome is Experience API?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "likert", "correctResponsesPattern" ["likert_3"], "scale" [{"id" "likert_0", "description" {"en-US" "It's OK", "sr-Latn-RS" "U redu je"}} {"id" "likert_1", "description" {"en-US" "It's Pretty Cool"}} {"id" "likert_2", "description" {"en-US" "It's Damn Cool"}} {"id" "likert_3", "description" {"en-US" "It's Gonna Change the World"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:49.210699000Z", "version" "2.0.0", "id" "af18dcd6-b76b-46c6-9eeb-e5c8aac102e4", "timestamp" "2025-10-24T15:21:49.210699000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "da619b0c-3f66-46ed-8ff5-4aa08a8162d0" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting", "de-DE" "Beispiel Treffen"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present.", "zh-Hant" "所發生的與目前某些人特定場合的一個例子會議。"}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:49.186503000Z", "version" "2.0.0", "id" "da619b0c-3f66-46ed-8ff5-4aa08a8162d0", "timestamp" "2025-10-24T15:21:49.186503000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0934f306-72cf-41ba-a127-cf55587c1b4b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting", "de-DE" "Beispiel Treffen"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present.", "de-DE" "Ein Beispiel Sitzung, die auf einem bestimmten Anlass mit bestimmten Personen zufällig anwesend."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:49.160629000Z", "version" "2.0.0", "id" "0934f306-72cf-41ba-a127-cf55587c1b4b", "timestamp" "2025-10-24T15:21:49.160629000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2d8385a9-e661-4d2d-84d1-2f5abcab868b" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended", "de" "besucht"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:49.133100000Z", "version" "2.0.0", "id" "2d8385a9-e661-4d2d-84d1-2f5abcab868b", "timestamp" "2025-10-24T15:21:49.133100000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "38e8e9d1-2529-4de7-a431-69a3d5262b31" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/null" nil}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:48.893786000Z", "version" "2.0.0", "id" "38e8e9d1-2529-4de7-a431-69a3d5262b31", "timestamp" "2025-10-24T15:21:48.893786000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f8903e67-1b52-442e-b10c-110e6f6ca069" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/null" nil}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:48.875838000Z", "version" "2.0.0", "id" "f8903e67-1b52-442e-b10c-110e6f6ca069", "timestamp" "2025-10-24T15:21:48.875838000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7ed00a26-7eb1-4366-84cf-b36ad32de389" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/null" nil}}}}, "stored" "2025-10-24T15:21:48.858417000Z", "version" "2.0.0", "id" "7ed00a26-7eb1-4366-84cf-b36ad32de389", "timestamp" "2025-10-24T15:21:48.858417000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "cc809b29-8b1a-42d7-91a6-7873f787a03b" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "cc809b29-8b1a-42d7-91a6-7873f787a03b", "timestamp" "2025-10-24T15:21:48.838884000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/null" nil}}, "version" "2.0.0", "stored" "2025-10-24T15:21:48.838884000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "9ef1713e-a4a2-4a79-a0a8-bef9f9ba8c84" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "9ef1713e-a4a2-4a79-a0a8-bef9f9ba8c84", "timestamp" "2025-10-24T15:21:48.821100000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:48.821100000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S", "extensions" {"http://example.com/null" nil}}}, "3101f250-67a8-4cc0-a421-ad0d3a806d49" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/null" nil}}}, "stored" "2025-10-24T15:21:48.803531000Z", "version" "2.0.0", "id" "3101f250-67a8-4cc0-a421-ad0d3a806d49", "timestamp" "2025-10-24T15:21:48.803531000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "121b83a2-6776-45ca-8193-1728b8dc13ec" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "121b83a2-6776-45ca-8193-1728b8dc13ec", "timestamp" "2023-05-04T12:00:00-05:00", "stored" "2025-10-24T15:21:48.750493000Z", "version" "2.0.0", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "cfd44753-94c9-4bcc-aeec-5ae5b7046b0b" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "cfd44753-94c9-4bcc-aeec-5ae5b7046b0b", "timestamp" "2025-10-24T15:21:48.734642000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:48.734642000Z", "attachments" [{"usageType" "http://adlnet.gov/expapi/attachments/signature", "display" {"en-US" "Signed by the Test Suite"}, "description" {"en-US" "Signed by the Test Suite"}, "contentType" "application/octet-stream", "length" 850, "sha2" "cd5531bca46b58d43e99d31f379ef455e402ccb1ba9f34c921261c0de52f6968"}], "actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"duration" "P1DT12H36M0.1237S"}}, "577628d3-c56c-4bc6-8b08-2c2ff527540c" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "577628d3-c56c-4bc6-8b08-2c2ff527540c", "timestamp" "2025-10-24T15:21:48.704907000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:48.704907000Z", "actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"duration" "P1DT12H36M0.12567S"}}, "3a3f4f6c-3c89-43c1-a842-464bde14afd4" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "3a3f4f6c-3c89-43c1-a842-464bde14afd4", "timestamp" "2025-10-24T15:21:48.689157000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:48.689157000Z", "actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"duration" "P1DT12H36M0.12567S"}}, "52f705d9-32a3-427b-bfb8-705ce1813688" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://example.com/path/../e72b9b1d-d047-42ff-9bfc-cd8de28315e3"}, "stored" "2025-10-24T15:21:48.665044000Z", "version" "2.0.0", "id" "52f705d9-32a3-427b-bfb8-705ce1813688", "timestamp" "2025-10-24T15:21:48.665044000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "26e18fdb-6e78-4718-a1e2-800eb9952787" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-GB" "attended", "en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "1070fefb-725b-43e1-b68c-ad9671144991"}, "stored" "2025-10-24T15:21:48.647608000Z", "version" "2.0.0", "id" "26e18fdb-6e78-4718-a1e2-800eb9952787", "timestamp" "2025-10-24T15:21:48.647608000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2b1ce4a2-1b23-4a95-8f7e-1992aa6044f3" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-GB" "attended", "en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "fe9afd45-8f20-4b26-8d68-9b4f6de1b839"}, "stored" "2025-10-24T15:21:48.601775000Z", "version" "2.0.0", "id" "2b1ce4a2-1b23-4a95-8f7e-1992aa6044f3", "timestamp" "2025-10-24T15:21:48.601775000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "82ddaa3e-dd55-4d77-ae45-b6ad96c50387" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "fe9afd45-8f20-4b26-8d68-9b4f6de1b839"}, "stored" "2025-10-24T15:21:48.574663000Z", "version" "2.0.0", "id" "82ddaa3e-dd55-4d77-ae45-b6ad96c50387", "timestamp" "2025-10-24T15:21:48.574663000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5a597f31-9cca-4f05-ba58-78d40769a49a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "a9414764-4f53-4cff-b8dc-4ff9c0afed8a"}, "stored" "2025-10-24T15:21:47.455440000Z", "version" "2.0.0", "id" "5a597f31-9cca-4f05-ba58-78d40769a49a", "timestamp" "2025-10-24T15:21:47.455440000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "91e01500-4a7f-4615-bca0-23a2bbb2a7c3" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-GB" "attended", "en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "8f87ccde-bb56-4c2e-ab83-44982ef22df0"}, "stored" "2025-10-24T15:21:47.415817000Z", "version" "2.0.0", "id" "91e01500-4a7f-4615-bca0-23a2bbb2a7c3", "timestamp" "2025-10-24T15:21:47.415817000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "481310fe-de55-44b6-af3b-06b87f4876c6" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-GB" "attended", "en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "8f87ccde-bb56-4c2e-ab83-44982ef22df0"}, "stored" "2025-10-24T15:21:47.398741000Z", "version" "2.0.0", "id" "481310fe-de55-44b6-af3b-06b87f4876c6", "timestamp" "2025-10-24T15:21:47.398741000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1866a33c-f5ba-4b09-a6a3-ed7a974fed89" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "version" "1.0.9", "stored" "2025-10-24T15:21:47.364419000Z", "id" "1866a33c-f5ba-4b09-a6a3-ed7a974fed89", "timestamp" "2025-10-24T15:21:47.364419000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4691b339-177d-4c23-84d8-f7cb88fbd11a" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "version" "1.0", "stored" "2025-10-24T15:21:47.347501000Z", "id" "4691b339-177d-4c23-84d8-f7cb88fbd11a", "timestamp" "2025-10-24T15:21:47.347501000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4f9f533b-3c07-4c7b-b130-c72643db03cd" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "4f9f533b-3c07-4c7b-b130-c72643db03cd", "version" "2.0.0", "stored" "2025-10-24T15:21:47.318270000Z", "timestamp" "2025-10-24T15:21:47.318270000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f4865016-35e4-4b1e-b8d5-50f7c69a95a3" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "timestamp" "2030-10-24T15:21:20.878Z"}, "stored" "2025-10-24T15:21:47.301265000Z", "version" "2.0.0", "id" "f4865016-35e4-4b1e-b8d5-50f7c69a95a3", "timestamp" "2025-10-24T15:21:47.301265000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "73472969-f08b-46ae-a3f4-fcc8ef5d2743" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "timestamp" "2030-10-24T15:21:20.878Z", "stored" "2025-10-24T15:21:47.272661000Z", "version" "2.0.0", "id" "73472969-f08b-46ae-a3f4-fcc8ef5d2743", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2c0561fe-ba36-4999-a305-0445c4a48d3a" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:47.228586000Z", "id" "2c0561fe-ba36-4999-a305-0445c4a48d3a", "version" "2.0.0", "timestamp" "2025-10-24T15:21:47.228586000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "3fb720d7-d9ab-43b1-9b7a-8df3c4832914" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:47.204626000Z", "version" "2.0.0", "id" "3fb720d7-d9ab-43b1-9b7a-8df3c4832914", "timestamp" "2025-10-24T15:21:47.204626000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d5226a85-7408-4f9f-a31a-1a58176e9961" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:47.181417000Z", "version" "2.0.0", "id" "d5226a85-7408-4f9f-a31a-1a58176e9961", "timestamp" "2025-10-24T15:21:47.181417000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0aaee471-a6aa-4deb-9fdf-5cc07b688d1a" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "0aaee471-a6aa-4deb-9fdf-5cc07b688d1a", "stored" "2025-10-24T15:21:47.061247000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:47.061247000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c1228dfd-f544-40d8-986f-5a7ebb5d7542" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:47.033921000Z", "version" "2.0.0", "id" "c1228dfd-f544-40d8-986f-5a7ebb5d7542", "timestamp" "2025-10-24T15:21:47.033921000Z"}, "4a51d9db-8c2c-4db4-a213-1a222fa7bba9" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:46.978548000Z", "version" "2.0.0", "id" "4a51d9db-8c2c-4db4-a213-1a222fa7bba9", "timestamp" "2025-10-24T15:21:46.978548000Z"}, "a8082109-89d6-4ebe-b641-97b38a45176a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:46.962020000Z", "version" "2.0.0", "id" "a8082109-89d6-4ebe-b641-97b38a45176a", "timestamp" "2025-10-24T15:21:46.962020000Z"}, "c5e33622-63b5-4397-89c8-14db2aad2732" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "c5e33622-63b5-4397-89c8-14db2aad2732", "timestamp" "2025-10-24T15:21:46.873599000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:46.873599000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "description" {"en-US" "A test attachment (description)"}, "contentType" "text/plain; charset=ascii", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "fileUrl" "http://over.there.com/file.txt"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "8aaddb18-9acf-4594-904e-bb1a93bbf6bc" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "8aaddb18-9acf-4594-904e-bb1a93bbf6bc", "stored" "2025-10-24T15:21:46.847286000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:46.847286000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9344b3e3-1e70-43f1-ab5a-103b071c490b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "9344b3e3-1e70-43f1-ab5a-103b071c490b", "stored" "2025-10-24T15:21:46.819793000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:46.819793000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8e0f3224-c4a1-4ebd-8c29-d10aaaf076e9" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "8e0f3224-c4a1-4ebd-8c29-d10aaaf076e9", "stored" "2025-10-24T15:21:46.793502000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:46.793502000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ee8a24b7-87cd-4513-85ad-19baffb3568d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "id" "ee8a24b7-87cd-4513-85ad-19baffb3568d", "stored" "2025-10-24T15:21:46.770190000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:46.770190000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "dca813df-3d60-40d9-a756-2d3df9eca794" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "dca813df-3d60-40d9-a756-2d3df9eca794", "timestamp" "2025-10-24T15:21:46.746348000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "2.0.0", "stored" "2025-10-24T15:21:46.746348000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "3d7a49c9-fe60-44ae-af47-a2014ccdaaa7" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "3d7a49c9-fe60-44ae-af47-a2014ccdaaa7", "timestamp" "2025-10-24T15:21:46.720396000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "2.0.0", "stored" "2025-10-24T15:21:46.720396000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "a7ef4e0d-2592-4bbc-a47f-4b0efeb05fe1" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "a7ef4e0d-2592-4bbc-a47f-4b0efeb05fe1", "timestamp" "2025-10-24T15:21:46.693905000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "2.0.0", "stored" "2025-10-24T15:21:46.693905000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "d8d3c701-e105-48d6-b1d6-37fc59576378" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "d8d3c701-e105-48d6-b1d6-37fc59576378", "timestamp" "2025-10-24T15:21:46.667732000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "2.0.0", "stored" "2025-10-24T15:21:46.667732000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "9cc5aae5-569a-4fcd-93c1-752c5b63ec46" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"contextGroups" [{"objectType" "contextGroup", "group" {"objectType" "Group", "mbox" "mailto:team-1@example.com", "member" [{"objectType" "Agent", "mbox" "mailto:player-1@example.com"} {"objectType" "Agent", "mbox" "mailto:player-2@example.com"}]}, "relevantTypes" ["https://example.com/xapi/american-footbal/activity-types/team/a"]} {"objectType" "contextGroup", "group" {"objectType" "Group", "mbox" "mailto:team-2@example.com", "member" [{"objectType" "Agent", "mbox" "mailto:player-3@example.com"}]}, "relevantTypes" ["https://example.com/xapi/american-footbal/activity-types/team/b"]}]}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:46.611916000Z", "version" "2.0.0", "id" "9cc5aae5-569a-4fcd-93c1-752c5b63ec46", "timestamp" "2025-10-24T15:21:46.611916000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "959254ea-135e-428b-a252-219947f41a98" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "959254ea-135e-428b-a252-219947f41a98", "timestamp" "2025-10-24T15:21:46.596856000Z", "context" {"contextGroups" [{"objectType" "contextGroup", "group" {"objectType" "Group", "mbox" "mailto:team-1@example.com", "member" [{"objectType" "Agent", "mbox" "mailto:player-1@example.com"} {"objectType" "Agent", "mbox" "mailto:player-2@example.com"}]}, "relevantTypes" ["https://example.com/xapi/american-footbal/activity-types/team/a"]} {"objectType" "contextGroup", "group" {"objectType" "Group", "mbox" "mailto:team-2@example.com", "member" [{"objectType" "Agent", "mbox" "mailto:player-3@example.com"}]}, "relevantTypes" ["https://example.com/xapi/american-footbal/activity-types/team/b"]}]}, "version" "2.0.0", "stored" "2025-10-24T15:21:46.596856000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "2e0fdcb4-1896-454a-ba8c-67ec3a9f9841" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"contextAgents" [{"objectType" "contextAgent", "agent" {"objectType" "Agent", "mbox" "mailto:player-1@example.com"}, "relevantTypes" ["https://example.com/xapi/american-footbal/activity-types/personnel/player" "https://example.com/xapi/american-footbal/activity-types/position/quarterback"]}]}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:46.532524000Z", "version" "2.0.0", "id" "2e0fdcb4-1896-454a-ba8c-67ec3a9f9841", "timestamp" "2025-10-24T15:21:46.532524000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f89199a7-c568-4ddd-aa1f-95bf9576f3a1" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "f89199a7-c568-4ddd-aa1f-95bf9576f3a1", "timestamp" "2025-10-24T15:21:46.514647000Z", "context" {"contextAgents" [{"objectType" "contextAgent", "agent" {"objectType" "Agent", "mbox" "mailto:player-1@example.com"}, "relevantTypes" ["https://example.com/xapi/american-footbal/activity-types/personnel/player" "https://example.com/xapi/american-footbal/activity-types/position/quarterback"]}]}, "version" "2.0.0", "stored" "2025-10-24T15:21:46.514647000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "842cd7be-c0bc-406e-b668-a3425a30a4b3" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:46.492903000Z", "version" "2.0.0", "id" "842cd7be-c0bc-406e-b668-a3425a30a4b3", "timestamp" "2025-10-24T15:21:46.492903000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8c58d48c-9169-4682-95b9-c8cc46945198" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:46.477753000Z", "version" "2.0.0", "id" "8c58d48c-9169-4682-95b9-c8cc46945198", "timestamp" "2025-10-24T15:21:46.477753000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "af56e6a1-b56f-475d-8d8a-83ed6c0cdda2" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:46.459457000Z", "version" "2.0.0", "id" "af56e6a1-b56f-475d-8d8a-83ed6c0cdda2", "timestamp" "2025-10-24T15:21:46.459457000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "92d085e6-e3a6-4851-9f6b-5fb243bcdadb" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:46.444218000Z", "version" "2.0.0", "id" "92d085e6-e3a6-4851-9f6b-5fb243bcdadb", "timestamp" "2025-10-24T15:21:46.444218000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4378a10b-7bdb-4e0a-8686-37faae6f44ed" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "4378a10b-7bdb-4e0a-8686-37faae6f44ed", "timestamp" "2025-10-24T15:21:46.422162000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}]}}, "version" "2.0.0", "stored" "2025-10-24T15:21:46.422162000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "61edb9e5-6db0-4bad-8c29-3575da84fb01" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "61edb9e5-6db0-4bad-8c29-3575da84fb01", "timestamp" "2025-10-24T15:21:46.406812000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}]}}, "version" "2.0.0", "stored" "2025-10-24T15:21:46.406812000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "6dda79db-dad2-44b0-8278-0bd8b67ebbda" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "6dda79db-dad2-44b0-8278-0bd8b67ebbda", "timestamp" "2025-10-24T15:21:46.390988000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}]}}, "version" "2.0.0", "stored" "2025-10-24T15:21:46.390988000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "466b68ff-d8de-4f12-818d-7bcc1200c65f" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "466b68ff-d8de-4f12-818d-7bcc1200c65f", "timestamp" "2025-10-24T15:21:46.376007000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}]}}, "version" "2.0.0", "stored" "2025-10-24T15:21:46.376007000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "ce80bd9e-e463-48be-a552-d0203df6943b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}], "category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}], "grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}], "parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:46.353675000Z", "version" "2.0.0", "id" "ce80bd9e-e463-48be-a552-d0203df6943b", "timestamp" "2025-10-24T15:21:46.353675000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "eefc8bcf-3b4c-47ba-98c7-5f62addedd9d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:46.337753000Z", "version" "2.0.0", "id" "eefc8bcf-3b4c-47ba-98c7-5f62addedd9d", "timestamp" "2025-10-24T15:21:46.337753000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "faeac764-c6c1-4aca-8215-a8dea6a7e78e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:46.322706000Z", "version" "2.0.0", "id" "faeac764-c6c1-4aca-8215-a8dea6a7e78e", "timestamp" "2025-10-24T15:21:46.322706000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5263f1a5-60f0-48ac-8c9a-002e3f1e5f96" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:46.306919000Z", "version" "2.0.0", "id" "5263f1a5-60f0-48ac-8c9a-002e3f1e5f96", "timestamp" "2025-10-24T15:21:46.306919000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8306de4f-54e5-44c1-a9f2-6248bfb6a975" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:46.291915000Z", "version" "2.0.0", "id" "8306de4f-54e5-44c1-a9f2-6248bfb6a975", "timestamp" "2025-10-24T15:21:46.291915000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "83dd74fb-40f9-4dc8-805d-be8b6179f2fb" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "83dd74fb-40f9-4dc8-805d-be8b6179f2fb", "timestamp" "2025-10-24T15:21:46.270921000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}], "category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}], "grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}], "parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "2.0.0", "stored" "2025-10-24T15:21:46.270921000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "5844dd7b-512b-4362-933b-b208976ae913" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "5844dd7b-512b-4362-933b-b208976ae913", "timestamp" "2025-10-24T15:21:46.255742000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"other" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "2.0.0", "stored" "2025-10-24T15:21:46.255742000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "d3ca998e-67e7-4cc4-a57d-88e7545a2d28" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "d3ca998e-67e7-4cc4-a57d-88e7545a2d28", "timestamp" "2025-10-24T15:21:46.240916000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "2.0.0", "stored" "2025-10-24T15:21:46.240916000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "b736039b-1bb2-4728-9cc1-d8853ca0bb79" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "b736039b-1bb2-4728-9cc1-d8853ca0bb79", "timestamp" "2025-10-24T15:21:46.226550000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"grouping" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "2.0.0", "stored" "2025-10-24T15:21:46.226550000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "e79d2e40-a5c6-4c62-8b42-5a2d3bf2a130" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "e79d2e40-a5c6-4c62-8b42-5a2d3bf2a130", "timestamp" "2025-10-24T15:21:46.211752000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"parent" [{"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}}, "version" "2.0.0", "stored" "2025-10-24T15:21:46.211752000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "a1e6d20f-14ce-4ef4-b686-b79913448efe" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "object" {"id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:46.143641000Z", "version" "2.0.0", "id" "a1e6d20f-14ce-4ef4-b686-b79913448efe", "timestamp" "2025-10-24T15:21:46.143641000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "82e13fae-e728-4a32-8774-ddf4893b34d1" {"object" {"id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "82e13fae-e728-4a32-8774-ddf4893b34d1", "timestamp" "2025-10-24T15:21:46.112500000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "version" "2.0.0", "stored" "2025-10-24T15:21:46.112500000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "4a6f3287-f286-41a5-85fe-8f1ca803daf0" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "object" {"id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:46.054503000Z", "version" "2.0.0", "id" "4a6f3287-f286-41a5-85fe-8f1ca803daf0", "timestamp" "2025-10-24T15:21:46.054503000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7d2af2b3-9e5f-4678-a3d9-fdae8166afad" {"object" {"id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "7d2af2b3-9e5f-4678-a3d9-fdae8166afad", "timestamp" "2025-10-24T15:21:46.022044000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "version" "2.0.0", "stored" "2025-10-24T15:21:46.022044000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "16cb5b2a-e858-42a0-9c5e-211306ac9ba4" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100.6767676}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:45.872013000Z", "version" "2.0.0", "id" "16cb5b2a-e858-42a0-9c5e-211306ac9ba4", "timestamp" "2025-10-24T15:21:45.872013000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "09787859-0f86-43e4-beb4-54f7a07c06b6" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "09787859-0f86-43e4-beb4-54f7a07c06b6", "timestamp" "2025-10-24T15:21:45.858058000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:45.858058000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100.6767676}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "6e501ce3-0fbd-43d4-90e6-07bc4c40ac47" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0.6767676, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:45.832642000Z", "version" "2.0.0", "id" "6e501ce3-0fbd-43d4-90e6-07bc4c40ac47", "timestamp" "2025-10-24T15:21:45.832642000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7994edcd-913c-4da4-be1f-6b3921700b3d" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "7994edcd-913c-4da4-be1f-6b3921700b3d", "timestamp" "2025-10-24T15:21:45.819037000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:45.819037000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0.6767676, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "86806964-2d2d-4563-a26b-7f50c76e4acd" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 0.6767676, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:45.783831000Z", "version" "2.0.0", "id" "86806964-2d2d-4563-a26b-7f50c76e4acd", "timestamp" "2025-10-24T15:21:45.783831000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "29d925e7-ab29-425e-b0f2-d05f140434c6" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "29d925e7-ab29-425e-b0f2-d05f140434c6", "timestamp" "2025-10-24T15:21:45.770851000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:45.770851000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 0.6767676, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "411a9518-7490-4135-a330-37f2cb02b431" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" -1, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:45.747916000Z", "version" "2.0.0", "id" "411a9518-7490-4135-a330-37f2cb02b431", "timestamp" "2025-10-24T15:21:45.747916000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "628e7023-ae37-4b3e-aa43-965415c0aaee" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "628e7023-ae37-4b3e-aa43-965415c0aaee", "timestamp" "2025-10-24T15:21:45.730636000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:45.730636000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 1, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "ca9c17b7-6f13-4e32-ab2b-d92b83981a7d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.6767676, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:45.715512000Z", "version" "2.0.0", "id" "ca9c17b7-6f13-4e32-ab2b-d92b83981a7d", "timestamp" "2025-10-24T15:21:45.715512000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b2ffbfae-3d67-4c4a-b39a-410e483cd8cc" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "b2ffbfae-3d67-4c4a-b39a-410e483cd8cc", "timestamp" "2025-10-24T15:21:45.701322000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:45.701322000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.6767676, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}}, "68ded9c1-dd8c-4a9c-9cf3-a8aaae1870c8" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "68ded9c1-dd8c-4a9c-9cf3-a8aaae1870c8", "timestamp" "2025-10-24T15:21:45.647331000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:45.647331000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "P4W"}}, "5e037adb-fefc-4cda-ae01-5de932380315" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "P3Y"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:45.633822000Z", "version" "2.0.0", "id" "5e037adb-fefc-4cda-ae01-5de932380315", "timestamp" "2025-10-24T15:21:45.633822000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "198e4ae3-1695-4632-abea-3ac687a07b7f" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "198e4ae3-1695-4632-abea-3ac687a07b7f", "timestamp" "2025-10-24T15:21:45.621412000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:45.621412000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "P3Y1M29DT4H35M59.14S"}}, "043501c6-5020-4734-95c8-520de9d7c65c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT16559.14S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:45.608291000Z", "version" "2.0.0", "id" "043501c6-5020-4734-95c8-520de9d7c65c", "timestamp" "2025-10-24T15:21:45.608291000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4258fc9f-3dd3-4d60-9308-762a111c8abd" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "4258fc9f-3dd3-4d60-9308-762a111c8abd", "timestamp" "2025-10-24T15:21:45.594678000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:45.594678000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT4H35M59.14S"}}, "2a761387-5dfc-435c-a659-6f94b82e33b1" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0.1S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:45.580791000Z", "version" "2.0.0", "id" "2a761387-5dfc-435c-a659-6f94b82e33b1", "timestamp" "2025-10-24T15:21:45.580791000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "cb0751af-de48-4851-98ca-62d3d7790c5d" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "cb0751af-de48-4851-98ca-62d3d7790c5d", "timestamp" "2025-10-24T15:21:45.565917000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:45.565917000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0.1S"}}, "bae04a94-c57d-44db-a6ce-eeff928a4605" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}}, "stored" "2025-10-24T15:21:45.410374000Z", "version" "2.0.0", "id" "bae04a94-c57d-44db-a6ce-eeff928a4605", "timestamp" "2025-10-24T15:21:45.410374000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8482e84e-1479-4bae-9140-055589151970" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}}, "stored" "2025-10-24T15:21:45.396533000Z", "version" "2.0.0", "id" "8482e84e-1479-4bae-9140-055589151970", "timestamp" "2025-10-24T15:21:45.396533000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "28a857df-2c24-42c4-97b7-4d0e2a9f882f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "StatementRef", "id" "8f87ccde-bb56-4c2e-ab83-44982ef22df0"}}, "stored" "2025-10-24T15:21:45.382635000Z", "version" "2.0.0", "id" "28a857df-2c24-42c4-97b7-4d0e2a9f882f", "timestamp" "2025-10-24T15:21:45.382635000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8d49106f-6d45-4fde-83ec-e2522d96a696" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "result" {"score" {"scaled" 0.95, "raw" 95, "min" 0, "max" 100}, "extensions" {"http://example.com/profiles/meetings/resultextensions/minuteslocation" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/resultextensions/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "success" true, "completion" true, "response" "We agreed on some example actions.", "duration" "PT1H0M0S"}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:45.368581000Z", "version" "2.0.0", "id" "8d49106f-6d45-4fde-83ec-e2522d96a696", "timestamp" "2025-10-24T15:21:45.368581000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c1c2fe70-6a25-4498-8119-57eba0b02834" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "revision" "rev_10_3_2", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "extensions" {"http://example.com/profiles/meetings/contextextensions/airspeed" "600mph", "http://example.com/profiles/meetings/contextextensions/pilot" {"name" "Thomas", "id" "http://openid.com/342"}}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:45.351344000Z", "version" "2.0.0", "id" "c1c2fe70-6a25-4498-8119-57eba0b02834", "timestamp" "2025-10-24T15:21:45.351344000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0447d1be-9f97-40fe-978e-b6fa4f795d64" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Other"}, "description" {"en" "On this map, please mark Franklin, TN"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "other", "correctResponsesPattern" ["(35.937432,-86.868896)"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:45.168886000Z", "version" "2.0.0", "id" "0447d1be-9f97-40fe-978e-b6fa4f795d64", "timestamp" "2025-10-24T15:21:45.168886000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2ac5d1a5-c014-4049-b070-8ff138c8a5ac" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Numeric"}, "description" {"en" "How many jokes is Chris the butt of each day?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "numeric", "correctResponsesPattern" ["4[:]"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:45.153666000Z", "version" "2.0.0", "id" "2ac5d1a5-c014-4049-b070-8ff138c8a5ac", "timestamp" "2025-10-24T15:21:45.153666000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "704b0d93-af1d-402c-9970-1676249fcc03" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Likert"}, "description" {"en" "How awesome is Experience API?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "likert", "correctResponsesPattern" ["likert_3"], "scale" [{"id" "likert_0", "description" {"en-US" "It's OK"}} {"id" "likert_1", "description" {"en-US" "It's Pretty Cool"}} {"id" "likert_2", "description" {"en-US" "It's Damn Cool"}} {"id" "likert_3", "description" {"en-US" "It's Gonna Change the World"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:45.137744000Z", "version" "2.0.0", "id" "704b0d93-af1d-402c-9970-1676249fcc03", "timestamp" "2025-10-24T15:21:45.137744000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4a187b75-9e08-4a58-95c3-9bcbf70e398f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Sequencing"}, "description" {"en" "Order players by their pong ladder position:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "sequencing", "correctResponsesPattern" ["tim[,]mike[,]ells[,]ben"], "choices" [{"id" "tim", "description" {"en-US" "Tim"}} {"id" "ben", "description" {"en-US" "Ben"}} {"id" "ells", "description" {"en-US" "Ells"}} {"id" "mike", "description" {"en-US" "Mike"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:45.124392000Z", "version" "2.0.0", "id" "4a187b75-9e08-4a58-95c3-9bcbf70e398f", "timestamp" "2025-10-24T15:21:45.124392000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "da3bc1fa-5e7a-4f58-9d7d-e24ced7286a3" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Performance"}, "description" {"en" "This interaction measures performance over a day of RS sports:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "performance", "correctResponsesPattern" ["pong[.]1:[,]dg[.]:10[,]lunch[.]"], "steps" [{"id" "pong", "description" {"en-US" "Net pong matches won"}} {"id" "dg", "description" {"en-US" "Strokes over par in disc golf at Liberty"}} {"id" "lunch", "description" {"en-US" "Lunch having been eaten"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:45.111024000Z", "version" "2.0.0", "id" "da3bc1fa-5e7a-4f58-9d7d-e24ced7286a3", "timestamp" "2025-10-24T15:21:45.111024000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "03d254e7-7b7f-4ece-8ae7-05745a0158e1" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "matching", "name" {"en" "Matching"}, "source" [{"id" "ben", "description" {"en-US" "Ben"}} {"id" "chris", "description" {"en-US" "Chris"}} {"id" "troy", "description" {"en-US" "Troy"}} {"id" "freddie", "description" {"en-US" "Freddie"}}], "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "target" [{"id" "1", "description" {"en-US" "Swift Kick in the Grass"}} {"id" "2", "description" {"en-US" "We got Runs"}} {"id" "3", "description" {"en-US" "Duck"}} {"id" "4", "description" {"en-US" "Van Delay Industries"}}], "correctResponsesPattern" ["ben[.]3[,]chris[.]2[,]troy[.]4[,]freddie[.]1"], "description" {"en" "Match these people to their kickball team:"}}}}, "stored" "2025-10-24T15:21:45.098206000Z", "version" "2.0.0", "id" "03d254e7-7b7f-4ece-8ae7-05745a0158e1", "timestamp" "2025-10-24T15:21:45.098206000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1b890f01-c787-49ef-b6b1-2ffb7f81412f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Long-Fill-In"}, "description" {"en" "What is the purpose of the xAPI?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "long-fill-in", "correctResponsesPattern" ["{case_matters=false}{lang=en}To store and provide access to learning experiences."], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:45.082231000Z", "version" "2.0.0", "id" "1b890f01-c787-49ef-b6b1-2ffb7f81412f", "timestamp" "2025-10-24T15:21:45.082231000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "79247841-07cc-4393-a6bd-623b9c9f28f2" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Fill-In"}, "description" {"en" "Ben is often heard saying:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "fill-in", "correctResponsesPattern" ["Bob's your uncle"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:45.068745000Z", "version" "2.0.0", "id" "79247841-07cc-4393-a6bd-623b9c9f28f2", "timestamp" "2025-10-24T15:21:45.068745000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "661ddf22-f061-4634-98c3-46e20053563a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Choice"}, "description" {"en" "Which of these prototypes are available at the beta site?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "choice", "correctResponsesPattern" ["golf[,]tetris"], "choices" [{"id" "golf", "description" {"en-US" "Golf Example"}} {"id" "facebook", "description" {"en-US" "Facebook App"}} {"id" "tetris", "description" {"en-US" "Tetris Example"}} {"id" "scrabble", "description" {"en-US" "Scrabble Example"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:45.054886000Z", "version" "2.0.0", "id" "661ddf22-f061-4634-98c3-46e20053563a", "timestamp" "2025-10-24T15:21:45.054886000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "61a382b0-f602-41a0-a255-a5d69be5e5f7" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "True-False"}, "description" {"en" "Does the xAPI include the concept of statements?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "true-false", "correctResponsesPattern" ["true"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:45.041441000Z", "version" "2.0.0", "id" "61a382b0-f602-41a0-a255-a5d69be5e5f7", "timestamp" "2025-10-24T15:21:45.041441000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d8e5f254-326d-49f2-974d-faf61e7f4c46" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Other"}, "description" {"en" "On this map, please mark Franklin, TN"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "other", "correctResponsesPattern" ["(35.937432,-86.868896)"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:45.003923000Z", "version" "2.0.0", "id" "d8e5f254-326d-49f2-974d-faf61e7f4c46", "timestamp" "2025-10-24T15:21:45.003923000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c897d1b9-a85e-4227-9cd8-3c7f3153d644" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Numeric"}, "description" {"en" "How many jokes is Chris the butt of each day?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "numeric", "correctResponsesPattern" ["4[:]"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:44.990870000Z", "version" "2.0.0", "id" "c897d1b9-a85e-4227-9cd8-3c7f3153d644", "timestamp" "2025-10-24T15:21:44.990870000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "cee3a111-c8cf-4b39-bf5f-8931402f7a56" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Likert"}, "description" {"en" "How awesome is Experience API?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "likert", "correctResponsesPattern" ["likert_3"], "scale" [{"id" "likert_0", "description" {"en-US" "It's OK"}} {"id" "likert_1", "description" {"en-US" "It's Pretty Cool"}} {"id" "likert_2", "description" {"en-US" "It's Damn Cool"}} {"id" "likert_3", "description" {"en-US" "It's Gonna Change the World"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:44.977537000Z", "version" "2.0.0", "id" "cee3a111-c8cf-4b39-bf5f-8931402f7a56", "timestamp" "2025-10-24T15:21:44.977537000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "89107c60-ba6c-4519-82d0-2d2e185eeba1" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Sequencing"}, "description" {"en" "Order players by their pong ladder position:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "sequencing", "correctResponsesPattern" ["tim[,]mike[,]ells[,]ben"], "choices" [{"id" "tim", "description" {"en-US" "Tim"}} {"id" "ben", "description" {"en-US" "Ben"}} {"id" "ells", "description" {"en-US" "Ells"}} {"id" "mike", "description" {"en-US" "Mike"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:44.964489000Z", "version" "2.0.0", "id" "89107c60-ba6c-4519-82d0-2d2e185eeba1", "timestamp" "2025-10-24T15:21:44.964489000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2cda876d-6126-457f-bf1d-594b45cd55f9" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Performance"}, "description" {"en" "This interaction measures performance over a day of RS sports:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "performance", "correctResponsesPattern" ["pong[.]1:[,]dg[.]:10[,]lunch[.]"], "steps" [{"id" "pong", "description" {"en-US" "Net pong matches won"}} {"id" "dg", "description" {"en-US" "Strokes over par in disc golf at Liberty"}} {"id" "lunch", "description" {"en-US" "Lunch having been eaten"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:44.951452000Z", "version" "2.0.0", "id" "2cda876d-6126-457f-bf1d-594b45cd55f9", "timestamp" "2025-10-24T15:21:44.951452000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "513d2edf-5a2e-446a-943f-ab71d892fad2" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "matching", "name" {"en" "Matching"}, "source" [{"id" "ben", "description" {"en-US" "Ben"}} {"id" "chris", "description" {"en-US" "Chris"}} {"id" "troy", "description" {"en-US" "Troy"}} {"id" "freddie", "description" {"en-US" "Freddie"}}], "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "target" [{"id" "1", "description" {"en-US" "Swift Kick in the Grass"}} {"id" "2", "description" {"en-US" "We got Runs"}} {"id" "3", "description" {"en-US" "Duck"}} {"id" "4", "description" {"en-US" "Van Delay Industries"}}], "correctResponsesPattern" ["ben[.]3[,]chris[.]2[,]troy[.]4[,]freddie[.]1"], "description" {"en" "Match these people to their kickball team:"}}}, "stored" "2025-10-24T15:21:44.938190000Z", "version" "2.0.0", "id" "513d2edf-5a2e-446a-943f-ab71d892fad2", "timestamp" "2025-10-24T15:21:44.938190000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "24952801-ed6e-46be-931a-bf383342150a" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Long-Fill-In"}, "description" {"en" "What is the purpose of the xAPI?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "long-fill-in", "correctResponsesPattern" ["{case_matters=false}{lang=en}To store and provide access to learning experiences."], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:44.925332000Z", "version" "2.0.0", "id" "24952801-ed6e-46be-931a-bf383342150a", "timestamp" "2025-10-24T15:21:44.925332000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7a85ffaa-625e-4b5c-a208-fdaa0db8688b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Fill-In"}, "description" {"en" "Ben is often heard saying:"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "fill-in", "correctResponsesPattern" ["Bob's your uncle"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:44.913149000Z", "version" "2.0.0", "id" "7a85ffaa-625e-4b5c-a208-fdaa0db8688b", "timestamp" "2025-10-24T15:21:44.913149000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1023052d-7fd2-4965-b447-79c75e49b989" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "Choice"}, "description" {"en" "Which of these prototypes are available at the beta site?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "choice", "correctResponsesPattern" ["golf[,]tetris"], "choices" [{"id" "golf", "description" {"en-US" "Golf Example"}} {"id" "facebook", "description" {"en-US" "Facebook App"}} {"id" "tetris", "description" {"en-US" "Tetris Example"}} {"id" "scrabble", "description" {"en-US" "Scrabble Example"}}], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:44.900835000Z", "version" "2.0.0", "id" "1023052d-7fd2-4965-b447-79c75e49b989", "timestamp" "2025-10-24T15:21:44.900835000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "6e002311-c288-496a-9865-745f0b677fc5" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/categories/teammeeting", "definition" {"name" {"en" "True-False"}, "description" {"en" "Does the xAPI include the concept of statements?"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "true-false", "correctResponsesPattern" ["true"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:44.887717000Z", "version" "2.0.0", "id" "6e002311-c288-496a-9865-745f0b677fc5", "timestamp" "2025-10-24T15:21:44.887717000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1d44618e-7ac5-4c60-9e8f-d19ecfa8a694" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:44.793236000Z", "version" "2.0.0", "id" "1d44618e-7ac5-4c60-9e8f-d19ecfa8a694", "timestamp" "2025-10-24T15:21:44.793236000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7f9366a0-b950-46dc-b002-af23554d7a18" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:44.776412000Z", "version" "2.0.0", "id" "7f9366a0-b950-46dc-b002-af23554d7a18", "timestamp" "2025-10-24T15:21:44.776412000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "159fa1a6-a3fe-4f4c-a1e8-f813b31ee122" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:44.448404000Z", "version" "2.0.0", "id" "159fa1a6-a3fe-4f4c-a1e8-f813b31ee122", "timestamp" "2025-10-24T15:21:44.448404000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "684154a3-48a2-4f71-8d6c-1dc581b41cd0" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:44.436566000Z", "version" "2.0.0", "id" "684154a3-48a2-4f71-8d6c-1dc581b41cd0", "timestamp" "2025-10-24T15:21:44.436566000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "556a8124-f650-499c-b93c-160a94eb9f24" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:44.424649000Z", "version" "2.0.0", "id" "556a8124-f650-499c-b93c-160a94eb9f24", "timestamp" "2025-10-24T15:21:44.424649000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "54d97b7c-5a05-425b-ada2-e6f58229ceec" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:44.412831000Z", "version" "2.0.0", "id" "54d97b7c-5a05-425b-ada2-e6f58229ceec", "timestamp" "2025-10-24T15:21:44.412831000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "fd28a36f-081a-4b92-af0a-4921a5d0846d" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:44.400854000Z", "version" "2.0.0", "id" "fd28a36f-081a-4b92-af0a-4921a5d0846d", "timestamp" "2025-10-24T15:21:44.400854000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "66399a43-ae30-4080-9901-db869d1adfba" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "stored" "2025-10-24T15:21:44.388777000Z", "version" "2.0.0", "id" "66399a43-ae30-4080-9901-db869d1adfba", "timestamp" "2025-10-24T15:21:44.388777000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ec1f1042-0d86-4067-bd8e-09e4c0d0379e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "stored" "2025-10-24T15:21:44.376840000Z", "version" "2.0.0", "id" "ec1f1042-0d86-4067-bd8e-09e4c0d0379e", "timestamp" "2025-10-24T15:21:44.376840000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f3285ebb-7b13-4491-a0c9-1df5a275fe01" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "f3285ebb-7b13-4491-a0c9-1df5a275fe01", "timestamp" "2025-10-24T15:21:44.364741000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:44.364741000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "42a4a265-5190-47f7-9d8b-2bee6ab6096e" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "42a4a265-5190-47f7-9d8b-2bee6ab6096e", "timestamp" "2025-10-24T15:21:44.352438000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:44.352438000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "508d8cc3-f026-41b9-8d06-8d2aa80f0bd2" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "508d8cc3-f026-41b9-8d06-8d2aa80f0bd2", "timestamp" "2025-10-24T15:21:44.339672000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:44.339672000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "4b040bd9-ad09-46f1-8e4e-65ee6c5ac51b" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:44.327803000Z", "version" "2.0.0", "id" "4b040bd9-ad09-46f1-8e4e-65ee6c5ac51b", "timestamp" "2025-10-24T15:21:44.327803000Z"}, "59ec7d9f-2cec-458d-a515-77058be44185" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:44.315972000Z", "version" "2.0.0", "id" "59ec7d9f-2cec-458d-a515-77058be44185", "timestamp" "2025-10-24T15:21:44.315972000Z"}, "f4d01a2e-f51f-4545-bc0a-551d5db198a1" {"actor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:44.304185000Z", "version" "2.0.0", "id" "f4d01a2e-f51f-4545-bc0a-551d5db198a1", "timestamp" "2025-10-24T15:21:44.304185000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0fdf0021-d227-4a4b-8783-a7bce52d1df3" {"actor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:44.292433000Z", "version" "2.0.0", "id" "0fdf0021-d227-4a4b-8783-a7bce52d1df3", "timestamp" "2025-10-24T15:21:44.292433000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "cbbf1a4b-b9aa-4f6c-8f29-7e9813ba623e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.481265000Z", "version" "2.0.0", "id" "cbbf1a4b-b9aa-4f6c-8f29-7e9813ba623e", "timestamp" "2025-10-24T15:21:43.481265000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4c2602eb-c034-4626-8439-82ca91511d8f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.468607000Z", "version" "2.0.0", "id" "4c2602eb-c034-4626-8439-82ca91511d8f", "timestamp" "2025-10-24T15:21:43.468607000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "aac872c7-73a7-4051-a64a-20444ce507cc" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.456743000Z", "version" "2.0.0", "id" "aac872c7-73a7-4051-a64a-20444ce507cc", "timestamp" "2025-10-24T15:21:43.456743000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2cdf9362-17ee-4052-83ae-3abc315783fc" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.445228000Z", "version" "2.0.0", "id" "2cdf9362-17ee-4052-83ae-3abc315783fc", "timestamp" "2025-10-24T15:21:43.445228000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "bda82810-69f2-421e-a53b-6d7593bfd260" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.433444000Z", "version" "2.0.0", "id" "bda82810-69f2-421e-a53b-6d7593bfd260", "timestamp" "2025-10-24T15:21:43.433444000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "66eb492a-6416-4db2-93df-e162b23f79d1" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.421719000Z", "version" "2.0.0", "id" "66eb492a-6416-4db2-93df-e162b23f79d1", "timestamp" "2025-10-24T15:21:43.421719000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1412d0f2-7ecf-4a11-b662-42db2d321f0c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.410157000Z", "version" "2.0.0", "id" "1412d0f2-7ecf-4a11-b662-42db2d321f0c", "timestamp" "2025-10-24T15:21:43.410157000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "12548eb4-dd0e-4e92-a45a-6d44c34aec10" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.399144000Z", "version" "2.0.0", "id" "12548eb4-dd0e-4e92-a45a-6d44c34aec10", "timestamp" "2025-10-24T15:21:43.399144000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "53214ba8-6da2-4697-a824-85cbe1bba8ad" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.388111000Z", "version" "2.0.0", "id" "53214ba8-6da2-4697-a824-85cbe1bba8ad", "timestamp" "2025-10-24T15:21:43.388111000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "317165f9-da8a-4d10-afa8-6c5d0eab4596" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.376751000Z", "version" "2.0.0", "id" "317165f9-da8a-4d10-afa8-6c5d0eab4596", "timestamp" "2025-10-24T15:21:43.376751000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "85cb7d72-1a63-4ec1-8c71-988f2e381ee7" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.365742000Z", "version" "2.0.0", "id" "85cb7d72-1a63-4ec1-8c71-988f2e381ee7", "timestamp" "2025-10-24T15:21:43.365742000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e0579318-ae2a-44e0-bee5-14220a0756e5" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.354479000Z", "version" "2.0.0", "id" "e0579318-ae2a-44e0-bee5-14220a0756e5", "timestamp" "2025-10-24T15:21:43.354479000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8202921a-8a46-4161-8f27-b0a4a7dcf5cb" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "stored" "2025-10-24T15:21:43.343511000Z", "version" "2.0.0", "id" "8202921a-8a46-4161-8f27-b0a4a7dcf5cb", "timestamp" "2025-10-24T15:21:43.343511000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "719a3742-24b6-4818-a570-6e15ac4498b4" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345"}, "stored" "2025-10-24T15:21:43.332757000Z", "version" "2.0.0", "id" "719a3742-24b6-4818-a570-6e15ac4498b4", "timestamp" "2025-10-24T15:21:43.332757000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "371e3c4b-9dbb-45a3-98b2-5302c635a040" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "stored" "2025-10-24T15:21:43.321638000Z", "version" "2.0.0", "id" "371e3c4b-9dbb-45a3-98b2-5302c635a040", "timestamp" "2025-10-24T15:21:43.321638000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "3a8b23a0-61e8-4176-8ba0-9ed65e2dc5b9" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:21:43.310022000Z", "version" "2.0.0", "id" "3a8b23a0-61e8-4176-8ba0-9ed65e2dc5b9", "timestamp" "2025-10-24T15:21:43.310022000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c42f2c96-dd00-4c5b-9716-2eaa8955ca14" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "c42f2c96-dd00-4c5b-9716-2eaa8955ca14", "timestamp" "2025-10-24T15:21:43.298617000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:43.298617000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "23a62320-22f6-47ef-bb89-487e155f89f5" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "23a62320-22f6-47ef-bb89-487e155f89f5", "timestamp" "2025-10-24T15:21:43.287660000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:43.287660000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "6ff71844-5e71-4f0b-9ab0-5d9684c9170d" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "6ff71844-5e71-4f0b-9ab0-5d9684c9170d", "timestamp" "2025-10-24T15:21:43.275997000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:43.275997000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "4bb357db-2186-4dd6-8bbe-1acc2bd17f00" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "4bb357db-2186-4dd6-8bbe-1acc2bd17f00", "timestamp" "2025-10-24T15:21:43.264935000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:43.264935000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "585cb900-9c6e-4baf-b3b7-3eda20be838b" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "585cb900-9c6e-4baf-b3b7-3eda20be838b", "timestamp" "2025-10-24T15:21:43.253875000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:43.253875000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "bff5520e-0a48-41ab-a490-c07b5639c461" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "bff5520e-0a48-41ab-a490-c07b5639c461", "timestamp" "2025-10-24T15:21:43.242304000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:43.242304000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "f66fb87f-6d5c-447c-ba32-913d87a2d5fc" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "f66fb87f-6d5c-447c-ba32-913d87a2d5fc", "timestamp" "2025-10-24T15:21:43.231515000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:43.231515000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "62aba576-c51f-4d17-8164-750c70f4476d" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "62aba576-c51f-4d17-8164-750c70f4476d", "timestamp" "2025-10-24T15:21:43.221019000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:43.221019000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "71da86bb-9ddb-41ab-90e4-26b48253a6f1" {"actor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:43.210686000Z", "version" "2.0.0", "id" "71da86bb-9ddb-41ab-90e4-26b48253a6f1", "timestamp" "2025-10-24T15:21:43.210686000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e6354218-57ff-4514-b1b8-89c03e7b6440" {"actor" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:43.200225000Z", "version" "2.0.0", "id" "e6354218-57ff-4514-b1b8-89c03e7b6440", "timestamp" "2025-10-24T15:21:43.200225000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "5bd82921-ce1f-47f0-a0c1-d9d4743af4f8" {"actor" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:43.189741000Z", "version" "2.0.0", "id" "5bd82921-ce1f-47f0-a0c1-d9d4743af4f8", "timestamp" "2025-10-24T15:21:43.189741000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d57d4235-6fed-4a88-a3d6-e5531840cfc6" {"actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:43.179028000Z", "version" "2.0.0", "id" "d57d4235-6fed-4a88-a3d6-e5531840cfc6", "timestamp" "2025-10-24T15:21:43.179028000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "75402d5e-72da-4ad9-8468-c02b85ff8037" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.168672000Z", "version" "2.0.0", "id" "75402d5e-72da-4ad9-8468-c02b85ff8037", "timestamp" "2025-10-24T15:21:43.168672000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "bc7981a9-741f-427f-a1eb-0a1c2fc16cd8" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.155598000Z", "version" "2.0.0", "id" "bc7981a9-741f-427f-a1eb-0a1c2fc16cd8", "timestamp" "2025-10-24T15:21:43.155598000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "6bf7652c-9fca-483c-bba5-a37320dd4fe1" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.145005000Z", "version" "2.0.0", "id" "6bf7652c-9fca-483c-bba5-a37320dd4fe1", "timestamp" "2025-10-24T15:21:43.145005000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2454b56e-9d2a-4093-b8f7-f393164a2997" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.134939000Z", "version" "2.0.0", "id" "2454b56e-9d2a-4093-b8f7-f393164a2997", "timestamp" "2025-10-24T15:21:43.134939000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7939b61a-73d3-48ca-a33e-2b481d905d03" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.124362000Z", "version" "2.0.0", "id" "7939b61a-73d3-48ca-a33e-2b481d905d03", "timestamp" "2025-10-24T15:21:43.124362000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "624516b9-9da0-4004-9714-7f6f6c626b16" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.115138000Z", "version" "2.0.0", "id" "624516b9-9da0-4004-9714-7f6f6c626b16", "timestamp" "2025-10-24T15:21:43.115138000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2efc2cb5-c589-412c-b06c-231bee691e6f" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.106132000Z", "version" "2.0.0", "id" "2efc2cb5-c589-412c-b06c-231bee691e6f", "timestamp" "2025-10-24T15:21:43.106132000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2be760dc-a8a9-432e-8ac9-2f6499a228b8" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.096245000Z", "version" "2.0.0", "id" "2be760dc-a8a9-432e-8ac9-2f6499a228b8", "timestamp" "2025-10-24T15:21:43.096245000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c85000fa-bd63-478b-a5e0-40514194e5d2" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.086352000Z", "version" "2.0.0", "id" "c85000fa-bd63-478b-a5e0-40514194e5d2", "timestamp" "2025-10-24T15:21:43.086352000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8b360a74-5209-4893-a7a3-448171add8ea" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.076029000Z", "version" "2.0.0", "id" "8b360a74-5209-4893-a7a3-448171add8ea", "timestamp" "2025-10-24T15:21:43.076029000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "3da7a9b8-fa81-457b-be68-3157befe7c87" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.066346000Z", "version" "2.0.0", "id" "3da7a9b8-fa81-457b-be68-3157befe7c87", "timestamp" "2025-10-24T15:21:43.066346000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "a365c43b-5136-4f2a-b95b-4c25129f6010" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:43.056453000Z", "version" "2.0.0", "id" "a365c43b-5136-4f2a-b95b-4c25129f6010", "timestamp" "2025-10-24T15:21:43.056453000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "10a6390c-089c-4b04-8ee6-435169e95dda" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "stored" "2025-10-24T15:21:43.046532000Z", "version" "2.0.0", "id" "10a6390c-089c-4b04-8ee6-435169e95dda", "timestamp" "2025-10-24T15:21:43.046532000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "0506bcfd-1538-4c6e-a270-312d7e1d16be" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "stored" "2025-10-24T15:21:43.036445000Z", "version" "2.0.0", "id" "0506bcfd-1538-4c6e-a270-312d7e1d16be", "timestamp" "2025-10-24T15:21:43.036445000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9486e1cc-f34a-40ea-af0e-87cc4115bdfa" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "stored" "2025-10-24T15:21:43.025396000Z", "version" "2.0.0", "id" "9486e1cc-f34a-40ea-af0e-87cc4115bdfa", "timestamp" "2025-10-24T15:21:43.025396000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ad997e4f-3680-45b2-8fa2-a3565b0defdc" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "stored" "2025-10-24T15:21:43.015582000Z", "version" "2.0.0", "id" "ad997e4f-3680-45b2-8fa2-a3565b0defdc", "timestamp" "2025-10-24T15:21:43.015582000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "061dc445-41a1-4696-a718-05044659c5dd" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "061dc445-41a1-4696-a718-05044659c5dd", "timestamp" "2025-10-24T15:21:43.004679000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:43.004679000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "2b75b3a5-65e1-4aae-83f3-75ae673559ea" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "2b75b3a5-65e1-4aae-83f3-75ae673559ea", "timestamp" "2025-10-24T15:21:42.994312000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:42.994312000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "1f02c60f-e343-4f1d-ae69-35fe48775add" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "1f02c60f-e343-4f1d-ae69-35fe48775add", "timestamp" "2025-10-24T15:21:42.983537000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:42.983537000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "7535776b-73d0-47b1-ac44-13fa09893e56" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "7535776b-73d0-47b1-ac44-13fa09893e56", "timestamp" "2025-10-24T15:21:42.973841000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "team" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:42.973841000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "ee741acb-a7a4-4ce8-b8a4-175685e91c3c" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "ee741acb-a7a4-4ce8-b8a4-175685e91c3c", "timestamp" "2025-10-24T15:21:42.964254000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:42.964254000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "0d62b963-3ca6-4b50-9f8f-a3ee30aededc" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "0d62b963-3ca6-4b50-9f8f-a3ee30aededc", "timestamp" "2025-10-24T15:21:42.954396000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:42.954396000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "57f84bd8-5870-4091-a352-d5cdd27677e8" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "57f84bd8-5870-4091-a352-d5cdd27677e8", "timestamp" "2025-10-24T15:21:42.945061000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:42.945061000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "eecf9c65-0bda-423d-9bb8-03831b8adbce" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "eecf9c65-0bda-423d-9bb8-03831b8adbce", "timestamp" "2025-10-24T15:21:42.935530000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:42.935530000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "7d696619-1f84-46f0-af2d-08c0fcdfed32" {"actor" {"objectType" "Group", "name" "Group Identified", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}, "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:42.925975000Z", "version" "2.0.0", "id" "7d696619-1f84-46f0-af2d-08c0fcdfed32", "timestamp" "2025-10-24T15:21:42.925975000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "883d7d91-0979-46b9-b31c-96c30824090d" {"actor" {"objectType" "Group", "name" "Group Identified", "openid" "http://openid.example.org/12345", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:42.916612000Z", "version" "2.0.0", "id" "883d7d91-0979-46b9-b31c-96c30824090d", "timestamp" "2025-10-24T15:21:42.916612000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d1751fcc-f43c-4100-a161-85ab873678be" {"actor" {"objectType" "Group", "name" "Group Identified", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:42.906706000Z", "version" "2.0.0", "id" "d1751fcc-f43c-4100-a161-85ab873678be", "timestamp" "2025-10-24T15:21:42.906706000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "6fb12a8c-2385-4a7c-91e6-73292eb36ab9" {"actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:xapi@adlnet.gov", "member" [{"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}]}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:42.896833000Z", "version" "2.0.0", "id" "6fb12a8c-2385-4a7c-91e6-73292eb36ab9", "timestamp" "2025-10-24T15:21:42.896833000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4506aea2-d4a3-40c6-a743-d6dcd4885b14" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:42.398821000Z", "version" "2.0.0", "id" "4506aea2-d4a3-40c6-a743-d6dcd4885b14", "timestamp" "2025-10-24T15:21:42.398821000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "6d94cff2-3125-453b-ab32-4d9aadc2eaef" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:42.389726000Z", "version" "2.0.0", "id" "6d94cff2-3125-453b-ab32-4d9aadc2eaef", "timestamp" "2025-10-24T15:21:42.389726000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "57a0d0a5-be07-4243-862a-e040806f06f0" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:21:42.380363000Z", "version" "2.0.0", "id" "57a0d0a5-be07-4243-862a-e040806f06f0", "timestamp" "2025-10-24T15:21:42.380363000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b06049dc-eb38-416c-9c77-96a62f8ab120" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "b06049dc-eb38-416c-9c77-96a62f8ab120", "timestamp" "2025-10-24T15:21:42.371205000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:42.371205000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "4611ff9c-e27a-4a9d-bb63-5c89e6665ac6" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:42.358952000Z", "version" "2.0.0", "id" "4611ff9c-e27a-4a9d-bb63-5c89e6665ac6", "timestamp" "2025-10-24T15:21:42.358952000Z"}, "8a6013f4-b1fb-4bd9-8d84-d271f340dc13" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:42.349722000Z", "version" "2.0.0", "id" "8a6013f4-b1fb-4bd9-8d84-d271f340dc13", "timestamp" "2025-10-24T15:21:42.349722000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2bed32bf-f66b-4dea-8954-606312bd76e8" {"verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "actor" {"name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:21:42.339012000Z", "version" "2.0.0", "id" "2bed32bf-f66b-4dea-8954-606312bd76e8", "timestamp" "2025-10-24T15:21:42.339012000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8d9906b6-bdd1-4c6f-aa4a-c77122cb8c91" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI openid", "openid" "http://openid.example.org/12345"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:42.329142000Z", "version" "2.0.0", "id" "8d9906b6-bdd1-4c6f-aa4a-c77122cb8c91", "timestamp" "2025-10-24T15:21:42.329142000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "21994923-9615-476f-a2cd-ac7befb90174" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:42.319704000Z", "version" "2.0.0", "id" "21994923-9615-476f-a2cd-ac7befb90174", "timestamp" "2025-10-24T15:21:42.319704000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "fe7f475d-848c-40f6-a27a-0e78ad37bcb8" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:42.310171000Z", "version" "2.0.0", "id" "fe7f475d-848c-40f6-a27a-0e78ad37bcb8", "timestamp" "2025-10-24T15:21:42.310171000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "278ee3e8-9ee0-4356-a094-c96431826a62" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:42.300991000Z", "version" "2.0.0", "id" "278ee3e8-9ee0-4356-a094-c96431826a62", "timestamp" "2025-10-24T15:21:42.300991000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d31e3bd7-a274-410f-9323-f65270249db7" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI openid", "openid" "http://openid.example.org/12345"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:42.281363000Z", "version" "2.0.0", "id" "d31e3bd7-a274-410f-9323-f65270249db7", "timestamp" "2025-10-24T15:21:42.281363000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "816581db-cf0a-450c-ac42-2f4814dd1f06" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:42.271887000Z", "version" "2.0.0", "id" "816581db-cf0a-450c-ac42-2f4814dd1f06", "timestamp" "2025-10-24T15:21:42.271887000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "458b8cc2-b935-4bfb-aac5-dbfde9ddb280" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:42.262510000Z", "version" "2.0.0", "id" "458b8cc2-b935-4bfb-aac5-dbfde9ddb280", "timestamp" "2025-10-24T15:21:42.262510000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2b3104ec-c62b-4fef-895f-ac06b82de4b7" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:42.253700000Z", "version" "2.0.0", "id" "2b3104ec-c62b-4fef-895f-ac06b82de4b7", "timestamp" "2025-10-24T15:21:42.253700000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "2145f9c8-5e0f-4cf0-aeb0-d8fba84464f6" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Agent", "name" "xAPI openid", "openid" "http://openid.example.org/12345"}, "stored" "2025-10-24T15:21:42.237432000Z", "version" "2.0.0", "id" "2145f9c8-5e0f-4cf0-aeb0-d8fba84464f6", "timestamp" "2025-10-24T15:21:42.237432000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9bfd7aeb-48df-4a0b-934b-5a7d5afe7b56" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "stored" "2025-10-24T15:21:42.228384000Z", "version" "2.0.0", "id" "9bfd7aeb-48df-4a0b-934b-5a7d5afe7b56", "timestamp" "2025-10-24T15:21:42.228384000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c527b9b1-ac3b-4818-a8dd-4837eef5c071" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "stored" "2025-10-24T15:21:42.219273000Z", "version" "2.0.0", "id" "c527b9b1-ac3b-4818-a8dd-4837eef5c071", "timestamp" "2025-10-24T15:21:42.219273000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "3e687264-def6-46ec-8560-8e4afe63e248" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "stored" "2025-10-24T15:21:42.210665000Z", "version" "2.0.0", "id" "3e687264-def6-46ec-8560-8e4afe63e248", "timestamp" "2025-10-24T15:21:42.210665000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d614bd49-d647-4393-85af-b6426555264a" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "d614bd49-d647-4393-85af-b6426555264a", "timestamp" "2025-10-24T15:21:42.195868000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI openid", "openid" "http://openid.example.org/12345"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:42.195868000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "f23e3465-8ebc-4b29-bb76-efb0bac3e4e6" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "f23e3465-8ebc-4b29-bb76-efb0bac3e4e6", "timestamp" "2025-10-24T15:21:42.187542000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:42.187542000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "fb1c9a63-19a9-4b6a-8036-370efd19a249" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "fb1c9a63-19a9-4b6a-8036-370efd19a249", "timestamp" "2025-10-24T15:21:42.180225000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:42.180225000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "c83aa955-9cee-4fe9-ac67-3307906f2a0e" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "c83aa955-9cee-4fe9-ac67-3307906f2a0e", "timestamp" "2025-10-24T15:21:42.172971000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "instructor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:42.172971000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "f9cdd8f2-a54c-4a07-8255-a54f6667017c" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:42.159708000Z", "version" "2.0.0", "id" "f9cdd8f2-a54c-4a07-8255-a54f6667017c", "timestamp" "2025-10-24T15:21:42.159708000Z"}, "57da15c3-394c-40ff-937b-6a1494017fd0" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:42.151052000Z", "version" "2.0.0", "id" "57da15c3-394c-40ff-937b-6a1494017fd0", "timestamp" "2025-10-24T15:21:42.151052000Z"}, "1fcc07df-c46d-4521-a1e4-5d1448157dd0" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:42.143668000Z", "version" "2.0.0", "id" "1fcc07df-c46d-4521-a1e4-5d1448157dd0", "timestamp" "2025-10-24T15:21:42.143668000Z"}, "6803d004-a936-4a52-afdc-03b28781b208" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:42.134758000Z", "version" "2.0.0", "id" "6803d004-a936-4a52-afdc-03b28781b208", "timestamp" "2025-10-24T15:21:42.134758000Z"}, "8b224f1a-5403-41f9-8769-d1442dcf0a7f" {"actor" {"objectType" "Agent", "name" "xAPI openid", "openid" "http://openid.example.org/12345"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:42.122502000Z", "version" "2.0.0", "id" "8b224f1a-5403-41f9-8769-d1442dcf0a7f", "timestamp" "2025-10-24T15:21:42.122502000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f57fdd63-cca5-490e-9cc2-2c9c4b9b9422" {"actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:42.114961000Z", "version" "2.0.0", "id" "f57fdd63-cca5-490e-9cc2-2c9c4b9b9422", "timestamp" "2025-10-24T15:21:42.114961000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "41719301-289f-41b5-a1b3-b62fce7f1e5c" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:42.107393000Z", "version" "2.0.0", "id" "41719301-289f-41b5-a1b3-b62fce7f1e5c", "timestamp" "2025-10-24T15:21:42.107393000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "04fcd75e-d87f-40fd-a696-c94ff2a70ecb" {"actor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:42.097695000Z", "version" "2.0.0", "id" "04fcd75e-d87f-40fd-a696-c94ff2a70ecb", "timestamp" "2025-10-24T15:21:42.097695000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "de04b6e5-9c49-4375-be7b-adad6e834ab4" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/verify/complete/34534100123", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "fr-FR" "réunion"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:38.170950001Z", "version" "2.0.0", "id" "de04b6e5-9c49-4375-be7b-adad6e834ab4", "timestamp" "2025-10-24T15:21:38.170950001Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "72b0be4c-6cd1-42e4-9ae5-af127813410e" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/verify/complete/34534100123", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:38.170950000Z", "version" "2.0.0", "id" "72b0be4c-6cd1-42e4-9ae5-af127813410e", "timestamp" "2025-10-24T15:21:38.170950000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "24f7c7a0-d9c2-4740-9460-5dd58741d073" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/verify/complete/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "stored" "2025-10-24T15:21:38.151710000Z", "version" "2.0.0", "id" "24f7c7a0-d9c2-4740-9460-5dd58741d073", "timestamp" "2025-10-24T15:21:38.151710000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e86cb238-6d73-4a1f-a388-446c674efcd5" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:38.138839000Z", "version" "2.0.0", "id" "e86cb238-6d73-4a1f-a388-446c674efcd5", "timestamp" "2025-10-24T15:21:38.138839000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "6d554c6e-4077-4ff5-924c-901b2f4e8482" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:38.124984000Z", "version" "2.0.0", "id" "6d554c6e-4077-4ff5-924c-901b2f4e8482", "timestamp" "2025-10-24T15:21:38.124984000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4bf314bf-3e0f-461d-b155-6b0bd0e3770a" {"verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "actor" {"objectType" "Agent", "name" "xAPI account", "account" {"homePage" "http://www.example.com", "name" "xAPI account name"}}, "stored" "2025-10-24T15:21:38.105751000Z", "version" "2.0.0", "id" "4bf314bf-3e0f-461d-b155-6b0bd0e3770a", "timestamp" "2025-10-24T15:21:38.105751000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "a34b1d79-0029-4519-9eb9-5d0e11916440" {"verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "actor" {"objectType" "Agent", "name" "xAPI openid", "openid" "http://openid.example.org/12345"}, "stored" "2025-10-24T15:21:38.092059000Z", "version" "2.0.0", "id" "a34b1d79-0029-4519-9eb9-5d0e11916440", "timestamp" "2025-10-24T15:21:38.092059000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "802bd47c-cbe6-485a-84c7-bae0f6a4de25" {"verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "actor" {"objectType" "Agent", "name" "xAPI mbox_sha1sum", "mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"}, "stored" "2025-10-24T15:21:38.077987000Z", "version" "2.0.0", "id" "802bd47c-cbe6-485a-84c7-bae0f6a4de25", "timestamp" "2025-10-24T15:21:38.077987000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b6864bea-5e3c-4d46-bb3f-8cf5b341da03" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:38.061821000Z", "version" "2.0.0", "id" "b6864bea-5e3c-4d46-bb3f-8cf5b341da03", "timestamp" "2025-10-24T15:21:38.061821000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c56132a2-9b95-4462-a9b0-78547bfb03d5" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:38.042683000Z", "version" "2.0.0", "id" "c56132a2-9b95-4462-a9b0-78547bfb03d5", "timestamp" "2025-10-24T15:21:38.042683000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7759bde7-119a-406a-b9d1-73ab3b03432a" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:38.024258000Z", "version" "2.0.0", "id" "7759bde7-119a-406a-b9d1-73ab3b03432a", "timestamp" "2025-10-24T15:21:38.024258000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1c063f5b-dc71-4d75-b830-599a8940c21b" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:37.999041000Z", "version" "2.0.0", "id" "1c063f5b-dc71-4d75-b830-599a8940c21b", "timestamp" "2025-10-24T15:21:37.999041000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "e7756509-33a3-4bac-a2f4-910ab7331fa1" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:37.971600000Z", "version" "2.0.0", "id" "e7756509-33a3-4bac-a2f4-910ab7331fa1", "timestamp" "2025-10-24T15:21:37.971600000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8eb69744-b879-4f46-956e-cb11bf12cc5d" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:37.936104000Z", "version" "2.0.0", "id" "8eb69744-b879-4f46-956e-cb11bf12cc5d", "timestamp" "2025-10-24T15:21:37.936104000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "f910dc86-6889-44ac-87a2-85d0b22a2ffe" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "timestamp" "2025-10-24T15:26:35.943Z", "id" "f910dc86-6889-44ac-87a2-85d0b22a2ffe", "stored" "2025-10-24T15:21:35.947969000Z", "version" "2.0.0", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8ce153dc-24e1-462e-8ca4-582b354cac3f" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "8ce153dc-24e1-462e-8ca4-582b354cac3f", "timestamp" "2025-10-24T15:21:34.828588000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:34.828588000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "description" {"en-US" "A test attachment (description)"}, "contentType" "text/plain", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "fileUrl" "http://over.there.com/file.txt"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "d9bd6ddc-3a15-4331-8552-3bdac92aac34" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:40025513-ae5a-4a40-80d4-52bb9aa36b87@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended59c8f757-6ddc-466b-922a-382b594d375e", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:e72563f6-013d-472b-94d5-1d98c8317139@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported1eca6162-cf09-4037-99a4-70d3d6b53253", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/sub", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:sub@adlnet.gov"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/345348e325d7a-c2b4-468b-af89-ed5350179425"}}, "stored" "2025-10-24T15:21:33.614854000Z", "version" "2.0.0", "id" "d9bd6ddc-3a15-4331-8552-3bdac92aac34", "timestamp" "2025-10-24T15:21:33.614854000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "251c66ac-3087-4216-b43e-68111014807e" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534ad006b60-b44d-488b-a370-b7b064edadbc"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attendedb2592319-842b-4c87-9fe2-e51d0f08b73c", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "251c66ac-3087-4216-b43e-68111014807e", "timestamp" "2025-10-24T15:21:33.599093000Z", "context" {"registration" "4553906b-cf44-44bf-97ee-c57d014dba9c", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/pri", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:4851a52f-804a-4254-8509-e3b3b06f1c83@adlnet.gov"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:33.599093000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:4c56c500-fa12-47d8-9155-15809abe0473@adlnet.gov"}}, "06446013-b515-4207-a33c-a7b4fe5c1dd3" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/test/voided/target/154d0eed-24bc-41d3-8130-c170d8db621f", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "StatementRef", "id" "d606930e-dbb6-4ea4-aaa6-7f0d36b02158"}, "id" "06446013-b515-4207-a33c-a7b4fe5c1dd3", "stored" "2025-10-24T15:21:32.458909000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:32.458909000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9c04981f-984d-4c66-aa9b-cc8690a00bd4" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "d606930e-dbb6-4ea4-aaa6-7f0d36b02158"}, "id" "9c04981f-984d-4c66-aa9b-cc8690a00bd4", "stored" "2025-10-24T15:21:32.438284000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:32.438284000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "3e0f60ab-39f9-4dac-a843-a5cb4f4e9da3" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "3defff45-e780-48a6-ba53-859aa4f56a3a"}, "stored" "2025-10-24T15:21:31.341091000Z", "version" "2.0.0", "id" "3e0f60ab-39f9-4dac-a843-a5cb4f4e9da3", "timestamp" "2025-10-24T15:21:31.341091000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "be8cb046-7b58-41f7-9b8e-f74c0ff232d3" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "be8cb046-7b58-41f7-9b8e-f74c0ff232d3", "timestamp" "2025-10-24T15:21:30.243835000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:30.243835000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "description" {"en-US" "A test attachment (description)"}, "contentType" "text/plain", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "fileUrl" "http://over.there.com/file.txt"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "5be408d2-8496-4edc-9c8d-a3a4c3e4c94b" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "5be408d2-8496-4edc-9c8d-a3a4c3e4c94b", "timestamp" "2025-10-24T15:21:29.037924000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/pri", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:pri@adlnet.gov"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:29.037924000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "ead80508-053c-4031-bc74-8b248e742164" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "3e5e6c93-5e60-4e7d-a1b2-f47086e15169"}, "stored" "2025-10-24T15:21:27.748268000Z", "version" "2.0.0", "id" "ead80508-053c-4031-bc74-8b248e742164", "timestamp" "2025-10-24T15:21:27.748268000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "8cacf05b-b8bc-4694-a4c8-836a6fa1c822" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "8cacf05b-b8bc-4694-a4c8-836a6fa1c822", "stored" "2025-10-24T15:21:26.530322000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:26.530322000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ce4027ae-9649-4569-9b5a-0874476b12d9" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "ce4027ae-9649-4569-9b5a-0874476b12d9", "timestamp" "2025-10-24T15:21:25.418689000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:25.418689000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "contentType" "text/plain", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "description" {"en-US" "A test attachment (description)"}} {"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "contentType" "text/plain", "length" 33, "sha2" "7063d0a4cfa93373753ad2f5a6ffcf684559fb1df3c2f0473a14ece7d4edb06a", "description" {"en-US" "A test attachment (description)"}}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "6c51bf14-57a9-43c7-88ba-4692004285cb" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:agentfb74b706-eb00-429a-9452-fc9a153f5087@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Group", "name" "Group Identified", "mbox" "mailto:groupb05b2312-b043-45b1-b96c-ee64fec81f1e@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"pa-IN" "ਹਾਜ਼ਰ", "sk-SK" "zúčastnil", "ja-JP" "出席した", "en-US" "attended", "en-GB" "attended", "hy-AM" "ներկա է գտնվել", "ru-RU" "участие", "ar-EG" "حضر", "ko-KR" "참석", "is-IS" "sótti", "kn-IN" "ಹಾಜರಿದ್ದರು"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/unicode/42bd2b77-592f-4328-99b7-78706b8014cc", "definition" {"name" {"pa-IN" "ਹਾਜ਼ਰ", "en" "Other", "sk-SK" "zúčastnil", "ja-JP" "出席した", "en-US" "attended", "en-GB" "attended", "hy-AM" "ներկա է գտնվել", "ru-RU" "участие", "ar-EG" "حضر", "ko-KR" "참석", "is-IS" "sótti", "kn-IN" "ಹಾಜರಿದ್ದರು"}, "description" {"en-US" "On this map, please mark Franklin, TN", "en-GB" "On this map, please mark Franklin, TN"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "other", "correctResponsesPattern" ["(35.937432,-86.868896)"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, "stored" "2025-10-24T15:21:25.354635000Z", "version" "2.0.0", "id" "6c51bf14-57a9-43c7-88ba-4692004285cb", "timestamp" "2025-10-24T15:21:25.354635000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d10f2b9a-fd18-48b2-8908-6e96d88ffe8d" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "d10f2b9a-fd18-48b2-8908-6e96d88ffe8d", "timestamp" "2025-10-24T15:21:25.308285000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/pri", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:pri@adlnet.gov"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:25.308285000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "ac0305a6-fe0a-409e-b855-f2ea8034a082" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "ac0305a6-fe0a-409e-b855-f2ea8034a082", "timestamp" "2025-10-24T15:21:24.213487000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/pri", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:pri@adlnet.gov"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:24.213487000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "bfa7b23e-f0d4-46e1-bd51-ab298322a9e5" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "bfa7b23e-f0d4-46e1-bd51-ab298322a9e5", "timestamp" "2025-10-24T15:21:23.151887000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/pri", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:pri@adlnet.gov"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:23.151887000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "d4fb4d7f-d752-4338-9c39-662e39e9be45" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "9e49cc54-fd73-41ba-8a2d-3fe3a9ef59e3"}, "stored" "2025-10-24T15:21:23.113503000Z", "version" "2.0.0", "id" "d4fb4d7f-d752-4338-9c39-662e39e9be45", "timestamp" "2025-10-24T15:21:23.113503000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "7e12021c-dca7-4d6e-8843-a9b6463eb185" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "7e12021c-dca7-4d6e-8843-a9b6463eb185", "stored" "2025-10-24T15:21:23.091886000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:23.091886000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ff53e51c-6661-4bc9-9687-ac90b974b4a7" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "SubStatement", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/reported", "display" {"en-GB" "reported", "en-US" "reported"}}, "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/sub", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:sub@adlnet.gov"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}}, "stored" "2025-10-24T15:21:21.888586000Z", "version" "2.0.0", "id" "ff53e51c-6661-4bc9-9687-ac90b974b4a7", "timestamp" "2025-10-24T15:21:21.888586000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "6121fd2e-d71c-401d-9b79-a48c9c2b4291" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "6121fd2e-d71c-401d-9b79-a48c9c2b4291", "timestamp" "2025-10-24T15:21:21.877252000Z", "context" {"registration" "ec531277-b57b-4c15-8d91-d292c5b2b8f7", "platform" "Example virtual meeting software", "language" "tlh", "statement" {"objectType" "StatementRef", "id" "6690e6c9-3ef0-4ed3-8b37-7f3964730bee"}, "contextActivities" {"category" [{"objectType" "Activity", "id" "http://www.example.com/test/array/statements/pri", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}]}, "instructor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:pri@adlnet.gov"}}, "version" "2.0.0", "stored" "2025-10-24T15:21:21.877252000Z", "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "9fc01c66-a8c8-4c6e-88b4-05bc669e5604" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/voided", "display" {"en-US" "voided"}}, "object" {"objectType" "StatementRef", "id" "769a8c99-ccf5-4401-8e8a-7b2ac09c6e23"}, "stored" "2025-10-24T15:21:21.858455000Z", "version" "2.0.0", "id" "9fc01c66-a8c8-4c6e-88b4-05bc669e5604", "timestamp" "2025-10-24T15:21:21.858455000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "eb7bf2d2-fe23-4180-97e1-846a38c2779b" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "eb7bf2d2-fe23-4180-97e1-846a38c2779b", "stored" "2025-10-24T15:21:21.835964000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:21.835964000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "b9b1ba18-5429-4360-b05f-ddb9abe6dc05" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "b9b1ba18-5429-4360-b05f-ddb9abe6dc05", "stored" "2025-10-24T15:21:21.817272000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:21.817272000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "3a8a2114-c71e-4459-9f7c-2305e38f9617" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:21.810897000Z", "version" "2.0.0", "id" "3a8a2114-c71e-4459-9f7c-2305e38f9617", "timestamp" "2025-10-24T15:21:21.810897000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "ee8cafd2-6526-4b53-b7fb-0c523a29a62a" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:21.800240000Z", "version" "2.0.0", "id" "ee8cafd2-6526-4b53-b7fb-0c523a29a62a", "timestamp" "2025-10-24T15:21:21.800240000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4183a31d-5d66-4a3f-a436-ba9fd728876b" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "4183a31d-5d66-4a3f-a436-ba9fd728876b", "stored" "2025-10-24T15:21:21.770918000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:21.770918000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "1d47717f-c255-4243-b02e-312b4ad86137" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "1d47717f-c255-4243-b02e-312b4ad86137", "stored" "2025-10-24T15:21:21.738318000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:21.738318000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "637900f5-409c-4da7-8829-85e4703bd2a0" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "637900f5-409c-4da7-8829-85e4703bd2a0", "stored" "2025-10-24T15:21:21.725459000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:21.725459000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "c13dbf13-4fee-4b18-ada5-24f64b6622fa" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "c13dbf13-4fee-4b18-ada5-24f64b6622fa", "stored" "2025-10-24T15:21:21.719640000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:21.719640000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d3f07bde-91d4-44ac-8709-7406f423bb88" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "d3f07bde-91d4-44ac-8709-7406f423bb88", "stored" "2025-10-24T15:21:21.705665000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:21.705665000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "18dd987e-a315-429d-98b8-0bae9368e11c" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:21.698658000Z", "version" "2.0.0", "id" "18dd987e-a315-429d-98b8-0bae9368e11c", "timestamp" "2025-10-24T15:21:21.698658000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "4e968a05-0b65-41cb-9183-6ea46efd19b7" {"actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:21.076787000Z", "version" "2.0.0", "id" "4e968a05-0b65-41cb-9183-6ea46efd19b7", "timestamp" "2025-10-24T15:21:21.076787000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "fb0127b5-4da5-487f-ad2f-6ffd1bdcf47e" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "fb0127b5-4da5-487f-ad2f-6ffd1bdcf47e", "timestamp" "2025-10-24T15:21:21.069171000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:21.069171000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "description" {"en-US" "A test attachment (description)"}, "contentType" "text/plain; charset=ascii", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "fileUrl" "http://over.there.com/file.txt"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "6de1e67a-a369-4933-9846-5d5f6a8fc05b" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "6de1e67a-a369-4933-9846-5d5f6a8fc05b", "timestamp" "2025-10-24T15:21:21.053121000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:21.053121000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "description" {"en-US" "A test attachment (description)"}, "contentType" "image/jpeg", "length" 15770, "sha2" "4d02ef2471928d329c03be883cf0b61f0986a790641210ed8ed2e74c1d75774d"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "15be8a5b-2e35-4b85-a4b6-065eef4c866a" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "15be8a5b-2e35-4b85-a4b6-065eef4c866a", "timestamp" "2025-10-24T15:21:21.030958000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:21.030958000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "description" {"en-US" "A test attachment (description)"}, "contentType" "text/plain; charset=ascii", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "fileUrl" "http://over.there.com/file.txt"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "812b80b2-e107-4d29-9bcf-8f47dd332e2c" {"object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "id" "812b80b2-e107-4d29-9bcf-8f47dd332e2c", "timestamp" "2025-10-24T15:21:21.022486000Z", "version" "2.0.0", "stored" "2025-10-24T15:21:21.022486000Z", "attachments" [{"usageType" "http://example.com/attachment-usage/test", "display" {"en-US" "A test attachment"}, "description" {"en-US" "A test attachment (description)"}, "contentType" "text/plain; charset=ascii", "length" 27, "sha2" "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", "fileUrl" "http://over.there.com/file.txt"}], "actor" {"objectType" "Agent", "name" "xAPI account", "mbox" "mailto:xapi@adlnet.gov"}}, "0932a3da-c4ac-428f-91d1-9b0b216d7362" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "0932a3da-c4ac-428f-91d1-9b0b216d7362", "stored" "2025-10-24T15:21:20.969619000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:20.969619000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}}, :voided-statements {"769a8c99-ccf5-4401-8e8a-7b2ac09c6e23" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "769a8c99-ccf5-4401-8e8a-7b2ac09c6e23", "stored" "2025-10-24T15:21:21.851227000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:21.851227000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "9e49cc54-fd73-41ba-8a2d-3fe3a9ef59e3" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "9e49cc54-fd73-41ba-8a2d-3fe3a9ef59e3", "stored" "2025-10-24T15:21:23.106974000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:23.106974000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "3e5e6c93-5e60-4e7d-a1b2-f47086e15169" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "3e5e6c93-5e60-4e7d-a1b2-f47086e15169", "stored" "2025-10-24T15:21:27.739108000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:27.739108000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "3defff45-e780-48a6-ba53-859aa4f56a3a" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "3defff45-e780-48a6-ba53-859aa4f56a3a", "stored" "2025-10-24T15:21:31.324562000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:31.324562000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "d606930e-dbb6-4ea4-aaa6-7f0d36b02158" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/test/voided/target/154d0eed-24bc-41d3-8130-c170d8db621f", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "d606930e-dbb6-4ea4-aaa6-7f0d36b02158", "stored" "2025-10-24T15:21:32.408166000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:32.408166000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "a9414764-4f53-4cff-b8dc-4ff9c0afed8a" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "id" "a9414764-4f53-4cff-b8dc-4ff9c0afed8a", "stored" "2025-10-24T15:21:47.438700000Z", "version" "2.0.0", "timestamp" "2025-10-24T15:21:47.438700000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}, "fe9afd45-8f20-4b26-8d68-9b4f6de1b839" {"actor" {"objectType" "Agent", "name" "xAPI mbox", "mbox" "mailto:xapi@adlnet.gov"}, "verb" {"id" "http://adlnet.gov/expapi/verbs/attended", "display" {"en-GB" "attended", "en-US" "attended"}}, "object" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534"}, "stored" "2025-10-24T15:21:48.534096000Z", "version" "2.0.0", "id" "fe9afd45-8f20-4b26-8d68-9b4f6de1b839", "timestamp" "2025-10-24T15:21:48.534096000Z", "authority" {"name" "Memory LRS", "objectType" "Agent", "account" {"name" "root", "homePage" "http://localhost:8080"}}}}, :refs {"9c04981f-984d-4c66-aa9b-cc8690a00bd4" "d606930e-dbb6-4ea4-aaa6-7f0d36b02158", "cb3ccc63-d6a5-40b6-bd21-77397af7b4c1" "8f87ccde-bb56-4c2e-ab83-44982ef22df0", "3e0f60ab-39f9-4dac-a843-a5cb4f4e9da3" "3defff45-e780-48a6-ba53-859aa4f56a3a", "ead80508-053c-4031-bc74-8b248e742164" "3e5e6c93-5e60-4e7d-a1b2-f47086e15169", "10ad138b-4e4b-4062-9986-cee2cc63d54f" "8f87ccde-bb56-4c2e-ab83-44982ef22df0", "06446013-b515-4207-a33c-a7b4fe5c1dd3" "d606930e-dbb6-4ea4-aaa6-7f0d36b02158", "481310fe-de55-44b6-af3b-06b87f4876c6" "8f87ccde-bb56-4c2e-ab83-44982ef22df0", "82ddaa3e-dd55-4d77-ae45-b6ad96c50387" "fe9afd45-8f20-4b26-8d68-9b4f6de1b839", "91e01500-4a7f-4615-bca0-23a2bbb2a7c3" "8f87ccde-bb56-4c2e-ab83-44982ef22df0", "2b1ce4a2-1b23-4a95-8f7e-1992aa6044f3" "fe9afd45-8f20-4b26-8d68-9b4f6de1b839", "5a597f31-9cca-4f05-ba58-78d40769a49a" "a9414764-4f53-4cff-b8dc-4ff9c0afed8a", "d4fb4d7f-d752-4338-9c39-662e39e9be45" "9e49cc54-fd73-41ba-8a2d-3fe3a9ef59e3", "9fc01c66-a8c8-4c6e-88b4-05bc669e5604" "769a8c99-ccf5-4401-8e8a-7b2ac09c6e23", "26e18fdb-6e78-4718-a1e2-800eb9952787" "1070fefb-725b-43e1-b68c-ad9671144991"}, :activities {"http://www.example.com/test/array/statements/pri" {"id" "http://www.example.com/test/array/statements/pri", "objectType" "Activity", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "http://example.com/path/../e72b9b1d-d047-42ff-9bfc-cd8de28315e3" {"objectType" "Activity", "id" "http://example.com/path/../e72b9b1d-d047-42ff-9bfc-cd8de28315e3"}, "http://www.example.com/unicode/42bd2b77-592f-4328-99b7-78706b8014cc" {"objectType" "Activity", "id" "http://www.example.com/unicode/42bd2b77-592f-4328-99b7-78706b8014cc", "definition" {"name" {"pa-IN" "ਹਾਜ਼ਰ", "en" "Other", "sk-SK" "zúčastnil", "ja-JP" "出席した", "en-US" "attended", "en-GB" "attended", "hy-AM" "ներկա է գտնվել", "ru-RU" "участие", "ar-EG" "حضر", "ko-KR" "참석", "is-IS" "sótti", "kn-IN" "ಹಾಜರಿದ್ದರು"}, "description" {"en-US" "On this map, please mark Franklin, TN", "en-GB" "On this map, please mark Franklin, TN"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "other", "correctResponsesPattern" ["(35.937432,-86.868896)"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "http://www.example.com/unicode" {"objectType" "Activity", "id" "http://www.example.com/unicode", "definition" {"name" {"pa-IN" "ਹਾਜ਼ਰ", "en" "Other", "sk-SK" "zúčastnil", "ja-JP" "出席した", "en-US" "attended", "en-GB" "attended", "hy-AM" "ներկա է գտնվել", "ru-RU" "участие", "ar-EG" "حضر", "ko-KR" "참석", "is-IS" "sótti", "kn-IN" "ಹಾಜರಿದ್ದರು"}, "description" {"en-US" "On this map, please mark Franklin, TN", "en-GB" "On this map, please mark Franklin, TN"}, "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "other", "correctResponsesPattern" ["(35.937432,-86.868896)"], "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "http://www.example.com/verify/complete/34534" {"objectType" "Activity", "id" "http://www.example.com/verify/complete/34534", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "http://www.example.com/meetings/categories/teammeeting" {"id" "http://www.example.com/meetings/categories/teammeeting", "objectType" "Activity", "definition" {"extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}, "moreInfo" "http://virtualmeeting.example.com/345256", "interactionType" "sequencing", "name" {"en" "Sequencing"}, "choices" [{"id" "tim", "description" {"en-US" "Tim"}} {"id" "ben", "description" {"en-US" "Ben"}} {"id" "ells", "description" {"en-US" "Ells"}} {"id" "mike", "description" {"en-US" "Mike"}}], "type" "http://adlnet.gov/expapi/activities/cmi.interaction", "correctResponsesPattern" ["tim[,]mike[,]ells[,]ben"], "description" {"en" "Order players by their pong ladder position:"}}}, "http://www.example.com/meetings/occurances/34534ad006b60-b44d-488b-a370-b7b064edadbc" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/34534ad006b60-b44d-488b-a370-b7b064edadbc"}, "http://www.example.com/meetings/occurances/345341b571e06-2e8b-4a41-97e1-eeffbd6c8032" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/345341b571e06-2e8b-4a41-97e1-eeffbd6c8032"}, "http://www.example.com/meetings/occurances/345348e325d7a-c2b4-468b-af89-ed5350179425" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/345348e325d7a-c2b4-468b-af89-ed5350179425"}, "http://www.example.com/verify/complete/34534100123" {"id" "http://www.example.com/verify/complete/34534100123", "objectType" "Activity", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting", "fr-FR" "réunion"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}, "http://www.example.com/meetings/occurances/34534" {"id" "http://www.example.com/meetings/occurances/34534", "objectType" "Activity", "definition" {"type" "http://adlnet.gov/expapi/activities/meeting", "name" {"en-GB" "example meeting", "en-US" "example meeting", "de-DE" "Beispiel Treffen", "zh-Hans-CN" "例如会议"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present.", "de-DE" "Ein Beispiel Sitzung, die auf einem bestimmten Anlass mit bestimmten Personen zufällig anwesend.", "zh-Hant" "所發生的與目前某些人特定場合的一個例子會議。", "ase" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}, "http://example.com/null" nil, "http://example.com/ex" nil}, "interactionType" "fill-in", "correctResponsesPattern" ["Bob\"s your uncle"]}}, "http://www.example.com/meetings/occurances/3453411357d21-5130-49ab-91e2-a95320019b53" {"objectType" "Activity", "id" "http://www.example.com/meetings/occurances/3453411357d21-5130-49ab-91e2-a95320019b53"}, "http://www.example.com/test/array/statements/sub" {"id" "http://www.example.com/test/array/statements/sub", "objectType" "Activity", "definition" {"name" {"en-GB" "example meeting", "en-US" "example meeting"}, "description" {"en-GB" "An example meeting that happened on a specific occasion with certain people present.", "en-US" "An example meeting that happened on a specific occasion with certain people present."}, "moreInfo" "http://virtualmeeting.example.com/345256", "extensions" {"http://example.com/profiles/meetings/extension/location" "X:\\meetings\\minutes\\examplemeeting.one", "http://example.com/profiles/meetings/extension/reporter" {"name" "Thomas", "id" "http://openid.com/342"}}}}}, :agents {["mbox" "mailto:1a9666d5-300e-4304-837d-9a8782917ee8@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:1a9666d5-300e-4304-837d-9a8782917ee8@adlnet.gov"], "name" ["xAPI account"]}, ["mbox" "mailto:agentfb74b706-eb00-429a-9452-fc9a153f5087@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:agentfb74b706-eb00-429a-9452-fc9a153f5087@adlnet.gov"], "name" ["xAPI account"]}, ["mbox" "mailto:4c56c500-fa12-47d8-9155-15809abe0473@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:4c56c500-fa12-47d8-9155-15809abe0473@adlnet.gov"], "name" ["xAPI account"]}, ["mbox_sha1sum" "cd9b00a5611f94eaa7b1661edab976068e364975"] {"objectType" "Person", "mbox_sha1sum" ["cd9b00a5611f94eaa7b1661edab976068e364975"], "name" ["xAPI mbox_sha1sum"]}, ["mbox" "mailto:af9d7b2a-bb7e-416f-bdc2-5cd09e25fe68@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:af9d7b2a-bb7e-416f-bdc2-5cd09e25fe68@adlnet.gov"], "name" ["xAPI mbox"]}, ["mbox" "mailto:player-1@example.com"] {"objectType" "Person", "mbox" ["mailto:player-1@example.com"]}, ["mbox" "mailto:e72563f6-013d-472b-94d5-1d98c8317139@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:e72563f6-013d-472b-94d5-1d98c8317139@adlnet.gov"], "name" ["xAPI account"]}, ["mbox" "mailto:xapi@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:xapi@adlnet.gov"], "name" ["xAPI mbox" "xAPI account"]}, ["mbox" "mailto:d10214bc-e768-4f46-b523-16bab4b61e61@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:d10214bc-e768-4f46-b523-16bab4b61e61@adlnet.gov"], "name" ["xAPI account"]}, ["account" {"homePage" "http://www.example.com", "name" "xAPI account name"}] {"objectType" "Person", "name" ["xAPI account"], "account" [{"homePage" "http://www.example.com", "name" "xAPI account name"}]}, ["mbox" "mailto:40025513-ae5a-4a40-80d4-52bb9aa36b87@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:40025513-ae5a-4a40-80d4-52bb9aa36b87@adlnet.gov"], "name" ["xAPI account"]}, ["mbox" "mailto:4851a52f-804a-4254-8509-e3b3b06f1c83@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:4851a52f-804a-4254-8509-e3b3b06f1c83@adlnet.gov"], "name" ["xAPI mbox"]}, ["mbox" "mailto:2a7ee93c-f315-46e4-bc55-c2497ebb1f93@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:2a7ee93c-f315-46e4-bc55-c2497ebb1f93@adlnet.gov"], "name" ["xAPI account"]}, ["account" {"name" "root", "homePage" "http://localhost:8080"}] {"objectType" "Person", "name" ["Memory LRS"], "account" [{"name" "root", "homePage" "http://localhost:8080"}]}, ["mbox" "mailto:sub@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:sub@adlnet.gov"], "name" ["xAPI mbox"]}, ["openid" "http://openid.example.org/12345"] {"objectType" "Person", "name" ["xAPI openid"], "openid" ["http://openid.example.org/12345"]}, ["mbox" "mailto:pri@adlnet.gov"] {"objectType" "Person", "mbox" ["mailto:pri@adlnet.gov"], "name" ["xAPI mbox"]}}, :attachments {"4d02ef2471928d329c03be883cf0b61f0986a790641210ed8ed2e74c1d75774d" {:sha2 "4d02ef2471928d329c03be883cf0b61f0986a790641210ed8ed2e74c1d75774d", :contentType "image/jpeg", :length 31540, :content [102 102 100 56 102 102 101 48 48 48 49 48 52 97 52 54 52 57 52 54 48 48 48 49 48 49 48 49 48 48 52 56 48 48 52 56 48 48 48 48 102 102 101 50 48 55 98 56 52 57 52 51 52 51 53 102 53 48 53 50 52 102 52 54 52 57 52 99 52 53 48 48 48 49 48 49 48 48 48 48 48 55 97 56 54 49 55 48 55 48 54 99 48 50 50 48 48 48 48 48 54 100 54 101 55 52 55 50 53 50 52 55 52 50 50 48 53 56 53 57 53 97 50 48 48 55 100 57 48 48 48 50 48 48 49 57 48 48 48 98 48 48 49 97 48 48 48 98 54 49 54 51 55 51 55 48 52 49 53 48 53 48 52 99 48 48 48 48 48 48 48 48 54 49 55 48 55 48 54 99 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 102 54 100 54 48 48 48 49 48 48 48 48 48 48 48 48 100 51 50 100 54 49 55 48 55 48 54 99 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 98 54 52 54 53 55 51 54 51 48 48 48 48 48 49 48 56 48 48 48 48 48 48 54 102 54 52 55 51 54 51 54 100 48 48 48 48 48 49 55 56 48 48 48 48 48 53 54 99 54 51 55 48 55 50 55 52 48 48 48 48 48 54 101 52 48 48 48 48 48 48 51 56 55 55 55 52 55 48 55 52 48 48 48 48 48 55 49 99 48 48 48 48 48 48 49 52 55 50 53 56 53 57 53 97 48 48 48 48 48 55 51 48 48 48 48 48 48 48 49 52 54 55 53 56 53 57 53 97 48 48 48 48 48 55 52 52 48 48 48 48 48 48 49 52 54 50 53 56 53 57 53 97 48 48 48 48 48 55 53 56 48 48 48 48 48 48 49 52 55 50 53 52 53 50 52 51 48 48 48 48 48 55 54 99 48 48 48 48 48 48 48 101 54 51 54 56 54 49 54 52 48 48 48 48 48 55 55 99 48 48 48 48 48 48 50 99 54 50 53 52 53 50 52 51 48 48 48 48 48 55 54 99 48 48 48 48 48 48 48 101 54 55 53 52 53 50 52 51 48 48 48 48 48 55 54 99 48 48 48 48 48 48 48 101 54 52 54 53 55 51 54 51 48 48 48 48 48 48 48 48 48 48 48 48 48 48 49 52 52 55 54 53 54 101 54 53 55 50 54 57 54 51 50 48 53 50 52 55 52 50 50 48 53 48 55 50 54 102 54 54 54 57 54 99 54 53 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 49 52 52 55 54 53 54 101 54 53 55 50 54 57 54 51 50 48 53 50 52 55 52 50 50 48 53 48 55 50 54 102 54 54 54 57 54 99 54 53 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 54 100 54 99 55 53 54 51 48 48 48 48 48 48 48 48 48 48 48 48 48 48 49 101 48 48 48 48 48 48 48 99 55 51 54 98 53 51 52 98 48 48 48 48 48 48 50 56 48 48 48 48 48 49 55 56 54 56 55 50 52 56 53 50 48 48 48 48 48 48 50 56 48 48 48 48 48 49 97 48 54 51 54 49 52 53 53 51 48 48 48 48 48 48 50 52 48 48 48 48 48 49 99 56 55 48 55 52 52 50 53 50 48 48 48 48 48 48 50 54 48 48 48 48 48 49 101 99 55 53 54 98 53 53 52 49 48 48 48 48 48 48 50 97 48 48 48 48 48 50 49 50 54 54 55 50 52 54 53 53 48 48 48 48 48 48 50 56 48 48 48 48 48 50 51 99 55 97 54 56 53 52 53 55 48 48 48 48 48 48 49 54 48 48 48 48 48 50 54 52 54 57 55 52 52 57 53 52 48 48 48 48 48 48 50 56 48 48 48 48 48 50 55 97 54 101 54 50 52 101 52 102 48 48 48 48 48 48 50 54 48 48 48 48 48 50 97 50 54 98 54 102 52 98 53 50 48 48 48 48 48 48 49 54 48 48 48 48 48 50 99 56 54 51 55 51 52 51 53 97 48 48 48 48 48 48 50 50 48 48 48 48 48 50 100 101 54 56 54 53 52 57 52 99 48 48 48 48 48 48 49 101 48 48 48 48 48 51 48 48 54 52 54 53 52 52 52 53 48 48 48 48 48 48 50 99 48 48 48 48 48 51 49 101 54 56 55 53 52 56 53 53 48 48 48 48 48 48 50 56 48 48 48 48 48 51 52 97 55 51 55 54 53 51 52 53 48 48 48 48 48 48 50 54 48 48 48 48 48 50 97 50 55 97 54 56 52 51 52 101 48 48 48 48 48 48 49 54 48 48 48 48 48 51 55 50 54 97 54 49 52 97 53 48 48 48 48 48 48 48 49 97 48 48 48 48 48 51 56 56 55 50 54 102 53 50 52 102 48 48 48 48 48 48 50 52 48 48 48 48 48 51 97 50 54 53 54 99 52 55 53 50 48 48 48 48 48 48 50 50 48 48 48 48 48 51 99 54 55 48 55 52 53 48 52 102 48 48 48 48 48 48 50 54 48 48 48 48 48 51 101 56 54 101 54 99 52 101 52 99 48 48 48 48 48 48 50 56 48 48 48 48 48 52 48 101 54 53 55 51 52 53 53 51 48 48 48 48 48 48 50 54 48 48 48 48 48 51 101 56 55 52 54 56 53 52 52 56 48 48 48 48 48 48 50 52 48 48 48 48 48 52 51 54 55 52 55 50 53 52 53 50 48 48 48 48 48 48 50 50 48 48 48 48 48 52 53 97 54 54 54 57 52 54 52 57 48 48 48 48 48 48 50 56 48 48 48 48 48 52 55 99 55 48 54 99 53 48 52 99 48 48 48 48 48 48 50 99 48 48 48 48 48 52 97 52 55 50 55 53 53 50 53 53 48 48 48 48 48 48 50 50 48 48 48 48 48 52 100 48 54 49 55 50 52 53 52 55 48 48 48 48 48 48 50 54 48 48 48 48 48 52 102 50 54 53 54 101 53 53 53 51 48 48 48 48 48 48 50 54 48 48 48 48 48 53 49 56 54 52 54 49 52 52 52 98 48 48 48 48 48 48 50 101 48 48 48 48 48 53 51 101 48 48 53 54 48 49 54 49 48 48 54 53 48 48 54 102 48 48 54 50 48 48 54 53 48 48 54 51 48 48 54 101 48 48 102 100 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 55 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 52 55 48 48 54 53 48 48 54 101 48 48 54 53 48 48 55 50 48 48 54 57 48 49 48 100 48 48 54 98 48 48 54 57 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 55 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 53 48 48 48 54 53 48 48 55 50 48 48 54 54 48 48 54 57 48 48 54 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 54 55 48 48 54 53 48 48 54 101 48 48 101 56 48 48 55 50 48 48 54 57 48 48 54 51 48 48 53 48 48 48 54 53 48 48 55 50 48 48 54 54 48 48 54 57 48 48 54 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 52 55 48 48 54 53 48 48 54 101 48 48 101 57 48 48 55 50 48 48 54 57 48 48 54 51 48 48 54 102 48 52 49 55 48 52 51 48 48 52 51 51 48 52 51 48 48 52 51 98 48 52 52 99 48 52 51 100 48 52 51 56 48 52 51 57 48 48 50 48 48 52 51 102 48 52 52 48 48 52 51 101 48 52 52 52 48 52 51 48 48 52 51 57 48 52 51 98 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 53 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 50 48 48 48 54 55 48 48 101 57 48 48 54 101 48 48 101 57 48 48 55 50 48 48 54 57 48 48 55 49 48 48 55 53 48 48 54 53 48 48 50 48 48 48 53 50 48 48 53 54 48 48 52 50 57 48 49 97 55 53 50 56 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 56 50 55 50 53 102 54 57 54 51 99 102 56 102 102 48 48 48 53 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 54 102 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 54 55 48 48 54 53 48 48 54 101 48 48 54 53 48 48 55 50 48 48 54 57 48 48 54 51 48 48 54 102 48 48 52 55 48 48 54 53 48 48 54 101 48 48 54 53 48 48 55 50 48 48 54 57 48 48 55 51 48 48 54 98 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 100 48 48 55 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 99 55 55 99 98 99 49 56 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 100 53 48 52 98 56 53 99 100 51 48 99 99 55 55 99 48 48 52 102 48 48 54 50 48 48 54 53 48 48 54 51 48 48 54 101 48 48 102 100 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 55 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 53 101 52 48 53 101 56 48 53 100 53 48 53 101 52 48 53 100 57 48 53 100 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 53 100 98 48 53 100 99 48 53 100 99 48 53 100 57 48 48 52 49 48 48 54 99 48 48 54 99 48 48 54 55 48 48 54 53 48 48 54 100 48 48 54 53 48 48 54 57 48 48 54 101 48 48 54 53 48 48 55 51 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 100 48 48 53 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 99 49 48 48 54 99 48 48 55 52 48 48 54 49 48 48 54 99 48 48 101 49 48 48 54 101 48 48 54 102 48 48 55 51 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 55 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 54 54 54 101 57 48 49 97 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 54 51 99 102 56 102 102 48 54 53 56 55 52 101 102 54 52 101 48 48 56 50 50 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 51 48 100 55 51 48 101 100 51 48 100 53 51 48 97 49 51 48 97 52 51 48 101 98 48 48 53 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 54 55 48 48 54 53 48 48 54 101 48 48 54 53 48 48 55 50 48 48 54 57 48 48 54 51 48 51 57 51 48 51 98 53 48 51 98 100 48 51 98 57 48 51 98 97 48 51 99 99 48 48 50 48 48 51 99 48 48 51 99 49 48 51 98 102 48 51 99 54 48 51 97 102 48 51 98 98 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 53 48 48 48 54 53 48 48 55 50 48 48 54 54 48 48 54 57 48 48 54 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 54 55 48 48 54 53 48 48 54 101 48 48 101 57 48 48 55 50 48 48 54 57 48 48 54 51 48 48 54 102 48 48 52 49 48 48 54 99 48 48 54 55 48 48 54 53 48 48 54 100 48 48 54 53 48 48 54 53 48 48 54 101 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 100 48 48 55 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 53 48 48 54 99 48 101 52 50 48 101 49 98 48 101 50 51 48 101 52 52 48 101 49 102 48 101 50 53 48 101 52 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 101 49 55 48 101 51 49 48 101 52 56 48 101 50 55 48 101 52 52 48 101 49 98 48 48 52 55 48 48 54 53 48 48 54 101 48 48 54 53 48 48 54 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 53 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 54 57 48 48 53 57 48 48 54 99 48 48 54 53 48 48 54 57 48 48 54 101 48 48 54 53 48 48 54 101 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 100 48 48 55 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 57 48 48 54 99 48 48 54 57 48 48 53 53 48 48 54 101 48 48 54 57 48 48 55 55 48 48 54 53 48 48 55 50 48 48 55 51 48 48 54 49 48 48 54 99 48 48 54 101 48 48 55 57 48 48 50 48 48 48 55 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 52 49 101 48 52 51 49 48 52 52 57 48 52 51 56 48 52 51 57 48 48 50 48 48 52 51 102 48 52 52 48 48 52 51 101 48 52 52 52 48 52 51 56 48 52 51 98 48 52 52 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 54 52 53 48 54 52 52 48 54 52 49 48 48 50 48 48 54 50 97 48 54 51 57 48 54 51 49 48 54 52 97 48 54 52 49 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 54 50 55 48 54 52 52 48 54 51 57 48 54 50 55 48 54 52 53 48 48 52 55 48 48 54 53 48 48 54 101 48 48 54 53 48 48 55 50 48 48 54 57 48 48 54 51 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 48 48 48 53 48 48 48 55 50 48 48 54 102 48 48 54 54 48 48 54 57 48 48 54 99 48 48 54 53 48 48 52 55 48 48 54 53 48 48 54 101 48 48 54 53 48 48 55 50 48 48 54 53 48 48 54 99 48 48 50 48 48 48 53 50 48 48 52 55 48 48 52 50 48 48 50 100 48 48 54 50 48 48 54 53 48 48 55 51 48 48 54 98 48 48 55 50 48 48 54 57 48 48 55 54 48 48 54 53 48 48 54 99 48 48 55 51 48 48 54 53 55 52 54 53 55 56 55 52 48 48 48 48 48 48 48 48 52 51 54 102 55 48 55 57 55 50 54 57 54 55 54 56 55 52 50 48 51 50 51 48 51 48 51 55 50 48 52 49 55 48 55 48 54 99 54 53 50 48 52 57 54 101 54 51 50 101 50 99 50 48 54 49 54 99 54 99 50 48 55 50 54 57 54 55 54 56 55 52 55 51 50 48 55 50 54 53 55 51 54 53 55 50 55 54 54 53 54 52 50 101 48 48 53 56 53 57 53 97 50 48 48 48 48 48 48 48 48 48 48 48 48 48 102 51 53 50 48 48 48 49 48 48 48 48 48 48 48 49 49 54 99 102 53 56 53 57 53 97 50 48 48 48 48 48 48 48 48 48 48 48 48 48 55 52 52 100 48 48 48 48 51 100 101 101 48 48 48 48 48 51 100 48 53 56 53 57 53 97 50 48 48 48 48 48 48 48 48 48 48 48 48 48 53 97 55 53 48 48 48 48 97 99 55 51 48 48 48 48 49 55 51 52 53 56 53 57 53 97 50 48 48 48 48 48 48 48 48 48 48 48 48 48 50 56 49 97 48 48 48 48 49 53 57 102 48 48 48 48 98 56 51 54 54 51 55 53 55 50 55 54 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 49 48 49 99 100 48 48 48 48 55 51 54 54 51 51 51 50 48 48 48 48 48 48 48 48 48 48 48 49 48 99 52 50 48 48 48 48 48 53 100 101 102 102 102 102 102 51 50 54 48 48 48 48 48 55 57 50 48 48 48 48 102 100 57 49 102 102 102 102 102 98 97 50 102 102 102 102 102 100 97 51 48 48 48 48 48 51 100 99 48 48 48 48 99 48 54 99 102 102 101 49 48 48 97 97 52 53 55 56 54 57 54 54 48 48 48 48 52 100 52 100 48 48 50 97 48 48 48 48 48 48 48 56 48 48 48 54 48 49 49 50 48 48 48 51 48 48 48 48 48 48 48 49 48 48 48 49 48 48 48 48 48 49 49 97 48 48 48 53 48 48 48 48 48 48 48 49 48 48 48 48 48 48 53 54 48 49 49 98 48 48 48 53 48 48 48 48 48 48 48 49 48 48 48 48 48 48 53 101 48 49 50 56 48 48 48 51 48 48 48 48 48 48 48 49 48 48 48 50 48 48 48 48 48 49 51 49 48 48 48 50 48 48 48 48 48 48 49 101 48 48 48 48 48 48 54 54 56 55 54 57 48 48 48 52 48 48 48 48 48 48 48 49 48 48 48 48 48 48 56 52 48 48 48 48 48 48 48 48 48 48 48 48 48 48 52 56 48 48 48 48 48 48 48 49 48 48 48 48 48 48 52 56 48 48 48 48 48 48 48 49 52 49 54 52 54 102 54 50 54 53 50 48 53 48 54 56 54 102 55 52 54 102 55 51 54 56 54 102 55 48 50 48 52 51 53 51 51 53 50 48 52 100 54 49 54 51 54 57 54 101 55 52 54 102 55 51 54 56 48 48 48 48 48 50 97 48 48 50 48 48 48 52 48 48 48 48 48 48 48 49 48 48 48 48 48 49 48 48 97 48 48 51 48 48 48 52 48 48 48 48 48 48 48 49 48 48 48 48 48 49 48 48 48 48 48 48 48 48 48 48 102 102 100 98 48 48 52 51 48 48 48 50 48 50 48 50 48 50 48 50 48 49 48 50 48 50 48 50 48 50 48 50 48 50 48 50 48 51 48 51 48 54 48 52 48 51 48 51 48 51 48 51 48 55 48 53 48 53 48 52 48 54 48 56 48 55 48 56 48 56 48 56 48 55 48 56 48 56 48 57 48 97 48 100 48 98 48 57 48 57 48 99 48 97 48 56 48 56 48 98 48 102 48 98 48 99 48 100 48 101 48 101 48 101 48 101 48 57 48 98 49 48 49 49 48 102 48 101 49 49 48 100 48 101 48 101 48 101 102 102 100 98 48 48 52 51 48 49 48 50 48 50 48 50 48 51 48 51 48 51 48 54 48 52 48 52 48 54 48 101 48 57 48 56 48 57 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 48 101 102 102 99 48 48 48 49 49 48 56 48 49 48 48 48 49 48 48 48 51 48 49 50 50 48 48 48 50 49 49 48 49 48 51 49 49 48 49 102 102 99 52 48 48 49 102 48 48 48 48 48 49 48 53 48 49 48 49 48 49 48 49 48 49 48 49 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 49 48 50 48 51 48 52 48 53 48 54 48 55 48 56 48 57 48 97 48 98 102 102 99 52 48 48 98 53 49 48 48 48 48 50 48 49 48 51 48 51 48 50 48 52 48 51 48 53 48 53 48 52 48 52 48 48 48 48 48 49 55 100 48 49 48 50 48 51 48 48 48 52 49 49 48 53 49 50 50 49 51 49 52 49 48 54 49 51 53 49 54 49 48 55 50 50 55 49 49 52 51 50 56 49 57 49 97 49 48 56 50 51 52 50 98 49 99 49 49 53 53 50 100 49 102 48 50 52 51 51 54 50 55 50 56 50 48 57 48 97 49 54 49 55 49 56 49 57 49 97 50 53 50 54 50 55 50 56 50 57 50 97 51 52 51 53 51 54 51 55 51 56 51 57 51 97 52 51 52 52 52 53 52 54 52 55 52 56 52 57 52 97 53 51 53 52 53 53 53 54 53 55 53 56 53 57 53 97 54 51 54 52 54 53 54 54 54 55 54 56 54 57 54 97 55 51 55 52 55 53 55 54 55 55 55 56 55 57 55 97 56 51 56 52 56 53 56 54 56 55 56 56 56 57 56 97 57 50 57 51 57 52 57 53 57 54 57 55 57 56 57 57 57 97 97 50 97 51 97 52 97 53 97 54 97 55 97 56 97 57 97 97 98 50 98 51 98 52 98 53 98 54 98 55 98 56 98 57 98 97 99 50 99 51 99 52 99 53 99 54 99 55 99 56 99 57 99 97 100 50 100 51 100 52 100 53 100 54 100 55 100 56 100 57 100 97 101 49 101 50 101 51 101 52 101 53 101 54 101 55 101 56 101 57 101 97 102 49 102 50 102 51 102 52 102 53 102 54 102 55 102 56 102 57 102 97 102 102 99 52 48 48 49 102 48 49 48 48 48 51 48 49 48 49 48 49 48 49 48 49 48 49 48 49 48 49 48 49 48 48 48 48 48 48 48 48 48 48 48 48 48 49 48 50 48 51 48 52 48 53 48 54 48 55 48 56 48 57 48 97 48 98 102 102 99 52 48 48 98 53 49 49 48 48 48 50 48 49 48 50 48 52 48 52 48 51 48 52 48 55 48 53 48 52 48 52 48 48 48 49 48 50 55 55 48 48 48 49 48 50 48 51 49 49 48 52 48 53 50 49 51 49 48 54 49 50 52 49 53 49 48 55 54 49 55 49 49 51 50 50 51 50 56 49 48 56 49 52 52 50 57 49 97 49 98 49 99 49 48 57 50 51 51 51 53 50 102 48 49 53 54 50 55 50 100 49 48 97 49 54 50 52 51 52 101 49 50 53 102 49 49 55 49 56 49 57 49 97 50 54 50 55 50 56 50 57 50 97 51 53 51 54 51 55 51 56 51 57 51 97 52 51 52 52 52 53 52 54 52 55 52 56 52 57 52 97 53 51 53 52 53 53 53 54 53 55 53 56 53 57 53 97 54 51 54 52 54 53 54 54 54 55 54 56 54 57 54 97 55 51 55 52 55 53 55 54 55 55 55 56 55 57 55 97 56 50 56 51 56 52 56 53 56 54 56 55 56 56 56 57 56 97 57 50 57 51 57 52 57 53 57 54 57 55 57 56 57 57 57 97 97 50 97 51 97 52 97 53 97 54 97 55 97 56 97 57 97 97 98 50 98 51 98 52 98 53 98 54 98 55 98 56 98 57 98 97 99 50 99 51 99 52 99 53 99 54 99 55 99 56 99 57 99 97 100 50 100 51 100 52 100 53 100 54 100 55 100 56 100 57 100 97 101 50 101 51 101 52 101 53 101 54 101 55 101 56 101 57 101 97 102 50 102 51 102 52 102 53 102 54 102 55 102 56 102 57 102 97 102 102 100 97 48 48 48 99 48 51 48 49 48 48 48 50 49 49 48 51 49 49 48 48 51 102 48 48 102 52 51 102 56 49 102 102 48 48 48 50 51 101 49 98 102 99 52 49 100 50 102 99 53 98 97 56 55 56 98 57 51 53 57 56 53 97 100 51 53 54 57 54 51 56 97 52 98 52 100 52 49 97 50 53 53 53 48 52 102 100 101 49 56 51 102 57 100 55 98 99 52 55 102 98 50 98 55 101 99 102 97 51 49 56 100 52 51 53 102 50 55 98 55 102 99 52 101 53 102 102 48 48 102 56 57 97 99 53 102 100 57 98 101 50 50 98 102 48 100 51 101 50 48 56 99 55 53 100 53 101 55 102 101 54 54 98 100 97 50 50 100 99 98 49 52 100 56 56 56 56 56 99 49 50 56 54 54 99 56 51 98 52 102 97 57 49 100 56 55 98 100 55 101 48 49 56 99 99 53 100 55 53 53 101 53 49 56 99 100 97 53 101 97 55 48 52 54 98 99 102 57 57 97 55 97 102 100 101 55 57 100 50 102 101 99 98 57 102 98 51 102 101 101 48 97 50 102 102 48 48 53 99 50 100 101 57 102 100 98 52 100 57 102 102 48 48 100 48 54 97 53 102 102 56 54 53 57 102 56 48 54 51 102 101 53 101 102 53 102 102 48 48 102 99 49 99 51 102 102 56 53 55 97 55 53 97 100 56 53 56 99 100 54 54 51 49 54 98 49 50 98 48 102 57 53 56 56 102 98 99 48 102 97 101 55 97 102 98 100 53 97 56 97 100 55 99 97 57 98 54 52 101 99 53 101 50 102 101 49 57 52 55 102 50 54 102 55 102 55 97 99 101 51 56 98 99 52 102 102 51 98 102 98 99 101 97 56 102 51 98 101 57 102 56 98 51 99 57 55 102 101 49 57 54 55 101 48 49 57 101 98 55 57 97 101 102 102 101 48 101 53 102 102 102 48 48 56 57 97 54 57 102 100 57 53 98 101 48 48 57 102 102 48 48 57 55 98 100 55 102 102 102 48 48 48 55 48 102 102 102 48 48 99 52 100 55 98 54 55 102 54 55 99 51 102 100 99 51 56 102 53 100 100 53 54 55 102 98 50 101 100 99 99 52 98 102 50 98 55 52 101 98 57 97 100 97 51 56 98 99 52 55 102 51 98 102 98 99 100 51 57 50 55 100 57 55 100 101 99 102 48 56 102 102 48 48 56 54 53 52 102 56 48 48 55 97 100 100 102 56 56 51 102 102 48 48 48 55 48 102 102 101 49 52 56 55 102 54 53 52 102 100 57 102 102 102 48 48 101 55 102 51 53 102 49 102 102 55 49 57 55 49 102 102 48 48 98 50 100 55 98 97 57 100 50 54 50 101 97 51 55 48 102 99 54 97 48 54 100 50 101 51 53 101 48 56 57 51 102 51 97 100 49 54 50 102 49 49 102 99 101 102 101 102 49 55 50 52 102 98 55 101 55 102 101 54 55 56 57 102 102 99 51 50 98 102 99 48 48 53 53 102 102 56 102 100 100 55 99 48 49 101 57 97 99 98 102 102 48 48 102 49 51 53 53 102 102 101 49 57 55 102 102 54 55 98 99 57 102 102 48 48 56 57 56 101 98 100 102 102 48 48 56 51 57 57 51 102 102 56 57 97 102 54 102 51 97 53 52 54 53 52 56 48 54 52 49 57 49 101 100 53 56 101 102 97 49 52 97 49 99 101 100 48 99 101 51 100 52 48 97 98 102 97 100 101 50 55 97 52 100 102 100 101 54 51 53 49 52 100 54 100 49 102 99 102 102 99 99 102 50 50 55 102 100 57 55 51 102 54 55 102 54 57 48 57 49 97 98 54 98 99 56 51 100 51 102 98 53 52 57 102 101 54 98 52 100 51 102 98 50 99 102 101 99 102 102 102 48 48 102 52 49 98 100 55 55 102 102 48 54 55 102 102 48 48 100 56 100 55 97 97 51 101 57 51 51 50 49 51 102 98 98 54 99 55 54 102 57 54 97 97 49 98 53 51 57 99 49 49 99 56 102 53 97 100 49 54 51 51 49 51 102 99 101 99 101 55 55 51 97 56 98 55 56 102 101 55 102 101 54 55 57 54 98 102 101 99 97 55 102 48 48 49 100 102 50 55 99 52 51 101 50 50 53 102 52 48 51 53 52 99 55 102 101 99 57 52 48 102 100 57 53 55 102 54 55 97 57 52 49 53 49 101 50 49 100 55 50 52 54 49 99 49 100 98 97 97 48 50 55 51 102 102 48 48 55 99 100 55 97 50 53 99 53 97 98 53 99 52 101 50 100 54 51 48 101 97 56 48 56 51 55 48 101 97 55 101 101 97 102 102 48 48 55 55 51 101 97 54 98 50 97 52 98 48 48 98 97 56 53 100 99 51 48 97 55 100 57 54 100 56 50 97 57 57 53 101 51 101 51 48 56 48 49 51 56 49 102 101 100 49 51 100 101 98 53 53 56 101 99 52 55 102 51 98 51 49 57 53 55 57 99 55 101 99 102 101 55 102 101 54 55 48 102 50 55 101 99 57 57 102 98 51 100 51 54 55 51 97 102 55 56 56 53 55 100 55 51 97 97 55 102 102 48 48 54 49 53 101 53 98 102 49 48 102 102 54 55 101 102 56 51 49 101 48 102 100 51 50 49 98 57 102 48 98 100 99 54 98 102 97 98 101 97 99 97 52 51 57 54 57 101 102 102 55 99 49 49 50 102 50 51 57 48 49 52 54 53 56 102 101 57 56 102 97 53 55 98 100 99 55 55 49 55 49 49 100 57 97 52 53 49 100 98 99 98 55 50 53 53 52 98 98 57 54 55 99 55 57 54 56 52 57 50 97 48 57 51 100 52 101 50 98 99 101 98 99 55 52 51 99 101 98 51 54 57 49 55 50 49 50 52 98 53 52 51 56 51 102 53 51 53 100 51 52 51 49 57 56 56 55 53 50 50 57 99 100 101 101 56 101 48 99 52 54 51 101 97 97 52 57 52 55 52 100 98 97 98 102 102 51 50 98 55 99 48 50 102 100 57 55 98 101 49 53 55 99 52 49 102 100 57 98 55 52 57 102 49 52 55 56 57 54 100 51 99 52 51 50 54 97 102 55 49 51 52 97 98 50 51 53 98 54 97 99 102 48 97 54 49 53 99 56 49 56 53 48 51 100 48 53 55 98 54 50 102 101 99 53 100 102 48 51 49 55 97 53 56 102 56 98 48 102 102 100 99 55 97 52 102 102 48 48 48 97 101 56 55 102 54 53 50 53 100 57 102 98 49 54 55 56 55 53 55 102 101 57 98 99 102 102 48 48 102 97 51 53 97 98 101 56 101 101 102 53 101 53 53 54 99 53 53 55 53 53 97 52 57 52 100 100 97 101 55 101 56 55 52 54 56 99 50 53 48 52 100 97 51 101 53 55 102 102 48 48 56 54 51 50 102 56 49 101 48 54 48 53 56 55 56 97 98 102 102 48 55 98 50 55 102 56 53 49 102 102 48 48 48 99 54 53 102 48 51 102 102 101 55 99 51 99 53 53 102 102 48 48 56 51 101 57 55 102 99 50 98 101 97 97 53 101 102 52 101 97 101 99 97 51 56 57 97 102 102 99 101 99 49 101 49 54 57 55 102 50 57 102 50 56 102 102 48 48 99 51 49 55 102 99 48 100 51 102 102 51 48 102 102 49 53 55 102 101 48 102 97 53 102 102 48 48 48 97 55 55 102 99 51 49 54 102 99 48 99 101 102 54 49 101 50 98 102 102 48 48 99 49 102 52 98 102 101 49 53 102 53 55 56 101 57 52 98 57 97 102 52 101 57 54 50 50 98 53 98 101 50 54 54 55 102 53 51 97 49 54 102 56 53 49 102 50 55 49 102 100 56 97 102 101 48 53 102 102 48 48 99 102 56 55 56 97 102 102 48 48 102 48 55 100 50 100 50 55 102 99 51 49 53 55 99 48 97 102 102 97 48 55 102 56 97 102 102 102 48 48 48 55 102 50 102 102 48 48 56 53 55 100 54 53 52 53 55 53 52 55 49 49 53 57 55 100 97 54 52 55 100 52 101 56 55 102 50 97 51 101 52 99 102 102 48 48 56 54 50 97 102 56 49 52 55 102 101 54 49 102 101 50 99 102 102 99 49 102 99 98 102 101 49 52 57 102 102 48 99 53 51 102 48 50 98 102 101 56 49 102 101 50 99 102 102 99 49 102 99 98 102 101 49 53 102 53 98 50 97 101 101 99 102 51 56 97 55 55 100 99 102 55 99 100 54 101 97 98 100 54 102 101 54 48 102 97 57 100 48 102 101 53 52 55 99 57 48 98 102 98 49 51 55 99 48 57 54 99 102 102 48 48 97 48 55 56 98 51 102 102 48 48 48 97 48 57 55 102 99 50 57 49 98 102 54 50 53 102 56 49 48 51 49 57 100 51 102 99 53 56 55 102 101 101 54 48 57 55 102 99 50 98 101 98 54 55 54 48 55 49 53 49 57 55 97 100 97 51 53 97 98 55 102 51 51 48 102 97 57 53 48 102 101 53 52 55 99 57 56 55 102 54 50 54 102 56 49 49 100 98 52 102 102 49 54 55 102 101 48 102 101 53 102 102 48 48 48 97 97 99 100 102 98 49 51 55 99 48 55 54 49 56 51 97 55 102 56 98 55 102 102 48 97 48 57 55 102 99 50 98 101 98 55 50 55 51 52 54 55 51 53 100 53 48 97 57 53 55 102 57 57 56 55 100 52 98 48 102 102 99 56 56 102 56 102 100 102 102 48 48 54 49 98 102 56 48 52 102 100 54 99 51 99 54 51 102 102 56 53 49 52 98 102 101 49 53 99 55 102 56 101 51 102 54 50 101 102 56 49 98 101 49 98 102 56 52 51 101 50 53 102 49 49 54 57 57 54 49 101 50 98 102 101 100 50 100 51 55 52 102 57 50 101 54 100 98 99 102 100 55 54 53 57 50 51 100 101 97 51 50 51 55 50 57 49 56 50 51 100 97 98 101 101 101 50 55 49 53 99 48 102 99 53 50 102 57 98 102 54 54 101 102 49 99 56 99 55 53 100 49 97 54 49 102 97 53 55 52 100 51 97 57 53 49 98 52 57 99 56 99 98 49 51 56 52 97 53 49 97 51 51 54 97 51 54 54 57 51 102 99 56 102 57 53 55 102 54 55 52 52 102 102 48 48 56 98 55 49 101 51 102 102 48 48 102 98 48 99 52 102 102 99 99 100 55 98 49 99 51 51 48 53 57 52 100 99 52 52 56 99 98 49 51 55 99 97 101 53 99 55 99 98 50 49 49 99 49 99 49 101 99 55 101 98 100 54 98 99 56 102 102 54 55 56 49 102 102 49 54 101 55 99 55 98 102 102 48 48 54 49 56 57 102 102 48 48 57 57 97 102 54 56 98 48 100 102 54 57 49 101 99 54 48 53 97 100 99 51 49 50 97 101 51 57 100 98 57 51 57 99 49 102 99 52 102 53 97 102 99 99 55 49 55 49 102 102 48 48 54 56 57 102 102 53 100 48 102 48 97 56 52 54 102 51 51 53 97 49 53 56 101 51 53 48 50 51 56 53 54 51 53 51 102 51 55 99 97 51 49 57 99 56 97 98 48 56 99 97 97 55 51 98 55 97 102 53 48 55 97 49 97 48 56 99 98 56 54 99 101 55 50 51 51 57 99 101 55 51 52 101 48 97 48 100 54 50 97 50 55 97 57 49 56 101 56 51 100 53 54 50 50 51 51 48 57 54 56 49 98 102 98 98 57 99 97 102 101 52 55 102 97 53 52 98 101 54 52 98 49 56 102 100 101 52 53 98 57 55 98 98 52 53 99 101 51 101 97 51 97 100 52 53 101 53 100 51 56 50 98 48 51 57 48 99 55 51 102 53 97 98 52 97 99 51 54 56 98 51 49 100 100 52 54 101 51 101 52 54 52 55 102 97 51 54 50 57 99 99 101 49 56 56 100 100 56 48 51 101 98 53 52 57 100 48 51 56 49 101 54 50 52 54 102 102 48 48 101 102 50 102 51 102 57 100 52 50 100 54 102 54 101 48 55 99 100 54 100 48 57 102 97 56 99 102 102 53 97 100 97 51 52 101 102 97 56 98 57 55 99 99 98 54 102 55 49 54 98 49 56 102 57 101 53 56 57 52 102 97 49 55 97 97 97 51 53 48 98 52 54 57 52 57 49 50 54 53 48 48 101 51 48 56 52 102 102 52 97 52 54 48 97 56 51 49 49 99 55 49 52 54 55 102 100 57 52 48 50 56 52 54 55 99 57 49 98 57 56 55 55 51 102 51 49 97 100 54 51 48 49 55 50 98 50 52 54 57 56 101 99 100 100 49 99 48 100 56 99 54 55 55 52 56 55 54 48 51 102 57 102 50 54 98 48 54 101 50 48 51 51 99 99 100 50 99 102 50 101 100 99 57 101 50 51 56 48 54 48 55 101 50 99 55 57 51 102 57 53 54 100 51 97 49 55 53 51 57 101 97 55 100 54 97 97 57 56 53 99 55 53 53 102 99 54 98 52 55 48 100 48 57 57 100 51 98 97 51 49 51 101 99 99 97 57 48 56 52 56 101 50 53 56 100 48 49 99 56 48 98 101 98 100 99 57 51 100 99 102 98 100 53 53 57 97 100 99 51 99 52 99 56 99 51 50 97 52 49 99 100 54 102 98 50 102 99 98 100 51 57 97 56 57 101 49 53 51 100 52 48 50 55 100 50 97 57 52 49 57 99 102 50 97 51 97 54 99 55 57 101 100 101 100 97 97 52 51 54 102 49 53 56 100 98 101 53 49 97 55 55 50 48 98 49 51 57 50 48 55 55 54 51 102 52 49 99 53 55 57 97 102 56 102 54 49 52 56 101 50 51 49 97 56 99 50 48 56 49 49 53 55 100 55 48 51 51 56 97 102 53 98 55 52 102 51 54 101 101 101 50 101 99 101 55 54 101 52 99 53 49 55 100 48 49 102 57 56 102 101 50 55 56 97 102 50 97 102 56 56 50 52 55 57 54 53 99 55 52 49 49 97 48 51 102 57 57 97 101 97 99 51 52 51 102 55 98 49 102 53 52 55 99 101 101 51 54 57 97 53 54 102 53 52 55 98 56 102 101 99 98 52 98 56 102 100 56 100 55 99 51 98 100 98 102 55 98 51 102 49 102 102 54 100 53 97 98 101 56 55 97 102 57 102 51 102 54 53 101 49 102 102 49 56 55 51 101 49 101 49 102 102 52 100 97 55 102 102 100 49 97 100 53 102 52 51 48 49 56 97 102 51 97 98 53 51 53 101 100 101 53 101 97 55 101 56 98 52 49 102 101 101 57 48 98 52 97 48 54 52 53 50 53 52 55 51 99 102 49 100 98 50 48 50 100 98 57 57 57 56 101 49 49 49 52 54 53 57 99 102 97 48 49 53 100 98 52 50 48 53 100 97 101 99 98 49 56 99 56 97 56 49 101 101 97 100 97 51 55 100 98 50 53 99 52 50 56 100 100 99 51 51 56 99 100 52 51 102 54 54 98 56 98 57 50 52 100 101 51 98 100 98 99 53 102 102 51 101 102 48 98 102 99 99 55 102 100 102 55 102 101 56 51 102 51 97 57 49 57 55 52 101 98 51 52 48 56 54 51 98 48 56 51 100 57 101 51 48 52 57 102 99 102 50 52 100 55 97 53 52 97 49 55 48 98 50 98 100 98 55 50 53 56 101 55 98 54 57 53 98 49 49 100 99 52 50 101 55 102 100 57 55 49 53 54 51 101 101 55 98 101 54 98 50 101 52 57 98 52 57 57 52 54 49 100 54 99 49 102 102 101 100 57 48 49 102 97 56 48 50 57 97 57 49 99 54 53 52 98 54 57 100 55 52 99 55 54 102 102 48 48 99 98 50 55 57 51 55 99 54 55 100 98 100 53 55 102 53 97 101 101 56 100 50 49 98 97 54 54 97 51 98 48 51 56 97 56 99 98 100 51 48 102 48 51 101 54 50 51 50 51 97 101 48 102 49 102 57 100 53 48 57 50 102 97 100 100 54 53 51 49 52 54 53 101 101 97 55 102 102 57 101 53 48 97 101 101 54 97 101 57 56 53 49 50 54 51 49 54 102 54 50 101 57 51 57 97 52 97 97 57 54 98 55 53 102 54 57 98 54 54 57 51 99 97 54 56 98 49 50 49 52 99 51 49 101 55 56 97 98 48 52 101 54 98 97 54 51 52 100 50 48 55 49 54 57 100 57 56 101 50 55 49 52 100 50 55 51 52 99 100 100 52 100 97 101 56 56 100 51 54 99 97 53 49 49 100 98 97 98 56 55 102 56 57 57 102 102 50 54 102 49 101 51 53 48 55 102 101 56 49 49 51 55 102 50 49 53 100 99 48 50 48 55 98 53 55 48 98 102 49 50 98 102 101 52 56 48 55 56 99 98 57 102 102 48 48 57 56 52 99 98 102 99 97 98 97 97 57 53 50 98 51 52 54 55 56 98 56 102 102 48 48 98 51 100 52 102 52 55 102 57 49 102 50 102 55 101 99 102 49 99 55 99 51 97 102 49 101 102 98 54 98 49 51 102 102 48 48 51 51 53 101 101 57 54 48 55 50 57 56 101 101 50 98 99 51 55 102 54 55 57 101 51 101 49 99 55 56 102 56 55 97 54 98 49 51 102 102 48 48 51 51 53 101 101 55 54 48 51 48 98 57 102 97 53 55 101 53 100 56 99 56 102 102 48 48 98 52 52 99 102 57 52 99 51 51 102 55 56 98 53 49 56 100 57 55 57 50 99 48 51 101 101 50 56 48 99 57 101 99 48 102 53 49 102 57 100 53 102 49 102 50 97 54 55 98 100 53 49 99 49 49 97 98 56 51 100 56 99 52 55 102 52 50 50 97 100 57 51 102 98 98 97 99 54 51 48 98 57 101 97 52 55 53 52 52 56 48 51 101 51 56 50 51 102 49 97 52 50 53 56 102 52 99 48 102 99 54 57 50 56 97 100 97 51 48 52 56 97 98 56 57 56 54 102 53 49 53 48 57 54 51 98 102 51 57 101 48 55 48 48 55 98 100 51 97 52 55 50 97 98 56 49 100 52 100 52 51 57 99 48 51 101 98 53 97 97 56 56 48 100 50 99 101 53 98 100 54 97 55 52 52 50 98 49 56 99 57 49 57 51 100 54 97 50 56 53 48 57 54 100 99 52 53 53 57 100 98 101 102 53 98 52 54 49 54 48 49 51 48 100 102 101 99 100 50 54 49 56 48 51 57 48 97 52 55 97 54 50 97 52 97 50 98 53 53 49 98 48 49 53 100 56 50 102 57 48 99 55 48 48 55 54 101 50 98 49 50 102 54 55 102 50 51 52 101 57 101 52 101 101 98 49 57 50 51 101 98 56 97 100 57 57 100 102 54 57 50 98 57 101 102 57 51 53 99 100 101 98 48 53 53 98 52 101 54 52 50 51 56 55 50 49 51 97 102 97 98 48 49 53 54 101 48 54 49 53 57 102 98 97 54 48 99 56 52 99 55 54 51 49 52 53 56 49 102 50 97 48 99 102 97 57 51 100 52 57 102 99 99 57 97 102 50 51 102 56 56 50 48 49 100 51 97 54 55 99 102 53 56 100 55 102 48 101 52 100 55 97 102 53 100 48 50 102 51 51 48 101 100 57 97 102 49 99 102 56 56 48 100 56 56 54 101 49 55 51 99 49 56 53 52 56 49 102 56 57 97 100 102 48 102 52 102 102 55 98 48 102 53 52 55 99 98 101 54 48 100 97 98 55 97 57 101 102 102 48 48 102 98 50 101 55 102 99 57 57 98 102 56 55 56 102 102 48 48 100 51 53 57 102 102 48 48 102 52 54 98 53 55 100 48 100 53 102 51 99 102 101 99 98 57 102 102 48 48 50 54 55 49 101 49 100 102 102 97 101 98 51 102 102 101 56 100 54 97 102 97 49 97 98 56 101 98 53 51 102 100 102 52 98 100 52 102 100 48 55 48 101 102 102 55 54 56 52 55 54 53 52 56 49 101 52 55 54 100 97 97 97 51 50 99 55 100 48 53 52 49 54 99 97 99 51 51 55 100 55 49 57 53 57 101 52 53 102 57 52 49 102 102 48 48 57 54 51 49 57 101 52 48 49 101 101 52 55 50 52 102 101 49 52 100 98 98 100 97 101 57 48 52 50 55 57 52 57 54 55 52 53 55 49 101 97 98 57 99 57 49 102 97 53 49 55 56 99 54 52 98 54 102 50 99 57 99 49 57 101 52 53 56 99 57 102 52 48 99 55 57 102 100 51 51 53 100 55 52 54 57 98 51 97 49 50 100 49 55 57 56 97 57 101 54 100 100 50 48 57 52 99 57 50 53 98 53 97 98 48 99 99 54 97 57 99 52 57 50 48 102 53 50 55 102 56 52 49 101 100 100 99 102 98 53 53 56 56 57 50 51 56 48 49 102 50 50 50 56 101 49 99 102 53 50 97 51 101 54 51 102 53 54 51 99 57 102 99 101 56 54 55 100 100 50 49 54 99 55 53 101 57 101 99 50 57 56 52 102 49 57 54 51 56 48 51 97 57 51 53 101 98 53 49 97 53 54 50 53 98 54 99 57 98 99 101 57 51 102 101 55 97 52 57 102 102 55 100 53 53 48 57 50 102 57 101 53 57 53 97 49 98 52 52 51 55 53 50 56 51 102 51 98 54 55 48 56 57 102 101 102 51 55 102 52 101 98 53 48 56 100 100 55 100 102 51 98 49 55 56 97 99 51 51 56 49 98 52 101 49 97 55 102 99 55 98 50 102 98 102 53 51 53 55 48 54 100 52 56 100 54 51 56 100 53 50 50 56 57 55 101 101 97 50 48 99 48 49 53 100 102 48 97 55 54 50 98 57 53 52 55 100 52 97 56 54 99 56 52 57 56 51 55 98 51 99 57 55 54 100 102 102 51 99 100 52 57 52 56 56 55 101 49 100 52 102 101 50 54 97 100 97 54 99 56 97 49 102 50 101 49 56 100 50 49 56 102 102 98 98 49 97 101 100 49 102 102 48 48 100 55 102 99 54 97 56 52 56 102 55 51 55 49 55 102 50 52 49 54 102 50 56 98 54 56 97 49 48 51 99 100 57 52 97 101 101 50 53 56 56 99 56 53 48 50 57 100 49 52 102 50 55 100 56 97 101 51 99 102 100 97 54 52 56 52 98 50 51 51 50 56 99 48 54 99 48 99 101 55 100 98 97 100 55 52 50 97 54 99 100 51 57 54 52 100 49 49 101 57 98 102 102 50 48 52 52 55 102 101 102 99 98 50 51 55 102 101 51 100 56 102 101 57 53 55 55 48 54 97 97 54 57 100 102 50 54 56 49 54 52 48 102 53 51 48 56 51 102 57 57 50 55 102 97 100 53 57 50 99 48 49 101 98 53 100 53 48 97 52 51 57 50 98 99 57 56 101 48 55 49 52 99 50 102 98 55 97 53 51 48 98 57 51 101 100 52 99 97 101 57 56 100 50 50 57 52 52 55 51 51 54 101 97 101 50 55 101 50 52 55 102 99 57 98 102 55 56 99 56 55 97 101 57 53 50 102 102 48 48 50 97 101 100 50 98 56 56 102 56 57 50 55 51 102 48 48 55 99 54 50 51 102 101 97 49 53 50 102 102 48 48 50 97 101 97 97 55 52 102 53 51 49 99 53 97 102 102 48 48 54 55 97 57 101 56 102 102 48 48 50 51 101 54 55 102 100 57 101 56 102 102 48 48 99 53 98 97 102 49 101 102 102 100 56 54 54 101 51 102 57 57 97 102 55 50 98 48 101 54 51 50 55 100 52 100 55 56 54 102 101 99 102 52 51 102 101 50 100 100 102 56 102 55 102 101 99 51 49 55 49 102 102 97 49 49 97 102 55 49 98 50 50 51 54 49 102 54 51 99 100 55 101 52 100 56 97 56 55 101 102 101 52 55 99 53 101 49 100 102 98 99 53 98 99 101 55 53 53 56 56 102 102 100 51 51 55 102 101 57 53 55 52 102 100 99 49 102 53 97 99 101 53 51 102 102 48 48 49 51 50 56 52 102 97 99 54 100 102 100 50 98 52 48 98 48 100 56 51 101 98 53 57 50 56 101 56 55 97 102 49 100 56 55 100 51 53 98 97 54 54 57 97 53 100 52 102 55 97 56 54 53 57 51 57 101 98 53 97 97 97 54 53 48 99 50 100 98 97 52 51 102 97 57 97 56 99 49 99 98 55 98 53 51 52 57 101 51 100 99 100 51 99 50 102 50 48 48 101 52 100 54 98 49 56 56 97 101 53 57 48 100 98 53 55 49 99 53 52 57 98 102 51 56 48 51 101 102 49 101 100 53 53 49 56 54 49 52 57 50 55 56 49 52 50 52 57 56 54 100 100 99 54 55 100 101 98 54 53 48 48 98 57 55 57 56 56 53 49 57 50 54 97 51 48 99 100 98 55 55 51 55 51 57 101 56 50 97 49 101 54 54 57 52 49 51 100 51 51 53 50 51 57 100 57 49 102 98 102 54 97 100 49 52 52 52 53 53 57 53 98 51 55 48 100 101 100 53 99 101 101 97 99 51 50 50 49 102 54 98 56 52 102 101 55 53 100 48 49 49 99 98 54 52 101 52 101 54 98 48 55 53 52 53 100 99 50 50 51 100 56 52 99 56 52 102 102 100 102 53 53 55 99 97 54 49 53 57 102 98 97 54 53 53 99 50 101 100 48 99 55 98 57 51 53 101 50 55 101 51 102 99 49 98 57 57 51 55 55 100 100 102 50 57 55 51 102 57 57 97 102 54 101 98 99 51 99 57 97 102 49 48 102 56 56 49 99 99 101 102 102 102 48 48 53 99 48 55 102 51 51 53 100 49 56 55 56 55 101 102 54 49 101 97 56 102 57 56 99 99 102 54 53 101 97 55 100 48 57 102 98 50 101 98 48 49 102 98 49 98 102 56 55 55 102 101 98 97 99 102 56 102 102 98 102 97 100 53 102 52 48 57 54 102 54 102 100 54 98 101 55 97 102 100 57 55 102 102 48 48 101 52 99 101 55 99 51 57 102 102 48 48 53 100 54 55 102 102 48 48 100 49 97 100 53 102 52 49 53 54 55 50 97 53 102 98 100 57 49 102 97 48 101 49 98 102 56 53 49 50 48 57 102 56 57 97 99 99 102 51 56 49 55 52 98 102 99 56 100 50 100 100 50 99 57 50 100 97 56 102 50 52 56 49 51 50 51 50 98 99 55 57 101 56 52 56 51 57 99 53 52 53 55 97 100 98 50 99 55 99 100 99 55 102 97 97 57 49 50 52 51 56 102 52 48 99 48 57 102 100 51 51 53 54 56 98 48 101 97 51 57 48 55 97 54 50 98 98 54 56 100 49 101 56 55 54 54 97 57 50 54 51 54 48 98 56 52 98 56 98 55 49 50 50 56 50 97 55 51 56 54 53 51 100 53 52 56 101 97 48 100 53 53 48 51 101 100 102 50 57 50 100 99 100 56 97 51 54 51 54 101 55 49 101 55 98 48 101 97 51 102 100 100 49 100 102 100 52 102 49 52 98 55 48 52 99 98 50 52 55 54 57 49 57 50 56 54 52 99 98 52 97 99 98 99 49 53 52 102 101 50 51 102 53 51 99 48 49 53 54 99 49 52 53 52 53 52 52 53 53 52 52 53 48 49 53 49 53 52 55 48 97 48 55 52 49 53 101 57 100 50 97 52 99 55 99 98 54 100 53 48 97 99 100 100 51 56 49 101 56 48 48 49 56 48 50 57 51 97 102 53 97 52 50 101 56 97 48 57 54 55 53 53 49 102 101 100 49 99 53 52 50 98 51 52 50 101 99 52 52 55 50 99 55 50 49 49 100 52 50 98 48 51 56 97 101 101 56 53 49 98 54 101 50 53 48 54 53 48 52 57 97 101 54 100 54 52 57 101 51 102 101 99 102 98 98 98 56 50 102 51 51 52 56 97 102 49 50 101 53 53 98 51 56 99 55 51 100 98 49 56 99 53 49 55 51 98 97 100 55 99 50 102 55 54 54 54 54 53 51 55 48 99 56 99 102 50 57 48 55 50 51 55 51 55 54 49 102 52 49 56 49 53 55 99 98 102 49 56 48 55 97 102 53 97 99 97 100 52 98 102 55 97 57 54 98 54 56 48 102 99 100 55 49 51 97 97 101 51 100 56 55 50 55 102 52 97 101 97 97 55 52 56 100 101 48 97 102 50 52 54 56 52 55 57 56 101 99 101 48 56 102 51 56 100 98 49 50 97 101 51 102 101 48 50 50 57 54 57 53 56 101 101 55 50 55 98 49 51 57 97 54 101 101 97 101 57 56 100 51 49 53 56 53 97 52 100 100 52 100 99 57 102 53 97 54 49 54 48 51 100 101 98 55 56 100 51 50 57 50 98 56 102 99 101 54 98 56 56 102 56 57 48 55 102 101 50 99 49 102 56 99 48 55 102 100 52 50 97 53 102 101 53 53 100 56 51 51 54 55 100 97 98 56 98 102 56 56 98 99 102 99 48 54 102 49 56 55 102 100 56 50 97 53 102 101 53 53 100 53 48 97 50 102 55 51 49 99 54 52 54 100 56 54 97 57 101 56 102 102 48 48 50 51 101 54 101 102 100 57 102 52 101 51 101 49 100 102 56 102 55 102 101 99 51 49 55 49 102 102 48 48 97 49 49 97 102 54 54 98 55 55 48 48 48 49 57 97 102 49 51 102 100 57 102 57 102 49 102 48 101 55 99 55 100 56 101 100 97 99 53 99 55 102 51 51 53 101 98 100 54 99 99 55 101 53 51 101 102 53 102 56 102 54 50 97 51 102 98 102 57 49 102 48 55 56 55 57 55 98 99 54 99 55 57 57 102 102 48 48 49 51 53 98 55 101 102 102 48 48 98 98 55 97 98 56 53 99 101 99 99 101 52 57 99 100 54 54 54 55 102 101 50 54 102 54 102 102 48 48 101 101 51 102 102 50 49 53 97 51 98 55 101 52 101 98 100 101 97 54 51 49 51 100 57 56 52 98 52 49 99 100 50 49 48 57 99 55 48 55 98 53 53 55 50 100 98 100 102 97 57 51 53 50 52 56 52 98 49 99 53 51 48 50 57 49 100 102 102 49 97 97 53 49 54 100 56 100 98 98 57 50 56 49 56 50 48 102 53 51 57 101 48 53 52 101 49 52 57 99 53 52 51 49 97 49 50 99 48 102 101 53 53 54 49 56 101 48 54 100 53 50 55 50 52 53 55 52 50 56 100 56 49 48 100 54 48 49 99 101 51 102 56 53 55 97 57 102 53 51 53 53 52 102 99 100 51 54 49 55 97 54 54 97 100 98 102 99 57 49 55 57 54 97 55 57 101 102 53 48 99 54 51 54 98 54 51 100 54 98 52 53 48 48 54 99 98 54 97 48 50 52 51 102 52 49 57 97 97 97 101 102 98 57 102 50 55 56 97 57 97 55 57 51 49 48 56 52 101 102 102 100 50 97 57 101 55 48 50 98 54 56 100 51 49 48 97 53 102 57 54 101 51 98 100 54 49 54 97 52 55 102 100 49 56 49 51 102 102 51 100 57 51 102 57 56 97 100 55 54 55 102 98 100 99 101 54 98 57 102 100 53 97 52 50 98 54 55 50 49 101 99 49 57 52 101 55 100 51 57 49 53 97 98 97 54 54 55 53 55 54 50 57 53 100 57 102 57 57 102 101 98 53 101 50 51 101 51 100 101 54 101 50 55 51 102 102 52 99 49 55 102 57 57 97 102 54 54 98 101 54 102 57 99 57 49 101 102 53 101 50 98 101 51 56 101 54 54 98 56 49 102 102 52 99 49 55 102 102 52 50 51 53 100 51 56 55 97 55 102 98 100 56 55 97 97 102 99 99 102 57 56 99 100 49 54 57 102 51 51 101 56 51 102 100 57 55 99 101 51 102 54 51 56 102 48 101 55 102 100 55 53 57 102 102 102 48 48 52 54 98 53 55 100 48 51 53 102 51 100 55 101 99 99 48 52 56 102 100 56 101 98 99 51 98 100 102 102 48 48 55 98 51 102 102 101 56 100 54 97 102 97 48 56 57 48 55 97 102 49 53 52 101 56 98 55 51 54 55 101 56 100 56 51 53 102 98 57 56 56 101 50 48 51 50 51 50 98 55 50 97 52 54 48 56 102 54 97 97 53 54 53 50 51 48 56 54 52 98 55 55 51 98 57 101 48 55 100 57 57 51 100 100 55 97 97 57 102 99 98 102 57 53 53 56 50 52 55 97 57 51 53 53 57 101 50 55 102 101 100 49 53 98 56 56 53 57 51 50 99 48 50 52 97 56 101 55 48 49 56 55 54 50 48 102 97 56 101 55 101 98 53 100 100 52 101 56 100 57 57 100 56 57 54 56 100 48 57 55 51 48 53 101 98 100 101 48 57 101 100 50 101 54 100 101 48 99 99 54 49 49 99 52 56 56 52 101 55 57 99 102 54 48 54 97 98 102 100 56 54 102 57 100 55 102 55 102 97 99 51 50 102 54 99 52 51 49 55 102 56 101 50 97 100 100 99 53 99 97 100 98 53 98 101 102 99 51 98 98 49 50 49 53 49 49 55 97 98 98 49 101 56 48 53 53 55 51 54 51 49 99 97 56 97 100 55 101 97 54 55 98 57 50 52 57 55 100 98 50 98 48 53 53 102 102 54 52 54 48 102 52 49 101 98 100 99 100 55 97 55 52 97 57 53 56 98 56 51 54 57 54 97 53 50 57 50 100 51 52 56 98 55 102 57 97 102 50 101 54 54 98 56 55 50 55 56 51 50 99 100 102 100 48 53 53 56 98 55 56 97 48 98 55 100 55 57 57 54 100 101 49 52 56 97 51 54 98 53 48 100 56 53 99 102 51 102 51 56 102 53 102 97 100 50 53 99 100 97 53 57 100 98 101 56 98 55 98 101 52 53 98 52 49 49 51 49 56 53 98 50 100 56 99 98 55 52 102 53 51 57 99 55 101 49 52 101 53 54 102 102 48 48 56 57 101 53 98 57 99 102 100 101 98 49 102 101 97 97 54 98 98 97 49 52 56 100 51 55 52 54 56 102 54 97 99 98 56 100 98 99 102 102 48 48 49 51 99 100 50 102 102 99 98 51 98 53 56 102 54 50 102 102 48 48 98 101 100 100 52 102 101 53 57 97 98 49 55 53 55 50 57 54 57 54 51 50 52 101 102 100 49 52 55 48 51 100 52 102 54 49 53 53 50 100 54 50 98 98 98 55 100 51 57 49 53 54 49 56 49 101 55 57 48 57 57 54 55 51 50 52 100 98 55 48 99 100 100 48 54 51 49 100 56 54 50 98 97 50 49 52 99 53 48 56 101 56 100 57 97 55 52 99 55 57 49 50 51 52 100 99 101 99 97 56 51 100 53 56 101 50 97 57 49 56 54 101 97 52 51 57 57 97 102 53 54 50 53 51 102 99 49 54 97 57 102 102 48 48 98 51 51 55 102 56 53 53 49 98 55 98 50 56 50 53 49 50 100 101 51 97 51 100 99 56 99 98 48 98 55 56 101 54 55 50 101 48 101 51 56 100 99 100 101 98 57 50 51 56 49 100 50 98 55 56 100 50 101 101 53 52 54 57 97 101 97 99 100 48 51 55 100 54 54 99 48 49 102 98 53 99 48 51 102 101 100 97 48 97 57 52 51 50 98 97 48 55 52 54 53 55 52 51 100 48 56 51 57 48 54 97 57 52 50 50 50 53 102 50 52 99 50 102 98 56 51 98 54 100 57 100 53 101 51 48 55 50 100 56 50 52 57 99 54 51 101 53 51 99 54 51 49 100 51 49 102 57 100 49 54 101 97 50 50 100 52 101 102 50 49 56 99 48 53 56 55 48 98 50 48 53 48 51 48 49 52 57 99 56 51 56 102 99 97 98 97 97 49 52 97 99 56 98 101 52 53 100 48 98 100 53 99 53 102 99 52 53 50 51 102 101 49 52 51 55 56 99 48 55 102 100 52 50 97 53 102 101 53 53 100 56 54 52 48 48 55 56 99 100 55 49 51 102 49 49 48 102 102 99 53 56 57 102 49 55 102 102 48 48 100 56 50 101 53 102 101 53 53 100 51 48 97 54 55 50 54 51 97 51 102 101 99 100 53 51 102 99 50 102 102 50 51 101 54 99 102 100 57 102 100 52 57 102 56 55 53 102 49 48 51 102 101 99 51 49 55 49 102 102 48 48 97 49 51 53 55 98 48 100 97 102 100 99 53 97 102 50 48 102 100 57 102 56 56 102 102 56 53 55 55 101 51 101 51 102 102 53 49 56 98 56 102 101 54 54 98 100 55 54 49 57 49 53 51 50 99 52 56 99 48 49 57 51 53 102 56 97 101 50 97 49 102 98 102 57 49 102 57 100 100 48 55 97 57 97 98 48 57 100 102 97 97 52 56 101 55 101 101 99 55 49 56 52 49 102 53 51 99 57 102 100 48 53 53 99 55 57 55 54 99 55 57 99 55 101 98 53 52 50 99 98 50 98 97 55 99 54 101 99 51 101 55 57 55 102 55 56 100 102 56 102 52 102 100 51 49 53 51 101 52 99 57 50 55 98 48 97 57 56 99 49 53 56 102 54 54 48 102 52 50 52 49 102 51 101 48 100 52 101 97 57 98 57 56 50 102 54 101 102 52 48 52 48 49 52 49 51 100 55 100 50 97 99 48 100 57 49 99 54 51 50 52 101 102 51 100 54 98 53 53 48 98 49 97 49 50 97 56 49 49 97 55 102 98 52 55 97 48 97 56 102 55 101 100 48 53 99 102 50 99 55 97 53 52 52 99 52 54 51 50 55 51 98 56 56 101 51 100 56 53 52 54 55 48 48 54 101 50 55 98 55 48 50 98 54 56 100 51 48 50 52 50 99 51 48 52 57 102 98 100 52 97 56 48 50 97 57 54 54 51 99 48 97 97 98 100 53 102 51 99 100 51 54 52 54 102 57 102 54 101 55 56 49 53 98 99 54 57 97 49 97 52 51 100 101 53 50 99 102 57 102 53 97 56 56 57 99 100 51 51 55 53 52 54 53 56 53 54 102 49 97 54 53 100 56 57 48 57 102 57 52 101 48 100 54 50 54 97 49 49 55 57 100 54 51 51 48 101 51 57 52 51 53 97 56 100 102 55 48 100 53 50 55 49 98 98 51 101 57 56 101 54 98 53 102 54 52 56 99 101 97 101 99 55 51 51 51 52 57 101 54 100 97 52 53 50 101 55 51 98 57 48 49 102 99 55 49 53 101 51 100 101 51 53 101 54 102 97 54 49 101 98 48 97 102 102 101 56 52 54 98 100 53 53 57 98 99 97 57 54 101 50 100 48 57 102 102 48 48 53 54 101 53 57 51 102 100 100 51 99 56 97 102 50 97 102 49 55 57 48 100 97 97 98 56 102 102 48 48 97 54 50 98 57 102 99 99 100 55 52 54 49 101 57 100 97 97 99 51 100 53 55 101 54 55 99 97 101 54 56 102 100 100 102 57 57 101 102 57 102 98 51 48 57 99 55 101 99 55 57 101 49 100 102 102 48 48 97 101 98 51 102 102 48 48 101 56 100 54 97 102 97 48 51 55 48 97 102 57 101 98 102 54 54 50 54 102 102 56 99 51 98 102 48 101 102 102 48 48 100 55 53 57 102 102 48 48 102 52 54 98 53 55 98 102 101 55 51 53 100 57 101 99 55 100 101 51 102 52 97 99 49 52 53 102 98 48 56 102 97 48 102 97 50 97 49 99 57 51 100 50 56 99 101 100 51 57 54 101 57 53 100 100 52 97 56 51 51 97 98 57 52 97 98 49 98 55 57 102 101 50 48 57 54 52 51 99 99 53 54 56 51 54 97 55 98 99 56 99 51 57 51 102 56 48 102 101 55 53 55 56 102 51 101 100 56 97 99 99 100 51 57 56 49 100 50 51 99 101 50 52 48 51 50 99 98 50 52 97 52 102 98 54 101 99 55 102 50 53 97 56 51 101 100 55 55 53 55 98 50 51 99 55 97 55 52 54 48 52 52 48 101 100 55 98 97 57 51 56 52 53 102 97 55 97 57 97 101 102 97 55 52 56 100 54 53 52 100 98 55 54 101 99 52 102 55 52 55 101 100 57 55 56 98 97 54 99 52 99 100 98 52 57 100 100 55 52 101 98 102 99 48 57 100 99 54 55 100 52 102 52 97 57 97 52 100 97 98 97 102 100 97 48 53 53 48 97 97 50 100 101 52 48 48 54 55 97 48 49 98 54 57 100 54 102 48 52 55 54 98 54 57 101 53 52 52 53 57 56 57 51 98 97 52 57 49 98 101 102 52 56 100 101 97 55 102 97 48 101 100 53 53 101 101 97 99 97 52 98 97 98 57 56 52 56 57 102 99 57 56 48 50 98 50 99 97 53 52 102 99 101 52 49 99 55 48 51 101 98 56 101 98 53 100 55 49 97 52 53 50 98 53 101 100 100 48 54 99 54 55 102 98 52 51 53 50 49 55 48 99 51 55 53 56 100 98 98 54 50 50 48 52 55 49 50 99 57 101 98 102 52 49 102 101 49 53 97 48 52 57 99 57 51 57 51 57 51 100 52 101 54 97 49 57 54 52 52 98 55 56 54 51 53 53 56 50 54 102 50 53 53 55 48 48 52 53 49 57 54 48 56 51 102 48 101 54 97 97 57 100 52 101 99 56 55 100 101 57 102 54 49 102 52 54 53 50 48 102 102 48 48 50 97 101 57 56 53 50 48 98 51 55 98 50 51 52 48 55 53 97 99 98 98 49 54 57 49 101 100 50 100 97 51 52 57 52 50 49 56 48 57 52 57 100 48 57 101 55 56 50 55 51 99 54 51 57 99 102 100 52 53 50 102 102 54 57 100 57 48 102 98 98 51 55 57 56 52 102 54 52 53 50 99 55 102 52 49 53 53 50 54 56 57 97 102 50 101 52 52 100 54 102 54 98 55 55 54 57 50 55 52 102 98 52 98 51 55 57 52 48 56 102 55 48 55 57 54 102 99 97 98 97 97 49 52 53 57 97 52 54 48 101 100 97 57 97 102 98 54 50 102 98 52 49 57 56 99 55 49 56 57 52 50 101 51 55 57 101 98 56 101 102 102 48 48 102 101 98 97 97 53 54 97 102 101 55 99 100 55 53 55 52 98 102 101 97 101 52 55 49 49 99 52 55 100 52 50 54 55 50 55 102 51 51 102 97 53 53 55 51 97 55 51 99 57 57 53 98 56 100 53 50 102 50 55 56 55 102 56 57 48 50 56 52 100 100 102 56 101 54 97 102 102 48 48 99 98 49 99 52 57 49 99 54 97 49 50 51 53 49 98 53 53 52 55 52 53 48 51 98 53 55 52 99 54 57 50 98 49 53 99 97 57 50 50 52 99 100 55 49 51 102 49 48 99 101 55 101 48 53 102 56 98 98 102 101 99 49 55 50 102 102 50 97 101 98 97 98 56 101 102 56 56 52 55 102 101 50 99 53 102 56 98 98 102 101 99 49 55 50 102 102 50 97 100 97 51 52 56 101 52 99 55 50 102 102 54 53 97 57 102 101 49 55 102 57 49 102 51 53 55 101 99 102 97 102 57 102 56 55 55 102 49 48 98 50 55 57 49 97 99 53 99 55 102 101 56 52 54 98 100 53 50 50 55 51 55 53 55 48 54 100 52 49 99 52 50 57 56 102 98 52 51 56 102 99 99 50 48 102 55 51 102 97 53 55 57 48 55 101 99 102 54 99 52 102 99 51 97 102 56 56 56 52 55 54 100 53 97 101 51 102 102 48 48 52 50 54 97 101 101 101 49 54 98 99 56 102 52 55 54 56 101 52 56 57 97 100 100 48 49 50 102 50 52 56 53 99 54 101 57 53 56 57 101 48 48 102 54 101 57 102 57 53 55 101 49 102 56 97 56 100 97 98 52 56 102 99 97 101 49 53 97 100 50 51 100 50 57 50 52 100 100 48 49 48 51 48 48 57 49 99 48 101 99 50 97 52 52 54 53 56 99 55 99 100 99 51 55 55 97 101 53 48 101 97 56 100 49 52 101 57 48 99 54 53 53 99 52 52 99 56 57 51 99 56 55 57 49 57 51 99 54 48 55 98 100 53 101 98 97 100 52 48 97 57 52 53 56 101 51 51 50 52 99 101 100 98 53 49 52 49 101 53 56 102 98 102 97 48 97 99 100 52 49 102 52 51 100 53 56 54 50 49 53 56 100 98 51 55 56 97 99 101 55 49 57 54 50 51 97 53 52 99 98 51 54 100 102 57 101 52 101 55 101 97 54 98 57 48 48 51 53 49 50 100 57 55 98 98 98 55 98 55 53 51 102 99 51 48 97 54 101 54 49 101 100 57 51 99 53 51 57 97 50 56 102 54 102 101 102 53 101 101 50 101 48 102 97 99 98 50 57 99 55 101 52 50 98 54 56 99 53 57 97 97 99 52 57 100 52 51 53 102 52 50 54 52 50 53 101 52 56 100 55 49 100 56 98 56 97 56 49 98 53 50 98 55 55 57 51 102 100 55 52 51 56 49 99 55 48 101 51 56 97 99 48 53 57 54 100 100 49 51 54 97 52 49 54 102 56 102 55 56 99 49 102 101 55 52 100 49 51 99 52 97 55 56 56 50 100 102 102 48 48 101 102 100 50 100 55 52 52 54 50 99 98 56 101 50 51 98 57 100 48 56 100 52 101 99 100 53 52 102 101 102 101 49 99 56 102 102 54 98 51 53 49 49 100 53 50 99 100 98 51 102 98 102 56 55 51 102 53 51 53 56 101 50 102 48 50 101 51 54 99 55 48 50 102 100 50 50 53 102 102 48 48 48 97 55 51 53 102 49 50 51 48 99 98 49 49 49 101 56 53 49 52 100 54 102 49 56 57 97 55 100 54 53 50 51 53 48 53 101 50 51 56 102 57 54 52 56 99 102 97 54 49 56 53 48 54 55 50 48 102 53 99 53 54 48 51 99 98 54 57 50 49 50 53 97 100 54 100 56 98 55 102 55 57 53 55 54 57 102 99 99 53 52 52 54 53 57 49 55 102 100 52 53 99 57 53 102 102 48 48 54 54 54 53 100 101 51 102 51 97 100 101 51 52 101 99 50 102 97 99 49 100 49 48 57 49 57 56 54 55 50 52 48 97 56 54 55 57 51 54 99 50 100 100 98 56 101 50 98 57 102 49 97 100 52 98 49 52 97 98 49 53 101 52 53 49 99 51 98 56 102 99 98 50 50 49 100 99 56 55 100 98 51 100 97 97 98 53 102 101 97 98 50 97 48 56 100 50 51 52 52 57 54 52 57 53 98 54 97 56 50 100 98 52 55 52 99 102 53 51 53 98 99 54 51 97 49 49 51 99 52 99 54 100 98 57 52 98 53 50 52 52 57 54 101 53 52 56 98 97 57 54 100 97 55 100 97 52 48 50 56 52 54 53 56 55 100 48 100 55 56 102 55 56 56 54 101 100 100 97 102 49 56 52 99 55 55 51 48 52 51 49 57 54 102 53 99 49 51 99 100 55 55 51 55 57 55 51 48 100 99 101 97 48 50 53 57 55 99 101 56 56 99 56 49 53 49 54 52 52 51 102 51 52 50 101 51 50 48 97 102 98 54 55 51 53 101 54 98 101 50 100 51 49 100 98 54 97 49 101 53 97 49 57 49 100 52 52 51 98 57 100 57 98 57 50 52 57 50 55 50 52 100 54 100 52 50 51 102 98 100 56 55 97 97 51 101 53 55 51 51 97 100 55 98 55 97 57 102 52 98 102 101 99 99 54 101 52 55 101 99 55 55 101 49 101 99 55 102 99 102 53 57 102 102 102 48 48 52 54 98 53 55 98 101 57 54 50 55 97 57 99 100 55 99 102 51 102 98 50 102 51 101 101 102 100 56 101 51 99 51 97 52 102 102 99 102 54 57 102 98 102 102 100 51 53 54 97 102 97 48 54 98 100 54 56 53 49 98 98 51 102 53 98 99 98 101 50 57 101 49 97 49 101 56 52 101 49 101 97 50 57 56 99 56 100 54 55 51 48 56 56 54 54 52 50 56 52 50 102 51 100 102 49 99 53 51 55 51 52 97 48 101 50 98 98 97 57 100 49 51 98 54 100 54 51 50 50 100 102 52 100 98 99 55 98 50 56 50 49 98 102 98 97 49 49 100 98 50 50 56 49 102 54 54 56 51 101 102 49 102 54 50 100 100 51 102 57 100 54 100 97 101 100 52 56 57 50 51 52 52 53 56 101 51 52 49 56 52 52 53 101 56 97 50 57 51 98 102 53 97 53 99 55 100 50 98 98 97 49 52 97 99 49 51 55 50 57 51 49 99 48 101 54 56 48 52 57 97 54 48 54 102 102 48 48 54 54 56 50 100 57 101 102 56 97 101 56 56 100 51 50 55 57 51 98 56 97 97 100 98 52 57 99 54 55 51 101 98 52 49 57 53 99 55 52 55 54 102 102 48 48 98 101 97 97 51 50 55 51 100 54 97 51 54 54 99 54 51 98 100 55 52 52 54 57 100 99 98 53 49 50 54 51 51 52 98 56 102 98 101 100 102 56 49 97 56 53 57 102 101 54 99 102 53 99 102 97 100 51 49 57 98 55 53 51 54 98 97 50 49 52 99 98 52 57 50 49 52 57 99 57 97 54 57 51 102 56 100 50 54 101 97 54 100 55 52 99 54 57 48 99 55 54 101 97 101 50 102 101 50 50 49 102 102 56 98 49 51 101 50 102 102 102 48 48 98 48 53 52 98 102 99 97 98 98 50 97 101 49 102 101 50 51 98 102 102 99 53 56 53 102 49 56 49 49 100 98 52 57 57 55 102 57 53 54 101 97 57 57 99 98 56 102 102 102 48 48 55 53 97 98 102 101 49 55 102 57 51 51 101 54 49 102 100 57 101 50 52 99 102 99 51 53 102 56 56 100 102 102 48 48 54 49 55 98 56 102 101 54 100 53 101 97 49 98 54 51 98 56 98 51 55 56 54 52 102 98 97 101 51 48 55 48 55 49 53 102 51 102 102 99 51 54 57 102 53 102 102 48 100 102 99 51 97 102 49 53 101 57 100 54 97 57 54 102 48 100 100 54 97 55 97 99 52 99 102 101 55 57 57 100 52 102 57 55 49 54 102 51 100 48 55 102 55 56 102 101 56 50 98 97 101 56 54 101 51 99 53 49 57 99 55 102 54 57 48 51 102 102 48 48 54 100 53 50 98 102 48 101 99 52 54 49 54 97 98 97 100 50 55 49 56 51 54 56 102 99 52 53 101 51 101 57 50 57 98 53 55 51 100 51 52 100 98 57 56 98 52 99 49 54 102 48 54 101 48 99 49 99 51 101 101 57 48 101 55 55 51 48 51 57 99 57 51 53 51 52 50 102 55 48 54 101 99 100 99 100 100 97 97 97 99 56 49 52 97 52 55 49 97 51 54 52 50 101 55 97 98 49 51 101 97 54 98 99 102 53 50 101 55 99 52 100 56 102 102 57 48 57 54 55 102 101 100 98 50 53 52 56 54 101 98 99 52 102 100 55 102 98 52 55 102 102 48 48 50 50 97 53 52 52 55 48 57 53 98 102 101 55 100 98 51 97 97 49 56 101 97 55 54 100 99 102 52 57 51 55 53 99 102 53 99 55 100 54 97 50 54 98 99 51 57 99 54 101 97 102 51 54 55 57 55 99 52 55 50 50 101 49 98 53 49 51 102 53 49 51 50 53 52 49 98 51 99 52 53 102 102 52 49 52 55 102 102 98 102 99 57 53 100 49 49 99 50 100 54 102 102 57 102 54 99 100 55 102 98 52 54 50 55 97 55 49 98 57 100 99 98 56 50 49 52 102 101 49 53 52 53 101 101 56 97 51 101 48 101 55 100 56 100 55 57 102 56 51 101 50 49 49 102 102 48 48 51 49 49 50 55 101 98 51 97 53 48 99 102 101 50 48 50 51 48 54 102 57 49 98 101 98 50 97 53 54 99 98 48 98 53 57 102 102 48 48 99 98 98 54 48 102 51 49 56 98 51 98 100 102 98 54 55 100 55 102 51 97 54 57 98 99 48 51 97 56 48 54 98 99 102 49 57 55 53 102 51 102 102 51 49 48 50 98 102 52 57 57 50 97 49 54 56 98 99 52 51 99 54 51 53 52 54 102 102 98 102 97 57 53 98 52 55 48 100 53 102 102 48 48 101 55 100 98 50 49 101 54 50 56 102 52 55 51 55 56 51 98 49 50 50 57 98 102 54 99 51 101 98 57 97 102 51 97 51 48 54 98 100 57 48 54 52 100 54 57 48 54 52 54 55 54 57 57 57 52 49 102 101 53 52 48 52 100 54 53 55 102 101 54 50 102 48 57 102 97 100 99 48 102 102 48 97 100 101 51 56 53 97 102 102 102 48 48 51 101 100 102 102 53 102 51 48 53 57 57 50 51 98 101 57 54 101 57 50 53 56 53 97 51 57 48 54 102 52 54 101 97 48 100 54 51 52 56 50 102 57 97 54 98 55 56 53 50 52 56 101 54 98 54 52 57 57 53 99 51 98 51 101 49 100 48 48 101 99 55 100 54 98 57 97 54 102 101 100 56 49 99 55 102 54 97 100 98 55 102 100 102 101 53 97 97 102 50 52 57 97 101 48 53 101 51 53 55 98 54 49 102 52 57 57 55 102 99 50 98 54 56 101 49 54 98 55 102 99 102 98 54 52 52 102 51 49 56 98 100 99 101 97 101 54 98 54 98 53 51 55 102 102 54 97 57 49 48 49 57 99 49 99 56 99 51 57 99 49 51 101 97 52 55 52 50 54 98 99 99 51 99 54 102 50 101 101 98 101 55 53 53 48 51 57 56 48 55 52 102 97 57 97 98 98 51 51 101 98 100 101 54 49 54 102 101 100 97 56 51 49 101 56 54 101 49 55 49 102 99 97 98 48 97 102 50 100 55 53 50 98 99 56 101 55 102 98 52 53 101 53 56 100 99 99 98 101 53 57 100 97 99 54 55 53 100 100 99 48 50 55 49 53 100 55 56 55 99 50 53 54 55 53 50 51 102 98 98 54 98 53 52 55 57 49 56 99 99 55 53 51 57 97 98 50 101 101 55 100 50 100 102 98 50 98 99 56 53 98 102 54 51 50 102 48 101 57 48 55 102 101 53 98 52 101 51 102 102 48 48 50 50 98 53 55 100 49 50 49 56 102 51 99 100 55 99 54 102 102 48 48 102 99 55 55 97 53 102 56 49 102 102 48 48 54 54 55 100 49 51 99 51 100 97 100 53 97 54 97 50 102 97 56 52 52 102 50 51 98 102 100 57 99 52 54 99 57 56 54 55 50 99 48 54 52 98 56 101 55 48 55 100 50 98 100 97 100 51 101 51 50 55 56 54 53 99 102 49 54 55 97 99 102 102 48 48 100 102 98 56 98 102 102 56 98 97 102 55 54 57 54 49 57 100 57 54 56 55 101 99 53 57 55 101 55 100 57 55 52 51 48 102 48 56 52 97 98 50 52 100 49 101 98 56 52 56 101 100 53 50 48 99 98 55 53 101 50 98 99 56 98 102 101 49 55 48 102 56 54 99 52 99 49 48 53 57 54 98 50 99 52 56 99 57 51 98 50 50 101 51 102 102 48 48 50 50 53 52 102 102 48 48 102 48 98 55 55 99 51 57 102 102 48 48 51 101 55 97 99 55 102 100 102 49 49 55 102 102 48 48 49 55 53 100 57 49 99 51 98 52 55 54 55 102 97 99 49 57 54 102 102 99 102 101 52 55 97 99 54 55 100 101 57 54 98 99 57 98 102 101 49 54 100 102 56 54 102 102 48 48 101 55 100 51 53 55 102 102 48 48 98 101 50 50 102 102 48 48 101 50 101 57 100 102 102 48 98 55 55 99 51 56 51 102 101 53 99 102 53 55 102 102 48 48 98 101 54 50 102 102 48 48 101 50 101 98 97 49 53 48 50 53 101 55 102 57 54 102 102 99 102 101 52 55 97 98 55 52 97 54 57 55 102 52 101 54 98 99 97 52 102 99 53 100 102 48 101 49 102 102 48 48 57 55 50 100 54 51 102 101 102 57 56 98 102 102 48 48 56 98 97 52 102 102 48 48 56 53 98 57 101 49 99 102 102 57 102 50 100 54 51 102 101 102 56 56 98 102 102 56 98 97 101 56 56 53 50 48 53 99 52 49 57 54 102 102 48 48 99 102 101 52 55 97 97 51 51 54 101 97 54 100 55 57 54 55 102 99 50 100 99 102 48 101 55 102 99 102 57 54 98 49 102 102 48 48 55 99 52 55 102 102 48 48 99 53 100 52 55 102 102 48 98 55 55 99 51 98 102 102 48 48 51 101 49 97 99 102 102 100 102 49 49 55 102 102 48 48 49 55 53 100 49 49 97 52 99 97 102 102 48 48 53 56 51 50 100 102 102 57 102 99 56 102 53 53 100 99 54 57 98 53 101 53 54 51 101 50 101 102 56 55 51 98 100 56 101 98 50 51 102 101 48 49 49 55 102 102 48 48 49 55 52 100 54 102 56 98 57 101 49 98 51 56 102 102 48 48 52 51 100 54 51 102 101 102 100 99 55 102 102 99 53 100 54 101 97 57 97 52 48 98 56 56 51 50 100 102 102 57 102 99 56 102 53 52 54 54 100 98 56 101 102 53 49 98 51 54 55 49 100 97 98 99 97 99 102 99 53 99 102 48 100 48 49 99 100 97 54 98 49 102 102 55 101 101 50 102 102 101 50 101 97 50 54 102 56 99 51 101 49 57 53 102 102 57 55 51 100 54 52 102 102 99 48 50 50 102 102 101 50 101 98 53 101 53 54 53 55 102 97 99 51 57 54 50 102 102 48 48 57 55 100 49 51 100 54 48 57 50 55 97 57 97 101 50 51 101 50 52 98 54 100 102 100 57 102 102 48 48 99 54 52 55 102 101 97 49 51 51 55 102 50 49 53 99 98 51 102 99 54 97 102 48 98 50 101 55 102 100 48 98 53 98 51 56 102 52 56 101 50 102 102 101 51 57 53 99 97 102 56 99 51 101 50 99 55 56 55 98 99 52 51 102 48 99 51 99 52 49 97 48 53 56 100 97 54 97 99 57 55 57 55 102 54 51 50 53 98 99 48 100 51 50 99 52 49 48 51 51 48 101 51 55 49 48 101 52 56 49 102 56 53 53 50 56 51 51 56 55 51 48 101 50 53 99 97 101 53 56 54 97 57 49 53 53 101 51 55 55 49 55 100 55 99 56 102 57 54 98 102 54 53 101 102 100 57 97 51 101 49 52 55 99 53 97 102 56 55 102 101 51 48 100 54 55 99 54 98 97 54 101 98 100 55 53 55 100 54 57 101 50 49 57 97 100 97 48 51 54 55 97 100 99 102 54 97 97 49 48 54 48 101 48 56 52 50 51 50 55 100 101 98 101 97 50 49 102 98 48 98 102 101 99 102 48 51 97 54 56 55 101 50 100 102 99 55 99 53 53 55 55 102 102 48 48 99 53 53 54 48 102 101 99 51 56 57 101 53 102 99 49 55 102 49 101 102 49 102 102 48 48 51 51 53 52 101 55 102 57 53 55 100 98 57 98 97 98 102 50 49 97 100 53 50 97 50 97 56 100 50 57 49 99 53 57 55 101 49 50 56 100 52 97 49 49 57 51 56 97 54 100 100 102 102 51 51 101 52 52 102 102 48 48 56 54 49 98 102 100 57 101 98 98 101 56 55 101 50 99 51 102 102 55 51 52 100 100 102 102 48 48 102 49 53 52 57 102 102 48 99 51 100 102 98 51 100 56 101 57 97 49 102 56 97 102 102 49 102 49 52 53 100 102 102 102 48 48 49 53 53 102 53 100 53 49 52 101 51 53 50 97 102 102 48 48 51 51 51 98 57 54 53 98 56 54 101 98 48 53 102 55 49 102 50 50 57 102 100 56 55 98 102 54 55 98 102 102 48 48 97 48 49 55 56 97 98 102 102 48 97 56 98 97 102 102 48 48 101 50 97 56 102 102 48 48 56 54 49 100 102 100 57 101 56 102 102 99 99 48 98 99 53 55 102 102 48 48 56 53 52 53 100 102 102 102 48 48 49 53 53 102 53 98 54 102 102 54 97 54 54 55 101 98 53 98 99 54 55 53 51 98 57 53 102 100 57 98 56 53 102 102 48 48 57 102 54 98 101 101 51 101 52 56 51 102 98 48 102 102 48 48 101 99 102 51 102 102 48 48 52 48 50 102 49 53 102 102 48 48 101 49 53 49 55 55 102 102 48 48 99 53 53 51 55 102 101 49 56 55 102 102 48 48 54 55 98 102 102 97 48 49 102 56 97 102 102 102 48 48 48 97 56 98 98 102 102 101 50 97 98 101 98 56 97 54 49 51 57 97 101 57 56 99 97 55 100 99 54 98 50 98 99 50 55 102 99 102 98 53 102 55 49 102 50 53 55 102 99 51 48 102 102 101 99 102 55 100 98 52 51 102 49 53 56 102 102 98 57 97 50 101 98 102 102 56 97 97 52 102 102 56 54 50 50 102 100 57 101 102 102 101 56 48 51 101 50 97 102 102 48 48 99 50 97 50 101 102 102 102 48 48 56 97 97 102 97 99 102 55 53 49 56 51 100 101 98 97 50 51 99 102 100 99 97 102 101 99 99 99 50 55 102 99 102 98 53 102 55 49 102 49 101 99 102 102 48 48 98 48 99 102 101 99 102 102 48 48 51 52 97 53 57 55 52 101 102 49 55 52 52 97 55 97 50 56 102 49 48 99 99 100 56 102 99 52 101 52 100 53 55 51 102 98 48 56 55 99 48 49 102 102 48 48 57 102 51 102 49 56 56 102 102 98 57 56 50 53 97 102 98 50 48 51 55 97 48 99 53 50 55 52 101 102 53 98 99 53 99 98 98 56 100 54 53 53 56 53 102 102 48 48 57 102 54 56 102 56 100 56 55 101 99 50 98 102 48 48 56 54 51 49 54 55 101 51 49 101 51 102 101 97 51 102 50 100 50 57 102 100 56 53 51 101 48 50 49 49 102 102 48 48 49 101 55 101 51 48 49 102 102 55 49 102 57 50 98 101 99 55 100 100 52 99 50 55 49 53 98 52 54 51 51 50 98 102 98 50 51 48 55 102 102 51 101 100 49 102 49 97 51 102 101 99 49 102 102 48 48 100 98 102 101 53 100 98 99 54 54 51 101 57 97 102 99 57 102 101 49 53 101 53 55 102 49 56 51 102 54 52 52 102 56 51 57 102 48 101 55 101 48 52 54 97 57 101 51 48 102 48 101 100 97 102 56 57 56 101 98 49 54 57 51 99 48 57 48 102 100 98 51 53 56 57 50 54 56 98 49 50 52 56 49 49 98 50 97 55 97 102 48 52 101 50 98 102 52 55 50 98 99 49 55 102 54 57 56 53 100 100 102 98 49 101 55 56 56 57 55 102 101 57 101 97 100 51 102 102 48 48 52 55 97 100 51 102 54 55 50 51 48 99 54 101 53 57 56 53 97 55 56 54 57 99 101 51 48 52 57 97 52 99 102 56 48 55 102 54 55 97 102 100 57 101 51 101 49 49 102 56 102 55 102 54 55 98 56 98 99 52 55 101 51 53 56 102 99 52 50 57 55 101 100 55 55 50 50 55 57 100 54 98 97 98 99 100 49 52 54 52 48 54 99 48 48 53 53 55 98 102 98 100 55 100 48 100 48 102 101 99 57 57 102 98 51 56 99 55 54 99 51 48 100 101 50 53 54 52 48 51 97 98 54 98 100 55 49 53 56 51 102 98 50 101 99 54 48 55 101 99 53 98 49 49 51 99 48 54 100 52 50 52 101 55 100 51 101 55 49 53 101 101 99 50 53 102 51 97 100 50 52 56 101 50 53 57 49 48 49 50 99 57 49 99 56 53 55 101 53 50 99 51 98 54 54 98 101 49 57 53 55 97 97 97 97 99 98 100 101 55 54 98 102 55 51 99 48 97 51 55 57 51 55 99 99 57 51 100 53 102 55 101 102 101 97 55 57 55 102 102 48 48 99 51 50 57 102 101 99 101 53 98 52 54 51 102 101 49 50 50 102 97 102 102 48 48 54 102 53 99 53 48 55 102 54 53 49 102 100 57 99 52 56 101 55 102 101 49 50 50 102 102 48 48 99 49 102 53 99 100 55 97 97 99 55 97 50 100 57 98 99 50 56 54 48 49 55 50 56 102 56 49 56 55 102 51 48 57 54 48 55 98 101 52 55 52 101 98 53 54 101 51 98 51 99 52 56 50 50 98 56 54 48 98 50 54 51 101 53 54 53 102 98 97 102 102 48 48 101 48 55 100 97 98 100 57 99 50 53 54 97 99 101 100 55 55 102 56 57 97 102 100 53 97 50 102 55 97 55 49 102 101 98 101 54 55 56 101 56 102 100 57 51 55 102 54 55 49 54 48 55 49 102 102 48 48 48 57 49 101 51 102 101 99 51 102 55 49 52 55 102 99 51 50 53 55 101 99 101 52 55 97 55 102 99 50 52 57 102 102 48 48 56 51 102 98 56 97 102 55 48 56 101 99 56 48 48 49 49 52 57 54 102 97 57 49 53 50 49 98 50 56 56 49 99 49 51 50 51 49 102 52 53 51 53 101 101 100 49 57 53 52 98 54 101 49 102 53 50 97 55 102 102 51 101 97 51 102 100 55 99 99 102 48 56 51 102 98 50 52 102 101 99 101 50 55 98 55 56 57 51 102 102 48 55 102 55 51 52 100 51 102 98 50 52 102 101 99 101 53 101 57 101 50 52 102 102 99 49 102 100 99 53 55 98 100 55 102 54 54 97 98 55 102 99 98 51 57 53 55 101 97 100 53 49 52 57 97 54 54 49 102 49 98 99 56 102 97 100 55 54 50 57 52 100 55 102 52 99 51 101 97 49 48 102 102 48 48 57 102 53 49 102 98 98 102 101 48 57 101 48 102 102 102 48 48 48 99 57 53 102 98 51 57 55 97 55 56 57 55 102 102 48 48 48 97 48 98 56 97 54 102 102 99 51 50 53 102 101 99 101 53 101 57 101 50 52 102 102 99 50 56 50 101 54 98 100 101 51 102 98 51 57 55 102 56 97 52 51 102 97 53 50 102 102 54 55 100 98 97 101 51 55 52 97 51 102 49 51 53 97 52 54 53 51 54 48 98 48 49 52 102 102 101 55 100 52 55 102 97 102 57 57 101 48 101 55 102 54 52 97 102 100 57 99 55 100 55 99 52 57 102 102 56 51 102 98 56 97 54 57 102 100 57 50 55 102 54 55 52 51 100 49 55 99 52 99 55 102 101 101 51 100 55 51 53 101 102 55 101 52 53 97 97 102 48 49 100 52 102 100 48 53 51 56 102 57 50 49 55 48 97 99 98 53 97 97 57 52 56 100 49 54 53 102 52 51 97 100 50 56 102 100 100 102 102 48 48 48 52 102 48 49 51 102 98 50 51 102 101 99 101 100 102 100 99 102 49 51 48 102 102 48 48 98 56 102 53 99 100 53 52 57 55 102 54 52 99 102 100 57 98 100 55 51 98 99 102 56 57 57 52 102 102 48 48 100 56 55 97 101 54 98 100 102 54 55 57 50 51 54 57 53 54 49 52 48 102 56 101 98 50 98 97 48 101 53 49 55 102 99 52 102 52 97 99 100 102 51 54 100 98 101 100 51 55 51 48 52 48 56 102 49 99 54 97 99 48 99 56 101 99 100 57 100 56 97 48 55 98 102 55 50 54 57 102 98 52 57 50 50 54 55 56 49 99 51 97 102 102 48 48 57 55 55 49 102 98 98 102 101 48 57 101 49 53 55 49 102 98 50 55 55 101 99 100 52 54 100 99 54 102 57 51 99 52 97 56 48 55 55 49 101 50 48 98 57 49 53 101 53 55 102 49 50 51 102 54 55 56 102 100 57 102 102 99 50 98 101 48 49 98 56 98 101 102 48 100 52 51 101 50 53 100 52 51 53 101 48 56 99 102 54 100 101 54 54 98 98 55 48 102 48 99 51 98 55 97 98 51 97 57 101 49 98 100 48 50 102 102 48 48 56 53 55 100 53 51 55 53 55 55 49 102 57 52 55 55 52 51 51 52 100 50 48 56 98 55 98 56 52 52 99 57 53 53 101 99 52 102 101 49 53 101 51 55 102 49 51 48 56 57 51 99 50 49 55 50 97 49 49 52 50 49 98 51 57 48 56 51 56 101 52 56 101 50 57 52 101 97 99 102 52 98 51 51 101 55 102 51 50 55 48 97 55 52 100 102 50 52 50 50 98 54 100 57 51 101 102 101 97 55 97 100 102 101 99 52 48 100 98 98 101 48 101 102 56 102 98 49 102 55 55 102 101 49 50 98 57 102 49 102 57 48 97 102 98 54 54 98 101 50 51 102 100 56 56 52 54 100 102 56 50 98 101 51 98 102 55 102 49 53 53 99 55 102 52 97 102 98 53 55 98 102 53 97 102 56 101 97 98 52 102 100 102 54 99 102 98 54 99 97 57 55 102 98 50 99 55 101 55 102 57 98 50 53 50 101 51 98 55 51 53 49 49 50 52 102 53 97 52 50 55 49 100 51 51 52 99 50 55 51 53 55 49 97 54 55 97 52 97 50 51 56 57 99 53 51 52 57 99 100 52 54 100 50 50 50 52 54 99 101 101 99 97 56 56 51 97 98 51 49 99 48 97 97 54 50 102 48 52 98 57 51 54 98 54 100 55 55 55 54 56 48 102 100 102 56 101 51 102 57 55 102 51 51 100 54 98 97 54 51 52 56 98 53 48 54 102 54 50 101 101 101 97 52 48 51 51 53 52 102 101 100 55 51 50 55 51 50 54 57 100 97 56 50 50 102 55 51 101 53 54 55 102 57 53 49 48 100 101 53 98 52 99 101 53 54 51 57 57 52 98 102 55 52 51 99 51 48 102 99 48 100 55 52 52 54 48 53 55 98 51 57 49 54 100 53 98 97 100 50 55 52 101 102 52 57 98 97 57 56 52 101 50 98 55 56 53 50 54 99 97 53 49 49 102 98 97 57 56 52 101 50 57 97 52 101 54 56 99 53 55 53 99 50 57 50 52 53 97 56 56 49 51 57 97 51 48 54 57 97 99 100 98 51 49 99 54 55 51 52 100 50 101 53 98 97 48 102 100 54 98 55 56 100 51 50 100 50 49 55 55 55 98 53 55 56 53 102 101 100 49 99 98 98 98 102 54 52 54 102 49 48 97 102 102 100 51 99 100 97 102 102 48 48 101 56 102 53 97 102 55 48 100 98 101 102 53 101 50 49 102 98 52 52 48 99 102 101 99 57 100 97 102 56 101 102 102 54 57 98 53 102 102 100 49 99 98 53 97 102 98 50 51 56 98 51 51 102 102 55 51 97 98 102 101 49 55 102 57 49 102 51 55 55 101 99 100 48 57 102 102 49 56 53 55 48 52 54 97 51 57 51 55 98 50 55 102 101 56 54 50 98 100 100 51 52 101 49 49 99 53 54 101 101 48 48 102 51 50 100 57 100 56 101 102 53 55 102 53 99 102 50 52 55 97 56 97 102 49 56 102 100 57 98 101 51 102 50 55 102 54 51 57 98 52 99 55 50 99 54 101 100 99 57 102 102 48 48 98 101 101 98 100 101 50 99 54 55 52 98 54 98 49 98 54 56 50 101 50 51 53 100 97 51 50 50 50 54 55 53 48 53 53 98 57 50 55 102 51 97 102 99 100 100 100 51 98 100 54 55 101 97 55 99 101 54 48 101 48 57 98 98 98 102 101 98 53 51 54 97 49 56 54 50 98 55 98 53 50 98 48 99 53 98 55 51 57 50 52 101 52 57 99 101 55 101 98 52 99 55 98 53 53 57 97 51 48 50 53 99 51 97 98 48 101 52 49 101 100 102 52 97 57 99 99 57 98 57 52 57 99 49 50 55 98 100 50 98 51 49 102 51 52 48 53 99 48 49 56 97 102 97 48 99 50 99 49 54 99 55 97 100 101 99 101 51 54 52 53 53 53 98 52 51 48 51 54 54 51 57 100 57 56 54 51 101 101 99 97 51 51 102 97 100 50 57 55 53 53 101 54 53 56 100 97 51 49 57 101 49 56 102 50 98 102 57 56 97 57 57 99 97 97 52 52 99 99 52 101 54 57 98 49 52 56 52 99 55 57 49 98 55 57 102 53 97 102 53 101 57 52 50 99 56 53 101 99 100 48 100 54 50 55 49 102 50 101 48 56 102 53 99 100 53 55 54 48 53 56 57 50 52 102 101 98 52 98 51 50 53 98 98 49 50 99 100 49 97 56 54 102 102 48 48 97 54 52 52 97 102 102 50 101 50 97 56 55 100 57 50 48 99 102 100 100 57 56 102 98 55 57 99 100 53 100 50 102 98 51 50 53 99 48 57 100 100 54 51 53 53 99 98 98 97 56 49 101 101 100 53 48 101 102 98 53 99 102 102 48 48 97 102 56 55 102 101 102 98 49 52 99 49 54 98 54 99 97 55 50 50 100 54 49 99 102 97 98 48 50 99 55 102 53 50 54 97 52 48 97 48 54 51 49 49 99 54 98 56 102 52 56 99 48 102 101 57 53 54 57 51 48 53 52 56 56 99 49 48 102 102 48 48 101 97 50 50 57 97 55 102 53 50 97 98 99 55 101 54 55 56 97 54 98 53 98 99 99 99 51 102 55 57 50 99 55 54 99 51 102 98 97 56 48 51 98 55 101 55 100 48 53 52 97 99 99 101 55 49 57 54 54 51 56 102 53 50 54 97 50 51 99 57 49 57 99 102 101 51 53 54 97 50 53 50 97 50 50 48 98 54 56 101 51 56 55 54 99 55 100 51 51 57 54 50 53 98 50 53 56 102 97 57 51 101 98 53 52 50 101 97 100 100 53 97 100 54 53 52 102 98 56 49 99 49 100 99 53 52 48 99 57 101 51 49 102 56 100 53 98 54 99 101 48 102 51 56 102 99 50 98 51 101 55 54 102 57 55 97 57 97 98 52 56 99 101 97 52 53 50 100 48 99 52 57 50 49 49 49 99 53 49 53 57 99 54 99 53 101 54 98 56 99 56 55 55 55 51 99 57 102 57 55 57 54 51 101 99 48 48 97 102 50 50 102 56 57 101 50 51 53 102 48 99 52 101 97 98 102 55 53 54 99 101 52 48 48 57 102 52 101 50 98 100 56 50 50 54 102 51 51 53 48 55 98 56 50 52 57 49 56 51 49 99 53 99 55 54 48 51 57 51 102 57 102 49 53 101 50 53 102 49 51 101 52 50 100 101 49 99 98 98 49 57 101 48 53 98 52 98 102 99 99 53 48 100 50 53 54 102 53 53 102 57 57 102 50 57 57 99 99 53 50 97 51 102 51 102 102 48 48 50 51 100 55 51 102 54 50 55 99 97 102 99 49 53 102 49 98 56 102 102 97 57 97 54 101 51 102 97 53 55 100 57 99 52 101 54 98 101 51 52 102 100 56 98 56 101 51 101 48 99 102 56 100 99 54 51 102 101 54 54 57 98 56 102 101 57 53 102 54 52 54 51 57 101 52 100 55 99 100 99 97 57 53 101 52 99 102 97 100 99 97 51 102 100 100 50 49 102 51 102 99 100 56 54 101 97 56 50 54 57 56 99 53 98 49 50 51 52 51 51 53 99 52 56 55 49 49 99 54 51 56 50 55 100 99 57 101 99 48 55 55 51 53 50 57 55 53 53 56 100 57 99 57 99 50 97 56 99 57 51 101 56 50 97 98 53 98 50 57 51 49 57 98 97 57 52 54 50 55 57 100 52 49 101 55 102 56 50 51 102 101 49 53 102 99 55 97 57 102 102 101 98 53 54 97 97 57 57 101 97 99 54 51 100 53 56 56 98 54 97 56 53 98 99 101 98 100 57 49 54 101 101 53 53 101 52 48 50 51 49 49 52 55 102 52 49 100 102 101 97 55 102 50 97 53 102 98 53 102 57 102 102 101 97 50 51 57 97 102 51 54 102 49 98 57 48 55 99 56 51 102 101 48 52 55 48 51 102 50 97 56 97 51 53 49 55 52 49 54 101 50 55 49 101 54 52 54 52 101 54 49 56 53 98 101 101 56 49 100 57 57 56 55 55 50 55 97 56 48 55 56 48 51 49 53 54 57 57 99 57 99 54 55 57 99 55 52 49 100 56 55 100 51 100 50 98 97 50 49 52 56 100 49 97 101 101 52 51 98 101 101 99 55 52 98 51 52 48 55 100 52 53 99 50 53 50 51 50 57 98 97 48 53 54 101 101 100 48 54 48 48 101 49 57 57 100 53 56 56 102 97 49 48 55 50 48 100 51 100 100 100 52 50 49 54 55 54 48 56 97 97 51 50 52 57 51 99 48 97 97 51 101 55 53 99 53 100 50 101 54 100 51 49 48 53 98 57 102 102 48 48 57 55 57 57 49 55 101 102 55 102 98 56 98 100 102 101 98 100 50 98 55 56 100 50 50 97 48 97 101 101 101 53 57 57 50 53 56 50 100 54 100 53 51 99 102 98 56 99 48 48 51 101 102 52 97 52 54 101 54 102 99 97 97 98 48 98 97 98 56 57 100 52 102 100 56 97 100 53 99 97 49 102 102 57 54 100 51 102 101 101 100 51 102 53 101 52 102 101 49 53 50 99 53 54 100 54 100 54 101 100 101 54 50 97 57 57 54 55 102 101 50 57 101 54 50 49 57 99 102 102 48 48 52 49 102 56 53 52 99 102 50 49 54 50 48 57 51 98 98 102 100 97 99 101 54 98 97 54 49 52 97 99 53 100 97 51 55 50 56 100 97 99 98 55 50 54 102 54 102 54 51 98 56 57 54 51 57 52 99 52 99 97 48 49 52 53 100 97 51 57 48 52 57 97 98 97 53 99 98 48 101 57 100 51 100 101 98 51 97 99 52 54 54 101 51 53 50 57 51 102 98 100 55 55 98 55 102 101 102 57 53 102 102 101 98 100 53 102 100 99 51 98 100 55 52 52 54 48 53 52 57 54 97 50 101 100 97 54 57 55 99 55 54 97 54 57 54 102 52 51 52 99 99 100 55 52 52 50 57 48 102 57 52 55 51 49 49 99 54 50 98 99 52 55 102 54 56 54 102 102 48 48 57 51 53 49 100 55 56 102 102 100 51 99 100 97 102 102 48 48 101 56 101 53 97 102 54 97 100 100 53 101 50 49 102 98 52 51 57 99 102 101 99 97 55 97 102 55 102 100 55 99 100 97 102 102 48 48 101 56 101 53 97 100 98 100 57 97 98 49 99 51 57 97 102 102 48 48 98 57 53 54 102 102 48 48 48 98 102 99 56 102 48 99 102 100 57 101 98 48 51 102 54 51 98 98 51 48 48 54 48 55 100 97 49 102 102 102 48 48 52 54 53 55 98 56 97 56 49 102 54 52 98 54 56 57 56 48 54 48 53 51 50 99 48 56 101 51 57 97 102 48 100 102 100 57 102 55 102 101 52 100 48 101 100 48 55 102 100 51 99 51 102 102 48 48 101 56 55 53 101 101 51 102 102 50 102 57 49 50 102 54 100 97 48 55 101 57 53 102 57 98 52 54 51 102 98 99 57 49 101 48 54 48 55 101 48 98 57 55 50 100 53 98 54 50 51 53 98 51 54 53 98 54 49 99 97 57 102 53 48 55 97 55 102 56 53 53 97 57 97 52 102 50 99 57 99 102 99 98 57 102 52 97 97 98 49 54 51 102 98 52 100 100 99 57 99 48 51 48 48 50 55 51 101 99 54 97 51 98 97 57 51 55 52 56 57 57 51 100 52 54 55 49 53 101 99 54 49 57 53 57 49 101 97 55 100 57 48 57 48 52 98 50 48 48 51 50 49 98 51 100 56 53 52 100 50 51 57 56 97 99 101 51 53 99 56 49 99 55 101 55 53 52 97 51 57 48 56 57 57 55 48 55 56 99 102 52 97 57 54 52 54 49 50 51 57 50 99 98 99 55 54 97 102 53 97 57 99 55 52 50 53 50 49 100 49 98 98 99 56 99 52 48 102 52 101 102 52 55 99 100 101 97 51 102 51 97 53 52 101 102 56 99 48 48 48 53 51 48 98 55 97 55 51 53 100 49 49 53 97 48 101 100 97 48 57 102 51 102 98 53 51 55 101 55 49 102 99 52 50 57 52 98 55 98 100 51 51 51 53 54 56 54 57 51 54 48 52 98 57 101 97 52 55 101 55 52 100 54 50 55 49 57 50 51 56 97 53 97 54 51 57 102 100 100 57 97 98 56 99 52 100 49 52 53 49 53 100 99 102 48 54 98 49 101 102 101 53 102 50 97 99 101 54 57 48 55 53 48 97 52 100 54 56 99 97 100 57 99 54 50 98 48 102 53 51 51 98 97 100 48 52 55 102 100 102 55 53 53 102 99 48 57 97 97 54 57 100 56 101 53 97 100 97 52 53 98 50 50 53 49 101 52 99 51 48 50 54 55 101 101 52 54 51 51 102 53 99 54 52 102 101 98 53 101 50 51 102 49 50 56 54 101 102 48 102 100 100 54 51 57 99 100 97 99 57 56 102 100 50 98 100 98 50 101 49 98 102 55 98 101 56 50 98 99 52 98 101 50 49 98 54 101 100 48 54 55 99 49 99 56 102 98 51 52 57 102 100 50 97 101 53 49 98 53 98 100 53 55 101 56 55 99 56 101 55 54 102 102 48 48 55 53 54 102 51 102 102 50 51 100 57 51 102 54 51 50 51 102 102 49 54 55 51 99 54 102 102 102 48 48 54 51 52 53 99 55 102 52 97 102 98 49 52 48 99 53 55 99 55 51 102 98 49 97 49 99 55 99 49 100 102 49 98 55 102 100 56 100 49 55 49 102 100 50 98 101 99 50 50 55 49 53 101 49 55 98 51 98 98 51 101 99 51 50 54 53 102 101 99 55 48 102 57 102 101 54 99 56 50 102 57 98 51 97 51 100 99 56 102 53 52 99 55 101 54 52 48 97 53 98 101 55 51 49 101 57 100 55 56 101 98 99 49 48 56 100 56 102 101 53 53 48 100 102 49 99 101 57 49 55 50 55 100 49 51 51 102 57 49 99 100 53 97 57 56 50 52 56 98 50 50 51 56 48 99 56 102 57 48 52 55 97 56 51 53 98 52 50 57 97 51 100 56 52 98 52 52 50 98 50 97 97 48 53 52 52 101 49 49 52 48 53 53 49 101 99 48 54 48 53 52 54 101 101 57 49 52 52 100 50 52 56 101 49 50 51 53 49 57 54 54 51 100 97 97 48 98 54 53 57 101 51 56 100 101 50 57 55 101 54 52 56 99 56 49 49 99 97 52 102 100 102 53 102 55 102 55 49 100 101 97 48 52 99 53 101 52 99 98 51 98 56 100 100 54 56 56 100 102 98 56 52 54 49 99 52 97 99 51 102 56 99 102 102 48 48 98 50 51 98 55 97 57 97 101 57 56 53 51 50 98 57 49 55 53 49 53 54 51 51 55 57 50 48 98 56 98 57 53 50 50 100 99 54 48 99 51 54 101 101 51 101 102 102 48 48 102 98 54 101 51 102 57 48 102 99 52 100 53 97 54 54 54 57 49 98 50 52 57 50 55 100 54 57 52 102 99 99 55 50 99 55 50 52 102 53 50 55 98 100 51 55 55 48 101 102 53 100 49 49 97 54 51 100 99 97 49 51 52 55 102 54 98 100 53 98 101 99 101 101 99 52 53 97 99 51 49 56 55 57 53 52 51 54 51 55 98 49 102 98 97 97 52 102 97 55 48 52 100 51 97 100 57 53 54 49 100 52 54 101 97 48 56 56 57 49 48 50 97 50 51 50 97 54 101 50 52 50 57 51 57 99 56 48 52 102 54 101 51 51 56 97 56 101 53 56 50 101 99 53 101 99 57 51 53 97 53 99 52 48 56 50 52 48 98 98 100 50 53 52 50 52 54 52 48 101 48 56 50 51 101 98 52 102 53 52 49 54 98 97 55 99 99 99 102 50 57 57 54 52 51 57 57 50 53 57 55 49 56 100 99 55 49 100 56 55 54 48 51 97 48 102 99 54 98 97 50 51 52 98 97 57 97 101 57 54 98 49 49 101 57 97 100 102 102 49 50 99 54 57 51 49 102 101 98 50 101 50 52 54 102 100 55 49 102 100 50 97 101 57 51 57 101 97 54 97 56 54 57 102 57 52 100 48 97 100 49 52 102 53 51 49 101 101 51 102 56 57 50 55 102 97 100 53 98 99 101 54 98 55 56 99 49 50 48 57 54 101 99 55 54 101 97 54 53 49 52 100 100 99 51 100 54 98 53 52 97 101 52 97 52 51 97 98 99 52 55 102 54 56 52 51 98 98 102 54 53 52 100 55 98 98 55 102 97 52 100 97 102 102 48 48 101 56 101 53 97 102 54 55 50 52 57 101 98 53 101 50 100 102 98 52 49 55 102 99 57 97 97 101 98 98 102 102 48 48 53 102 51 54 100 102 102 97 51 57 54 97 102 57 49 53 56 101 51 99 100 54 51 102 101 99 51 53 98 102 99 50 102 102 48 48 50 51 99 51 51 102 54 55 100 54 102 102 48 48 56 99 52 51 98 51 102 55 98 57 55 102 102 100 49 57 53 101 101 54 48 54 101 98 99 53 54 49 100 57 48 55 51 53 101 49 53 102 98 51 101 102 102 99 57 97 51 100 56 102 102 100 55 99 98 102 102 101 56 55 53 101 101 55 54 97 102 98 57 57 99 102 53 99 50 56 49 53 102 57 98 52 54 51 102 98 99 54 55 56 49 56 48 53 55 56 50 50 99 51 51 101 100 57 54 51 53 102 101 102 99 52 55 51 102 52 99 56 97 56 54 54 54 99 100 99 55 102 50 102 97 53 50 52 57 50 48 51 97 99 52 50 51 51 99 48 56 48 57 51 102 57 56 97 54 49 53 102 51 49 99 99 56 52 102 50 100 100 50 98 100 53 99 51 52 52 102 53 54 100 55 53 54 49 53 53 100 52 52 56 48 102 97 53 51 100 97 53 102 57 55 55 102 52 48 51 97 48 102 53 97 56 48 97 49 48 101 52 55 54 51 52 101 54 99 54 51 50 100 99 50 56 101 56 50 98 100 55 97 55 49 100 48 99 97 99 50 97 98 51 48 48 53 100 98 51 101 99 51 100 54 97 53 99 100 53 55 53 50 53 101 55 99 102 53 53 49 53 51 101 55 49 53 98 55 50 49 55 49 56 56 53 49 57 99 53 51 48 98 55 101 49 52 99 50 100 56 97 100 54 51 52 99 100 48 55 49 51 57 101 98 56 97 56 101 52 50 48 52 54 54 57 97 53 56 57 102 54 97 56 97 52 51 56 56 101 98 54 53 48 100 48 53 55 50 98 98 102 52 49 53 56 98 55 99 55 51 50 53 98 102 102 48 48 100 55 55 53 97 100 51 55 54 101 52 100 54 52 53 102 51 49 100 102 54 102 57 101 100 51 97 100 49 99 56 55 50 54 50 49 102 98 97 99 97 100 55 97 102 98 53 52 98 49 101 48 48 53 101 54 98 99 54 51 99 55 97 100 102 102 48 48 49 52 102 52 99 55 102 101 57 100 97 52 102 101 57 53 101 98 57 97 57 51 56 51 49 57 53 48 55 102 56 55 50 55 57 97 102 50 48 102 49 99 54 53 98 99 51 49 50 49 50 55 57 102 98 50 99 57 102 99 99 53 48 101 51 97 97 102 53 53 102 57 57 102 49 102 57 100 98 98 99 53 102 102 48 48 53 100 53 49 101 100 51 102 98 49 98 55 102 99 57 49 101 102 49 98 55 102 100 56 100 49 55 49 102 100 50 98 101 98 102 97 102 56 102 98 102 54 51 55 99 102 102 99 50 97 48 102 49 98 102 51 102 102 48 48 51 51 52 53 99 55 102 52 97 102 97 102 52 101 55 100 50 98 99 99 56 99 48 102 98 54 99 57 49 55 102 98 49 52 49 102 102 53 98 98 48 57 49 51 99 101 98 53 57 54 51 101 57 98 100 48 97 102 101 54 51 49 53 53 101 100 97 54 51 51 53 56 52 52 99 52 55 99 101 49 55 54 98 56 102 52 54 49 99 49 97 57 98 54 100 53 50 53 51 101 52 54 98 53 50 52 54 51 101 101 52 101 98 101 54 50 102 102 48 48 98 99 51 56 54 102 101 56 54 98 55 56 100 50 51 100 56 52 97 101 57 56 102 98 57 48 53 102 99 98 98 54 48 99 53 48 52 99 99 52 51 98 48 51 99 56 53 48 51 50 100 56 102 55 50 51 56 102 99 54 97 55 54 57 97 49 52 99 54 101 54 56 97 50 53 48 51 48 97 51 55 48 48 48 48 49 100 48 48 97 97 102 55 53 54 100 48 53 100 97 50 50 99 100 101 54 54 49 52 101 52 49 56 100 102 54 57 97 99 100 57 97 100 55 52 53 98 51 50 51 99 102 52 50 53 56 56 99 56 49 50 52 97 99 100 99 55 97 102 49 53 100 51 49 97 52 53 99 54 50 57 101 56 99 98 53 51 54 97 57 54 51 49 49 99 51 53 99 50 57 51 101 56 98 57 51 52 99 56 51 53 51 56 54 101 54 101 100 50 50 56 101 51 57 102 101 54 48 55 48 99 99 57 56 48 55 48 51 50 54 97 49 56 97 102 50 100 52 51 54 100 100 51 54 99 48 99 57 50 55 102 100 51 50 56 51 49 102 56 57 54 51 52 102 102 98 52 51 100 100 52 102 97 52 99 101 100 98 56 54 102 50 102 56 53 50 55 51 56 102 57 48 102 102 48 48 56 53 54 102 49 56 50 52 54 57 99 97 98 98 49 97 51 98 97 98 51 55 53 51 55 54 102 101 99 101 102 50 53 51 57 57 50 55 54 49 49 97 48 49 101 101 54 97 102 102 48 48 102 48 100 54 54 101 101 102 51 102 99 53 48 98 99 101 53 50 100 50 51 100 101 55 102 100 102 54 101 48 55 102 53 51 102 56 53 54 57 99 98 55 50 54 57 97 100 52 100 51 99 50 97 101 49 53 55 101 101 97 56 48 97 98 102 52 49 99 55 102 52 97 54 57 54 49 101 98 53 49 98 51 55 99 98 57 51 56 48 48 55 55 97 97 49 50 101 97 51 54 53 49 49 100 97 54 55 48 101 102 57 99 54 100 56 99 54 101 51 102 97 53 54 56 97 51 54 100 99 97 53 48 54 100 57 55 102 55 49 102 53 97 54 49 51 56 97 97 48 50 102 54 52 55 57 48 97 50 100 57 53 99 102 57 56 48 54 55 54 49 50 97 49 98 49 102 52 50 54 97 53 56 97 55 49 50 52 97 102 49 98 50 52 57 48 99 99 98 102 55 97 51 57 48 54 48 56 48 55 97 49 102 55 49 53 97 97 56 57 97 102 50 98 50 99 49 51 57 97 102 49 56 102 100 97 48 48 101 55 102 54 53 57 100 55 98 102 101 98 101 50 100 98 102 102 52 55 50 100 55 98 50 54 101 97 102 49 56 102 56 102 100 102 102 48 48 50 54 98 98 97 101 102 102 48 48 100 55 99 53 98 55 102 101 56 101 53 97 98 53 49 51 99 100 99 101 49 55 102 98 48 100 54 102 102 48 98 102 99 56 102 48 99 102 100 57 102 48 102 102 48 48 99 54 50 52 53 57 102 98 53 99 51 102 102 101 56 55 53 101 99 98 54 51 55 50 51 55 52 56 51 49 100 52 102 55 97 102 49 53 102 56 48 48 52 56 102 100 57 48 101 100 55 102 101 98 98 99 57 102 102 97 49 100 55 97 97 53 97 51 49 49 55 50 97 51 50 55 57 51 53 102 57 97 102 50 100 97 97 51 51 101 54 102 48 51 50 55 49 56 52 52 100 55 100 99 52 101 97 102 57 99 57 51 57 56 57 56 55 101 97 50 97 102 97 102 48 101 56 97 51 97 54 50 98 51 53 52 56 49 97 98 99 54 51 98 57 56 100 98 102 57 56 97 98 101 52 102 101 102 49 54 98 100 54 99 50 52 52 102 53 101 57 97 98 97 50 54 55 54 53 53 56 52 98 51 49 101 52 49 97 97 48 102 50 57 55 54 101 55 56 49 101 57 53 54 50 53 99 57 56 56 102 55 50 51 57 97 97 56 57 57 55 57 48 48 101 100 100 101 98 100 54 56 52 52 57 57 50 50 100 99 55 102 50 99 54 48 102 97 100 50 57 51 99 102 49 53 49 57 54 50 55 97 55 48 50 57 56 52 101 50 98 97 97 51 48 50 97 101 51 99 98 49 50 55 100 50 57 56 52 101 50 57 97 52 101 54 57 50 98 52 52 56 57 55 50 49 52 57 99 100 51 49 102 101 101 49 97 51 55 53 51 49 99 56 49 49 57 101 54 97 100 52 52 99 100 98 50 57 99 57 99 56 49 102 52 97 99 53 100 52 48 57 99 99 53 99 102 102 48 48 99 98 55 52 102 101 55 53 98 49 50 51 53 54 50 54 97 50 55 102 55 48 97 100 101 57 50 97 102 102 48 48 51 97 53 99 97 54 49 53 102 101 49 54 54 52 100 100 98 54 48 99 102 57 101 98 56 48 50 98 99 97 102 99 54 99 97 55 102 101 49 49 55 55 49 102 102 52 101 97 102 102 48 48 100 50 98 100 50 54 102 100 98 50 50 53 51 100 55 57 99 53 55 57 99 55 56 100 56 56 102 102 48 48 56 52 54 97 52 99 49 99 101 50 100 57 99 55 102 50 97 50 50 98 100 101 53 101 97 98 102 51 51 101 51 55 51 52 55 55 56 98 102 101 98 97 57 101 99 53 102 98 49 100 55 51 102 48 56 51 99 54 97 51 100 51 99 53 49 55 49 102 100 50 98 101 98 102 48 54 98 101 51 101 102 100 56 101 99 101 51 101 49 48 55 56 100 51 49 102 102 52 51 52 53 99 55 102 52 97 102 97 101 99 57 50 52 100 55 50 100 51 97 53 55 52 56 102 98 100 99 56 101 100 102 53 50 97 55 102 100 55 53 54 51 98 55 54 48 102 49 99 100 52 49 51 52 54 57 51 97 48 48 101 53 57 53 57 52 101 53 49 100 52 101 49 57 52 102 97 56 97 55 101 101 97 54 49 50 52 100 55 52 52 54 48 57 49 101 98 57 49 53 100 100 99 55 57 49 54 99 53 57 53 52 99 57 50 49 50 49 54 51 52 101 101 101 99 55 56 48 50 57 54 48 56 100 97 100 101 51 54 48 54 52 51 50 52 101 101 55 51 51 52 56 48 102 100 101 51 101 56 51 102 100 57 49 100 98 102 51 97 97 97 51 51 50 102 56 56 51 50 55 57 52 98 53 56 102 55 48 102 102 55 100 98 56 49 102 57 48 99 57 97 98 55 98 98 49 56 101 50 98 52 52 98 53 50 100 99 55 52 98 48 102 55 57 48 56 56 100 56 99 56 101 99 53 48 48 99 98 54 52 102 49 53 56 98 54 101 100 102 101 56 51 97 50 98 48 101 57 101 54 57 48 51 102 49 100 102 56 97 55 52 102 50 51 53 102 100 100 51 53 56 99 50 100 56 56 49 55 48 54 101 54 53 49 100 56 54 55 101 101 56 102 55 51 53 51 53 100 98 97 97 99 102 54 50 55 48 97 57 49 97 100 99 97 101 48 55 52 48 97 48 48 51 99 55 101 49 53 55 49 56 57 98 52 50 51 54 50 52 98 57 98 56 52 98 53 98 51 55 57 57 99 102 48 51 97 48 101 101 52 102 97 53 52 51 54 102 54 100 50 50 54 57 101 51 99 100 57 97 53 56 54 101 54 53 55 102 51 50 54 50 56 48 49 51 57 51 100 49 55 57 102 52 49 102 97 57 51 53 48 52 50 53 97 102 97 102 53 50 102 49 99 55 102 97 50 52 52 100 102 101 56 101 56 52 55 102 97 99 54 102 101 102 57 102 54 49 102 99 101 98 52 48 57 50 52 101 52 102 50 54 98 53 53 48 50 57 97 98 50 50 98 57 98 52 98 54 50 55 51 50 48 57 54 101 100 98 100 54 55 57 51 55 48 102 102 98 101 52 54 48 53 52 53 54 101 49 48 100 102 52 102 55 51 98 54 50 52 51 49 98 102 57 51 48 48 48 97 49 52 50 48 48 48 54 52 56 102 55 50 52 101 51 51 53 54 98 55 53 54 51 99 56 102 49 52 51 55 55 51 52 49 55 97 99 102 49 99 49 50 52 97 54 52 56 97 52 49 56 99 49 50 52 48 99 97 57 50 52 49 99 49 101 51 101 98 53 97 50 56 102 54 50 97 50 57 98 50 99 98 56 54 49 49 50 53 98 98 99 55 57 55 51 50 101 54 50 57 49 53 52 57 100 99 99 53 98 50 52 101 55 98 51 54 51 97 102 98 48 102 52 97 55 99 98 56 53 100 55 101 48 50 98 100 52 99 52 101 48 102 100 51 50 51 49 102 97 100 52 56 102 55 98 54 101 49 48 98 50 99 102 48 56 48 52 55 51 56 55 49 53 52 54 100 53 99 100 99 100 99 99 98 55 100 99 56 56 56 97 102 57 53 54 102 57 102 101 50 49 57 99 98 51 55 100 51 51 56 49 102 56 49 97 100 49 52 48 100 49 50 55 100 52 100 51 50 100 100 52 48 97 102 49 56 102 56 102 97 52 102 102 48 48 99 51 50 102 54 98 98 102 102 53 102 49 54 100 102 102 48 48 97 51 57 54 98 100 56 49 57 98 97 53 55 56 100 55 99 55 98 51 57 102 100 57 55 102 53 100 102 102 48 48 97 102 56 98 54 102 102 100 49 97 50 98 52 52 56 102 51 51 51 56 56 102 102 98 48 53 54 102 102 48 99 98 102 50 51 99 51 55 101 48 49 49 102 102 48 48 56 99 52 53 98 55 102 102 48 48 97 101 101 102 102 102 48 48 97 49 100 55 97 55 100 97 51 101 52 98 54 51 56 50 97 51 56 50 55 100 54 98 99 97 98 101 48 52 51 54 99 102 100 56 101 101 49 50 48 102 50 50 55 55 102 102 48 48 100 48 101 98 100 49 101 100 101 53 49 49 53 98 48 54 51 56 100 98 98 52 57 54 97 102 99 99 101 53 49 102 100 101 98 51 101 52 98 48 57 50 98 52 54 49 55 51 55 54 100 100 99 98 101 97 56 101 102 100 52 52 54 56 49 51 51 101 101 52 101 52 102 101 56 50 98 53 55 55 55 101 102 52 54 55 56 49 56 97 99 52 98 53 48 99 50 100 50 51 54 99 102 99 102 50 55 101 102 53 98 102 101 48 53 100 51 102 52 99 53 54 97 50 99 56 49 101 51 100 97 100 102 55 56 53 55 97 100 56 52 56 101 57 55 51 100 97 97 54 102 52 50 99 101 101 50 48 102 49 52 100 100 100 56 101 100 57 97 56 55 56 50 55 97 57 97 52 101 51 100 52 102 101 53 53 101 99 53 50 56 97 49 51 57 50 50 52 50 55 51 52 57 53 49 101 52 53 51 55 56 102 53 51 53 100 50 97 50 54 54 101 52 99 57 51 55 53 51 54 97 50 101 48 102 55 97 52 101 51 102 98 99 54 97 102 57 52 57 50 52 50 100 101 57 53 49 51 57 99 50 49 97 54 54 101 51 101 97 55 102 51 97 56 57 56 56 99 49 48 52 101 52 102 97 53 54 56 97 50 51 98 49 48 99 56 100 53 56 102 97 57 56 50 100 97 54 99 101 49 55 57 51 98 55 50 51 101 97 51 57 97 100 51 57 53 102 101 54 101 50 98 51 97 101 49 99 48 56 57 98 51 99 102 49 56 97 54 101 50 54 49 53 100 102 98 56 55 51 49 55 52 101 49 101 49 53 54 49 56 99 51 50 101 101 51 102 56 100 55 57 99 102 56 99 52 98 49 100 49 54 54 48 52 102 99 56 50 100 97 52 99 48 102 99 52 53 55 55 97 48 101 100 98 53 55 56 49 102 57 57 54 51 55 50 51 102 101 48 51 100 52 49 97 102 51 102 102 48 48 49 56 52 56 49 98 52 56 98 56 53 48 48 57 99 53 97 98 101 52 102 101 50 50 97 54 51 49 102 55 57 55 97 97 51 101 50 98 51 51 55 101 101 49 101 99 53 102 98 49 100 52 98 57 102 56 52 57 101 51 55 48 51 102 101 56 54 56 98 56 102 101 57 53 102 53 102 54 55 51 53 102 49 97 55 101 99 54 52 101 53 98 101 49 49 102 56 101 56 57 102 102 48 48 97 49 97 54 101 51 102 97 53 55 100 56 101 53 102 100 97 98 48 97 54 98 52 52 55 101 56 51 57 48 97 98 101 48 54 57 100 98 99 102 102 51 54 51 101 57 97 53 98 102 49 97 56 102 55 49 97 54 101 55 48 54 98 54 53 48 101 101 55 98 54 97 48 53 50 98 55 57 57 49 49 55 53 48 98 57 57 49 100 53 49 53 101 101 52 56 100 99 99 55 98 50 97 56 49 102 100 52 100 52 50 48 100 99 101 97 50 97 53 100 50 53 102 98 50 53 56 49 51 56 53 54 48 51 101 55 57 55 49 101 57 101 100 101 102 52 52 53 97 53 100 97 52 54 101 49 101 53 102 51 50 101 100 102 51 98 98 49 50 51 54 49 48 55 101 48 51 97 102 101 50 55 102 48 97 100 48 50 55 51 102 57 54 51 49 100 51 49 53 54 97 48 54 99 100 97 100 100 48 100 56 100 50 50 56 50 100 57 54 49 56 49 51 54 52 52 98 100 98 51 57 50 52 102 97 57 51 100 99 100 52 53 55 49 54 102 49 53 100 50 50 50 52 102 98 57 57 49 53 99 51 54 49 52 101 51 51 101 100 53 50 54 101 97 54 100 54 97 97 50 48 97 102 55 98 56 57 50 49 57 52 99 54 48 52 48 54 49 56 99 97 102 48 49 53 57 52 101 100 48 51 100 48 54 51 97 53 53 55 100 102 55 99 51 56 51 54 57 48 51 102 98 97 53 99 56 102 101 98 53 54 48 57 101 50 57 56 99 99 55 49 53 97 50 56 57 97 50 52 53 55 102 51 97 102 98 49 99 53 56 99 54 48 102 97 98 53 99 97 101 50 97 51 54 56 101 102 50 55 53 54 52 98 56 57 54 100 50 49 56 57 98 97 99 55 49 97 55 57 97 52 102 102 100 102 53 99 53 53 57 50 102 56 101 100 52 99 100 99 55 98 55 49 53 54 97 50 53 99 55 52 100 56 97 98 102 54 48 100 51 100 53 56 49 49 54 51 48 49 50 51 97 54 101 48 52 102 101 55 100 98 102 52 97 98 52 99 99 53 98 49 100 48 54 48 54 48 54 48 54 50 57 57 57 49 101 98 52 100 50 99 54 98 52 53 49 101 101 49 55 49 99 52 101 50 98 99 54 102 101 51 100 57 99 102 101 99 98 102 97 101 55 102 100 55 99 53 98 55 102 101 56 101 53 97 102 54 48 99 56 102 53 97 102 49 57 102 56 102 97 102 56 102 100 57 55 98 53 99 102 102 97 102 56 98 54 102 102 48 48 100 49 99 98 53 54 97 50 101 99 55 57 55 57 100 52 98 102 100 56 50 98 102 102 48 48 56 54 53 102 57 49 101 48 102 102 48 48 48 51 54 52 99 55 101 99 55 51 48 102 51 56 99 100 99 98 102 102 48 48 101 56 55 53 100 100 56 57 55 101 100 49 50 52 55 54 97 57 102 55 48 48 48 54 55 55 48 55 101 101 56 51 102 99 51 102 53 51 53 101 54 51 102 48 51 101 54 51 102 102 48 48 48 99 55 51 48 102 102 100 55 99 51 101 51 100 99 101 102 97 100 100 53 100 52 54 101 101 50 100 51 98 54 50 50 99 102 48 51 50 57 100 100 51 99 97 99 98 56 100 99 101 52 102 48 97 98 101 98 100 56 53 55 101 54 51 53 98 52 97 56 99 102 56 50 56 101 50 49 52 49 52 53 51 102 101 98 53 51 100 54 49 54 54 99 52 57 49 98 48 102 52 99 54 48 55 54 99 55 54 97 98 48 54 55 48 53 99 51 48 50 49 55 102 97 100 55 49 56 102 97 97 57 56 101 101 101 49 56 57 48 48 57 51 101 54 53 53 57 49 56 57 101 49 48 57 101 100 102 53 97 98 98 51 54 97 101 98 48 50 97 56 54 52 51 50 98 98 57 99 50 97 50 48 99 57 54 51 53 101 98 101 49 97 53 49 98 49 101 98 99 55 49 98 49 101 101 55 52 101 50 101 55 49 100 55 101 54 102 99 54 97 52 49 51 48 54 101 57 53 99 57 55 100 98 97 101 100 99 102 100 99 56 50 100 52 55 102 98 54 102 98 100 56 55 101 48 50 57 101 98 50 50 98 48 102 100 101 100 101 53 99 52 56 100 101 56 97 55 99 98 49 53 101 98 100 51 57 97 98 48 55 100 55 50 50 99 101 97 56 99 97 51 56 99 57 48 51 101 98 52 100 102 51 57 55 102 98 99 98 102 57 100 55 51 56 48 100 97 102 48 48 100 98 56 54 51 102 100 101 55 57 49 56 100 51 99 48 98 55 101 100 54 102 48 49 102 102 48 48 98 54 56 100 102 101 51 53 100 50 97 101 99 97 53 56 57 52 99 100 99 54 57 100 55 51 99 98 97 48 102 102 48 48 56 49 48 97 56 56 100 99 99 50 51 102 101 53 97 52 54 52 57 101 56 48 51 48 50 52 100 54 52 48 51 54 97 51 56 102 98 50 52 48 49 102 98 54 52 49 51 102 100 54 56 99 53 97 102 53 51 54 100 48 54 101 51 100 99 50 101 50 98 53 52 51 102 97 99 55 54 54 54 98 102 57 56 53 98 102 100 57 53 102 52 48 54 57 51 99 99 48 49 55 98 53 54 50 98 52 55 54 101 51 101 101 55 57 98 49 49 102 53 52 57 48 56 102 101 55 53 49 98 52 98 55 52 56 98 57 56 101 54 56 101 55 48 48 55 100 100 57 48 54 100 51 102 57 100 54 56 98 100 48 52 101 98 55 55 51 52 54 53 57 51 101 54 51 56 101 54 98 51 54 101 97 52 101 100 57 102 97 100 53 49 55 100 53 48 48 57 98 99 98 57 53 49 97 48 57 56 102 52 53 55 51 102 55 98 101 57 101 98 53 57 98 55 51 97 56 49 52 54 53 48 57 49 98 99 99 101 99 52 101 51 54 56 101 98 56 101 52 100 48 100 97 54 55 49 53 55 99 53 99 49 50 98 53 99 97 102 97 57 99 53 50 49 57 98 55 100 98 52 101 57 48 99 101 99 97 48 52 56 53 57 51 55 48 99 55 54 102 99 54 98 99 99 102 99 52 55 51 102 57 100 101 49 56 57 97 52 54 48 49 53 56 99 49 50 50 57 99 55 52 101 49 98 49 53 100 55 100 101 99 100 49 51 100 101 57 57 50 51 98 57 54 56 97 54 55 52 48 100 49 51 102 53 49 100 48 56 50 97 52 55 97 101 54 98 56 51 102 49 52 48 102 98 51 102 56 54 52 99 51 98 99 98 98 55 100 57 54 52 50 99 100 56 99 54 52 57 54 48 52 102 49 102 56 100 52 50 53 101 102 97 102 53 53 102 57 57 102 50 49 57 57 53 54 52 100 102 102 48 48 53 100 99 102 54 57 102 100 56 98 53 98 55 55 99 50 49 102 49 100 49 102 102 97 57 97 97 55 102 101 57 53 102 54 53 57 51 56 51 53 102 57 101 53 102 98 51 55 102 99 52 51 100 50 102 101 49 57 55 99 51 99 102 49 52 54 57 100 97 101 100 57 100 101 53 100 52 102 55 98 97 102 52 102 55 51 49 49 98 51 57 97 49 50 97 49 48 57 99 48 99 101 101 55 48 55 51 99 54 54 98 101 56 100 53 102 100 97 49 102 99 50 48 100 100 51 52 97 100 55 55 102 101 102 98 98 55 102 102 101 51 57 53 51 52 97 48 102 57 53 49 102 55 49 57 50 102 49 48 54 53 100 52 55 48 55 48 97 55 51 97 97 57 51 53 55 100 51 53 101 101 55 98 102 49 51 57 97 54 100 55 56 52 50 102 101 100 48 49 101 49 51 54 102 102 57 56 53 101 98 52 51 101 98 50 53 98 102 102 102 48 48 49 99 97 53 51 102 49 102 51 99 50 97 51 102 101 54 49 55 97 99 57 102 102 98 54 57 54 102 102 102 48 48 99 55 50 98 55 53 48 54 55 98 49 102 101 98 49 101 53 57 102 102 48 48 51 102 57 55 101 50 55 98 97 54 101 97 54 100 55 56 53 49 102 56 102 102 48 48 101 49 52 99 55 102 99 56 50 55 53 97 102 102 48 48 98 102 57 54 102 102 48 48 102 99 55 50 97 51 54 102 100 97 48 55 99 50 97 48 102 102 48 48 99 56 50 98 53 98 49 102 102 48 51 98 55 102 102 101 51 57 53 54 97 48 99 54 98 56 57 55 50 98 102 102 48 48 57 102 99 98 102 49 51 100 101 51 50 51 100 54 57 56 53 102 56 97 102 48 53 54 102 100 97 48 55 99 50 57 99 55 102 99 52 97 102 53 97 102 102 98 102 57 54 102 102 102 48 48 99 55 50 57 57 102 102 48 100 48 51 101 49 51 51 100 55 52 98 100 54 102 102 101 102 101 53 98 102 102 48 48 102 49 99 97 98 53 52 100 57 97 50 101 50 54 99 97 98 102 101 55 102 50 102 99 55 102 99 56 102 55 57 54 54 97 54 49 51 57 97 102 48 100 53 102 56 102 55 101 49 52 54 101 57 97 53 101 98 51 102 102 48 48 55 102 50 48 102 102 48 48 101 51 57 52 97 55 101 51 99 102 56 53 98 102 101 56 49 98 97 99 56 102 102 56 49 99 48 55 102 102 48 48 54 55 97 100 54 51 52 57 57 54 98 56 57 55 50 98 102 102 48 48 57 102 99 98 102 49 102 102 48 48 50 51 100 98 99 57 99 53 51 52 98 55 101 49 53 101 49 101 55 101 51 100 55 56 52 53 52 56 48 100 54 57 97 57 50 49 99 54 55 48 54 53 56 51 51 102 102 97 49 100 52 54 55 101 51 101 55 56 52 51 102 101 55 100 55 53 49 49 102 102 48 48 54 100 97 48 102 102 48 48 101 50 101 97 102 100 57 99 56 52 102 56 57 98 50 99 102 102 48 48 57 102 99 98 102 49 102 102 48 48 50 51 100 99 98 50 50 57 98 98 98 100 101 98 99 50 99 102 99 55 98 102 48 56 54 51 102 101 51 100 98 53 48 102 102 98 102 100 48 55 102 102 48 48 49 55 53 49 51 55 99 55 102 102 48 48 48 55 50 102 53 98 53 100 52 52 102 100 50 54 56 51 102 102 48 48 56 98 97 100 49 53 51 54 52 51 101 50 54 99 97 102 102 101 55 102 50 102 99 55 102 99 56 102 55 53 50 55 51 53 101 50 98 102 98 52 49 51 54 100 102 100 57 54 51 53 101 54 102 102 48 48 97 55 56 98 54 102 102 100 49 99 98 53 57 55 50 55 101 100 48 102 101 48 99 53 51 99 100 57 101 97 56 55 101 57 51 52 49 102 102 99 53 100 55 57 97 55 99 53 50 102 56 99 51 101 49 97 102 49 98 102 99 49 55 100 53 51 99 51 53 97 53 52 49 55 53 54 102 55 100 55 49 50 52 53 50 52 55 50 53 99 99 102 48 101 99 99 52 54 101 49 99 56 51 98 53 99 57 99 57 48 51 56 101 50 98 52 53 48 54 55 57 55 57 98 102 49 50 101 53 57 53 51 48 53 53 54 49 48 97 99 57 98 55 49 54 57 54 102 98 100 98 100 48 101 50 98 101 48 55 53 99 97 97 55 101 99 54 57 48 98 51 98 48 48 51 101 100 56 100 100 55 97 55 100 102 97 101 99 54 54 57 97 49 98 98 98 53 50 57 101 54 98 56 101 52 49 53 54 52 49 57 50 48 56 51 57 48 55 57 97 102 48 53 102 48 52 54 97 98 97 57 54 57 51 102 98 51 97 54 57 57 101 49 55 52 57 54 49 98 52 57 48 99 101 100 51 100 99 52 99 57 55 48 57 57 51 57 51 99 50 48 101 55 56 49 101 98 53 98 100 54 102 55 57 97 57 50 52 55 102 102 50 49 56 98 56 100 100 57 101 55 102 100 50 53 50 98 102 51 52 97 57 56 55 97 99 101 97 51 98 52 49 98 52 55 99 49 100 53 99 55 100 97 55 99 97 98 53 52 98 102 99 99 102 54 54 52 50 57 49 101 57 56 48 52 54 99 102 50 99 56 98 51 48 57 53 98 99 100 53 99 51 52 56 100 100 102 97 55 52 102 54 97 57 97 51 98 56 51 50 53 101 49 98 97 57 101 51 57 50 48 100 97 97 53 50 50 56 99 102 100 101 101 55 97 98 49 102 101 53 53 101 51 99 50 102 55 53 56 99 54 53 55 53 97 57 98 102 49 98 56 52 97 51 101 100 98 97 101 55 102 100 48 54 57 102 102 102 48 48 48 50 49 50 98 98 54 56 54 49 101 98 97 102 102 57 55 52 102 102 48 48 48 102 102 51 49 55 102 54 57 98 53 100 48 102 54 53 51 55 54 98 98 56 101 100 50 101 51 101 97 50 97 50 54 98 102 100 56 52 49 55 99 101 51 51 53 101 51 55 102 54 100 100 55 51 98 54 98 51 50 102 102 101 48 52 97 53 48 50 102 55 53 55 99 102 51 97 98 99 56 52 55 98 100 99 97 49 97 102 53 50 49 52 55 49 48 102 102 101 53 100 98 102 99 51 102 99 99 56 55 57 97 98 55 100 48 102 54 100 56 102 53 50 102 51 48 56 99 54 51 49 101 97 50 97 55 49 55 56 52 51 48 50 53 56 101 51 100 56 53 55 56 99 52 53 97 98 54 97 49 49 99 53 98 55 102 98 52 49 99 102 98 102 57 101 57 102 101 51 52 98 102 100 98 49 97 56 55 102 100 48 52 97 53 102 102 99 48 57 52 102 102 49 97 101 100 56 53 49 97 101 57 55 102 48 100 102 101 48 53 52 55 51 53 52 98 55 51 100 57 102 102 98 52 48 50 102 52 49 102 56 57 51 52 56 51 53 49 50 48 102 51 98 52 102 101 49 53 101 51 48 55 53 56 100 52 52 55 102 99 99 52 50 53 102 99 54 101 53 51 102 99 54 57 99 51 53 98 100 52 56 48 102 102 57 48 56 98 55 102 100 102 101 52 102 102 49 97 100 50 51 52 98 49 49 102 102 48 48 51 101 100 102 101 48 54 57 102 100 97 101 56 102 54 55 102 101 100 48 52 100 98 57 50 99 97 48 102 97 48 49 52 99 55 100 52 52 49 52 102 57 55 50 52 102 98 56 97 102 49 53 55 100 55 55 53 98 100 102 102 98 57 100 52 53 52 50 101 51 98 99 101 57 57 102 101 55 53 48 51 54 98 51 97 102 98 55 100 101 100 53 56 97 102 100 50 101 49 50 97 98 100 57 53 55 98 102 102 48 100 102 101 49 102 101 54 50 55 57 99 97 51 100 53 50 102 50 54 56 101 101 52 54 99 57 98 55 51 51 49 51 57 52 48 97 51 48 53 55 100 102 101 98 53 52 53 54 53 98 102 57 50 101 54 100 97 50 51 54 101 102 50 50 52 55 50 101 55 101 100 48 98 56 99 54 100 101 55 97 102 97 49 97 102 51 51 102 101 100 51 100 54 51 99 100 54 54 102 101 100 53 51 98 56 102 53 99 99 99 56 54 97 49 57 55 53 53 100 54 48 48 101 51 53 56 57 51 102 48 57 100 51 102 99 54 56 53 52 51 49 48 100 102 102 48 100 102 101 48 55 50 52 102 51 50 52 100 100 102 53 102 99 48 102 52 50 98 57 98 54 53 51 97 56 48 57 97 52 55 57 49 52 50 98 102 57 56 50 100 99 51 54 53 51 55 55 97 57 102 102 48 97 101 50 55 99 54 53 50 102 102 48 48 99 52 98 57 56 48 51 57 102 102 48 48 52 54 57 51 102 97 53 55 51 54 102 97 57 101 98 54 56 99 99 99 55 53 101 57 57 100 56 102 97 99 101 57 102 101 51 53 57 53 55 51 55 55 97 57 100 101 53 98 98 100 98 100 100 54 97 49 49 53 100 54 101 56 99 99 54 97 54 52 57 57 51 56 99 102 100 48 100 53 52 50 56 53 55 55 50 52 98 100 57 98 53 97 97 101 100 102 101 54 55 56 102 56 57 99 54 50 57 54 99 56 102 102 100 57]}, "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a" {:sha2 "495395e777cd98da653df9615d09c0fd6bb2f8d4788394cd53c56a3bfdcd848a", :contentType "text/plain", :length 27, :content [104 101 114 101 32 105 115 32 97 32 115 105 109 112 108 101 32 97 116 116 97 99 104 109 101 110 116]}, "7063d0a4cfa93373753ad2f5a6ffcf684559fb1df3c2f0473a14ece7d4edb06a" {:sha2 "7063d0a4cfa93373753ad2f5a6ffcf684559fb1df3c2f0473a14ece7d4edb06a", :contentType "text/plain", :length 33, :content [104 101 114 101 32 105 115 32 97 110 111 116 104 101 114 32 115 105 109 112 108 101 32 97 116 116 97 99 104 109 101 110 116]}, "cd5531bca46b58d43e99d31f379ef455e402ccb1ba9f34c921261c0de52f6968" {:sha2 "cd5531bca46b58d43e99d31f379ef455e402ccb1ba9f34c921261c0de52f6968", :contentType "application/octet-stream", :length 850, :content [101 121 74 104 98 71 99 105 79 105 74 83 85 122 73 49 78 105 74 57 46 101 121 74 104 89 51 82 118 99 105 73 54 101 121 74 118 89 109 112 108 89 51 82 85 101 88 66 108 73 106 111 105 81 87 100 108 98 110 81 105 76 67 74 117 89 87 49 108 73 106 111 105 101 69 70 81 83 83 66 116 89 109 57 52 73 105 119 105 98 87 74 118 101 67 73 54 73 109 49 104 97 87 120 48 98 122 112 52 89 88 66 112 81 71 70 107 98 71 53 108 100 67 53 110 98 51 89 105 102 83 119 105 100 109 86 121 89 105 73 54 101 121 74 112 90 67 73 54 73 109 104 48 100 72 65 54 76 121 57 104 90 71 120 117 90 88 81 117 90 50 57 50 76 50 86 52 99 71 70 119 97 83 57 50 90 88 74 105 99 121 57 104 100 72 82 108 98 109 82 108 90 67 73 115 73 109 82 112 99 51 66 115 89 88 107 105 79 110 115 105 90 87 52 116 82 48 73 105 79 105 74 104 100 72 82 108 98 109 82 108 90 67 73 115 73 109 86 117 76 86 86 84 73 106 111 105 89 88 82 48 90 87 53 107 90 87 81 105 102 88 48 115 73 109 57 105 97 109 86 106 100 67 73 54 101 121 74 118 89 109 112 108 89 51 82 85 101 88 66 108 73 106 111 105 81 87 78 48 97 88 90 112 100 72 107 105 76 67 74 112 90 67 73 54 73 109 104 48 100 72 65 54 76 121 57 51 100 51 99 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 118 98 87 86 108 100 71 108 117 90 51 77 118 98 50 78 106 100 88 74 104 98 109 78 108 99 121 56 122 78 68 85 122 78 67 74 57 76 67 74 112 90 67 73 54 73 109 78 109 90 68 81 48 78 122 85 122 76 84 107 48 89 122 107 116 78 71 74 106 89 121 49 104 90 87 86 106 76 84 86 104 90 84 86 105 78 122 65 48 78 109 73 119 89 105 73 115 73 110 74 108 99 51 86 115 100 67 73 54 101 121 74 107 100 88 74 104 100 71 108 118 98 105 73 54 73 108 65 120 82 70 81 120 77 107 103 122 78 107 48 119 76 106 69 121 85 121 74 57 102 81 46 103 84 77 48 69 76 73 83 70 102 98 79 105 113 76 121 108 118 86 95 54 84 109 69 65 121 113 84 90 54 107 51 51 65 101 56 122 70 104 57 70 75 87 51 109 48 98 99 120 68 119 117 102 119 117 85 108 79 100 83 118 86 107 76 121 118 48 85 55 95 108 81 75 73 83 83 115 117 115 111 45 107 111 48 75 70 105 55 105 76 48 78 79 54 88 77 103 106 66 56 71 111 104 77 120 102 105 79 122 99 69 87 113 71 109 67 122 45 115 98 86 110 80 80 120 86 52 75 86 120 90 105 57 100 120 75 78 74 110 101 114 107 65 111 66 76 85 103 79 79 80 55 70 67 57 90 121 49 84 56 112 107 108 111 54 111 54 66 111 48 85 86 45 99 97 119 86 81 66 101 86 111 65 110 97 76 75 50 88 84 82 98 98 80 49 87 103 122 90 79 65 50 85 104 120 118 119 102 115 80 118 49 113 52 79 116 65 71 89 109 116 76 53 76 122 55 48 117 72 87 106 98 104 102 84 90 56 79 49 118 97 76 45 54 106 69 99 71 100 110 95 48 103 98 104 84 97 84 99 80 53 114 89 78 120 104 77 73 95 87 117 121 54 51 50 49 108 116 53 53 55 103 89 50 95 75 103 115 112 51 73 85 75 115 85 77 55 109 56 99 122 69 98 85 49 51 110 52 48 89 108 115 50 117 106 70 90 115 75 85 86 110 74 45 56 102 89 112 54 106 74 67 90 111 118 68 85 54 76 66 57 103]}, "a93a74a831eb58834d0a47744bc13d063599b23a51ed3b74cce63e10d6ac6165" {:sha2 "a93a74a831eb58834d0a47744bc13d063599b23a51ed3b74cce63e10d6ac6165", :contentType "application/octet-stream", :length 796, :content [101 121 74 104 98 71 99 105 79 105 74 83 85 122 73 49 78 105 74 57 46 101 121 74 104 89 51 82 118 99 105 73 54 101 121 74 118 89 109 112 108 89 51 82 85 101 88 66 108 73 106 111 105 81 87 100 108 98 110 81 105 76 67 74 117 89 87 49 108 73 106 111 105 101 69 70 81 83 83 66 116 89 109 57 52 73 105 119 105 98 87 74 118 101 67 73 54 73 109 49 104 97 87 120 48 98 122 112 52 89 88 66 112 81 71 70 107 98 71 53 108 100 67 53 110 98 51 89 105 102 83 119 105 100 109 86 121 89 105 73 54 101 121 74 112 90 67 73 54 73 109 104 48 100 72 65 54 76 121 57 104 90 71 120 117 90 88 81 117 90 50 57 50 76 50 86 52 99 71 70 119 97 83 57 50 90 88 74 105 99 121 57 104 100 72 82 108 98 109 82 108 90 67 73 115 73 109 82 112 99 51 66 115 89 88 107 105 79 110 115 105 90 87 52 116 82 48 73 105 79 105 74 104 100 72 82 108 98 109 82 108 90 67 73 115 73 109 86 117 76 86 86 84 73 106 111 105 89 88 82 48 90 87 53 107 90 87 81 105 102 88 48 115 73 109 57 105 97 109 86 106 100 67 73 54 101 121 74 118 89 109 112 108 89 51 82 85 101 88 66 108 73 106 111 105 81 87 78 48 97 88 90 112 100 72 107 105 76 67 74 112 90 67 73 54 73 109 104 48 100 72 65 54 76 121 57 51 100 51 99 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 118 98 87 86 108 100 71 108 117 90 51 77 118 98 50 78 106 100 88 74 104 98 109 78 108 99 121 56 122 78 68 85 122 78 67 74 57 76 67 74 112 90 67 73 54 73 106 90 108 77 109 70 109 77 87 81 119 76 87 73 49 78 109 69 116 78 68 65 49 90 105 49 104 90 84 74 109 76 84 107 52 78 106 66 109 89 50 89 49 78 71 90 107 78 83 74 57 46 116 80 82 80 115 54 51 112 100 88 54 67 104 98 68 83 105 73 70 87 95 109 106 50 90 95 66 55 76 108 113 68 68 88 52 52 120 78 85 56 88 82 110 104 88 117 111 83 109 112 75 54 86 107 105 72 102 114 78 113 118 83 53 84 82 45 45 77 56 99 76 45 54 55 115 113 52 110 98 88 113 71 75 111 50 98 73 117 121 103 71 112 77 95 81 101 95 67 98 106 100 119 50 117 122 55 97 99 75 57 103 66 100 76 66 50 89 101 67 51 108 106 120 82 107 68 102 115 54 55 102 71 106 90 77 117 77 70 75 109 68 98 65 103 70 89 104 109 48 102 85 53 95 105 86 118 79 103 122 65 74 65 72 101 65 56 45 111 97 55 55 99 74 103 75 105 83 74 74 82 98 110 117 100 68 114 70 103 78 90 45 100 72 65 100 78 75 119 53 49 97 114 82 51 81 111 105 75 56 85 73 85 55 107 56 107 116 87 48 97 49 102 56 80 81 78 100 48 79 70 49 79 49 122 48 86 77 68 68 85 106 78 54 112 72 54 89 69 80 97 66 52 55 104 76 109 107 74 106 79 69 77 86 115 98 84 82 54 110 48 108 45 57 69 53 109 111 118 89 45 45 110 102 77 115 117 87 77 109 48 51 81 122 78 68 111 67 82 52 82 102 104 79 69 121 89 122 108 73 106 82 72 102 45 107 71 90 122 69 111 77 72 105 85 89 115 50 49 118 82 72 95 84 55 73 116 83 105 67 98 101 81]}, "7d82cf41ee48cdd5f6765a28f3da3a865773148f2f8b07bd07433e8bb9efca90" {:sha2 "7d82cf41ee48cdd5f6765a28f3da3a865773148f2f8b07bd07433e8bb9efca90", :contentType "application/octet-stream", :length 796, :content [101 121 74 104 98 71 99 105 79 105 74 83 85 122 77 52 78 67 74 57 46 101 121 74 104 89 51 82 118 99 105 73 54 101 121 74 118 89 109 112 108 89 51 82 85 101 88 66 108 73 106 111 105 81 87 100 108 98 110 81 105 76 67 74 117 89 87 49 108 73 106 111 105 101 69 70 81 83 83 66 116 89 109 57 52 73 105 119 105 98 87 74 118 101 67 73 54 73 109 49 104 97 87 120 48 98 122 112 52 89 88 66 112 81 71 70 107 98 71 53 108 100 67 53 110 98 51 89 105 102 83 119 105 100 109 86 121 89 105 73 54 101 121 74 112 90 67 73 54 73 109 104 48 100 72 65 54 76 121 57 104 90 71 120 117 90 88 81 117 90 50 57 50 76 50 86 52 99 71 70 119 97 83 57 50 90 88 74 105 99 121 57 104 100 72 82 108 98 109 82 108 90 67 73 115 73 109 82 112 99 51 66 115 89 88 107 105 79 110 115 105 90 87 52 116 82 48 73 105 79 105 74 104 100 72 82 108 98 109 82 108 90 67 73 115 73 109 86 117 76 86 86 84 73 106 111 105 89 88 82 48 90 87 53 107 90 87 81 105 102 88 48 115 73 109 57 105 97 109 86 106 100 67 73 54 101 121 74 118 89 109 112 108 89 51 82 85 101 88 66 108 73 106 111 105 81 87 78 48 97 88 90 112 100 72 107 105 76 67 74 112 90 67 73 54 73 109 104 48 100 72 65 54 76 121 57 51 100 51 99 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 118 98 87 86 108 100 71 108 117 90 51 77 118 98 50 78 106 100 88 74 104 98 109 78 108 99 121 56 122 78 68 85 122 78 67 74 57 76 67 74 112 90 67 73 54 73 106 86 107 90 71 70 104 78 106 73 119 76 84 85 121 77 106 77 116 78 68 78 109 77 121 49 104 89 87 74 105 76 84 104 105 89 122 78 109 77 87 85 121 89 50 73 53 77 67 74 57 46 115 103 95 51 76 112 88 54 97 65 66 54 73 115 104 113 68 74 89 115 81 116 107 69 89 51 117 110 69 116 110 74 67 105 118 88 112 48 83 80 57 68 105 116 77 88 84 65 71 110 48 77 56 89 75 120 75 73 73 56 84 109 51 80 103 95 70 49 52 102 87 89 88 101 83 83 115 85 109 55 53 55 70 116 89 83 112 111 69 120 104 107 49 116 108 66 66 115 56 114 53 99 122 81 68 65 114 97 105 65 54 49 105 83 101 116 73 57 48 98 82 108 67 50 87 48 57 100 72 112 67 100 90 67 83 115 66 53 54 53 111 76 118 98 115 45 89 49 50 74 118 102 56 107 67 81 116 119 122 98 45 80 80 98 68 78 105 76 55 73 99 110 100 97 76 76 79 106 56 117 68 77 95 107 83 105 48 82 107 84 66 95 102 57 108 97 88 119 67 89 55 51 75 52 65 80 103 86 78 117 121 119 66 108 83 45 107 89 83 102 98 53 90 106 69 56 122 109 79 112 112 68 98 71 67 97 122 112 102 87 108 116 122 67 110 106 53 120 115 89 77 69 101 107 54 118 57 84 45 81 79 78 110 52 89 86 54 50 108 73 109 84 51 77 82 75 110 82 76 51 79 53 118 104 49 72 121 69 53 87 104 70 119 106 70 54 114 68 100 112 54 55 80 121 119 72 79 73 118 120 115 86 100 55 84 117 88 100 106 103 95 106 70 100 103 53 116 98 83 99 66 89 72 122 118 71 116 73 99 121 82 119]}, "6f371b137db09a06185694f99b6c767be625ad80074b8df47435d6a2bebce219" {:sha2 "6f371b137db09a06185694f99b6c767be625ad80074b8df47435d6a2bebce219", :contentType "application/octet-stream", :length 796, :content [101 121 74 104 98 71 99 105 79 105 74 83 85 122 85 120 77 105 74 57 46 101 121 74 104 89 51 82 118 99 105 73 54 101 121 74 118 89 109 112 108 89 51 82 85 101 88 66 108 73 106 111 105 81 87 100 108 98 110 81 105 76 67 74 117 89 87 49 108 73 106 111 105 101 69 70 81 83 83 66 116 89 109 57 52 73 105 119 105 98 87 74 118 101 67 73 54 73 109 49 104 97 87 120 48 98 122 112 52 89 88 66 112 81 71 70 107 98 71 53 108 100 67 53 110 98 51 89 105 102 83 119 105 100 109 86 121 89 105 73 54 101 121 74 112 90 67 73 54 73 109 104 48 100 72 65 54 76 121 57 104 90 71 120 117 90 88 81 117 90 50 57 50 76 50 86 52 99 71 70 119 97 83 57 50 90 88 74 105 99 121 57 104 100 72 82 108 98 109 82 108 90 67 73 115 73 109 82 112 99 51 66 115 89 88 107 105 79 110 115 105 90 87 52 116 82 48 73 105 79 105 74 104 100 72 82 108 98 109 82 108 90 67 73 115 73 109 86 117 76 86 86 84 73 106 111 105 89 88 82 48 90 87 53 107 90 87 81 105 102 88 48 115 73 109 57 105 97 109 86 106 100 67 73 54 101 121 74 118 89 109 112 108 89 51 82 85 101 88 66 108 73 106 111 105 81 87 78 48 97 88 90 112 100 72 107 105 76 67 74 112 90 67 73 54 73 109 104 48 100 72 65 54 76 121 57 51 100 51 99 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 118 98 87 86 108 100 71 108 117 90 51 77 118 98 50 78 106 100 88 74 104 98 109 78 108 99 121 56 122 78 68 85 122 78 67 74 57 76 67 74 112 90 67 73 54 73 109 69 119 78 122 85 50 78 84 103 51 76 84 99 120 89 87 85 116 78 68 100 106 77 67 48 52 90 87 86 106 76 84 81 49 77 122 77 120 78 71 86 107 77 68 78 104 79 67 74 57 46 66 86 114 110 55 50 87 90 74 85 117 84 84 71 121 66 100 81 79 73 56 49 69 50 49 90 99 121 69 66 55 116 49 121 69 49 53 101 65 106 99 49 45 111 73 74 98 120 107 85 70 109 83 65 65 100 114 115 66 78 109 66 70 117 97 53 86 90 53 118 52 118 82 105 49 72 111 45 115 107 67 95 69 50 66 103 95 122 112 85 119 105 51 100 76 83 51 89 113 103 101 68 119 65 100 81 117 57 102 115 89 55 74 54 81 102 117 77 108 68 74 100 66 118 108 102 65 95 88 72 70 102 100 117 50 83 48 104 49 115 108 69 104 83 88 98 111 69 82 99 82 66 98 110 110 106 52 112 83 108 55 77 87 100 78 51 110 86 116 78 98 52 99 84 82 77 120 90 115 72 65 56 75 107 118 80 48 54 118 122 77 107 115 112 111 81 53 73 51 101 80 75 111 97 115 88 49 103 81 88 108 85 98 119 121 88 104 49 45 69 105 117 112 111 49 85 102 55 77 84 97 109 113 57 109 100 77 84 76 81 100 104 65 116 78 89 67 113 45 77 69 115 54 87 53 103 82 117 100 100 101 122 117 53 55 68 51 112 71 86 111 76 102 113 122 82 73 99 84 52 73 114 99 112 99 117 111 116 79 119 99 56 95 116 104 89 80 69 102 56 98 107 111 119 102 121 51 106 78 90 74 103 119 66 98 104 57 87 76 88 87 83 113 117 82 57 119 66 49 84 87 88 112 77 109 119 56 110 51 113 78 65]}}, :documents {["http://www.example.com/activityId/hashset" {"objectType" "Agent", "account" {"homePage" "http://www.example.com/agentId/1", "name" "Rick James"}}] {"8081d3de-7892-47ef-a963-0b18851e8462" {:contents [123 34 110 97 109 101 34 58 34 102 56 51 52 49 48 99 51 45 52 51 100 52 45 52 99 100 57 45 98 56 100 51 45 53 54 102 50 56 101 101 102 55 51 49 56 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 54 52 97 100 101 98 54 99 45 101 56 101 50 45 52 102 99 52 45 57 56 49 51 45 49 98 49 56 54 56 100 49 100 51 101 99 34 125 44 34 101 55 54 98 56 51 49 56 45 101 99 53 97 45 52 99 57 97 45 97 101 49 98 45 49 55 48 100 55 53 98 101 98 102 97 99 34 58 34 49 51 99 49 56 101 52 102 45 51 51 50 100 45 52 101 52 54 45 97 51 50 102 45 56 49 57 53 52 100 55 55 102 56 51 97 34 125], :content-type "application/json", :content-length 184, :id "8081d3de-7892-47ef-a963-0b18851e8462", :updated "2025-10-24T15:21:36.294099000Z"}, "c6de9d88-241e-4a4b-9fa0-b354da932226" {:contents [123 34 110 97 109 101 34 58 34 49 53 49 99 101 54 97 50 45 97 101 102 51 45 52 102 55 53 45 97 53 48 48 45 48 101 55 51 55 57 101 52 49 98 50 55 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 100 55 51 52 50 99 53 57 45 102 50 48 50 45 52 97 99 48 45 57 98 55 50 45 49 102 102 102 50 50 57 51 101 50 97 48 34 125 44 34 51 54 50 55 49 57 97 101 45 97 56 48 52 45 52 98 101 99 45 97 102 98 99 45 52 57 49 51 50 100 55 52 51 97 54 52 34 58 34 99 100 99 100 100 100 98 51 45 55 52 54 100 45 52 100 52 101 45 97 98 56 53 45 48 52 102 56 53 102 53 97 102 101 52 97 34 125], :content-type "application/json", :content-length 184, :id "c6de9d88-241e-4a4b-9fa0-b354da932226", :updated "2025-10-24T15:21:21.323334000Z"}, "7cb449de-0a57-4734-8c0b-173484f8fd66" {:contents [123 34 110 97 109 101 34 58 34 102 48 48 99 56 101 97 97 45 97 56 99 50 45 52 98 57 97 45 97 102 97 49 45 48 101 56 56 53 100 56 97 54 54 97 48 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 102 48 97 99 53 99 56 49 45 102 101 51 49 45 52 97 51 54 45 56 54 51 101 45 97 98 48 99 101 49 102 55 48 50 53 53 34 125 44 34 51 100 55 97 54 100 55 102 45 56 100 54 51 45 52 49 49 98 45 56 56 49 101 45 49 98 101 49 100 57 49 55 57 100 98 50 34 58 34 57 101 52 57 52 101 53 52 45 97 53 52 100 45 52 55 98 53 45 98 50 99 56 45 54 52 102 100 51 99 48 52 100 49 53 100 34 125], :content-type "application/json", :content-length 184, :id "7cb449de-0a57-4734-8c0b-173484f8fd66", :updated "2025-10-24T15:21:57.033722000Z"}, "a61c2abb-646a-4b5a-8afa-2122e56d8bc4" {:contents [123 34 110 97 109 101 34 58 34 98 98 51 100 57 53 56 52 45 97 55 99 54 45 52 100 99 55 45 57 56 48 100 45 99 52 55 102 99 54 50 97 52 100 102 48 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 55 49 54 54 54 55 57 56 45 49 51 57 52 45 52 49 55 98 45 57 98 57 100 45 57 54 101 102 49 101 49 52 52 99 55 49 34 125 44 34 48 55 102 102 102 51 97 51 45 98 48 97 48 45 52 100 54 56 45 97 48 97 101 45 53 50 54 48 51 56 48 52 99 56 57 48 34 58 34 53 100 51 51 49 55 100 99 45 100 54 57 53 45 52 54 55 56 45 98 51 53 98 45 50 98 101 52 101 48 54 55 56 97 97 49 34 125], :content-type "application/json", :content-length 184, :id "a61c2abb-646a-4b5a-8afa-2122e56d8bc4", :updated "2025-10-24T15:21:36.187342000Z"}, "452f5692-6f46-4bfe-8cb1-bf80c111acfd" {:contents [123 34 110 97 109 101 34 58 34 49 56 54 98 101 48 57 49 45 99 48 98 97 45 52 49 51 57 45 57 51 53 97 45 54 56 55 97 53 53 54 100 56 101 56 99 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 101 98 56 57 97 97 48 50 45 49 98 52 52 45 52 49 52 51 45 97 56 57 101 45 55 102 48 97 55 51 54 99 56 100 52 52 34 125 44 34 54 55 50 55 98 56 98 49 45 50 99 49 48 45 52 52 55 57 45 98 98 102 52 45 102 57 54 101 98 55 101 54 56 100 57 98 34 58 34 52 50 55 50 51 97 102 100 45 55 57 55 53 45 52 54 101 52 45 98 50 102 55 45 53 57 50 52 50 56 54 49 56 51 98 54 34 125], :content-type "application/json", :content-length 184, :id "452f5692-6f46-4bfe-8cb1-bf80c111acfd", :updated "2025-10-24T15:21:36.252512000Z"}, "b578dfda-e85f-4eef-8e61-a835cf3db286" {:contents [123 34 110 97 109 101 34 58 34 85 112 100 97 116 101 100 32 78 97 109 101 58 55 56 100 97 102 53 52 54 45 101 102 54 100 45 52 55 102 101 45 98 97 99 49 45 56 102 48 50 54 53 56 98 51 53 99 53 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 102 49 49 57 97 51 100 53 45 54 101 50 54 45 52 97 55 100 45 97 56 97 50 45 53 50 52 53 54 53 100 50 97 49 100 99 34 125 44 34 50 53 56 52 55 50 97 55 45 51 98 99 98 45 52 53 98 52 45 98 52 99 97 45 101 56 99 100 51 55 56 97 57 53 100 102 34 58 34 48 55 99 56 50 102 52 54 45 57 100 56 50 45 52 54 57 57 45 56 54 48 97 45 57 98 52 99 52 57 101 50 49 53 50 102 34 125], :content-type "application/json", :content-length 197, :id "b578dfda-e85f-4eef-8e61-a835cf3db286", :updated "2025-10-24T15:21:37.900917000Z"}, "44a076a7-4df8-4fbc-902a-7da4edf53abc" {:contents [123 34 110 97 109 101 34 58 34 51 50 50 51 51 55 48 49 45 99 55 99 97 45 52 52 98 102 45 56 98 102 49 45 99 100 53 50 56 98 52 98 101 52 101 54 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 98 56 48 49 51 53 102 56 45 55 97 102 50 45 52 99 99 52 45 56 48 101 48 45 55 50 101 97 100 56 98 56 49 100 98 100 34 125 44 34 57 102 53 53 102 51 52 54 45 98 57 102 98 45 52 98 49 51 45 98 99 50 102 45 50 57 97 51 97 54 56 99 50 52 98 98 34 58 34 102 97 102 102 99 52 51 54 45 99 50 102 49 45 52 55 97 55 45 97 49 48 97 45 99 98 54 52 101 48 56 99 48 101 102 101 34 125], :content-type "application/json", :content-length 184, :id "44a076a7-4df8-4fbc-902a-7da4edf53abc", :updated "2025-10-24T15:21:36.328855000Z"}, "696fd912-95b4-4152-aea3-ce006dd17000" {:contents [123 34 110 97 109 101 34 58 34 101 97 54 97 57 50 99 100 45 52 101 97 51 45 52 98 101 100 45 57 102 101 56 45 53 53 50 100 53 100 98 53 97 56 53 57 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 54 101 97 55 98 54 52 55 45 97 55 98 98 45 52 98 56 49 45 57 53 102 100 45 98 56 49 100 55 97 55 50 56 49 100 97 34 125 44 34 57 99 52 52 51 102 102 97 45 57 54 98 97 45 52 53 102 48 45 57 52 57 57 45 53 48 100 57 53 50 56 99 102 100 50 56 34 58 34 55 51 98 98 56 51 48 99 45 101 99 97 49 45 52 97 102 53 45 97 57 51 100 45 51 100 55 53 52 50 97 52 54 54 51 98 34 125], :content-type "application/json", :content-length 184, :id "696fd912-95b4-4152-aea3-ce006dd17000", :updated "2025-10-24T15:21:36.105580000Z"}, "7143716c-0de9-4dcd-bca0-254efe2cbd08" {:contents [123 34 110 97 109 101 34 58 34 98 99 56 51 101 49 51 51 45 101 53 48 50 45 52 53 102 56 45 97 56 98 54 45 51 49 53 100 97 55 48 57 98 52 55 49 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 48 56 49 99 48 54 99 98 45 54 100 55 49 45 52 54 51 49 45 97 57 50 52 45 102 55 101 100 50 98 53 54 49 53 54 102 34 125 44 34 56 102 54 56 98 55 52 48 45 98 102 101 56 45 52 48 56 98 45 57 51 97 100 45 97 56 102 100 55 48 55 54 52 53 101 51 34 58 34 100 51 55 57 52 53 52 57 45 99 52 52 100 45 52 102 56 49 45 98 100 98 53 45 101 49 54 48 55 54 102 53 98 57 48 56 34 125], :content-type "application/json", :content-length 184, :id "7143716c-0de9-4dcd-bca0-254efe2cbd08", :updated "2025-10-24T15:21:35.975039000Z"}, "e93ca658-0489-49eb-84fa-bbc64b0d6229" {:contents [123 34 110 97 109 101 34 58 34 50 57 98 49 55 48 53 101 45 102 57 52 54 45 52 53 50 52 45 56 99 49 98 45 56 55 51 97 52 50 48 53 57 102 100 99 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 98 101 51 101 98 56 51 57 45 51 102 55 53 45 52 54 99 54 45 97 101 53 52 45 55 53 57 50 57 100 97 54 99 48 97 55 34 125 44 34 51 52 101 49 56 51 53 98 45 51 99 51 98 45 52 51 102 55 45 57 55 98 98 45 97 99 101 98 50 102 101 100 99 55 102 55 34 58 34 102 51 53 97 50 50 49 100 45 99 101 48 49 45 52 52 98 54 45 97 56 97 52 45 50 99 54 51 57 53 51 49 54 53 99 97 34 125], :content-type "application/json", :content-length 184, :id "e93ca658-0489-49eb-84fa-bbc64b0d6229", :updated "2025-10-24T15:21:36.227481000Z"}, "a50ec86c-0f88-47c9-aee3-5b98021a4143" {:contents [123 34 99 97 114 34 58 34 72 111 110 100 97 34 44 34 116 121 112 101 34 58 34 67 105 118 105 99 34 125], :content-type "application/json", :content-length 30, :id "a50ec86c-0f88-47c9-aee3-5b98021a4143", :updated "2025-10-24T15:21:36.123928000Z"}, "79aa69ba-b473-43cf-bcca-17cbd283bed1" {:contents [123 34 110 97 109 101 34 58 34 51 100 97 48 55 56 51 50 45 56 57 102 99 45 52 101 51 101 45 56 97 55 99 45 102 101 49 53 54 54 100 52 55 51 99 49 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 56 57 52 102 101 49 49 53 45 54 54 101 57 45 52 50 100 101 45 57 53 54 49 45 53 102 54 52 99 56 50 100 48 100 48 50 34 125 44 34 54 55 101 55 100 100 55 49 45 98 51 98 49 45 52 51 56 57 45 97 48 55 49 45 102 99 53 97 49 97 53 101 100 56 50 99 34 58 34 50 56 53 97 57 50 51 52 45 54 55 49 102 45 52 51 100 53 45 98 49 57 100 45 52 48 101 56 50 97 99 53 100 51 55 52 34 125], :content-type "application/json", :content-length 184, :id "79aa69ba-b473-43cf-bcca-17cbd283bed1", :updated "2025-10-24T15:21:36.011132000Z"}, "44dfa4a5-64b2-4f96-af83-029210ac900a" {:contents [123 34 99 97 114 34 58 34 77 75 90 34 125], :content-type "application/json", :content-length 13, :id "44dfa4a5-64b2-4f96-af83-029210ac900a", :updated "2025-10-24T15:21:59.452832000Z"}, "97e096e4-931f-42f5-9cf6-3f1fcd851d99" {:contents [123 34 110 97 109 101 34 58 34 50 57 98 49 55 48 53 101 45 102 57 52 54 45 52 53 50 52 45 56 99 49 98 45 56 55 51 97 52 50 48 53 57 102 100 99 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 98 101 51 101 98 56 51 57 45 51 102 55 53 45 52 54 99 54 45 97 101 53 52 45 55 53 57 50 57 100 97 54 99 48 97 55 34 125 44 34 51 52 101 49 56 51 53 98 45 51 99 51 98 45 52 51 102 55 45 57 55 98 98 45 97 99 101 98 50 102 101 100 99 55 102 55 34 58 34 102 51 53 97 50 50 49 100 45 99 101 48 49 45 52 52 98 54 45 97 56 97 52 45 50 99 54 51 57 53 51 49 54 53 99 97 34 125], :content-type "application/json", :content-length 184, :id "97e096e4-931f-42f5-9cf6-3f1fcd851d99", :updated "2025-10-24T15:21:36.234021000Z"}, "578a78cc-55a2-48d0-b093-b5d82e5a3c64" {:contents [123 34 110 97 109 101 34 58 34 55 98 101 57 97 97 57 101 45 49 98 54 99 45 52 48 100 52 45 56 54 53 101 45 98 101 56 53 55 101 98 56 52 101 52 98 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 52 100 99 57 100 99 53 102 45 100 102 102 100 45 52 49 98 99 45 56 51 51 100 45 102 55 51 50 52 100 53 48 102 101 100 54 34 125 44 34 97 48 53 50 100 98 56 52 45 101 98 53 51 45 52 50 54 102 45 56 102 54 56 45 54 49 53 57 102 55 51 50 48 55 97 99 34 58 34 56 49 51 99 100 55 102 99 45 101 49 55 54 45 52 48 57 48 45 56 57 98 54 45 55 56 51 53 57 101 101 101 101 99 53 49 34 125], :content-type "application/json", :content-length 184, :id "578a78cc-55a2-48d0-b093-b5d82e5a3c64", :updated "2025-10-24T15:21:57.178476000Z"}, "f0dc6ffd-3488-4d3d-ae4a-2aa4323b0665" {:contents [123 34 110 97 109 101 34 58 34 48 57 49 57 51 100 99 102 45 57 98 99 97 45 52 57 99 53 45 98 51 101 48 45 50 102 51 101 55 48 50 56 57 52 51 102 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 97 98 57 48 57 50 100 50 45 55 99 102 98 45 52 51 52 101 45 97 48 99 49 45 52 52 100 97 55 97 54 56 50 54 51 50 34 125 44 34 102 55 100 48 57 55 54 54 45 100 99 101 57 45 52 102 99 98 45 98 97 50 55 45 97 98 57 100 49 97 99 51 55 102 100 49 34 58 34 57 56 53 101 56 57 54 99 45 56 99 54 53 45 52 55 51 49 45 56 49 52 54 45 55 98 97 54 98 54 97 55 98 50 52 53 34 125], :content-type "application/json", :content-length 184, :id "f0dc6ffd-3488-4d3d-ae4a-2aa4323b0665", :updated "2025-10-24T15:21:35.981671000Z"}, "1833e693-358a-446b-a43a-5877558ae721" {:contents [123 34 110 97 109 101 34 58 34 54 54 48 55 100 51 51 54 45 97 57 102 53 45 52 56 56 98 45 57 102 97 48 45 100 100 55 54 56 102 49 49 101 51 101 101 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 101 57 50 48 101 101 54 102 45 52 51 55 50 45 52 53 50 53 45 97 48 100 99 45 54 98 53 99 53 57 51 98 53 97 97 56 34 125 44 34 57 49 54 102 100 48 53 56 45 51 50 52 53 45 52 52 49 51 45 98 51 49 57 45 55 50 55 49 55 102 97 54 48 97 48 50 34 58 34 51 56 49 57 49 50 51 54 45 51 101 53 56 45 52 49 57 53 45 57 99 48 97 45 56 99 102 56 98 56 55 102 53 49 97 98 34 125], :content-type "application/json", :content-length 184, :id "1833e693-358a-446b-a43a-5877558ae721", :updated "2025-10-24T15:21:36.093371000Z"}, "28f92174-688f-4aa7-8d98-04c76532e6c9" {:contents [123 34 99 97 114 34 58 123 34 109 97 107 101 34 58 34 68 111 100 103 101 34 44 34 109 111 100 101 108 34 58 34 82 97 109 34 125 44 34 100 114 105 118 101 114 34 58 34 74 101 102 102 34 44 34 115 101 114 105 101 115 34 58 123 34 110 97 115 99 97 114 34 58 123 34 115 101 114 105 101 115 34 58 34 110 101 120 116 101 108 34 125 125 125], :content-type "application/json", :content-length 94, :id "28f92174-688f-4aa7-8d98-04c76532e6c9", :updated "2025-10-24T15:21:59.512657000Z"}, "35c7691c-1a67-473d-89c9-a1c260c98157" {:contents [123 34 110 97 109 101 34 58 34 56 101 53 50 98 49 53 50 45 98 101 49 48 45 52 52 99 50 45 57 56 49 57 45 56 52 53 101 101 52 50 49 53 97 56 53 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 48 57 50 52 50 49 48 98 45 49 55 54 55 45 52 53 50 55 45 98 49 53 99 45 55 102 54 50 55 53 97 53 49 54 101 57 34 125 44 34 49 56 97 54 101 50 55 52 45 51 52 48 50 45 52 102 51 97 45 97 99 102 57 45 99 97 55 50 55 52 53 100 99 101 53 52 34 58 34 56 50 48 50 98 102 56 51 45 55 54 99 51 45 52 55 99 49 45 97 49 102 51 45 56 56 98 55 50 55 101 100 49 54 100 49 34 125], :content-type "application/json", :content-length 184, :id "35c7691c-1a67-473d-89c9-a1c260c98157", :updated "2025-10-24T15:21:36.215361000Z"}, "4bd3c65c-7cab-4bcc-b50c-8a38b2721646" {:contents [47 32 97 115 100 102 32 47 32 117 110 100 101 102 105 110 101 100], :content-type "application/octet-stream", :content-length 18, :id "4bd3c65c-7cab-4bcc-b50c-8a38b2721646", :updated "2025-10-24T15:21:36.312016000Z"}, "5113de41-6f05-4b2d-8452-45e72685ae08" {:contents [123 34 110 97 109 101 34 58 34 52 53 48 51 52 56 54 101 45 101 48 52 54 45 52 54 101 49 45 97 102 48 48 45 53 51 98 55 55 48 97 101 54 52 97 98 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 99 50 100 53 52 54 100 57 45 101 98 53 97 45 52 50 52 55 45 97 100 54 50 45 50 102 57 54 99 57 49 98 48 97 99 52 34 125 44 34 50 48 48 52 55 52 51 101 45 57 99 54 55 45 52 50 102 51 45 98 56 48 97 45 48 97 99 52 50 102 97 55 50 50 53 50 34 58 34 51 101 50 48 100 51 50 51 45 57 50 97 48 45 52 56 100 99 45 57 101 55 100 45 51 101 99 54 50 51 100 48 53 54 102 57 34 125], :content-type "application/json", :content-length 184, :id "5113de41-6f05-4b2d-8452-45e72685ae08", :updated "2025-10-24T15:21:35.968318000Z"}, "22dfa5a1-2b73-4f63-8432-8255b49048d0" {:contents [123 34 110 97 109 101 34 58 34 51 52 97 100 99 99 52 53 45 102 48 50 50 45 52 101 55 54 45 57 48 101 56 45 57 54 51 52 54 51 50 48 55 101 98 100 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 56 49 53 57 53 99 53 102 45 97 57 57 101 45 52 48 97 51 45 98 97 56 98 45 51 49 57 99 51 53 48 53 49 100 53 48 34 125 44 34 100 52 97 50 52 54 53 50 45 50 99 51 54 45 52 55 99 50 45 56 102 102 50 45 57 54 97 56 49 51 50 51 50 99 53 54 34 58 34 52 51 52 51 53 54 55 50 45 49 99 97 98 45 52 100 50 49 45 57 99 100 54 45 101 53 57 100 54 97 57 102 102 100 101 51 34 125], :content-type "application/json", :content-length 184, :id "22dfa5a1-2b73-4f63-8432-8255b49048d0", :updated "2025-10-24T15:21:36.177436000Z"}, "c24ef35d-e56f-4694-bbb4-b0b9eccf350b" {:contents [123 34 110 97 109 101 34 58 34 56 100 52 98 102 56 57 102 45 56 48 51 53 45 52 101 99 99 45 97 54 98 56 45 48 102 54 51 51 54 98 48 98 49 54 56 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 48 54 52 100 57 49 48 102 45 48 97 48 99 45 52 101 52 99 45 56 49 54 54 45 48 52 57 53 52 102 51 55 52 48 99 101 34 125 44 34 99 98 51 51 48 98 53 57 45 100 54 98 52 45 52 101 102 49 45 57 99 102 54 45 54 100 53 49 100 50 100 55 55 98 101 55 34 58 34 97 54 50 49 97 98 54 51 45 102 97 98 56 45 52 102 102 102 45 56 52 54 49 45 101 53 48 98 48 55 48 57 98 100 99 49 34 125], :content-type "application/json", :content-length 184, :id "c24ef35d-e56f-4694-bbb4-b0b9eccf350b", :updated "2025-10-24T15:21:35.959118000Z"}}, ["http://www.example.com/activityId/hashset" {"objectType" "Agent", "account" {"homePage" "http://www.example.com/agentId/1", "name" "Rick James"}} "290d26cb-d677-4aaf-811a-11b51285a6a8"] {"4e2c8d6e-5cb9-460c-bffc-2e602785e1ea" {:contents [123 34 110 97 109 101 34 58 34 57 54 98 54 102 53 51 56 45 101 57 101 101 45 52 99 55 54 45 56 100 97 48 45 54 52 97 102 101 48 48 51 52 50 100 99 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 52 50 49 99 56 100 50 52 45 101 51 51 56 45 52 100 57 51 45 97 49 48 57 45 98 53 99 57 100 98 101 56 97 50 53 49 34 125 44 34 98 97 48 98 51 49 57 97 45 52 97 101 97 45 52 97 100 56 45 57 98 55 100 45 54 51 57 102 102 51 48 55 100 55 99 54 34 58 34 102 48 54 101 56 97 97 54 45 55 49 57 52 45 52 99 101 97 45 97 52 49 52 45 50 57 100 55 48 50 48 51 56 100 51 52 34 125], :content-type "application/json", :content-length 184, :id "4e2c8d6e-5cb9-460c-bffc-2e602785e1ea", :registration "290d26cb-d677-4aaf-811a-11b51285a6a8", :updated "2025-10-24T15:21:36.146680000Z"}}, ["http://www.example.com/activityId/hashset" {"objectType" "Agent", "account" {"homePage" "http://www.example.com/agentId/1", "name" "Rick James"}} "20fff0c3-8887-4172-893e-87985e3210ec"] {}, "http://www.example.com/activityId/hashsete89fc526-69a1-4dd7-a4f2-f95b47b71208" {"3b11a315-6fe4-4086-a799-9d9d9247bdb7" {:contents [123 34 110 97 109 101 34 58 34 52 100 54 97 49 57 56 55 45 98 49 57 56 45 52 98 48 57 45 97 57 51 57 45 53 48 48 99 55 54 99 97 100 53 99 50 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 53 53 55 57 51 98 99 99 45 55 97 56 98 45 52 56 51 97 45 98 57 97 49 45 100 98 99 48 51 98 102 102 100 50 48 102 34 125 44 34 101 50 99 55 49 48 97 101 45 49 100 52 52 45 52 48 56 52 45 97 99 97 57 45 52 102 50 57 52 99 52 51 101 57 57 100 34 58 34 97 52 55 98 99 57 48 48 45 54 56 48 49 45 52 54 56 99 45 98 49 102 101 45 100 98 51 55 48 53 54 100 49 52 98 97 34 125], :content-type "application/json", :content-length 184, :id "3b11a315-6fe4-4086-a799-9d9d9247bdb7", :updated "2025-10-24T15:21:40.109114000Z"}}, {"objectType" "Agent", "account" {"homePage" "http://www.example.com/agentId/1", "name" "Rick James"}} {"998d3774-3873-4273-bc93-93571d65934b" {:contents [123 34 110 97 109 101 34 58 34 57 53 54 55 57 56 99 57 45 55 97 49 56 45 52 48 56 52 45 98 55 99 53 45 99 56 102 52 54 52 52 48 102 54 55 99 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 97 54 98 55 97 101 55 53 45 54 55 97 99 45 52 55 99 48 45 56 100 53 53 45 102 50 48 48 49 98 56 98 54 101 50 48 34 125 44 34 99 52 53 56 101 48 49 100 45 101 55 99 100 45 52 98 100 102 45 97 55 57 50 45 97 53 48 102 52 98 50 57 54 97 57 50 34 58 34 100 101 49 55 53 102 100 48 45 97 52 100 101 45 52 51 50 100 45 56 51 51 101 45 52 101 99 57 52 97 56 56 97 55 49 53 34 125], :content-type "application/json", :content-length 184, :id "998d3774-3873-4273-bc93-93571d65934b", :updated "2025-10-24T15:21:38.287146000Z"}, "0262f9fc-b534-4c3a-98a1-5b59cc95af03" {:contents [123 34 99 97 114 34 58 34 72 111 110 100 97 34 44 34 116 121 112 101 34 58 34 67 105 118 105 99 34 125], :content-type "application/json", :content-length 30, :id "0262f9fc-b534-4c3a-98a1-5b59cc95af03", :updated "2025-10-24T15:21:38.275074000Z"}, "9f5b4f44-b13d-4d3c-ac33-72d24d831e4d" {:contents [123 34 110 97 109 101 34 58 34 48 99 101 49 48 102 98 99 45 100 51 51 48 45 52 52 100 51 45 98 51 53 100 45 97 57 51 100 97 100 54 97 48 50 53 49 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 100 52 55 56 101 57 48 100 45 100 53 99 102 45 52 102 100 49 45 56 52 48 53 45 53 57 48 101 50 102 102 49 52 48 48 100 34 125 44 34 99 55 56 98 49 98 55 55 45 54 53 52 54 45 52 50 101 99 45 56 50 54 100 45 53 54 101 100 56 51 51 101 51 51 54 98 34 58 34 55 101 102 99 49 98 49 51 45 55 98 57 99 45 52 50 48 56 45 97 55 100 99 45 57 57 57 102 54 51 56 53 56 55 100 52 34 125], :content-type "application/json", :content-length 184, :id "9f5b4f44-b13d-4d3c-ac33-72d24d831e4d", :updated "2025-10-24T15:21:38.340825000Z"}, "6fb639cf-0cd0-47c5-8d38-6e85803e901b" {:contents [123 34 110 97 109 101 34 58 34 51 48 99 56 56 53 98 102 45 49 55 102 52 45 52 97 49 98 45 56 52 50 102 45 100 98 102 98 51 52 57 98 50 49 57 100 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 101 53 53 101 101 49 48 51 45 57 57 49 52 45 52 54 101 98 45 57 50 98 101 45 52 48 48 54 52 49 49 57 50 98 100 51 34 125 44 34 56 97 52 48 56 51 102 57 45 55 101 51 97 45 52 98 52 99 45 57 100 99 55 45 100 53 99 101 56 98 102 97 57 102 53 55 34 58 34 98 55 98 98 53 99 52 55 45 49 51 97 55 45 52 48 99 97 45 57 52 102 48 45 48 97 50 97 51 57 50 53 99 55 49 102 34 125], :content-type "application/json", :content-length 184, :id "6fb639cf-0cd0-47c5-8d38-6e85803e901b", :updated "2025-10-24T15:21:38.227684000Z"}, "bf4e6af0-be11-4b85-88ca-d6b6207790b4" {:contents [123 34 110 97 109 101 34 58 34 50 56 49 50 56 54 102 48 45 101 99 48 100 45 52 57 97 51 45 56 56 53 54 45 50 48 100 100 98 102 52 50 50 57 99 100 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 56 48 101 101 48 48 102 53 45 55 98 53 53 45 52 52 52 101 45 97 101 50 49 45 57 50 53 55 98 56 102 51 52 56 97 48 34 125 44 34 56 54 53 52 48 97 51 100 45 101 50 57 56 45 52 50 50 51 45 57 53 101 99 45 102 55 52 48 50 50 53 52 51 50 98 55 34 58 34 55 57 53 97 56 54 52 51 45 98 53 55 51 45 52 102 98 99 45 97 98 98 50 45 49 100 99 53 56 55 52 98 97 50 57 99 34 125], :content-type "application/json", :content-length 184, :id "bf4e6af0-be11-4b85-88ca-d6b6207790b4", :updated "2025-10-24T15:21:21.666861000Z"}, "5f47bc7f-54d3-4947-bfeb-b2ea1aabc07c" {:contents [123 34 110 97 109 101 34 58 34 56 56 102 49 55 99 49 51 45 98 99 50 49 45 52 49 56 97 45 97 52 98 57 45 48 98 49 54 55 100 55 98 55 57 52 99 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 48 98 57 51 54 53 56 49 45 49 54 52 55 45 52 101 56 48 45 57 54 97 98 45 53 54 101 51 53 97 52 57 101 50 52 100 34 125 44 34 100 56 97 52 102 57 99 55 45 100 98 97 98 45 52 54 100 100 45 57 48 53 98 45 98 54 48 100 49 51 54 101 100 101 54 99 34 58 34 102 55 57 99 50 48 57 102 45 99 49 98 97 45 52 98 101 48 45 57 97 55 50 45 48 53 54 102 50 102 99 55 49 97 57 55 34 125], :content-type "application/json", :content-length 184, :id "5f47bc7f-54d3-4947-bfeb-b2ea1aabc07c", :updated "2025-10-24T15:21:57.091865000Z"}, "2698e726-565b-45b4-b76d-a693f202555b" {:contents [123 34 110 97 109 101 34 58 34 54 55 57 54 48 97 48 50 45 98 53 49 50 45 52 98 101 57 45 57 54 56 50 45 48 102 53 98 99 100 53 49 98 98 55 55 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 102 57 102 97 101 51 100 98 45 101 52 99 53 45 52 56 97 54 45 98 99 55 51 45 50 100 99 97 49 97 49 51 102 56 102 100 34 125 44 34 48 102 57 50 50 101 49 49 45 98 98 53 97 45 52 102 100 102 45 56 97 100 51 45 52 50 56 101 101 98 57 57 49 50 51 49 34 58 34 101 54 48 102 99 55 102 99 45 98 56 56 50 45 52 98 49 54 45 98 51 49 49 45 53 99 97 56 97 99 55 57 54 97 55 50 34 125], :content-type "application/json", :content-length 184, :id "2698e726-565b-45b4-b76d-a693f202555b", :updated "2025-10-24T15:21:38.320997000Z"}, "a0ef1dad-433f-4d57-b770-184a8bd137a5" {:contents [123 34 110 97 109 101 34 58 34 98 55 49 54 55 51 55 49 45 100 97 51 52 45 52 56 98 98 45 57 53 101 102 45 53 53 98 99 56 53 53 50 54 52 54 97 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 101 52 100 48 100 54 51 52 45 101 52 54 101 45 52 52 54 100 45 57 52 56 53 45 102 51 50 51 53 48 54 56 56 56 48 57 34 125 44 34 55 53 53 50 53 52 97 102 45 102 100 57 48 45 52 51 49 48 45 56 54 98 54 45 54 99 55 53 54 102 48 51 56 52 51 99 34 58 34 50 56 48 55 51 101 54 49 45 53 52 98 101 45 52 99 48 54 45 56 101 99 56 45 48 53 48 48 57 102 101 98 53 50 53 53 34 125], :content-type "application/json", :content-length 184, :id "a0ef1dad-433f-4d57-b770-184a8bd137a5", :updated "2025-10-24T15:21:38.243701000Z"}, "8652260a-03f2-4e58-8f05-8fd43f298ddb" {:contents [123 34 110 97 109 101 34 58 34 49 49 50 101 100 56 49 48 45 102 48 50 51 45 52 52 100 49 45 98 57 101 49 45 98 48 55 102 54 52 53 55 53 48 49 51 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 57 54 49 51 57 51 50 102 45 55 102 55 53 45 52 57 99 56 45 97 57 99 53 45 52 52 48 49 51 53 49 55 57 100 53 99 34 125 44 34 51 99 49 99 53 102 100 54 45 50 98 51 101 45 52 53 53 48 45 57 97 51 97 45 98 98 99 102 56 100 48 55 97 53 99 52 34 58 34 51 48 97 50 101 56 97 53 45 48 97 48 100 45 52 53 51 101 45 97 97 56 48 45 55 48 52 51 52 52 99 98 53 101 102 101 34 125], :content-type "application/json", :content-length 184, :id "8652260a-03f2-4e58-8f05-8fd43f298ddb", :updated "2025-10-24T15:21:38.255439000Z"}, "5b851d64-385d-41e4-91eb-589a729dedb0" {:contents [123 34 110 97 109 101 34 58 34 57 50 97 101 57 49 53 54 45 56 102 52 102 45 52 102 50 100 45 57 98 100 53 45 52 56 102 50 57 55 98 100 52 51 49 53 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 55 101 53 101 55 55 50 101 45 50 49 50 102 45 52 97 98 102 45 98 100 101 100 45 48 50 49 97 53 53 100 97 57 102 53 48 34 125 44 34 57 50 52 48 53 49 101 51 45 97 53 49 53 45 52 55 49 53 45 98 55 51 50 45 53 48 57 97 54 100 55 100 52 57 56 55 34 58 34 50 101 98 51 101 54 100 56 45 99 99 49 48 45 52 51 55 56 45 98 51 57 53 45 99 101 101 48 101 52 51 52 57 97 97 97 34 125], :content-type "application/json", :content-length 184, :id "5b851d64-385d-41e4-91eb-589a729dedb0", :updated "2025-10-24T15:21:57.211251000Z"}, "e2b8a3fc-2b4e-4c29-97ba-a215f5ad6514" {:contents [123 34 110 97 109 101 34 58 34 52 102 49 101 100 99 98 54 45 98 49 53 99 45 52 50 54 53 45 56 99 98 99 45 53 99 55 53 98 100 97 50 50 99 102 102 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 100 101 99 101 50 48 97 100 45 97 55 101 48 45 52 55 56 100 45 57 49 48 51 45 53 99 52 50 102 101 48 101 53 48 99 98 34 125 44 34 56 101 49 49 51 57 98 53 45 50 48 50 53 45 52 55 98 99 45 98 97 53 97 45 55 99 52 57 54 55 102 101 51 48 49 101 34 58 34 101 56 53 99 98 97 54 51 45 57 52 54 48 45 52 102 48 48 45 57 57 99 55 45 101 48 101 52 97 48 57 100 97 50 101 55 34 125], :content-type "application/json", :content-length 184, :id "e2b8a3fc-2b4e-4c29-97ba-a215f5ad6514", :updated "2025-10-24T15:21:38.299418000Z"}, "8f66d720-6ab6-4ad9-adb4-cab90125887f" {:contents [123 34 110 97 109 101 34 58 34 56 55 100 54 50 48 57 55 45 51 97 102 53 45 52 54 49 101 45 98 49 57 55 45 51 56 51 54 101 52 53 52 48 52 101 52 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 99 50 97 97 48 98 53 48 45 102 57 57 50 45 52 56 48 101 45 97 57 55 50 45 51 56 50 100 50 55 49 53 102 48 101 97 34 125 44 34 55 102 52 102 48 55 56 52 45 97 51 51 54 45 52 48 97 102 45 57 101 101 52 45 52 98 48 55 56 48 52 52 49 57 56 57 34 58 34 52 97 99 98 98 51 99 53 45 98 97 57 102 45 52 100 99 54 45 56 53 98 51 45 97 99 54 57 54 50 51 49 101 100 50 53 34 125], :content-type "application/json", :content-length 184, :id "8f66d720-6ab6-4ad9-adb4-cab90125887f", :updated "2025-10-24T15:21:38.381915000Z"}, "481d4881-6f62-42dd-93ff-d4e6035336b8" {:contents [47 32 97 115 100 102 32 47 32 117 110 100 101 102 105 110 101 100], :content-type "application/octet-stream", :content-length 18, :id "481d4881-6f62-42dd-93ff-d4e6035336b8", :updated "2025-10-24T15:21:38.399686000Z"}, "948d464e-7fda-44d8-8dd5-5f96d993c7da" {:contents [123 34 110 97 109 101 34 58 34 85 112 100 97 116 101 100 32 78 97 109 101 58 97 54 50 53 48 54 57 54 45 57 48 51 97 45 52 49 102 54 45 57 49 50 53 45 51 54 57 50 98 55 52 50 102 56 57 101 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 100 49 52 55 52 52 55 100 45 51 100 52 100 45 52 48 53 100 45 56 53 54 56 45 51 51 53 52 49 100 53 97 99 52 50 101 34 125 44 34 57 48 56 98 97 54 102 100 45 99 57 97 54 45 52 52 56 52 45 57 100 56 49 45 97 54 50 99 57 99 101 101 54 51 102 97 34 58 34 98 98 48 51 100 56 52 53 45 52 102 102 100 45 52 54 99 48 45 98 100 48 97 45 97 56 101 56 52 99 97 53 50 98 51 52 34 125], :content-type "application/json", :content-length 197, :id "948d464e-7fda-44d8-8dd5-5f96d993c7da", :updated "2025-10-24T15:21:39.987747000Z"}, "aaab4300-0935-4594-bb90-63a9cefa458a" {:contents [123 34 110 97 109 101 34 58 34 102 54 54 56 49 52 57 51 45 50 100 52 48 45 52 98 49 55 45 57 56 49 56 45 49 97 52 102 54 56 54 52 49 54 50 101 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 48 99 101 98 56 50 48 102 45 56 53 99 97 45 52 57 53 98 45 97 48 98 52 45 53 97 52 51 50 51 97 49 102 102 54 48 34 125 44 34 54 97 100 55 56 97 102 48 45 53 97 99 55 45 52 50 55 57 45 56 53 97 98 45 55 52 97 49 56 49 55 57 52 53 53 52 34 58 34 98 98 49 48 57 48 101 55 45 52 99 102 53 45 52 48 48 98 45 97 49 51 98 45 51 48 52 49 55 50 101 98 53 49 102 99 34 125], :content-type "application/json", :content-length 184, :id "aaab4300-0935-4594-bb90-63a9cefa458a", :updated "2025-10-24T15:21:38.187408000Z"}, "d2d323b5-2695-4782-bd0a-bd762b848ec0" {:contents [123 34 110 97 109 101 34 58 34 48 99 100 97 101 51 56 100 45 53 52 49 50 45 52 48 100 51 45 98 57 48 98 45 97 54 51 97 99 51 48 98 53 53 101 98 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 52 56 101 50 54 55 56 102 45 49 50 49 55 45 52 52 48 101 45 57 56 102 57 45 98 48 99 49 54 54 56 48 102 100 98 50 34 125 44 34 53 52 101 98 52 56 101 55 45 54 51 99 56 45 52 48 55 51 45 98 52 97 50 45 52 50 54 53 102 57 52 51 48 57 48 51 34 58 34 57 99 55 50 98 52 98 99 45 51 56 54 100 45 52 56 98 55 45 56 57 55 102 45 55 49 56 100 51 56 57 56 53 97 100 102 34 125], :content-type "application/json", :content-length 184, :id "d2d323b5-2695-4782-bd0a-bd762b848ec0", :updated "2025-10-24T15:21:38.332905000Z"}, "0d0b1875-7923-4a6c-9760-87c90d782f10" {:contents [123 34 110 97 109 101 34 58 34 52 49 50 50 50 53 100 50 45 55 48 53 101 45 52 53 99 56 45 98 53 52 98 45 53 56 102 53 98 52 54 52 52 97 98 101 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 102 53 50 98 52 98 55 49 45 98 51 98 97 45 52 48 50 97 45 97 100 98 56 45 53 101 54 50 51 48 100 99 55 57 49 57 34 125 44 34 54 98 101 53 50 99 99 54 45 98 99 53 54 45 52 57 99 48 45 97 99 56 57 45 57 99 99 97 54 52 49 99 55 97 99 57 34 58 34 49 54 52 101 100 101 52 55 45 48 97 55 51 45 52 56 51 54 45 97 56 101 51 45 57 50 56 50 51 50 54 99 48 55 57 100 34 125], :content-type "application/json", :content-length 184, :id "0d0b1875-7923-4a6c-9760-87c90d782f10", :updated "2025-10-24T15:21:38.426139000Z"}}, "http://www.example.com/activityId/hashset" {"aa52186c-ea5e-4677-b93d-3baf5cdd2318" {:contents [123 34 97 99 116 105 118 105 116 121 73 100 34 58 34 104 116 116 112 58 47 47 119 119 119 46 101 120 97 109 112 108 101 46 99 111 109 47 97 99 116 105 118 105 116 121 73 100 47 104 97 115 104 115 101 116 34 44 34 112 114 111 102 105 108 101 73 100 34 58 34 48 100 53 100 101 54 52 102 45 48 52 55 102 45 52 57 97 51 45 97 102 50 102 45 55 57 48 51 102 101 97 102 52 99 98 50 34 125], :content-type "application/json", :content-length 109, :id "aa52186c-ea5e-4677-b93d-3baf5cdd2318", :updated "2025-10-24T15:21:40.201443000Z"}, "d7b11211-8ee6-4573-a7d9-b6dce4d9af3e" {:contents [123 34 110 97 109 101 34 58 34 97 50 101 52 53 53 54 50 45 98 99 53 50 45 52 55 53 57 45 97 49 57 98 45 56 54 100 102 55 52 57 97 53 102 98 55 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 57 50 55 100 52 101 51 49 45 50 49 98 97 45 52 51 53 48 45 57 99 56 55 45 102 49 101 99 100 102 48 57 51 53 57 50 34 125 44 34 101 48 56 55 99 98 50 100 45 50 101 56 57 45 52 50 52 48 45 97 51 49 53 45 56 53 101 97 54 102 101 49 57 98 52 99 34 58 34 56 53 55 53 100 101 55 53 45 98 55 49 54 45 52 49 102 102 45 56 56 100 48 45 55 102 52 54 54 102 53 49 53 98 52 50 34 125], :content-type "application/json", :content-length 184, :id "d7b11211-8ee6-4573-a7d9-b6dce4d9af3e", :updated "2025-10-24T15:21:40.019114000Z"}, "bad7acd2-97da-4c05-8e19-65e5fbd95dae" {:contents [123 34 110 97 109 101 34 58 34 97 50 56 49 55 49 100 57 45 101 50 102 52 45 52 101 102 51 45 97 57 55 49 45 51 56 50 50 98 54 97 50 54 54 48 52 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 50 102 52 54 57 102 54 99 45 54 52 99 55 45 52 53 51 51 45 56 98 54 99 45 57 52 57 98 100 57 52 55 49 49 51 97 34 125 44 34 100 55 48 48 101 55 48 98 45 50 100 100 97 45 52 51 49 97 45 98 56 50 48 45 51 55 48 48 54 53 49 99 100 48 50 54 34 58 34 99 50 56 98 57 52 50 100 45 56 50 52 102 45 52 49 48 53 45 97 54 50 101 45 102 98 52 48 54 56 52 52 100 52 102 48 34 125], :content-type "application/json", :content-length 184, :id "bad7acd2-97da-4c05-8e19-65e5fbd95dae", :updated "2025-10-24T15:21:40.049612000Z"}, "ae3df1f2-e882-457d-bf36-d0eab24f54e1" {:contents [47 32 97 115 100 102 32 47 32 117 110 100 101 102 105 110 101 100], :content-type "application/octet-stream", :content-length 18, :id "ae3df1f2-e882-457d-bf36-d0eab24f54e1", :updated "2025-10-24T15:21:40.219838000Z"}, "39b09bf9-3386-4242-9af3-04c34d748c58" {:contents [123 34 110 97 109 101 34 58 34 85 112 100 97 116 101 100 32 78 97 109 101 58 55 54 56 52 57 52 53 97 45 48 102 52 102 45 52 100 97 99 45 98 56 54 102 45 54 97 98 100 55 100 102 100 101 51 54 49 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 102 101 52 55 55 53 50 55 45 48 48 53 97 45 52 53 56 56 45 56 100 49 50 45 57 49 48 49 52 100 53 50 55 51 99 56 34 125 44 34 55 100 56 101 53 97 49 101 45 53 51 55 49 45 52 100 53 102 45 98 54 53 97 45 99 51 54 100 56 57 56 51 101 56 97 56 34 58 34 53 50 101 49 57 53 52 102 45 102 50 56 97 45 52 102 99 101 45 56 57 52 101 45 99 54 101 98 99 49 100 102 53 51 52 51 34 125], :content-type "application/json", :content-length 197, :id "39b09bf9-3386-4242-9af3-04c34d748c58", :updated "2025-10-24T15:21:41.804713000Z"}, "2efbfb84-3294-4765-8c20-8431fa1f171e" {:contents [123 34 110 97 109 101 34 58 34 57 99 99 51 53 52 54 48 45 57 97 100 97 45 52 53 57 51 45 57 98 99 57 45 101 57 52 98 52 98 53 52 51 51 100 97 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 52 56 49 51 55 98 48 101 45 52 98 55 48 45 52 56 55 50 45 57 100 55 97 45 99 55 102 53 98 99 52 98 50 101 101 99 34 125 44 34 54 99 100 51 99 54 102 48 45 54 48 55 54 45 52 50 48 57 45 98 50 100 101 45 53 101 49 50 53 56 49 55 48 57 100 98 34 58 34 55 101 99 53 57 56 102 52 45 48 51 50 100 45 52 54 55 57 45 56 52 102 54 45 54 52 99 48 101 102 52 102 98 101 48 50 34 125], :content-type "application/json", :content-length 184, :id "2efbfb84-3294-4765-8c20-8431fa1f171e", :updated "2025-10-24T15:21:40.188672000Z"}, "b57c7e3e-9ea4-467b-bd69-29a8ee6afc8f" {:contents [123 34 99 97 114 34 58 34 72 111 110 100 97 34 44 34 116 121 112 101 34 58 34 67 105 118 105 99 34 125], :content-type "application/json", :content-length 30, :id "b57c7e3e-9ea4-467b-bd69-29a8ee6afc8f", :updated "2025-10-24T15:21:40.159992000Z"}, "708e4902-d72f-4132-a1da-a4db2addbbf3" {:contents [123 34 110 97 109 101 34 58 34 50 56 102 49 50 98 54 100 45 49 55 97 54 45 52 51 52 54 45 56 48 53 100 45 57 99 99 48 49 55 57 99 50 101 52 101 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 48 48 97 102 102 51 57 101 45 51 49 56 100 45 52 51 97 100 45 57 102 100 102 45 98 55 50 100 99 48 52 53 50 98 48 97 34 125 44 34 102 51 53 52 48 56 53 100 45 52 98 99 99 45 52 99 100 101 45 56 56 97 52 45 98 53 49 56 50 51 97 48 99 57 53 54 34 58 34 101 100 55 57 100 51 53 56 45 49 53 102 53 45 52 97 57 54 45 98 52 98 50 45 55 53 55 57 50 54 97 98 56 100 54 51 34 125], :content-type "application/json", :content-length 184, :id "708e4902-d72f-4132-a1da-a4db2addbbf3", :updated "2025-10-24T15:21:40.119441000Z"}, "1b2d911a-87b1-4039-ba4f-ac493579f32d" {:contents [123 34 110 97 109 101 34 58 34 101 49 51 55 55 97 57 102 45 56 101 50 55 45 52 100 49 49 45 57 102 51 97 45 51 99 57 56 49 101 99 57 99 52 52 97 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 98 55 99 54 49 101 57 56 45 100 55 49 54 45 52 49 57 102 45 56 49 52 52 45 54 52 54 101 54 52 101 54 57 50 48 54 34 125 44 34 102 54 100 54 100 53 55 54 45 50 99 101 99 45 52 101 100 97 45 56 57 56 99 45 48 101 97 51 56 55 98 57 57 51 99 102 34 58 34 98 48 50 52 98 98 98 52 45 56 100 57 53 45 52 99 98 49 45 57 55 101 51 45 50 51 102 102 49 100 51 51 99 56 101 57 34 125], :content-type "application/json", :content-length 184, :id "1b2d911a-87b1-4039-ba4f-ac493579f32d", :updated "2025-10-24T15:21:40.141073000Z"}, "6fb9ae40-030d-4c9c-9f1c-74e6049816a6" {:contents [123 34 110 97 109 101 34 58 34 56 57 52 52 100 49 100 54 45 56 54 55 53 45 52 48 57 49 45 57 48 98 52 45 97 49 101 102 57 56 54 97 57 102 99 48 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 51 55 100 55 52 50 100 102 45 52 98 50 98 45 52 57 101 49 45 97 98 100 56 45 101 56 100 48 49 57 49 55 100 49 48 54 34 125 44 34 56 49 98 56 102 102 50 52 45 99 57 55 55 45 52 54 57 53 45 56 53 53 52 45 55 56 55 54 52 98 50 48 102 53 57 53 34 58 34 54 98 51 57 56 55 48 101 45 98 102 51 52 45 52 52 101 48 45 98 102 57 101 45 53 49 48 56 100 50 98 98 53 100 98 50 34 125], :content-type "application/json", :content-length 184, :id "6fb9ae40-030d-4c9c-9f1c-74e6049816a6", :updated "2025-10-24T15:21:40.030455000Z"}, "8013797d-1e31-4fd3-a196-da1afcc226f7" {:contents [123 34 110 97 109 101 34 58 34 50 57 102 57 53 102 48 49 45 55 97 52 54 45 52 55 98 53 45 97 100 54 53 45 57 56 53 57 49 49 100 53 51 49 102 53 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 51 101 52 102 50 50 98 53 45 101 54 51 102 45 52 56 97 100 45 57 100 102 57 45 50 100 49 55 54 100 98 98 55 51 49 56 34 125 44 34 54 52 102 102 48 48 48 49 45 49 49 57 101 45 52 101 102 102 45 56 99 102 99 45 102 55 102 53 49 51 57 98 54 49 49 102 34 58 34 54 57 99 55 48 97 51 53 45 99 48 49 99 45 52 101 52 50 45 57 54 49 97 45 54 97 100 52 98 56 100 54 100 54 102 56 34 125], :content-type "application/json", :content-length 184, :id "8013797d-1e31-4fd3-a196-da1afcc226f7", :updated "2025-10-24T15:21:40.063475000Z"}, "f531e300-0207-4318-b7f6-9a489c355ff4" {:contents [123 34 110 97 109 101 34 58 34 56 49 49 99 51 51 48 51 45 56 98 52 50 45 52 99 99 98 45 56 52 99 54 45 55 99 55 48 97 55 98 48 56 99 100 54 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 98 53 52 52 53 51 48 57 45 49 56 101 48 45 52 98 52 49 45 97 98 99 99 45 57 102 100 50 54 98 51 53 48 98 97 99 34 125 44 34 102 51 53 53 102 54 99 97 45 54 98 98 54 45 52 100 102 99 45 57 102 51 54 45 51 101 56 53 54 54 55 56 56 57 56 52 34 58 34 54 97 57 99 98 56 99 101 45 48 100 51 97 45 52 102 57 54 45 97 55 97 49 45 101 56 55 49 49 56 50 98 99 55 99 101 34 125], :content-type "application/json", :content-length 184, :id "f531e300-0207-4318-b7f6-9a489c355ff4", :updated "2025-10-24T15:21:40.171813000Z"}, "e8f4c68e-d8ca-4705-b023-0e29db6844a1" {:contents [123 34 110 97 109 101 34 58 34 54 101 54 48 53 98 55 50 45 101 100 48 50 45 52 50 101 102 45 97 99 102 98 45 52 49 50 101 101 98 52 99 57 100 51 57 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 99 102 101 54 50 101 100 51 45 56 100 98 99 45 52 98 48 101 45 56 48 52 98 45 100 53 99 98 99 54 52 102 50 97 100 48 34 125 44 34 102 55 98 50 101 54 57 56 45 98 101 56 54 45 52 102 100 52 45 56 98 56 102 45 97 52 101 102 48 98 100 57 98 49 57 100 34 58 34 51 99 56 99 100 57 99 57 45 50 98 102 51 45 52 56 54 51 45 97 49 98 99 45 99 49 55 54 56 97 102 98 102 98 52 98 34 125], :content-type "application/json", :content-length 184, :id "e8f4c68e-d8ca-4705-b023-0e29db6844a1", :updated "2025-10-24T15:21:57.004156000Z"}, "12eaf104-ce40-4268-a982-083f121005c8" {:contents [123 34 110 97 109 101 34 58 34 48 50 53 53 53 50 57 52 45 56 98 51 102 45 52 55 55 50 45 56 56 56 97 45 56 53 99 102 57 49 57 99 101 55 97 56 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 49 100 97 101 57 52 101 99 45 101 98 53 99 45 52 48 98 56 45 98 49 48 51 45 49 57 101 57 49 54 49 49 98 50 56 49 34 125 44 34 97 98 97 54 54 102 50 48 45 49 98 49 48 45 52 54 98 54 45 98 51 102 49 45 53 99 56 101 51 97 54 101 56 53 55 97 34 58 34 98 51 52 55 51 57 54 101 45 97 56 97 52 45 52 52 50 55 45 98 100 53 97 45 97 56 100 48 100 99 53 53 57 97 99 53 34 125], :content-type "application/json", :content-length 184, :id "12eaf104-ce40-4268-a982-083f121005c8", :updated "2025-10-24T15:21:40.239212000Z"}, "81432fb4-3155-476e-a6a3-a0714a3f56b1" {:contents [123 34 110 97 109 101 34 58 34 55 99 97 50 50 101 55 54 45 49 56 53 52 45 52 53 50 97 45 98 49 102 53 45 57 55 98 49 101 97 102 99 48 54 101 97 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 102 101 101 98 53 101 98 98 45 53 50 99 99 45 52 52 98 56 45 57 101 48 56 45 56 98 52 56 100 101 56 97 49 55 57 102 34 125 44 34 56 53 55 100 57 100 51 52 45 52 102 53 50 45 52 55 57 97 45 57 100 55 48 45 54 54 102 54 98 54 55 53 102 54 53 97 34 58 34 99 55 99 101 100 56 51 56 45 52 99 53 57 45 52 54 49 56 45 97 48 52 52 45 49 50 49 99 48 100 50 55 53 55 49 99 34 125], :content-type "application/json", :content-length 184, :id "81432fb4-3155-476e-a6a3-a0714a3f56b1", :updated "2025-10-24T15:21:57.150077000Z"}, "22261f5c-2a1d-447f-bc0e-c0fe6397bff0" {:contents [123 34 110 97 109 101 34 58 34 55 52 97 102 51 52 48 55 45 57 51 48 50 45 52 99 57 57 45 56 53 56 53 45 56 49 50 54 54 99 48 50 57 99 98 55 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 101 52 98 56 100 98 53 51 45 99 50 55 101 45 52 57 101 52 45 98 51 102 99 45 97 49 56 56 48 98 99 51 52 55 48 54 34 125 44 34 55 52 54 98 97 100 56 98 45 50 97 102 51 45 52 99 57 57 45 98 53 49 99 45 51 54 98 100 55 56 48 55 55 99 102 56 34 58 34 98 51 98 57 99 101 49 55 45 48 52 48 98 45 52 53 53 100 45 97 100 48 52 45 52 55 102 52 97 102 97 50 50 101 100 55 34 125], :content-type "application/json", :content-length 184, :id "22261f5c-2a1d-447f-bc0e-c0fe6397bff0", :updated "2025-10-24T15:21:21.494574000Z"}}, "http://www.example.com/activityId/hashsete070d5fe-c117-4b8e-be8c-fd768b0642fe" {"abafc5e7-fe09-4159-a71c-40f6404da649" {:contents [123 34 110 97 109 101 34 58 34 99 101 49 52 97 51 50 97 45 98 100 56 97 45 52 49 54 57 45 97 97 52 57 45 99 100 99 51 100 48 48 55 56 51 99 98 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 57 56 100 53 101 52 57 55 45 98 101 55 49 45 52 52 101 101 45 56 55 53 55 45 99 52 50 50 51 48 56 53 48 102 98 98 34 125 44 34 49 48 53 48 101 54 51 56 45 54 97 97 51 45 52 49 102 57 45 98 102 48 102 45 55 100 48 50 49 49 57 99 98 49 102 51 34 58 34 99 97 50 102 55 55 102 100 45 52 53 99 98 45 52 100 98 57 45 57 99 102 48 45 101 49 52 50 53 100 54 97 98 49 101 100 34 125], :content-type "application/json", :content-length 184, :id "abafc5e7-fe09-4159-a71c-40f6404da649", :updated "2025-10-24T15:21:40.130223000Z"}}, ["http://www.example.com/activityId/hashset" {"objectType" "Agent", "account" {"homePage" "http://www.example.com/agentId/1", "name" "Rick James"}} "b54c60b9-5cff-46e0-a6ee-b95c3385ab93"] {"2ba189ae-f869-4b20-90b8-19fa6b3555f8" {:contents [123 34 110 97 109 101 34 58 34 49 98 56 53 55 99 53 102 45 52 49 97 101 45 52 49 52 56 45 98 102 54 56 45 52 56 52 57 50 51 101 102 101 50 57 50 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 49 52 102 54 101 99 57 48 45 55 57 52 100 45 52 97 100 52 45 56 53 54 97 45 100 54 97 54 55 49 99 55 50 99 56 101 34 125 44 34 51 98 50 55 102 56 53 56 45 98 100 51 100 45 52 56 54 50 45 56 56 56 102 45 97 52 54 50 48 102 98 57 101 49 99 53 34 58 34 50 51 99 57 49 50 101 102 45 53 56 55 99 45 52 102 99 99 45 97 102 52 51 45 52 49 53 102 100 56 99 57 56 57 97 101 34 125], :content-type "application/json", :content-length 184, :id "2ba189ae-f869-4b20-90b8-19fa6b3555f8", :registration "b54c60b9-5cff-46e0-a6ee-b95c3385ab93", :updated "2025-10-24T15:21:36.085410000Z"}}, ["http://www.example.com/activityId/hashset" {"objectType" "Agent", "account" {"homePage" "http://www.example.com/agentId/1", "name" "Rick James"}} "c340bc16-0aaf-4f06-b020-63ac85711a79"] {"0fa2bc55-3066-4682-9995-c0d8a0610c22" {:contents [123 34 110 97 109 101 34 58 34 98 50 56 49 55 49 51 50 45 54 97 99 50 45 52 50 98 100 45 57 55 52 51 45 98 57 99 51 98 57 99 57 55 102 51 51 34 44 34 108 111 99 97 116 105 111 110 34 58 123 34 110 97 109 101 34 58 34 48 98 101 97 56 98 52 50 45 98 98 100 57 45 52 100 100 56 45 98 53 50 101 45 101 98 54 97 55 102 53 101 57 52 100 99 34 125 44 34 97 100 98 101 48 54 48 54 45 56 48 48 50 45 52 53 49 48 45 57 57 97 99 45 52 101 99 57 56 55 51 57 99 51 102 51 34 58 34 52 100 51 51 97 52 55 102 45 100 56 51 57 45 52 97 48 54 45 56 97 99 55 45 54 101 97 102 101 100 99 102 102 52 52 97 34 125], :content-type "application/json", :content-length 184, :id "0fa2bc55-3066-4682-9995-c0d8a0610c22", :registration "c340bc16-0aaf-4f06-b020-63ac85711a79", :updated "2025-10-24T15:21:36.140393000Z"}}}} \ No newline at end of file diff --git a/src/lib/com/yetanalytics/xapipe.clj b/src/lib/com/yetanalytics/xapipe.clj index 08727b79..d3635e17 100644 --- a/src/lib/com/yetanalytics/xapipe.clj +++ b/src/lib/com/yetanalytics/xapipe.clj @@ -204,44 +204,59 @@ (a/statements resp)} - (catch Throwable ex - {:error ex})))) - (try {:statements (xapi/response->statements resp)} - (catch Throwable ex - {:error ex})))] - (if error - (a/>! stop-chan - {:status :error - :error {:message (ex-message error) - :type :job}}) - (a/! stop-chan - {:status :error - :error {:message (ex-message x) - :type :source}})) - (recur)) - (a/close! statement-chan)))) + (let [source-version (get-xapi-version config :source) + target-version (get-xapi-version config :target) + downgrade-version? (and (= "2.0.0" source-version) + (= "1.0.3" target-version))] + (when downgrade-version? + (log/warnf "Source version 2.0.0 and target version 1.0.3. Statements will be downgraded.")) + (a/go-loop [] + (if-let [[tag x] (a/statements resp)} + (catch Throwable ex + {:error ex})))) + (try {:statements (xapi/response->statements resp)} + (catch Throwable ex + {:error ex})))] + (if error + (a/>! stop-chan + {:status :error + :error {:message (ex-message error) + :type :job}}) + (a/> statements + downgrade-version? + (map xapi/convert-200-to-103)) + false)))) + :exception + (a/>! stop-chan + {:status :error + :error {:message (ex-message x) + :type :source}})) + (recur)) + (a/close! statement-chan))))) (defn- init-buffers [{{{source-batch-size :batch-size} :source @@ -291,29 +306,30 @@ conn-mgr-opts source-client-opts target-client-opts] - :or {conn-mgr-opts {} - source-client-opts {} - target-client-opts {}}} :client-opts - reporter :reporter - :or {reporter (metrics/->NoopReporter)}}] - (let [{:keys [id] + :or {conn-mgr-opts {} + source-client-opts {} + target-client-opts {}}} :client-opts + reporter :reporter + :or {reporter (metrics/->NoopReporter)}}] + (let [{:keys [id] {status-before :status cursor-before :cursor filter-before :filter - :as state-before} :state - {{:keys [poll-interval] + :as state-before} :state + {{:keys [poll-interval] {?query-since :since - :as get-params} :get-params - get-req-config :request-config - source-backoff-opts :backoff-opts - :as source-config} :source + :as get-params} :get-params + get-req-config :request-config + source-backoff-opts :backoff-opts + :as source-config} :source {target-batch-size :batch-size post-req-config :request-config target-backoff-opts :backoff-opts - :as target-config} :target - filter-config :filter - :keys [batch-timeout]} :config - :as job-before} + :as target-config} :target + filter-config :filter + :keys [batch-timeout] + :as config} :config + :as job-before} (update job :config config/ensure-defaults)] (case status-before :running (throw (ex-info "Job already running!" @@ -326,7 +342,7 @@ {:type ::cannot-start-completed :job job-before})) (let [;; Get a timestamp for the instant before initialization - init-stamp (t/now-stamp) + init-stamp (t/now-stamp) ;; The states channel emits the job as it runs states-chan (a/chan) @@ -336,32 +352,32 @@ batch-buffer cleanup-buffer]} (init-buffers job-before) ;; Http async conn pool + client - conn-mgr (or conn-mgr - (client/init-conn-mgr - conn-mgr-opts)) - source-client (or http-client - (client/init-client - conn-mgr source-client-opts)) - target-client (or http-client - (client/init-client - conn-mgr target-client-opts)) + conn-mgr (or conn-mgr + (client/init-conn-mgr + conn-mgr-opts)) + source-client (or http-client + (client/init-client + conn-mgr source-client-opts)) + target-client (or http-client + (client/init-client + conn-mgr target-client-opts)) stop-chan (a/promise-chan) stop-fn #(a/put! stop-chan {:status :paused}) ;; A channel for get responses - get-chan (a/chan get-buffer) + get-chan (a/chan get-buffer) ;; A channel that holds statements + attachments statement-chan (a/chan statement-buffer) ;; A channel for batches of statements to target - batch-chan (a/chan batch-buffer) + batch-chan (a/chan batch-buffer) ;; A channel to get dropped records - cleanup-chan (a/chan cleanup-buffer - ;; Will only pass records with attachments - (filter - (comp - not-empty - :attachments))) + cleanup-chan (a/chan cleanup-buffer + ;; Will only pass records with attachments + (filter + (comp + not-empty + :attachments))) ;; Cleanup loop deletes tempfiles from batch + post cloop (cleanup-loop cleanup-chan) @@ -382,12 +398,17 @@ :backoff-opts source-backoff-opts :conn-opts - {:conn-mgr conn-mgr + {:conn-mgr conn-mgr :http-client source-client} :reporter reporter) ;; Pipeline from get-chan to statement chan - sloop (statement-loop get-chan statement-chan stop-chan) + ;; Performs transformations when required + sloop (statement-loop + config + get-chan + statement-chan + stop-chan) ;; Batch + filter statements from statement chan to batch chan bloop (ua/batch-filter @@ -409,14 +430,14 @@ {:state (-> state-before (cond-> ;; If a job is paused, re-init - (= :paused (:status state-before)) + (= :paused (:status state-before)) (state/set-status :init)) (assoc :updated init-stamp))}) states-chan stop-chan batch-chan cleanup-chan - {:conn-mgr conn-mgr + {:conn-mgr conn-mgr :http-client target-client} reporter)] @@ -438,7 +459,7 @@ (a/close! states-chan)) ;; Return the state emitter and stop fn - {:states states-chan + {:states states-chan :stop-fn stop-fn})))) (s/fdef log-states diff --git a/src/lib/com/yetanalytics/xapipe/client.clj b/src/lib/com/yetanalytics/xapipe/client.clj index d2c9ed77..a060e164 100644 --- a/src/lib/com/yetanalytics/xapipe/client.clj +++ b/src/lib/com/yetanalytics/xapipe/client.clj @@ -354,7 +354,7 @@ (a/put! ret [:exception - (ex-info "Non-200 Request Status" + (ex-info (format "Non-200 Request Status %s" status) {:type ::request-fail :response resp})]))) (fn [exception] diff --git a/src/lib/com/yetanalytics/xapipe/xapi.clj b/src/lib/com/yetanalytics/xapipe/xapi.clj index fc1f6b5b..cad91f7a 100644 --- a/src/lib/com/yetanalytics/xapipe/xapi.clj +++ b/src/lib/com/yetanalytics/xapipe/xapi.clj @@ -198,11 +198,21 @@ (defn convert-200-to-103 "Convert a Statement from xAPI 2.0.0 to 1.0.3 by removing properties not in the 1.0.3 spec and normalizing timestamp." - [statement] + [{:keys [statement] :as smap}] (if (= "2.0.0" (get statement "version")) - (-> statement - (assoc "version" "1.0.0") - (update "timestamp" ensure-103-timestamp) - (cond-> (get statement "context") - (update "context" dissoc "contextAgents" "contextGroups"))) - statement)) + (assoc smap + :statement + (-> statement + (assoc "version" "1.0.0") + (update "timestamp" ensure-103-timestamp) + (update "stored" ensure-103-timestamp) + (cond-> + ;; remove new context stuff + (get statement "context") + (update "context" + dissoc "contextAgents" "contextGroups") + ;; from subs + (get-in statement ["object" "context"]) + (update-in ["object" "context"] + dissoc "contextAgents" "contextGroups")))) + smap)) diff --git a/src/test/com/yetanalytics/xapipe_test.clj b/src/test/com/yetanalytics/xapipe_test.clj index 3801bc2c..9540a87c 100644 --- a/src/test/com/yetanalytics/xapipe_test.clj +++ b/src/test/com/yetanalytics/xapipe_test.clj @@ -7,14 +7,15 @@ [com.yetanalytics.xapipe.store :as store] [com.yetanalytics.xapipe.store.impl.memory :as mem] [com.yetanalytics.xapipe.test-support :as sup] - [com.yetanalytics.xapipe.util.time :as t]) + [com.yetanalytics.xapipe.util.time :as t] + [xapi-schema.spec :as xs]) (:import [java.time Instant])) (use-fixtures :once (sup/instrument-fixture)) (deftest run-job-test (sup/with-running [source (sup/lrs - :seed-path "dev-resources/lrs/after_conf.edn") + :seed-path "dev-resources/lrs/after_conf_v1.edn") target (sup/lrs)] (testing "xapipe transfers conf test data from source to target" (is (= 453 (sup/lrs-count source))) @@ -124,7 +125,7 @@ (deftest run-job-target-error-test (sup/with-running [source (sup/lrs - :seed-path "dev-resources/lrs/after_conf.edn") + :seed-path "dev-resources/lrs/after_conf_v1.edn") target (sup/lrs)] (testing "xapipe bails on target error" (let [;; Bad source @@ -162,7 +163,7 @@ ;; This can be fixed with more stop-chan checks (deftest run-job-stop-test (sup/with-running [source (sup/lrs - :seed-path "dev-resources/lrs/after_conf.edn") + :seed-path "dev-resources/lrs/after_conf_v1.edn") target (sup/lrs)] (testing "xapipe can be stopped by the caller" (let [[since until] (sup/lrs-stored-range source) @@ -194,7 +195,7 @@ (deftest run-job-backpressure-test (sup/with-running [source (sup/lrs - :seed-path "dev-resources/lrs/after_conf.edn") + :seed-path "dev-resources/lrs/after_conf_v1.edn") target (sup/lrs)] (testing "xapipe only continues when states are taken" (let [[since until] (sup/lrs-stored-range source) @@ -225,7 +226,7 @@ (deftest store-states-test (sup/with-running [source (sup/lrs - :seed-path "dev-resources/lrs/after_conf.edn") + :seed-path "dev-resources/lrs/after_conf_v1.edn") target (sup/lrs)] (testing "xapipe stores job state in the given state store" (let [store (mem/new-store) @@ -259,7 +260,7 @@ (deftest resume-test (sup/with-running [source (sup/lrs - :seed-path "dev-resources/lrs/after_conf.edn") + :seed-path "dev-resources/lrs/after_conf_v1.edn") target (sup/lrs)] (testing "xapipe can resume a stopped job" (let [store (mem/new-store) @@ -430,3 +431,54 @@ {:path {:match-paths [[[["id"]] "not-an-id"]]}}})) + +(deftest version-downgrade-test + (binding [xs/*xapi-version* "2.0.0"] + (sup/with-running [source (sup/lrs + :seed-path "dev-resources/lrs/after_conf_v2.edn") + target (sup/lrs)] + (testing "xapipe transfers conf test data from 2.0.0 source to 1.0.3 target" + (is (= 468 (sup/lrs-count source))) + (let [[since until] (sup/lrs-stored-range source) + job-id (.toString (java.util.UUID/randomUUID)) + config {:source + {:request-config + {:url-base (format "http://0.0.0.0:%d" + (:port source)), + :xapi-prefix "/xapi", + :xapi-version "2.0.0"}, + :get-params + {:since since + :until until}}, + :target + {:request-config + {:url-base (format "http://0.0.0.0:%d" + (:port target)), + :xapi-prefix "/xapi", + :xapi-version "1.0.3"}}} + ;; Run the job + {:keys [job-id + job + states]} (init-run-job config) + + ;; Get all the states + all-states (a/ Date: Fri, 24 Oct 2025 15:38:15 -0400 Subject: [PATCH 12/18] remove nonsensical require an editor put there --- src/lib/com/yetanalytics/xapipe/job.clj | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib/com/yetanalytics/xapipe/job.clj b/src/lib/com/yetanalytics/xapipe/job.clj index 9375ba30..5cdb468c 100644 --- a/src/lib/com/yetanalytics/xapipe/job.clj +++ b/src/lib/com/yetanalytics/xapipe/job.clj @@ -6,8 +6,7 @@ [com.yetanalytics.xapipe.job.state :as state] [com.yetanalytics.xapipe.job.state.errors :as errors] [com.yetanalytics.xapipe.util.time :as t] - [xapi-schema.spec :as xs] - [com.yetanalytics.xapipe.job :as job])) + [xapi-schema.spec :as xs])) (def current-version 1) From d4f53195e11e588e6a7dce3ca52c7c90328266c4 Mon Sep 17 00:00:00 2001 From: Milton Reder Date: Fri, 24 Oct 2025 15:40:17 -0400 Subject: [PATCH 13/18] update logback --- deps.edn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.edn b/deps.edn index 674ad70d..3a2000de 100644 --- a/deps.edn +++ b/deps.edn @@ -42,7 +42,7 @@ com.yetanalytics/lrs {:mvn/version "1.4.1"} io.pedestal/pedestal.jetty {:mvn/version "0.5.9"} ;; Some integration tests use logback - ch.qos.logback/logback-classic {:mvn/version "1.5.15" + ch.qos.logback/logback-classic {:mvn/version "1.5.19" :exclusions [org.slf4j/slf4j-api]} org.slf4j/slf4j-api {:mvn/version "2.0.12"} org.slf4j/jul-to-slf4j {:mvn/version "2.0.12"} From 599904cb3a1b78dc35c3e80df3d7a675df0811b7 Mon Sep 17 00:00:00 2001 From: Milton Reder Date: Fri, 24 Oct 2025 15:46:22 -0400 Subject: [PATCH 14/18] add new options to docs --- doc/options.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/options.md b/doc/options.md index b97e295b..dc12583c 100644 --- a/doc/options.md +++ b/doc/options.md @@ -36,6 +36,7 @@ All options: --json JSON Take a job specification as a JSON string --json-file FILE Take a job specification from a JSON file --json-out FILE Write JOB to a JSON file + --[no-]upgrade Automatically upgrade jobs to the latest version -s, --storage STORAGE :file Select storage backend, file (default), redis or noop, mem is for testing only --redis-uri URI redis://0.0.0.0:6379 Redis Connection URI --redis-prefix PREFIX xapipe Redis key prefix @@ -48,6 +49,7 @@ All options: -p, --xapi-get-param KEY=VALUE {} xAPI GET Parameters --source-username USERNAME Source LRS BASIC Auth username --source-password PASSWORD Source LRS BASIC Auth password + --source-xapi-version VERSION 1.0.3 Source LRS xAPI Version --json-only Only operate in JSON statement mode for data transfer, ignoring Attachments/multipart (for compatibility issues) --source-auth-uri URI Source LRS OAuth autentication URI --source-client-id ID Source LRS OAuth client ID @@ -62,6 +64,7 @@ All options: --target-batch-size SIZE 50 Target LRS POST desired batch size --target-username USERNAME Target LRS BASIC Auth username --target-password PASSWORD Target LRS BASIC Auth password + --target-xapi-version VERSION 1.0.3 Target LRS xAPI Version --target-auth-uri URI Target LRS OAuth autentication URI --target-client-id ID Target LRS OAuth client ID --target-client-secret SECRET Target LRS OAuth client secret From 05b5c76f32d5f1a228a7e3a677050644717e4144 Mon Sep 17 00:00:00 2001 From: Milton Reder Date: Fri, 24 Oct 2025 15:50:52 -0400 Subject: [PATCH 15/18] xapi version doc --- README.md | 1 + doc/index.md | 1 + doc/xapi_version.md | 7 +++++++ 3 files changed, 9 insertions(+) create mode 100644 doc/xapi_version.md diff --git a/README.md b/README.md index fcd735ca..f798ae23 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ For releases and release notes, see the [Releases](https://github.com/yetanalyti - [Docker Container](doc/docker.md) - [Demo](doc/demo.md) - [Sample AWS Deployment](doc/aws.md) +- [xAPI Version Support](doc/xapi_version.md) ## Contribution diff --git a/doc/index.md b/doc/index.md index e994a4df..12854b36 100644 --- a/doc/index.md +++ b/doc/index.md @@ -16,3 +16,4 @@ This process is one-way and any statements in the target LRS will not be replica - [Docker Container](docker.md) - [Demo](demo.md) - [Sample AWS Deployment](aws.md) +- [xAPI Version Support](xapi_version.md) diff --git a/doc/xapi_version.md b/doc/xapi_version.md new file mode 100644 index 00000000..d29c4b03 --- /dev/null +++ b/doc/xapi_version.md @@ -0,0 +1,7 @@ +[<- Back to Index](index.md) + +# xAPI Version Support + +As of v0.0.34 LRSPipe supports xAPI versions 1.0.3 and 2.0.0 using the `--source-xapi-version` and `--target-xapi-version` arguments. Note that when transferring statements from a 2.0.0 LRS to a 1.0.3 LRS statements will be downgraded to pass compatibility checks. + +[<- Back to Index](index.md) From 29bfa85513b1783a815a011a2505eb8828ec17da Mon Sep 17 00:00:00 2001 From: Milton Reder Date: Mon, 3 Nov 2025 11:30:43 -0500 Subject: [PATCH 16/18] clarify doc --- doc/options.md | 2 +- src/cli/com/yetanalytics/xapipe/cli/options.clj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/options.md b/doc/options.md index dc12583c..e42a8a18 100644 --- a/doc/options.md +++ b/doc/options.md @@ -36,7 +36,7 @@ All options: --json JSON Take a job specification as a JSON string --json-file FILE Take a job specification from a JSON file --json-out FILE Write JOB to a JSON file - --[no-]upgrade Automatically upgrade jobs to the latest version + --[no-]upgrade Automatically upgrade jobs to the latest version (defaults to true) -s, --storage STORAGE :file Select storage backend, file (default), redis or noop, mem is for testing only --redis-uri URI redis://0.0.0.0:6379 Redis Connection URI --redis-prefix PREFIX xapipe Redis key prefix diff --git a/src/cli/com/yetanalytics/xapipe/cli/options.clj b/src/cli/com/yetanalytics/xapipe/cli/options.clj index d7ca3dc4..9e8ae9b1 100644 --- a/src/cli/com/yetanalytics/xapipe/cli/options.clj +++ b/src/cli/com/yetanalytics/xapipe/cli/options.clj @@ -157,7 +157,7 @@ slurp job-json/json->job))] [nil "--json-out FILE" "Write JOB to a JSON file"] - [nil "--[no-]upgrade" "Automatically upgrade jobs to the latest version" + [nil "--[no-]upgrade" "Automatically upgrade jobs to the latest version (defaults to true)" :id :upgrade-jobs :default true]] (concat storage-options From 742327182734a463e5ca54c8c6b2e59a3405c65a Mon Sep 17 00:00:00 2001 From: Milton Reder Date: Tue, 4 Nov 2025 10:34:02 -0500 Subject: [PATCH 17/18] downgrade any 2.0.0 statements going to an LRS with 1.0.3 --- src/lib/com/yetanalytics/xapipe.clj | 6 +- src/test/com/yetanalytics/xapipe_test.clj | 133 ++++++++++++++-------- 2 files changed, 88 insertions(+), 51 deletions(-) diff --git a/src/lib/com/yetanalytics/xapipe.clj b/src/lib/com/yetanalytics/xapipe.clj index d3635e17..40c583bd 100644 --- a/src/lib/com/yetanalytics/xapipe.clj +++ b/src/lib/com/yetanalytics/xapipe.clj @@ -216,10 +216,8 @@ stop-chan] (let [source-version (get-xapi-version config :source) target-version (get-xapi-version config :target) - downgrade-version? (and (= "2.0.0" source-version) - (= "1.0.3" target-version))] - (when downgrade-version? - (log/warnf "Source version 2.0.0 and target version 1.0.3. Statements will be downgraded.")) + ;; downgrade all statements to 1.0.0 + downgrade-version? (= "1.0.3" target-version)] (a/go-loop [] (if-let [[tag x] (a/ Date: Tue, 4 Nov 2025 10:47:55 -0500 Subject: [PATCH 18/18] improve xapi version doc --- doc/xapi_version.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/xapi_version.md b/doc/xapi_version.md index d29c4b03..0db481d5 100644 --- a/doc/xapi_version.md +++ b/doc/xapi_version.md @@ -2,6 +2,13 @@ # xAPI Version Support -As of v0.0.34 LRSPipe supports xAPI versions 1.0.3 and 2.0.0 using the `--source-xapi-version` and `--target-xapi-version` arguments. Note that when transferring statements from a 2.0.0 LRS to a 1.0.3 LRS statements will be downgraded to pass compatibility checks. +As of v0.0.34 LRSPipe supports xAPI versions 1.0.3 and 2.0.0 using the `--source-xapi-version` and `--target-xapi-version` arguments. To pass validation checks LRSPipe must sometimes downgrade statement data to move it between LRS instances. Refer to the table below for more information: + +| version | 1.0.3 target | 2.0.0 target | +|--------------|-------------------------------|--------------| +| 1.0.3 source | 2.0.0 data will be downgraded | no change | +| 2.0.0 source | 2.0.0 data will be downgraded | no change | + +Note that even when using version 1.0.3 for both source and target (the default) downgrading may occur if 2.0.0 data is present on the 1.0.3 LRS. To ensure 2.0.0 data like `$.context.contextAgents` is always preserved use the `--target-xapi-version 2.0.0` argument. [<- Back to Index](index.md)