Load big JSON file added by verzit on Mon Sep 26 13:29:18 2022

(import json)

(define (load-json filename)
  (with-input-from-file filename json-read))

;; JSON file is around 10 MB
(define BIGJSON (load-json "./bigjsonfile.json"))