unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
From: Taylan Kammer <taylan.kammer@gmail.com>
To: Sarah Morgensen <iskarian@mgsn.dev>
Cc: 50349@debbugs.gnu.org
Subject: bug#50349: [PATCH] packages: Add 'define-package' syntax.
Date: Sat, 4 Sep 2021 23:01:07 +0200	[thread overview]
Message-ID: <5e71792b-ac49-65db-13f0-e06fbcbdec1f@gmail.com> (raw)
In-Reply-To: <86v93gjhps.fsf@mgsn.dev>

[-- Attachment #1: Type: text/plain, Size: 1763 bytes --]

On 04.09.2021 20:53, Sarah Morgensen wrote:

> 
> If you were really interested, I suppose you could test with compilation
> optimization off, but I'd be more interested in the performance impact
> with (guix packages) imported.
> 
> --
> Sarah
> 

Good questions.  Let's see.  Caching shouldn't be an issue by the way since
I always time a command several times and make sure it's consistent.

With -O0 and -O1, both files take a negligible amount of time to compile,
approximately 0.25s and 0.3s.  A difference of 0.5s for 512 packages means
about 0.001s per package, which at 100K packages would be 100s.

That's without importing (guix packages) though.  When I import it, then
at -O0 and -O1 (I think these are equivalent), the define-packages one
takes about 3.8s and the regular one about 3.5s.  So the difference has
actually shrunk down to about 0.3s now.

With (guix packages) and no special optimization flag, the define-packages
one takes about 26s, and the regular one still shows the strange behavior
where the time explodes to over a minute.

If I remember correctly though, Guix uses -O1 to compile packages anyway.

So all in all I *think* we can say that the macro induces no important
performance hit.  (And could for some reason significantly improve it if
we compile a large chunk of packages on -O2...)

One thing I should note though is that I'm using a top-of-the-line typical
consumer CPU (Ryzen 9 3900X) so on an older machine, or a CPU brand that
puts more value into freedom and security than performance, the results
may be different.  I still doubt that the impact would be big.

Attached are new scm files since I had to add some fields to make sure
the package macro from (guix packages) doesn't abort the compilation.

-- 
Taylan

[-- Attachment #2: test1.scm --]
[-- Type: text/plain, Size: 86888 bytes --]

(define-module (test1))

(use-modules (guix packages))

(define-syntax define-package
  (lambda (stx)
    (syntax-case stx ()
      ((_ <name>
          (<field> <value> ...)
          ...)
       (if (memq 'name (map syntax->datum #'(<field> ...)))
           #'(define-public <name>
               (package
                (<field> <value> ...)
                ...))
           #`(define-public <name>
               (package
                (name #,(symbol->string (syntax->datum #'<name>)))
                (<field> <value> ...)
                ...)))))))

(define-package p0
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p1
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p2
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p3
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p4
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p5
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p6
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p7
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p8
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p9
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p10
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p11
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p12
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p13
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p14
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p15
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p16
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p17
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p18
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p19
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p20
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p21
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p22
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p23
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p24
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p25
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p26
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p27
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p28
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p29
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p30
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p31
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p32
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p33
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p34
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p35
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p36
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p37
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p38
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p39
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p40
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p41
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p42
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p43
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p44
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p45
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p46
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p47
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p48
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p49
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p50
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p51
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p52
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p53
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p54
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p55
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p56
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p57
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p58
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p59
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p60
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p61
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p62
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p63
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p64
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p65
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p66
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p67
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p68
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p69
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p70
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p71
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p72
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p73
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p74
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p75
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p76
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p77
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p78
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p79
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p80
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p81
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p82
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p83
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p84
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p85
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p86
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p87
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p88
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p89
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p90
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p91
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p92
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p93
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p94
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p95
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p96
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p97
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p98
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p99
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p100
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p101
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p102
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p103
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p104
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p105
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p106
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p107
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p108
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p109
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p110
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p111
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p112
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p113
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p114
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p115
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p116
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p117
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p118
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p119
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p120
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p121
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p122
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p123
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p124
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p125
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p126
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p127
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p128
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p129
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p130
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p131
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p132
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p133
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p134
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p135
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p136
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p137
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p138
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p139
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p140
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p141
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p142
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p143
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p144
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p145
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p146
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p147
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p148
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p149
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p150
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p151
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p152
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p153
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p154
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p155
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p156
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p157
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p158
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p159
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p160
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p161
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p162
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p163
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p164
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p165
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p166
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p167
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p168
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p169
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p170
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p171
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p172
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p173
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p174
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p175
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p176
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p177
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p178
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p179
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p180
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p181
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p182
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p183
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p184
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p185
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p186
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p187
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p188
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p189
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p190
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p191
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p192
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p193
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p194
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p195
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p196
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p197
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p198
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p199
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p200
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p201
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p202
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p203
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p204
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p205
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p206
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p207
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p208
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p209
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p210
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p211
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p212
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p213
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p214
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p215
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p216
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p217
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p218
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p219
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p220
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p221
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p222
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p223
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p224
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p225
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p226
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p227
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p228
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p229
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p230
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p231
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p232
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p233
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p234
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p235
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p236
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p237
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p238
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p239
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p240
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p241
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p242
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p243
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p244
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p245
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p246
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p247
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p248
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p249
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p250
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p251
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p252
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p253
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p254
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package p255
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r0
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r1
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r2
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r3
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r4
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r5
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r6
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r7
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r8
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r9
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r10
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r11
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r12
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r13
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r14
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r15
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r16
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r17
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r18
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r19
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r20
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r21
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r22
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r23
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r24
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r25
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r26
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r27
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r28
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r29
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r30
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r31
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r32
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r33
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r34
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r35
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r36
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r37
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r38
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r39
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r40
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r41
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r42
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r43
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r44
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r45
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r46
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r47
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r48
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r49
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r50
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r51
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r52
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r53
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r54
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r55
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r56
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r57
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r58
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r59
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r60
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r61
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r62
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r63
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r64
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r65
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r66
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r67
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r68
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r69
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r70
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r71
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r72
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r73
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r74
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r75
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r76
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r77
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r78
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r79
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r80
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r81
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r82
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r83
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r84
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r85
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r86
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r87
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r88
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r89
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r90
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r91
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r92
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r93
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r94
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r95
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r96
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r97
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r98
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r99
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r100
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r101
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r102
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r103
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r104
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r105
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r106
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r107
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r108
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r109
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r110
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r111
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r112
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r113
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r114
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r115
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r116
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r117
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r118
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r119
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r120
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r121
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r122
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r123
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r124
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r125
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r126
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r127
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r128
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r129
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r130
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r131
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r132
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r133
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r134
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r135
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r136
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r137
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r138
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r139
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r140
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r141
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r142
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r143
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r144
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r145
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r146
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r147
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r148
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r149
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r150
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r151
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r152
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r153
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r154
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r155
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r156
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r157
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r158
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r159
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r160
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r161
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r162
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r163
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r164
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r165
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r166
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r167
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r168
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r169
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r170
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r171
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r172
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r173
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r174
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r175
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r176
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r177
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r178
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r179
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r180
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r181
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r182
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r183
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r184
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r185
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r186
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r187
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r188
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r189
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r190
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r191
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r192
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r193
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r194
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r195
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r196
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r197
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r198
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r199
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r200
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r201
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r202
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r203
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r204
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r205
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r206
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r207
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r208
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r209
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r210
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r211
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r212
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r213
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r214
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r215
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r216
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r217
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r218
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r219
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r220
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r221
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r222
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r223
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r224
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r225
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r226
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r227
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r228
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r229
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r230
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r231
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r232
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r233
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r234
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r235
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r236
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r237
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r238
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r239
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r240
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r241
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r242
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r243
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r244
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r245
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r246
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r247
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r248
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r249
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r250
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r251
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r252
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r253
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r254
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

(define-package r255
  (source #f)
  (build-system #f)
  (license #f)
  (home-page #f)
  (version "1.0")
  (synopsis "test")
  (description "blah blah blah"))

[-- Attachment #3: test2.scm --]
[-- Type: text/plain, Size: 109186 bytes --]

(define-module (test2))

(use-modules (guix packages))

(define-public p0
  (package
    (name "p0")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p1
  (package
    (name "p1")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p2
  (package
    (name "p2")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p3
  (package
    (name "p3")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p4
  (package
    (name "p4")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p5
  (package
    (name "p5")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p6
  (package
    (name "p6")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p7
  (package
    (name "p7")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p8
  (package
    (name "p8")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p9
  (package
    (name "p9")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p10
  (package
    (name "p10")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p11
  (package
    (name "p11")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p12
  (package
    (name "p12")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p13
  (package
    (name "p13")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p14
  (package
    (name "p14")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p15
  (package
    (name "p15")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p16
  (package
    (name "p16")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p17
  (package
    (name "p17")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p18
  (package
    (name "p18")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p19
  (package
    (name "p19")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p20
  (package
    (name "p20")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p21
  (package
    (name "p21")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p22
  (package
    (name "p22")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p23
  (package
    (name "p23")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p24
  (package
    (name "p24")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p25
  (package
    (name "p25")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p26
  (package
    (name "p26")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p27
  (package
    (name "p27")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p28
  (package
    (name "p28")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p29
  (package
    (name "p29")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p30
  (package
    (name "p30")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p31
  (package
    (name "p31")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p32
  (package
    (name "p32")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p33
  (package
    (name "p33")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p34
  (package
    (name "p34")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p35
  (package
    (name "p35")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p36
  (package
    (name "p36")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p37
  (package
    (name "p37")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p38
  (package
    (name "p38")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p39
  (package
    (name "p39")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p40
  (package
    (name "p40")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p41
  (package
    (name "p41")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p42
  (package
    (name "p42")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p43
  (package
    (name "p43")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p44
  (package
    (name "p44")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p45
  (package
    (name "p45")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p46
  (package
    (name "p46")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p47
  (package
    (name "p47")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p48
  (package
    (name "p48")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p49
  (package
    (name "p49")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p50
  (package
    (name "p50")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p51
  (package
    (name "p51")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p52
  (package
    (name "p52")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p53
  (package
    (name "p53")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p54
  (package
    (name "p54")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p55
  (package
    (name "p55")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p56
  (package
    (name "p56")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p57
  (package
    (name "p57")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p58
  (package
    (name "p58")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p59
  (package
    (name "p59")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p60
  (package
    (name "p60")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p61
  (package
    (name "p61")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p62
  (package
    (name "p62")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p63
  (package
    (name "p63")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p64
  (package
    (name "p64")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p65
  (package
    (name "p65")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p66
  (package
    (name "p66")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p67
  (package
    (name "p67")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p68
  (package
    (name "p68")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p69
  (package
    (name "p69")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p70
  (package
    (name "p70")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p71
  (package
    (name "p71")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p72
  (package
    (name "p72")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p73
  (package
    (name "p73")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p74
  (package
    (name "p74")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p75
  (package
    (name "p75")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p76
  (package
    (name "p76")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p77
  (package
    (name "p77")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p78
  (package
    (name "p78")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p79
  (package
    (name "p79")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p80
  (package
    (name "p80")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p81
  (package
    (name "p81")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p82
  (package
    (name "p82")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p83
  (package
    (name "p83")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p84
  (package
    (name "p84")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p85
  (package
    (name "p85")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p86
  (package
    (name "p86")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p87
  (package
    (name "p87")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p88
  (package
    (name "p88")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p89
  (package
    (name "p89")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p90
  (package
    (name "p90")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p91
  (package
    (name "p91")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p92
  (package
    (name "p92")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p93
  (package
    (name "p93")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p94
  (package
    (name "p94")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p95
  (package
    (name "p95")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p96
  (package
    (name "p96")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p97
  (package
    (name "p97")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p98
  (package
    (name "p98")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p99
  (package
    (name "p99")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p100
  (package
    (name "p100")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p101
  (package
    (name "p101")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p102
  (package
    (name "p102")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p103
  (package
    (name "p103")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p104
  (package
    (name "p104")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p105
  (package
    (name "p105")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p106
  (package
    (name "p106")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p107
  (package
    (name "p107")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p108
  (package
    (name "p108")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p109
  (package
    (name "p109")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p110
  (package
    (name "p110")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p111
  (package
    (name "p111")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p112
  (package
    (name "p112")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p113
  (package
    (name "p113")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p114
  (package
    (name "p114")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p115
  (package
    (name "p115")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p116
  (package
    (name "p116")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p117
  (package
    (name "p117")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p118
  (package
    (name "p118")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p119
  (package
    (name "p119")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p120
  (package
    (name "p120")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p121
  (package
    (name "p121")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p122
  (package
    (name "p122")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p123
  (package
    (name "p123")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p124
  (package
    (name "p124")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p125
  (package
    (name "p125")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p126
  (package
    (name "p126")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p127
  (package
    (name "p127")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p128
  (package
    (name "p128")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p129
  (package
    (name "p129")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p130
  (package
    (name "p130")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p131
  (package
    (name "p131")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p132
  (package
    (name "p132")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p133
  (package
    (name "p133")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p134
  (package
    (name "p134")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p135
  (package
    (name "p135")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p136
  (package
    (name "p136")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p137
  (package
    (name "p137")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p138
  (package
    (name "p138")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p139
  (package
    (name "p139")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p140
  (package
    (name "p140")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p141
  (package
    (name "p141")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p142
  (package
    (name "p142")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p143
  (package
    (name "p143")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p144
  (package
    (name "p144")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p145
  (package
    (name "p145")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p146
  (package
    (name "p146")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p147
  (package
    (name "p147")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p148
  (package
    (name "p148")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p149
  (package
    (name "p149")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p150
  (package
    (name "p150")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p151
  (package
    (name "p151")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p152
  (package
    (name "p152")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p153
  (package
    (name "p153")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p154
  (package
    (name "p154")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p155
  (package
    (name "p155")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p156
  (package
    (name "p156")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p157
  (package
    (name "p157")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p158
  (package
    (name "p158")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p159
  (package
    (name "p159")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p160
  (package
    (name "p160")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p161
  (package
    (name "p161")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p162
  (package
    (name "p162")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p163
  (package
    (name "p163")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p164
  (package
    (name "p164")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p165
  (package
    (name "p165")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p166
  (package
    (name "p166")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p167
  (package
    (name "p167")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p168
  (package
    (name "p168")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p169
  (package
    (name "p169")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p170
  (package
    (name "p170")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p171
  (package
    (name "p171")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p172
  (package
    (name "p172")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p173
  (package
    (name "p173")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p174
  (package
    (name "p174")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p175
  (package
    (name "p175")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p176
  (package
    (name "p176")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p177
  (package
    (name "p177")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p178
  (package
    (name "p178")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p179
  (package
    (name "p179")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p180
  (package
    (name "p180")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p181
  (package
    (name "p181")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p182
  (package
    (name "p182")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p183
  (package
    (name "p183")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p184
  (package
    (name "p184")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p185
  (package
    (name "p185")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p186
  (package
    (name "p186")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p187
  (package
    (name "p187")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p188
  (package
    (name "p188")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p189
  (package
    (name "p189")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p190
  (package
    (name "p190")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p191
  (package
    (name "p191")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p192
  (package
    (name "p192")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p193
  (package
    (name "p193")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p194
  (package
    (name "p194")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p195
  (package
    (name "p195")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p196
  (package
    (name "p196")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p197
  (package
    (name "p197")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p198
  (package
    (name "p198")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p199
  (package
    (name "p199")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p200
  (package
    (name "p200")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p201
  (package
    (name "p201")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p202
  (package
    (name "p202")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p203
  (package
    (name "p203")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p204
  (package
    (name "p204")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p205
  (package
    (name "p205")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p206
  (package
    (name "p206")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p207
  (package
    (name "p207")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p208
  (package
    (name "p208")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p209
  (package
    (name "p209")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p210
  (package
    (name "p210")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p211
  (package
    (name "p211")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p212
  (package
    (name "p212")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p213
  (package
    (name "p213")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p214
  (package
    (name "p214")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p215
  (package
    (name "p215")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p216
  (package
    (name "p216")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p217
  (package
    (name "p217")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p218
  (package
    (name "p218")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p219
  (package
    (name "p219")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p220
  (package
    (name "p220")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p221
  (package
    (name "p221")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p222
  (package
    (name "p222")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p223
  (package
    (name "p223")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p224
  (package
    (name "p224")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p225
  (package
    (name "p225")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p226
  (package
    (name "p226")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p227
  (package
    (name "p227")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p228
  (package
    (name "p228")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p229
  (package
    (name "p229")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p230
  (package
    (name "p230")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p231
  (package
    (name "p231")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p232
  (package
    (name "p232")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p233
  (package
    (name "p233")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p234
  (package
    (name "p234")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p235
  (package
    (name "p235")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p236
  (package
    (name "p236")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p237
  (package
    (name "p237")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p238
  (package
    (name "p238")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p239
  (package
    (name "p239")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p240
  (package
    (name "p240")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p241
  (package
    (name "p241")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p242
  (package
    (name "p242")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p243
  (package
    (name "p243")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p244
  (package
    (name "p244")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p245
  (package
    (name "p245")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p246
  (package
    (name "p246")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p247
  (package
    (name "p247")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p248
  (package
    (name "p248")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p249
  (package
    (name "p249")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p250
  (package
    (name "p250")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p251
  (package
    (name "p251")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p252
  (package
    (name "p252")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p253
  (package
    (name "p253")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p254
  (package
    (name "p254")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public p255
  (package
    (name "p255")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r0
  (package
    (name "p0")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r1
  (package
    (name "p1")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r2
  (package
    (name "p2")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r3
  (package
    (name "p3")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r4
  (package
    (name "p4")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r5
  (package
    (name "p5")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r6
  (package
    (name "p6")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r7
  (package
    (name "p7")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r8
  (package
    (name "p8")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r9
  (package
    (name "p9")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r10
  (package
    (name "p10")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r11
  (package
    (name "p11")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r12
  (package
    (name "p12")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r13
  (package
    (name "p13")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r14
  (package
    (name "p14")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r15
  (package
    (name "p15")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r16
  (package
    (name "p16")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r17
  (package
    (name "p17")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r18
  (package
    (name "p18")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r19
  (package
    (name "p19")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r20
  (package
    (name "p20")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r21
  (package
    (name "p21")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r22
  (package
    (name "p22")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r23
  (package
    (name "p23")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r24
  (package
    (name "p24")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r25
  (package
    (name "p25")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r26
  (package
    (name "p26")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r27
  (package
    (name "p27")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r28
  (package
    (name "p28")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r29
  (package
    (name "p29")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r30
  (package
    (name "p30")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r31
  (package
    (name "p31")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r32
  (package
    (name "p32")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r33
  (package
    (name "p33")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r34
  (package
    (name "p34")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r35
  (package
    (name "p35")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r36
  (package
    (name "p36")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r37
  (package
    (name "p37")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r38
  (package
    (name "p38")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r39
  (package
    (name "p39")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r40
  (package
    (name "p40")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r41
  (package
    (name "p41")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r42
  (package
    (name "p42")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r43
  (package
    (name "p43")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r44
  (package
    (name "p44")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r45
  (package
    (name "p45")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r46
  (package
    (name "p46")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r47
  (package
    (name "p47")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r48
  (package
    (name "p48")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r49
  (package
    (name "p49")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r50
  (package
    (name "p50")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r51
  (package
    (name "p51")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r52
  (package
    (name "p52")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r53
  (package
    (name "p53")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r54
  (package
    (name "p54")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r55
  (package
    (name "p55")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r56
  (package
    (name "p56")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r57
  (package
    (name "p57")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r58
  (package
    (name "p58")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r59
  (package
    (name "p59")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r60
  (package
    (name "p60")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r61
  (package
    (name "p61")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r62
  (package
    (name "p62")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r63
  (package
    (name "p63")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r64
  (package
    (name "p64")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r65
  (package
    (name "p65")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r66
  (package
    (name "p66")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r67
  (package
    (name "p67")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r68
  (package
    (name "p68")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r69
  (package
    (name "p69")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r70
  (package
    (name "p70")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r71
  (package
    (name "p71")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r72
  (package
    (name "p72")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r73
  (package
    (name "p73")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r74
  (package
    (name "p74")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r75
  (package
    (name "p75")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r76
  (package
    (name "p76")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r77
  (package
    (name "p77")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r78
  (package
    (name "p78")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r79
  (package
    (name "p79")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r80
  (package
    (name "p80")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r81
  (package
    (name "p81")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r82
  (package
    (name "p82")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r83
  (package
    (name "p83")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r84
  (package
    (name "p84")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r85
  (package
    (name "p85")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r86
  (package
    (name "p86")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r87
  (package
    (name "p87")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r88
  (package
    (name "p88")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r89
  (package
    (name "p89")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r90
  (package
    (name "p90")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r91
  (package
    (name "p91")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r92
  (package
    (name "p92")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r93
  (package
    (name "p93")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r94
  (package
    (name "p94")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r95
  (package
    (name "p95")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r96
  (package
    (name "p96")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r97
  (package
    (name "p97")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r98
  (package
    (name "p98")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r99
  (package
    (name "p99")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r100
  (package
    (name "p100")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r101
  (package
    (name "p101")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r102
  (package
    (name "p102")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r103
  (package
    (name "p103")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r104
  (package
    (name "p104")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r105
  (package
    (name "p105")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r106
  (package
    (name "p106")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r107
  (package
    (name "p107")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r108
  (package
    (name "p108")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r109
  (package
    (name "p109")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r110
  (package
    (name "p110")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r111
  (package
    (name "p111")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r112
  (package
    (name "p112")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r113
  (package
    (name "p113")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r114
  (package
    (name "p114")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r115
  (package
    (name "p115")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r116
  (package
    (name "p116")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r117
  (package
    (name "p117")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r118
  (package
    (name "p118")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r119
  (package
    (name "p119")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r120
  (package
    (name "p120")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r121
  (package
    (name "p121")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r122
  (package
    (name "p122")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r123
  (package
    (name "p123")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r124
  (package
    (name "p124")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r125
  (package
    (name "p125")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r126
  (package
    (name "p126")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r127
  (package
    (name "p127")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r128
  (package
    (name "p128")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r129
  (package
    (name "p129")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r130
  (package
    (name "p130")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r131
  (package
    (name "p131")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r132
  (package
    (name "p132")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r133
  (package
    (name "p133")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r134
  (package
    (name "p134")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r135
  (package
    (name "p135")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r136
  (package
    (name "p136")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r137
  (package
    (name "p137")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r138
  (package
    (name "p138")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r139
  (package
    (name "p139")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r140
  (package
    (name "p140")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r141
  (package
    (name "p141")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r142
  (package
    (name "p142")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r143
  (package
    (name "p143")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r144
  (package
    (name "p144")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r145
  (package
    (name "p145")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r146
  (package
    (name "p146")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r147
  (package
    (name "p147")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r148
  (package
    (name "p148")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r149
  (package
    (name "p149")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r150
  (package
    (name "p150")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r151
  (package
    (name "p151")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r152
  (package
    (name "p152")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r153
  (package
    (name "p153")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r154
  (package
    (name "p154")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r155
  (package
    (name "p155")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r156
  (package
    (name "p156")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r157
  (package
    (name "p157")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r158
  (package
    (name "p158")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r159
  (package
    (name "p159")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r160
  (package
    (name "p160")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r161
  (package
    (name "p161")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r162
  (package
    (name "p162")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r163
  (package
    (name "p163")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r164
  (package
    (name "p164")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r165
  (package
    (name "p165")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r166
  (package
    (name "p166")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r167
  (package
    (name "p167")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r168
  (package
    (name "p168")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r169
  (package
    (name "p169")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r170
  (package
    (name "p170")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r171
  (package
    (name "p171")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r172
  (package
    (name "p172")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r173
  (package
    (name "p173")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r174
  (package
    (name "p174")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r175
  (package
    (name "p175")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r176
  (package
    (name "p176")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r177
  (package
    (name "p177")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r178
  (package
    (name "p178")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r179
  (package
    (name "p179")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r180
  (package
    (name "p180")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r181
  (package
    (name "p181")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r182
  (package
    (name "p182")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r183
  (package
    (name "p183")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r184
  (package
    (name "p184")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r185
  (package
    (name "p185")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r186
  (package
    (name "p186")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r187
  (package
    (name "p187")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r188
  (package
    (name "p188")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r189
  (package
    (name "p189")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r190
  (package
    (name "p190")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r191
  (package
    (name "p191")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r192
  (package
    (name "p192")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r193
  (package
    (name "p193")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r194
  (package
    (name "p194")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r195
  (package
    (name "p195")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r196
  (package
    (name "p196")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r197
  (package
    (name "p197")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r198
  (package
    (name "p198")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r199
  (package
    (name "p199")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r200
  (package
    (name "p200")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r201
  (package
    (name "p201")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r202
  (package
    (name "p202")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r203
  (package
    (name "p203")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r204
  (package
    (name "p204")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r205
  (package
    (name "p205")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r206
  (package
    (name "p206")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r207
  (package
    (name "p207")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r208
  (package
    (name "p208")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r209
  (package
    (name "p209")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r210
  (package
    (name "p210")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r211
  (package
    (name "p211")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r212
  (package
    (name "p212")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r213
  (package
    (name "p213")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r214
  (package
    (name "p214")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r215
  (package
    (name "p215")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r216
  (package
    (name "p216")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r217
  (package
    (name "p217")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r218
  (package
    (name "p218")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r219
  (package
    (name "p219")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r220
  (package
    (name "p220")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r221
  (package
    (name "p221")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r222
  (package
    (name "p222")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r223
  (package
    (name "p223")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r224
  (package
    (name "p224")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r225
  (package
    (name "p225")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r226
  (package
    (name "p226")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r227
  (package
    (name "p227")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r228
  (package
    (name "p228")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r229
  (package
    (name "p229")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r230
  (package
    (name "p230")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r231
  (package
    (name "p231")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r232
  (package
    (name "p232")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r233
  (package
    (name "p233")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r234
  (package
    (name "p234")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r235
  (package
    (name "p235")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r236
  (package
    (name "p236")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r237
  (package
    (name "p237")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r238
  (package
    (name "p238")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r239
  (package
    (name "p239")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r240
  (package
    (name "p240")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r241
  (package
    (name "p241")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r242
  (package
    (name "p242")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r243
  (package
    (name "p243")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r244
  (package
    (name "p244")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r245
  (package
    (name "p245")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r246
  (package
    (name "p246")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r247
  (package
    (name "p247")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r248
  (package
    (name "p248")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r249
  (package
    (name "p249")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r250
  (package
    (name "p250")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r251
  (package
    (name "p251")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r252
  (package
    (name "p252")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r253
  (package
    (name "p253")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r254
  (package
    (name "p254")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

(define-public r255
  (package
    (name "p255")
    (source #f)
    (build-system #f)
    (license #f)
    (home-page #f)
    (version "1.0")
    (synopsis "test")
    (description "blah blah blah")))

  reply	other threads:[~2021-09-04 21:02 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <15d01b32313f5f2f291b120597719ae92bd26acd.1630639896.git.iskarian@mgsn.dev>
     [not found] ` <757b7543b931335c3725264edfbc79c012aa10fc.camel@telenet.be>
2021-09-04 10:09   ` bug#50349: [PATCH] packages: Add 'define-package' syntax Tobias Geerinckx-Rice via Bug reports for GNU Guix
2021-09-04 14:29     ` Taylan Kammer
2021-09-04 14:44       ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
2021-09-04 17:23         ` Taylan Kammer
2021-09-04 18:53           ` Sarah Morgensen
2021-09-04 21:01             ` Taylan Kammer [this message]
2021-09-04 23:17   ` Sarah Morgensen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5e71792b-ac49-65db-13f0-e06fbcbdec1f@gmail.com \
    --to=taylan.kammer@gmail.com \
    --cc=50349@debbugs.gnu.org \
    --cc=iskarian@mgsn.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).