From 108e1ae8a908508beb50b03c509718acbf6c3588 Mon Sep 17 00:00:00 2001 From: Anik Bhattacharjee Date: Tue, 13 Sep 2022 11:34:37 -0400 Subject: [PATCH] Revert "chore: update o-f/api dependency to v0.17 (#2848)" This reverts commit bd97e32644f5a6c5a2b87668df5261a4da62a2a6. An older v0.17.0 release of operator-framework/api had the spec.RunAsRoot field, which has [now been updated to be the spec.GrpcPodConfig.SecurityContextConfig field](https://github.com/operator-framework/api/pull/261). Reverting #2848 so that the new v0.17.0 can be pulled in. See [this comment](https://github.com/operator-framework/operator-lifecycle-manager/pull/2848#issuecomment-1233172716) for more info. Signed-off-by: Anik Bhattacharjee --- deploy/chart/crds/0000_50_olm_00-catalogsources.crd.yaml | 3 --- go.mod | 2 +- go.sum | 4 ++-- .../api/crds/operators.coreos.com_catalogsources.yaml | 3 --- vendor/github.com/operator-framework/api/crds/zz_defs.go | 2 +- .../operator-framework/api/pkg/manifests/bundleloader.go | 4 ---- .../api/pkg/operators/v1alpha1/catalogsource_types.go | 5 ----- vendor/modules.txt | 2 +- 8 files changed, 5 insertions(+), 20 deletions(-) diff --git a/deploy/chart/crds/0000_50_olm_00-catalogsources.crd.yaml b/deploy/chart/crds/0000_50_olm_00-catalogsources.crd.yaml index f22fdf81d8..318393f814 100644 --- a/deploy/chart/crds/0000_50_olm_00-catalogsources.crd.yaml +++ b/deploy/chart/crds/0000_50_olm_00-catalogsources.crd.yaml @@ -120,9 +120,6 @@ spec: type: integer publisher: type: string - runAsRoot: - description: RunAsRoot allows admins to indicate that they wish to run the CatalogSource pod in a privileged pod as root. This should only be enabled when running older catalog images which could not be run as non-root. - type: boolean secrets: description: Secrets represent set of secrets that can be used to access the contents of the catalog. It is best to keep this list small, since each will need to be tried for every catalog entry. type: array diff --git a/go.mod b/go.mod index dc559c0ca9..fd86bb7a08 100644 --- a/go.mod +++ b/go.mod @@ -24,7 +24,7 @@ require ( github.com/onsi/gomega v1.18.1 github.com/openshift/api v0.0.0-20200331152225-585af27e34fd github.com/openshift/client-go v0.0.0-20200326155132-2a6cd50aedd0 - github.com/operator-framework/api v0.17.0 + github.com/operator-framework/api v0.16.0 github.com/operator-framework/operator-registry v1.17.5 github.com/otiai10/copy v1.2.0 github.com/pkg/errors v0.9.1 diff --git a/go.sum b/go.sum index 64cde2f35b..f571581867 100644 --- a/go.sum +++ b/go.sum @@ -1078,8 +1078,8 @@ github.com/openshift/client-go v0.0.0-20200326155132-2a6cd50aedd0/go.mod h1:uUQ4 github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJc5AZX7/PBEpw= github.com/operator-framework/api v0.7.1/go.mod h1:L7IvLd/ckxJEJg/t4oTTlnHKAJIP/p51AvEslW3wYdY= -github.com/operator-framework/api v0.17.0 h1:OXpCP0XJzM7MYgr/zEZDqdOahUxHR9JSYAmmNUIj4W8= -github.com/operator-framework/api v0.17.0/go.mod h1:kk8xJahHJR3bKqrA+A+1VIrhOTmyV76k+ARv+iV+u1Q= +github.com/operator-framework/api v0.16.0 h1:swUOhVv7QDszxBTwYM8QAtyeqI4EQHNVAiKMS+xjakY= +github.com/operator-framework/api v0.16.0/go.mod h1:kk8xJahHJR3bKqrA+A+1VIrhOTmyV76k+ARv+iV+u1Q= github.com/operator-framework/operator-registry v1.17.5 h1:LR8m1rFz5Gcyje8WK6iYt+gIhtzqo52zMRALdmTYHT0= github.com/operator-framework/operator-registry v1.17.5/go.mod h1:sRQIgDMZZdUcmHltzyCnM6RUoDF+WS8Arj1BQIARDS8= github.com/otiai10/copy v1.2.0 h1:HvG945u96iNadPoG2/Ja2+AUJeW5YuFQMixq9yirC+k= diff --git a/vendor/github.com/operator-framework/api/crds/operators.coreos.com_catalogsources.yaml b/vendor/github.com/operator-framework/api/crds/operators.coreos.com_catalogsources.yaml index f22fdf81d8..318393f814 100644 --- a/vendor/github.com/operator-framework/api/crds/operators.coreos.com_catalogsources.yaml +++ b/vendor/github.com/operator-framework/api/crds/operators.coreos.com_catalogsources.yaml @@ -120,9 +120,6 @@ spec: type: integer publisher: type: string - runAsRoot: - description: RunAsRoot allows admins to indicate that they wish to run the CatalogSource pod in a privileged pod as root. This should only be enabled when running older catalog images which could not be run as non-root. - type: boolean secrets: description: Secrets represent set of secrets that can be used to access the contents of the catalog. It is best to keep this list small, since each will need to be tried for every catalog entry. type: array diff --git a/vendor/github.com/operator-framework/api/crds/zz_defs.go b/vendor/github.com/operator-framework/api/crds/zz_defs.go index 9ecea400f0..1a607ea5ea 100644 --- a/vendor/github.com/operator-framework/api/crds/zz_defs.go +++ b/vendor/github.com/operator-framework/api/crds/zz_defs.go @@ -85,7 +85,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _operatorsCoreosCom_catalogsourcesYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5b\x7b\x73\x1b\x37\x92\xff\xdf\x9f\xa2\x4b\x77\x55\x96\x72\xe4\xc8\x4a\xb6\x72\x59\x5e\x9c\x94\x22\xdb\x39\x55\x62\x5b\x65\xd9\xbe\xba\xb5\x7c\xb7\xe0\x4c\x73\x88\x10\x03\x8c\x01\x8c\x24\x66\x6b\xbf\xfb\x56\x37\x80\x99\xe1\x6b\x48\x39\x0e\xff\xb1\x06\x8f\x06\xd0\xcf\x5f\x37\x60\x51\xcb\xf7\x68\x9d\x34\x7a\x02\xa2\x96\x78\xef\x51\xd3\x97\xcb\x16\xdf\xb9\x4c\x9a\xd3\xdb\xb3\x47\x0b\xa9\x8b\x09\x5c\x34\xce\x9b\xea\x0d\x3a\xd3\xd8\x1c\x9f\xe1\x4c\x6a\xe9\xa5\xd1\x8f\x2a\xf4\xa2\x10\x5e\x4c\x1e\x01\x08\xad\x8d\x17\xd4\xec\xe8\x13\x20\x37\xda\x5b\xa3\x14\xda\x71\x89\x3a\x5b\x34\x53\x9c\x36\x52\x15\x68\x99\x78\x5a\xfa\xf6\x49\xf6\x5d\xf6\xe4\x11\x40\x6e\x91\xa7\xbf\x95\x15\x3a\x2f\xaa\x7a\x02\xba\x51\xea\x11\x80\x16\x15\x4e\x20\x17\x5e\x28\x53\x86\x4d\xb8\xcc\xd4\x68\x85\x37\xd6\x65\xb9\xb1\x68\xe8\x9f\xea\x91\xab\x31\xa7\xd5\x4b\x6b\x9a\x7a\x02\x5b\xc7\x04\x7a\x69\x93\xc2\x63\x69\xac\x4c\xdf\x00\x63\x30\xaa\xe2\xbf\xe3\xe1\xc3\xb2\xd7\xbc\x2c\xb7\x2b\xe9\xfc\x2f\x9b\x7d\xbf\x4a\xe7\xb9\xbf\x56\x8d\x15\x6a\x7d\xc3\xdc\xe5\xe6\xc6\xfa\x57\xdd\xf2\xb4\x5c\x2e\xbc\xb3\x79\xe8\x96\xba\x6c\x94\xb0\x6b\x73\x1f\x01\xb8\xdc\xd4\x38\x01\x9e\x5a\x8b\x1c\x8b\x47\x00\x91\x85\x91\xd4\x18\x44\x51\xb0\x58\x84\xba\xb2\x52\x7b\xb4\x17\x46\x35\x95\x6e\x97\xa2\x31\x05\xba\xdc\xca\xda\x33\xeb\xdf\xce\x11\x6a\x8b\xde\x2f\x99\x25\x60\x66\xe0\xe7\x98\xd6\x6e\x67\x01\xfc\xe6\x8c\xbe\x12\x7e\x3e\x81\x8c\x38\x9c\x15\xd2\xd5\x4a\x2c\x69\x37\xbd\x51\x41\x4c\xcf\x42\x5f\xaf\xdd\x2f\x69\xeb\xce\x5b\xa9\xcb\xa1\xad\xd0\xb8\xc3\xf7\x10\x58\xf3\x76\x59\x6f\x6e\x61\xad\xf1\xd0\xf5\xeb\x66\xaa\xa4\x9b\xa3\x3d\x7c\x13\xed\x94\x8d\x3d\x5c\x6d\xe9\xd9\xb1\x91\x1e\xd1\x64\x50\xd9\x86\x31\x6c\x2c\x70\x5e\x6e\x9e\xb1\x10\x3e\x35\x86\x41\xb7\x67\x42\xd5\x73\x71\x16\x1b\x5d\x3e\xc7\x4a\x74\xfa\x60\x6a\xd4\xe7\x57\x97\xef\xbf\xb9\x5e\xeb\x80\x55\xee\xac\xe8\x39\x48\x07\x02\x2c\xd6\xc6\x49\x6f\xec\x92\xb8\x75\x71\xfd\xde\x8d\xe0\xe2\xcd\x33\x37\x02\xa1\x8b\xd6\xf0\xa0\x16\xf9\x42\x94\xe8\xb2\x8d\xbd\x9a\xe9\x6f\x98\xfb\x5e\xb3\xc5\x4f\x8d\xb4\x58\xf4\x77\x41\xec\x49\x3c\x59\x6b\x26\xfe\xf7\x9a\x6a\x4b\x6b\xfa\x9e\x21\x87\x5f\xcf\xcb\xad\xb4\xaf\x9d\xf0\x31\xb1\x21\x8c\x83\x82\x1c\x1c\x3a\x56\x81\x68\x63\x58\x44\xde\x05\xd5\x90\x8e\xce\x6f\xd1\xa1\x0e\x2e\x8f\x9a\x85\x8e\x67\xca\xe0\x1a\x2d\x4d\x24\x73\x6f\x54\x41\x9e\xf0\x16\xad\x07\x8b\xb9\x29\xb5\xfc\xbd\xa5\xe6\xc0\x1b\x5e\x46\x09\x8f\xce\x03\x5b\xad\x16\x0a\x6e\x85\x6a\x30\xb0\xb2\x12\x4b\xb0\x48\x74\xa1\xd1\x3d\x0a\x3c\xc4\x65\xf0\xd2\x58\x04\xa9\x67\x66\x02\x73\xef\x6b\x37\x39\x3d\x2d\xa5\x4f\x3e\x3c\x37\x55\xd5\x68\xe9\x97\xa7\xec\x8e\xe5\xb4\x21\x77\x78\x5a\xe0\x2d\xaa\x53\x27\xcb\xb1\xb0\xf9\x5c\x7a\xcc\x7d\x63\xf1\x54\xd4\x72\xcc\x9b\xd5\xec\xc7\xb3\xaa\xf8\x37\x1b\xbd\xbe\x7b\xbc\xc6\xbe\xad\xca\x0c\xc9\x6d\x0e\xf2\x9a\x9c\x67\xd0\xa2\x30\x3d\x9c\xa5\x63\x29\x35\x11\x57\xde\x3c\xbf\x7e\x0b\x69\x03\x81\xed\x81\xc3\xdd\x50\xd7\x31\x9b\x18\x25\xf5\x0c\x6d\x18\x39\xb3\xa6\x62\x2a\xa8\x8b\xda\x48\xed\x83\x49\x2b\x89\xda\x83\x6b\xa6\x95\xf4\x8e\x75\x0e\x9d\x27\x39\x64\x70\xc1\x21\x0c\xa6\x08\x4d\x4d\x96\x54\x64\x70\xa9\xe1\x42\x54\xa8\x2e\x84\xc3\x3f\x9d\xd5\xc4\x51\x37\x26\xf6\x1d\xce\xec\x7e\x04\xde\x9c\xb0\x61\x63\x00\x29\x42\x1e\x34\x78\x97\x51\x42\xb0\xc0\x6d\x1e\x18\x06\x6c\x91\x7e\xa2\x28\x2c\xba\x2d\x1d\x1b\x06\x19\x06\x06\x3d\x99\x1b\x47\xf2\x13\x1e\x5e\xff\xfa\x12\x72\xa1\xa1\x71\x48\xc6\x93\x1b\xad\x49\x21\xbc\x01\x41\xb1\x6c\x8c\xf7\xd2\xb1\x02\x59\x2c\xa5\xf3\x76\x99\xc1\x0b\x63\x2b\xe1\x27\xf0\x7d\x6a\x1a\x33\x39\x63\x41\xd6\x3f\x4c\xbe\xaf\x8d\xf5\x3f\xc0\x6b\xad\x96\x44\xb4\x80\xbb\x39\x6a\xb8\x6e\xcf\x06\x4f\x7b\x1f\x3f\xdb\x3a\xcf\xe0\xb2\xd4\xc6\xa6\x91\xa4\x55\x97\x95\x28\x11\x66\x12\x15\xeb\xb5\x43\x9f\xad\x4b\x70\x50\x8a\x10\xe0\xd2\x4c\x96\x2f\x45\xbd\x97\x35\x17\x69\x24\xad\x45\xcb\xf7\x83\x77\xd7\xe9\x0d\xab\x32\x1d\x89\xfe\x14\xf9\x02\x44\x5c\xa5\x12\xf5\xd8\xb1\xd9\xf4\xd8\x74\x18\x07\x2e\x12\x01\xe2\x5f\xd7\x7c\x19\x3d\x57\xf6\xd0\x63\xf7\x4f\xf6\xe0\xb9\x1d\x0c\xd9\xcb\xb4\x97\xdb\xa2\xc8\x01\x6b\x94\xb6\xce\xaf\x4c\x11\x8e\xbd\x77\x95\x9f\xfb\xa3\x01\xef\x6b\xe3\xd0\x41\x21\x67\x33\xb4\xe4\x77\xcc\x2d\x5a\x2b\x0b\x74\x30\x33\x96\xe5\x55\x9b\x82\x6d\xb2\x95\xdf\x4a\xa8\xbd\x32\xc5\xa1\x82\xa1\xa5\x39\x60\x04\x65\x8c\x6a\xb8\xf3\xb8\x5b\xad\x1d\xf6\x18\x2f\xfd\xb4\x29\xf0\x1a\x15\xe6\xde\xd8\xed\x23\xd6\x78\xf2\xaa\x37\x21\x7a\xfd\xf4\x75\x37\x97\xf9\x1c\xaa\xc6\xb1\xd7\xf5\xb6\xc1\x15\xbe\x78\x03\x33\xe9\xc1\x68\x10\xbc\x2c\xf9\xfa\xcd\x99\x95\xf0\xf9\x3c\x8e\x78\xec\x40\x89\x29\x2a\xb7\x4e\x67\x8a\x1c\x72\x8b\x46\x61\x41\x04\xd9\x97\x30\xcd\x1d\x47\xd8\xc3\x25\x08\xae\xac\xc5\xdb\xc3\x3c\x83\x7d\x5a\x16\x18\x2f\x8d\x95\x7e\x79\xa1\x84\x73\xbb\x74\x7a\x83\xbb\x97\x33\x56\x1f\x39\x93\x58\x8c\x40\xea\x42\x52\x4a\xe3\xd2\xd9\x1f\xbb\x96\x6e\x46\x63\x29\xc0\xf5\xc6\x27\x0e\xa5\x31\x70\x27\x95\x22\x66\x15\x38\x13\x8d\x62\x27\xf9\x3b\x5a\x03\x92\xb5\xd3\xb2\x5e\x69\x93\xba\x87\x99\x37\x70\x56\x6f\x14\x01\xc4\x2e\x7b\xd9\x73\xca\xb7\xdd\x78\x10\x16\xfb\xe8\x3c\x86\x21\x3a\x28\x1f\xb7\x47\x7a\x78\x7b\xc2\xda\x95\x34\xa5\xff\x93\x1e\xab\x01\x59\x6e\xa6\x0e\xa4\x65\x84\x3a\xba\x8d\xb2\xaa\x7b\x2f\x48\xeb\x18\xe6\x85\x1e\x74\x20\xf4\x12\xbc\x08\x88\x44\x44\xfd\x8d\x12\xf3\x56\xd6\x0a\xe1\xfb\x05\x2e\x47\x01\x03\xe2\x6c\x86\xb9\xff\x01\x1a\x97\x50\x11\x8f\xa7\x8f\x16\x64\x7f\x9f\xfe\xfa\x61\xd7\x89\x0f\xd2\xe7\xfd\xb6\x1f\x7e\x61\x4b\x43\x23\xd6\x38\xf4\x9c\x27\xac\x29\x67\xe0\x40\xa0\x45\xfc\xe1\x63\x65\xf0\xbc\xaa\xfd\x12\x2a\x14\xda\x25\xcb\x56\x6a\x65\xb0\xcb\xe0\x7f\xc8\x0f\xf6\xd4\x58\x28\x65\xee\x5a\x4c\xcc\x1a\xf2\xca\x5c\x47\x7b\x1f\xc1\x95\xc5\x19\xda\xae\x85\xdd\xe4\x2b\xf3\xfc\x1e\xf3\xc6\xef\xf4\x00\x7d\xbe\x0d\xa8\x72\xf8\x2d\x70\xf9\x00\x86\xfc\x82\xcb\x14\xbb\xc3\xc9\x16\xb8\x0c\xca\xc0\x4d\x9d\x0e\x89\xba\x56\x12\x03\x3c\x1d\xe2\xcc\x02\x97\x8e\xed\x9b\xe6\x2f\x02\x75\xa4\xf1\xa3\x4e\x4b\x92\x9b\x7d\x4e\x08\xc9\xfd\x57\xd0\xd7\xdc\x54\x53\xa9\xc3\x62\x81\x74\x12\x05\x53\x4f\x0c\xd5\x05\x7f\xf2\x32\x5f\x82\x5d\x69\x53\x0f\xe0\xd9\xeb\x74\x8e\x0e\xfb\x83\xa0\x1d\x3d\x26\x18\xaf\x82\xc5\xcf\x65\x9d\x52\x2a\xde\x7a\x06\xef\x85\x92\x5d\x3e\x1a\x74\x23\x70\x80\x4f\xf5\xfc\x53\x23\x54\x06\xcf\x82\x3f\xe3\xd3\xc7\xa6\x38\x88\x18\xf9\xa9\x91\xb7\x42\x51\xfc\xf6\x86\x3c\x64\x91\x0b\x5b\x70\x84\x89\x79\x9a\x33\x41\x7a\x82\x1d\x01\xc1\xd3\x64\xed\x9d\x8c\x1c\xe7\x88\x50\x0b\xeb\x65\xde\x28\x61\x53\xed\x69\xf9\x45\x38\xda\x29\xcd\x35\xe6\x46\x17\x83\x16\xbc\xd3\xbb\xc6\xb9\x7d\x1e\x73\x88\x40\x2b\x4d\xc1\x10\x45\x56\xb8\xae\xa4\xc7\xab\x61\xdc\xcc\x92\x55\xb7\x26\x36\x02\x43\xd1\xe3\x4e\xba\x98\xc6\xb5\x50\x59\x06\x28\x7d\xd2\x73\x8f\xad\x55\x64\xf0\xd3\x32\x45\x9a\x11\x48\x1f\x62\x8f\x27\x5c\x33\x4a\x00\x20\xaa\x6c\x64\x76\x67\x50\x33\x63\x91\xe0\xed\x71\x61\x78\x0e\xde\xca\xdc\x9f\x64\xf0\x37\x0a\x66\x24\x78\x8d\xa5\xf0\xf2\x16\x93\x8a\xa7\xc0\xe7\x2d\x52\xea\x07\xc2\xc1\x13\x38\xe6\x69\x20\xab\x0a\x0b\x29\x3c\xaa\xe5\x09\x4c\x97\xbc\x8c\x5b\x3a\x8f\xd5\x21\xa2\xa3\xa4\xbe\x5c\xa9\x03\x6d\xfe\x66\x31\x45\x91\xda\x7f\xfb\x97\x81\x91\xbc\xd9\x07\x48\xf6\x3d\x27\xd6\x2b\xae\x26\xe4\xda\x6b\x22\x6c\x63\x90\x69\xbd\x48\xeb\x37\xa4\x8b\xb6\x30\xea\xec\x2a\x55\x36\xa6\xd8\xba\x99\x56\xc0\xbf\x91\x1e\x08\x4a\x2c\x58\xcb\x83\xe6\xfe\x01\x1d\x97\xf9\x50\x6a\xb0\x33\xa2\xed\xce\x5c\x81\xb3\xd7\xa9\x70\xf8\xed\x5f\x76\xa4\x04\xa1\xee\x44\x32\xdf\xcc\x6e\xe1\x80\x40\xd9\x11\xdf\x25\xac\xbd\x66\xdd\x2e\xff\x59\x14\x24\x25\x01\x7b\xd3\x95\x36\x55\x10\xba\x95\xf7\x38\x65\x84\x5c\xc0\x17\x52\xa3\x0d\xd4\xc8\xf9\x49\xed\xbc\xd0\x5e\xb2\x67\x6b\x73\xc7\x94\x4b\xde\x49\x3f\x7f\x48\xba\xc2\xba\x16\x1d\x4d\x50\xae\x58\x1d\xd8\xf0\x0f\x0f\x4e\x2b\x13\xa0\xdd\x5f\x67\xb8\x4a\xd0\x37\xac\x29\x9c\x93\x25\xa1\x4c\xb8\x43\x59\xce\x7d\x0a\x27\xab\x68\x93\x5a\xe3\x12\xf2\x77\xb6\xa6\xaa\x0d\x02\xd2\x73\x04\x98\x22\x31\xd0\x35\x15\x16\xc9\x67\x14\x58\xa3\x2e\x50\xe7\x4b\xae\x6a\xa9\x5b\xb4\x19\xbc\x73\x24\x29\xf8\x6f\x59\xce\x89\x85\x61\xd1\x3e\x54\x62\x54\x40\xa1\x7a\x75\x07\x92\x90\x3d\xe1\x1a\x4b\x19\x0d\xb1\x9f\x30\x50\xa2\x80\xc5\xda\x78\x07\x45\xc3\xb5\xb6\xf5\x4d\x34\xc4\x87\x8c\x51\xac\x15\xba\x6c\x0b\x09\x6d\x4a\x10\x0c\x9e\x8e\x54\x9a\x50\x55\xe3\xca\x2f\xf9\x4e\x6f\x3a\x3f\x2a\x43\x29\xa4\xa5\x21\xb5\xff\xe6\xeb\x40\x37\x25\x13\xd1\xf5\x18\x10\xeb\x87\x21\xcd\x81\x46\x07\xe6\x63\x3f\x1f\x49\x6e\xe6\x49\x20\xb5\x6d\x1e\xbb\x63\x51\xad\x6f\xb9\xf3\xe9\x56\xe8\x05\x16\xa0\xf0\x5e\xe6\xa6\xb4\xa2\x9e\xcb\x5c\x28\xb5\x64\x33\xe5\x74\x50\x7a\xc7\x55\x94\x81\xb2\xcd\x2e\x37\xde\x5e\x01\x3c\xb8\x7c\x61\x1b\x7d\xee\xde\x18\xb3\x15\x4a\xaf\x28\xe9\x9b\x34\x32\x20\x5d\x07\xa2\xa8\x64\xc0\x6a\x49\x53\x5a\xf8\x48\x39\x9c\x9b\x53\x97\x6d\xf4\x96\x92\x02\x21\x14\xa9\xb9\x5a\x26\x6f\xa5\xc2\x92\xd8\x6d\x38\xe0\x59\x63\x7c\x06\xf0\x96\xb4\x2d\x3a\x78\x43\xc6\x4c\x5e\x5e\x8b\xa9\x4a\x26\x6d\x1b\xad\x39\x01\x51\x05\xda\x56\x24\xec\x24\x5c\x0c\xcc\x39\xcf\x8e\xe5\x54\xda\x88\xa0\xd8\xad\xc7\xbc\xc4\x4e\x46\x4d\x8d\x51\x28\xf4\x46\xbf\xc3\xdc\xa2\xdf\x5f\x34\xbc\x0e\xe3\x3a\xf8\x42\x58\x81\x94\x31\x12\x08\x4c\x8a\xd6\x99\x2a\x63\x22\xcf\xc9\xe5\xb0\x91\x1b\xed\x31\x42\xb5\x9e\xd1\x67\x70\xc9\xe0\x63\x8a\x8e\xfd\xc1\x02\xb1\x0e\x36\xa9\xa4\xf3\xe0\x2a\xa1\xd4\x08\x9c\xd4\x39\x02\x8a\x7c\x1e\x14\x4f\x23\xa6\xd2\x83\xb7\x12\x03\x60\x24\x50\xb2\x6c\x59\x86\xda\x6f\x87\x7f\xc3\x19\xea\x40\x76\x3a\xa8\x70\x5d\xc1\x76\x3f\x27\x3b\xaf\x9d\xd0\x43\xbc\x9d\x73\xdd\x45\xe8\x03\x96\x0e\x15\xf5\x6b\x4f\x30\xad\xdc\xef\x95\xdf\xad\x0c\x6f\x6f\x64\xe6\xe6\x2e\xd5\xe6\x37\xdc\x61\xd0\xbe\x28\xdb\x42\xba\x9c\x7c\x22\x16\x70\x61\xb4\x63\x24\x1f\xae\x68\xf8\x8a\xe5\x56\xa8\xa0\x0a\x89\x70\x6d\x94\x62\xe7\xd8\xa4\xc4\x8b\x32\x1e\x0d\x58\x4d\xb1\x28\xb0\xa0\x63\x85\xad\xec\x00\x04\x7f\xb0\xa8\x96\x22\xe9\x95\x51\x6a\x38\xde\x0f\x66\xf0\x87\xe4\xef\x89\x01\x43\x28\x72\x15\x24\x24\x8e\x49\xd7\xda\x4c\x81\x1e\x6d\x25\x75\x04\x92\x94\x14\xb4\x8c\x9d\xa2\xbf\x43\xd4\x90\xcf\x31\x5f\xb4\xa6\x14\x6f\xb8\xd6\xa4\x16\xaf\xd7\x56\x7d\x7b\x77\x79\x68\x94\x62\x27\xe7\x10\x41\x52\xf6\xa4\xf1\x2e\xcd\x59\xb3\xd1\x5e\x58\x14\xb7\x42\x2a\x72\x57\x8c\x2f\xda\xaf\xd1\xca\x4d\x5b\x42\x3e\x75\xa3\xc8\xaf\x91\xbc\xcb\x37\x57\x17\xe0\xad\x98\xcd\x64\x4e\x5d\x85\xb4\x98\xfb\x58\xbd\xd9\x75\x84\x21\x60\xbb\xd3\x22\x9c\x17\xbe\xd9\x90\xd1\x80\x80\x87\x04\x4b\x19\x9b\xdc\x59\x4a\x5b\x8d\x23\xab\x69\x1d\x6d\x03\x43\x5a\xba\x12\x23\x32\x78\x65\x52\x44\x79\x89\x8e\x00\x0a\x33\xe8\x0d\x0a\x67\x74\xcf\xbb\x72\x9e\x60\x65\x29\xb5\x50\xf1\x50\x7c\x3f\x46\xc9\x8c\x34\xba\xcd\xd2\x04\xc7\x90\x4a\x96\x56\xf8\xd6\x29\x76\xfb\x8e\x71\x38\x22\x88\x59\xe3\x1b\x8b\x19\x9c\xeb\x25\xcb\x7b\x86\x82\x1a\x88\xb2\xb7\xa6\x68\x72\x0a\x43\xe4\x60\x1b\xd7\x27\xf2\x45\xdd\xe8\x0a\xd7\x8e\x2e\xd2\x22\x09\x12\x3b\x32\x00\x21\x63\x99\xd9\x68\x04\xe1\x6a\xca\x78\x93\x4e\x36\x96\xcb\xfd\x2d\x83\x39\x58\x9c\x5f\x5d\x42\x7a\x44\x93\xc1\x78\x3c\x8e\x91\xd6\xdb\x26\xe7\xf8\x42\x26\xa4\x8b\x18\x29\x82\xf6\xf1\x21\x05\x03\x74\x3e\x06\xc4\x1a\x51\x00\xab\xb5\xf0\x73\xc8\x02\xe3\xb3\x1e\x2b\x00\x5e\x50\xac\xb9\x17\x55\xcd\x7a\x4f\xae\xfb\x85\x31\xd7\x41\x42\x61\xc1\x7f\xc0\xe9\xe9\xba\x42\x98\x29\x21\xf9\x58\x67\x65\xbd\x98\x19\xf3\xd8\xad\x9e\x27\xa3\x89\xbf\x68\x73\xa7\xb7\x2d\xcd\x6b\x09\x8b\x13\xb8\x39\x3a\x4f\xa6\x77\x73\x34\x82\x9b\xa3\x2b\x6b\x4a\x42\xf7\x52\x97\xd4\x40\x1a\x75\x73\xf4\x0c\x4b\x2b\x0a\x2c\x6e\x8e\x88\xec\x7f\xd4\x94\x88\xbe\x44\x5b\xe2\x2f\xb8\x7c\xca\xc4\xda\xe6\x14\x0e\x9e\x56\xd4\xcf\xed\x14\x7f\x29\x48\x3d\xad\x44\xdd\x36\xbc\x14\x75\x3b\xf9\xa2\x53\xb2\x0f\x1f\x2b\xf4\xe2\xf6\x2c\xeb\xc4\xf9\xf7\xdf\x9c\xd1\x93\x9b\xa3\x6e\xff\x23\x53\x91\x5a\xd4\x7e\x79\x73\x04\x2b\xab\x4e\x6e\x8e\x78\xdd\xd4\x9e\x36\x39\xb9\x39\xa2\x95\xa8\xd9\x1a\x6f\xa6\xcd\x6c\x72\x73\x34\x5d\x7a\x74\xa3\xb3\x91\xc5\x7a\x44\xb8\xf2\x69\xb7\xc2\xcd\xd1\xdf\xe1\x46\xd3\x66\x39\x65\x0e\x92\x74\xf0\xcf\xa3\x81\x78\x3e\xe0\xf4\x87\xd3\x5c\xca\x63\x95\x70\xfe\xad\x15\xda\xc9\xf4\xa0\x64\xe7\xd0\x2a\x18\xfb\xce\x7e\xcb\x0e\x60\x67\x77\xd0\x86\x9d\xdd\x3b\x42\xe7\x21\x61\x6b\xf3\x0c\x07\x16\xe7\x37\x27\x26\x3c\x43\x3d\x5d\x39\xab\x95\x0f\x05\x80\x38\x9a\x0c\x91\xd2\x1d\xb2\xef\xe8\xdc\x08\x2e\x6a\x96\x5b\xb6\x02\x93\xa7\xd8\x5d\x06\x37\xba\x40\xab\x96\x04\x27\x3a\xaa\xf9\x9c\xf2\xa2\x22\x83\x50\x5e\x11\x6d\x31\x6b\x41\x86\xc4\xa1\x49\xf7\x6a\xfc\xbc\xaf\x96\x22\x39\x8e\x60\xf0\x91\x0c\x47\xb9\x3c\xc7\xda\x73\x98\xfb\xfc\x3b\x27\xe8\xd5\x9e\x08\x56\x8d\xfd\x6e\xf5\x88\xca\x71\x20\xe3\xe3\xe8\x78\x7d\xdf\x54\x82\xe2\x86\x28\x68\xbf\x5d\x5f\xc8\x5d\x42\x56\x1a\xfc\xa9\x98\x9a\x26\x56\xc1\x5b\x39\x44\x56\xc7\x28\xc2\xa8\xac\xf6\xcb\xbd\x85\xa5\x83\x0e\x5f\x89\xfb\x5f\x51\x97\x7e\x3e\x81\x6f\xbe\xfe\xcf\x6f\xbf\xdb\x31\x30\x38\x46\x2c\x7e\x46\x1d\x4b\x66\x07\xb2\x61\x73\xe2\x7a\x6d\xb5\x7b\xf3\x55\x76\x63\xda\xbb\x80\x4e\x83\xee\x04\xdf\xe8\xc6\x58\xd9\xd4\xc4\x17\xf2\xf2\xa1\x24\x93\xe3\x88\x10\xd2\x56\x62\xb2\x75\xe0\x6a\x09\x67\x5f\x8f\x60\x1a\x59\xbc\xe9\xbe\x3f\xdc\x7f\xcc\xb6\x6c\x59\x3a\xf8\xeb\x68\x6d\x3f\xd2\x01\x89\xca\xcc\x58\x71\x42\x26\x6e\x31\x84\xc1\x54\x33\xd9\x0c\x83\xd8\xee\x77\x9f\xe0\xf6\x95\x4d\x0f\x2b\x99\x56\x52\xcb\xaa\xa9\x26\xf0\x64\xc7\x90\xe0\xd2\x0e\x94\x66\x18\xdc\xa1\x00\x4a\xa2\x4d\x69\x45\x45\x78\x27\x07\x59\xa0\xf6\x72\x26\xd1\xf6\x55\x9b\xab\x22\x61\x62\xba\x94\x6e\xb9\xc8\xf7\xd5\xe4\x87\x7a\xca\x7e\x15\x40\x8e\xe5\x08\x1c\x2f\xb9\xf2\xbe\x83\x5a\xd6\x18\xac\x21\x64\x2f\x80\xf7\x75\xc0\xa9\xbd\xdb\x9a\x0a\x05\xa5\xe8\xe9\x1e\x3c\x95\xdc\x43\xd4\xbd\x9b\x23\x87\x9e\xb6\x9c\x1b\xae\x45\x72\xca\x94\x0a\x4e\x9a\x04\x94\x8d\xb0\x42\x7b\xca\x61\xcf\xaf\x2e\x03\x40\x5f\x2f\xfd\x8a\xee\x71\x54\xb2\xc6\x60\xaa\xc1\x59\xd1\x16\x63\x05\x80\x2d\xf6\xcb\x99\xea\xd9\x93\xaf\x07\x45\xde\x8e\xdb\x7d\xd3\x29\xbc\x47\xab\x27\xf0\x7f\x1f\xce\xc7\x7f\x13\xe3\xdf\x3f\x1e\xc7\x3f\x9e\x8c\xff\xfa\xff\xa3\xc9\xc7\xaf\x7a\x9f\x1f\x4f\x7e\xfc\xf7\x1d\x94\xb6\x23\xf9\x1d\xea\x13\x83\x48\x02\x89\x49\xa2\x23\x8e\x30\x66\x06\x6f\x6d\x83\x23\x78\x21\x94\xc3\x11\xbc\xd3\x1c\x1a\xfe\x20\xd3\x50\x37\xd5\x50\xa6\x37\x86\x23\x5a\x75\x3b\xf8\x68\x87\xf0\x96\x86\xc7\xc4\xed\x0e\xe5\xae\x87\x31\x29\xd5\x19\x7a\x9e\xa6\xf7\x08\x8f\x5f\x6d\x91\x21\x99\x2c\xc2\xdb\x2c\x37\xd5\x69\xef\x91\x1e\xe1\xea\x97\x42\x2f\xa1\x73\x6b\x01\x94\xae\x6b\xba\xf3\xe4\x9b\x44\x6e\x8d\x73\xed\x2b\x43\x07\x4a\x2e\x10\xce\xbb\xa4\x91\x9c\xe5\x14\x73\xc1\x40\xdc\x4e\xa5\xb7\x22\xd4\xc6\x13\xae\xec\xca\x49\xb3\x46\xc1\x31\xe5\xaa\x19\xbf\x2c\xd9\xf0\xae\x27\xb1\xc8\x3d\x95\x4a\xfa\x65\xc8\xa3\x73\xa3\x67\x4a\x46\xfc\x5f\xd5\xc6\x7a\xa1\x7d\x2c\xc7\x62\x89\xf7\x20\xbb\x17\x02\xd2\xc1\x71\xa1\xdd\xd9\xd9\xd7\xdf\x5c\x37\xd3\xc2\x54\x42\xea\x17\x95\x3f\x3d\xf9\xf1\xf8\x53\x23\x14\x5f\x86\xbf\x12\x15\xbe\xa8\xfc\xc9\x97\x0b\x8b\x67\xdf\x1e\x60\x45\xc7\x1f\x82\xad\x7c\x3c\xfe\x30\x8e\x7f\x7d\x95\x9a\x4e\x7e\x3c\xbe\xc9\x06\xfb\x4f\xbe\xa2\x33\xf4\x2c\xf0\xe3\x87\x71\x67\x7e\xd9\xc7\xaf\x4e\x7e\xec\xf5\x9d\x6c\x33\xc6\xfb\xf1\xa2\x99\xa2\xd5\xe8\xd1\x8d\x29\x0b\x18\x57\xa2\x1e\x2f\x70\xb9\xc3\x38\x77\xc2\xd1\x4d\x42\x81\x63\x95\xa8\xb7\xa5\xde\xe1\xb1\xdd\x1b\xe4\x07\x5e\xf9\x56\x25\xff\x83\x17\x55\x5a\xec\x80\x64\xa1\x8b\xff\x3b\xc0\x67\x94\x9c\x28\xee\x84\x32\xdb\x10\x9c\x3e\x40\x5b\x0e\xc3\x8f\x7a\xe0\x41\xd3\xde\x45\xda\x73\x7e\x36\x85\x64\xdf\x3b\xde\x82\x1f\x4c\xa7\x91\x3b\x33\xad\xd5\x02\xe6\xe5\xb3\x00\x7d\xd9\xf5\x30\x9c\x9b\x1b\xca\xf3\x1a\x2d\x3f\x35\x08\x97\xcf\xa2\x3f\x1a\x81\xd4\xb9\x6a\x0a\x42\x0a\xef\xde\x5d\x3e\xa3\xe4\xfd\xa7\xe8\x6e\xee\x10\x0a\xa3\x1f\x7b\x78\xfd\xea\xd7\xff\xe5\x4a\x00\x8f\x18\x85\x80\x1e\xae\xed\x84\x92\xe1\x19\x79\x0a\xc0\xf0\x13\x12\xad\xb8\x72\x2e\xea\xb6\x78\xc2\xee\x4e\x17\x30\x47\x55\x13\x80\x58\x20\xb8\xc6\xc6\xdd\x11\xe1\x70\x31\x4e\xbc\x86\x78\x6d\x5e\xa2\x67\x25\x57\xfc\x1c\xfa\x73\x98\x16\x1f\xe8\x4a\xa3\xaf\x09\x05\xfe\x09\xf6\x41\x8a\xfc\x3a\x62\x56\x5e\xe3\x33\x8c\x61\xe0\x55\xf2\xde\x13\x42\x34\xa6\x8b\x70\xd2\x3f\xdd\x92\x36\xce\xfb\x59\x2b\x86\x62\x26\x5f\x00\xbf\xd9\x53\x7c\xde\x78\xed\xb6\x9a\x3a\xaf\xfd\xe7\x10\x2e\xac\xb6\x77\xc8\x73\xe1\x60\x8a\xa8\xb9\x96\x1b\x4a\x7f\xa8\xa3\xd6\x61\x57\x85\x6d\xea\xb1\x37\xe3\x62\xbb\xf0\xf6\x70\x6e\x3f\xd7\x06\x32\xd7\x95\xb3\x9d\x3f\x38\x51\xbd\x9b\x2f\xb7\xf1\xc0\x85\x5a\x26\xbf\xaf\x4a\x18\xe4\xc1\xb7\x83\x3b\x13\x93\xb5\x92\x2e\x67\x16\xb1\xa8\x11\xf3\x8c\xcd\x2d\x51\xf6\xb8\x52\xd9\xf0\x86\x2f\x3d\x57\x2b\x7b\x0f\xdf\x63\x10\xf3\x35\xda\x5b\xf9\x59\xc1\x6f\x9f\x61\xe6\xe1\x39\xce\xf9\x9f\x6f\x56\x04\xbd\x3e\x7b\x11\x2e\xfd\xe5\x66\xcf\xdd\xcd\x00\x01\x17\x38\x38\xf4\xec\xf7\x21\x34\x1e\x1a\x2c\x83\x37\x99\xf0\x13\xec\xd4\xe4\x8d\xe5\x97\x09\xfd\xb6\x66\xda\x02\xe5\x8e\x7a\xcc\x81\xe0\x1f\xff\x7c\xf4\xaf\x00\x00\x00\xff\xff\x44\x06\x1b\x9d\x54\x3a\x00\x00") +var _operatorsCoreosCom_catalogsourcesYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5b\x7b\x73\xdc\x36\x92\xff\xdf\x9f\xa2\x4b\x77\x55\x96\x72\x33\x94\x95\x6c\xe5\xb2\x73\x79\x94\x22\xdb\x39\x55\x62\x47\x65\x39\xb9\xba\xb5\x7c\xb7\x18\xb2\x87\x83\x08\x04\x68\x00\x94\xc4\x6c\xed\x77\xdf\xea\x06\x40\x72\x5e\x9c\x91\xe3\xcc\x3f\x16\xf1\x68\x00\xfd\xfc\x75\x03\x16\xb5\xfc\x15\xad\x93\x46\xcf\x40\xd4\x12\x1f\x3c\x6a\xfa\x72\xd9\xed\x57\x2e\x93\xe6\xf4\xee\xec\xc9\xad\xd4\xc5\x0c\x2e\x1a\xe7\x4d\xf5\x06\x9d\x69\x6c\x8e\xcf\x71\x21\xb5\xf4\xd2\xe8\x27\x15\x7a\x51\x08\x2f\x66\x4f\x00\x84\xd6\xc6\x0b\x6a\x76\xf4\x09\x90\x1b\xed\xad\x51\x0a\xed\xb4\x44\x9d\xdd\x36\x73\x9c\x37\x52\x15\x68\x99\x78\x5a\xfa\xee\x59\xf6\x55\xf6\xec\x09\x40\x6e\x91\xa7\xbf\x95\x15\x3a\x2f\xaa\x7a\x06\xba\x51\xea\x09\x80\x16\x15\xce\x20\x17\x5e\x28\x53\x86\x4d\xb8\xcc\xd4\x68\x85\x37\xd6\x65\xb9\xb1\x68\xe8\x9f\xea\x89\xab\x31\xa7\xd5\x4b\x6b\x9a\x7a\x06\x5b\xc7\x04\x7a\x69\x93\xc2\x63\x69\xac\x4c\xdf\x00\x53\x30\xaa\xe2\xbf\xe3\xe1\xc3\xb2\xd7\xbc\x2c\xb7\x2b\xe9\xfc\x8f\x9b\x7d\x3f\x49\xe7\xb9\xbf\x56\x8d\x15\x6a\x7d\xc3\xdc\xe5\x96\xc6\xfa\xd7\xfd\xf2\xb4\x5c\x2e\xbc\xb3\x79\xe8\x96\xba\x6c\x94\xb0\x6b\x73\x9f\x00\xb8\xdc\xd4\x38\x03\x9e\x5a\x8b\x1c\x8b\x27\x00\x91\x85\x91\xd4\x14\x44\x51\xb0\x58\x84\xba\xb2\x52\x7b\xb4\x17\x46\x35\x95\xee\x96\xa2\x31\x05\xba\xdc\xca\xda\x33\xeb\xdf\x2e\x11\x6a\x8b\xde\xb7\xcc\x12\x30\x0b\xf0\x4b\x4c\x6b\x77\xb3\x00\x7e\x73\x46\x5f\x09\xbf\x9c\x41\x46\x1c\xce\x0a\xe9\x6a\x25\x5a\xda\xcd\x60\x54\x10\xd3\xf3\xd0\x37\x68\xf7\x2d\x6d\xdd\x79\x2b\x75\x39\xb6\x15\x1a\x77\xf8\x1e\x02\x6b\xde\xb6\xf5\xe6\x16\xd6\x1a\x0f\x5d\xbf\x6e\xe6\x4a\xba\x25\xda\xc3\x37\xd1\x4d\xd9\xd8\xc3\xd5\x96\x9e\x1d\x1b\x19\x10\x4d\x06\x95\x6d\x18\xc3\xc6\x02\xe7\xe5\xe6\x19\x0b\xe1\x53\x63\x18\x74\x77\x26\x54\xbd\x14\x67\xb1\xd1\xe5\x4b\xac\x44\xaf\x0f\xa6\x46\x7d\x7e\x75\xf9\xeb\x17\xd7\x6b\x1d\xb0\xca\x9d\x15\x3d\x07\xe9\x40\x80\xc5\xda\x38\xe9\x8d\x6d\x89\x5b\x17\xd7\xbf\xba\x09\x5c\xbc\x79\xee\x26\x20\x74\xd1\x19\x1e\xd4\x22\xbf\x15\x25\xba\x6c\x63\xaf\x66\xfe\x1b\xe6\x7e\xd0\x6c\xf1\x43\x23\x2d\x16\xc3\x5d\x10\x7b\x12\x4f\xd6\x9a\x89\xff\x83\xa6\xda\xd2\x9a\x7e\x60\xc8\xe1\x37\xf0\x72\x2b\xed\x6b\x27\x7c\x4a\x6c\x08\xe3\xa0\x20\x07\x87\x8e\x55\x20\xda\x18\x16\x91\x77\x41\x35\xa4\xa3\xf3\x5b\x74\xa8\x83\xcb\xa3\x66\xa1\xe3\x99\x32\xb8\x46\x4b\x13\xc9\xdc\x1b\x55\x90\x27\xbc\x43\xeb\xc1\x62\x6e\x4a\x2d\x7f\xef\xa8\x39\xf0\x86\x97\x51\xc2\xa3\xf3\xc0\x56\xab\x85\x82\x3b\xa1\x1a\x0c\xac\xac\x44\x0b\x16\x89\x2e\x34\x7a\x40\x81\x87\xb8\x0c\x5e\x19\x8b\x20\xf5\xc2\xcc\x60\xe9\x7d\xed\x66\xa7\xa7\xa5\xf4\xc9\x87\xe7\xa6\xaa\x1a\x2d\x7d\x7b\xca\xee\x58\xce\x1b\x72\x87\xa7\x05\xde\xa1\x3a\x75\xb2\x9c\x0a\x9b\x2f\xa5\xc7\xdc\x37\x16\x4f\x45\x2d\xa7\xbc\x59\xcd\x7e\x3c\xab\x8a\x7f\xb3\xd1\xeb\xbb\xa7\x6b\xec\xdb\xaa\xcc\x90\xdc\xe6\x28\xaf\xc9\x79\x06\x2d\x0a\xd3\xc3\x59\x7a\x96\x52\x13\x71\xe5\xcd\x8b\xeb\xb7\x90\x36\x10\xd8\x1e\x38\xdc\x0f\x75\x3d\xb3\x89\x51\x52\x2f\xd0\x86\x91\x0b\x6b\x2a\xa6\x82\xba\xa8\x8d\xd4\x3e\x98\xb4\x92\xa8\x3d\xb8\x66\x5e\x49\xef\x58\xe7\xd0\x79\x92\x43\x06\x17\x1c\xc2\x60\x8e\xd0\xd4\x64\x49\x45\x06\x97\x1a\x2e\x44\x85\xea\x42\x38\xfc\xd3\x59\x4d\x1c\x75\x53\x62\xdf\xe1\xcc\x1e\x46\xe0\xcd\x09\x1b\x36\x06\x90\x22\xe4\x41\x83\x77\x19\x25\x04\x0b\xdc\xe6\x81\x61\xc4\x16\xe9\x27\x8a\xc2\xa2\xdb\xd2\xb1\x61\x90\x61\x60\xd0\x93\xa5\x71\x24\x3f\xe1\xe1\xe7\x9f\x5e\x41\x2e\x34\x34\x0e\xc9\x78\x72\xa3\x35\x29\x84\x37\x20\x28\x96\x4d\xf1\x41\x3a\x56\x20\x8b\xa5\x74\xde\xb6\x19\xbc\x34\xb6\x12\x7e\x06\x5f\xa7\xa6\x29\x93\x33\x16\x64\xfd\xed\xec\xeb\xda\x58\xff\x2d\xfc\xac\x55\x4b\x44\x0b\xb8\x5f\xa2\x86\xeb\xee\x6c\xf0\xcd\xe0\xe3\x07\x5b\xe7\x19\x5c\x96\xda\xd8\x34\x92\xb4\xea\xb2\x12\x25\xc2\x42\xa2\x62\xbd\x76\xe8\xb3\x75\x09\x8e\x4a\x11\x02\x5c\x5a\xc8\xf2\x95\xa8\xf7\xb2\xe6\x22\x8d\xa4\xb5\x68\xf9\x61\xf0\xee\x3b\xbd\x61\x55\xa6\x23\xd1\x9f\x22\xbf\x05\x11\x57\xa9\x44\x3d\x75\x6c\x36\x03\x36\x1d\xc6\x81\x8b\x44\x80\xf8\xd7\x37\x5f\x46\xcf\x95\x3d\xf6\xd8\xc3\x93\x3d\x7a\x6e\x0f\x43\xf6\x32\xed\xd5\xb6\x28\x72\xc0\x1a\xa5\xad\xf3\x2b\x53\x84\x63\xef\x5d\xe5\x87\xe1\x68\xc0\x87\xda\x38\x74\x50\xc8\xc5\x02\x2d\xf9\x1d\x73\x87\xd6\xca\x02\x1d\x2c\x8c\x65\x79\xd5\xa6\x60\x9b\xec\xe4\xb7\x12\x6a\xaf\x4c\x71\xa8\x60\x68\x69\x0e\x18\x41\x19\xa3\x1a\xee\x3c\xee\x56\x6b\x87\x3d\xc6\x4b\x3f\x6d\x0a\xbc\x46\x85\xb9\x37\x76\xfb\x88\x35\x9e\xbc\x1e\x4c\x88\x5e\x3f\x7d\xdd\x2f\x65\xbe\x84\xaa\x71\xec\x75\xbd\x6d\x70\x85\x2f\xde\xc0\x42\x7a\x30\x1a\x04\x2f\x4b\xbe\x7e\x73\x66\x25\x7c\xbe\x8c\x23\x9e\x3a\x50\x62\x8e\xca\xad\xd3\x99\x23\x87\xdc\xa2\x51\x58\x10\x41\xf6\x25\x4c\x73\xc7\x11\xf6\x70\x09\x82\x2b\xeb\xf0\xf6\x38\xcf\x60\x9f\x96\x05\xc6\x4b\x63\xa5\x6f\x2f\x94\x70\x6e\x97\x4e\x6f\x70\xf7\x72\xc1\xea\x23\x17\x12\x8b\x09\x48\x5d\x48\x4a\x69\x5c\x3a\xfb\x53\xd7\xd1\xcd\x68\x2c\x05\xb8\xc1\xf8\xc4\xa1\x34\x06\xee\xa5\x52\xc4\xac\x02\x17\xa2\x51\xec\x24\x7f\x47\x6b\x40\xb2\x76\x5a\xd6\x2b\x6d\x52\xf7\x38\xf3\x46\xce\xea\x8d\x22\x80\xd8\x67\x2f\x7b\x4e\xf9\xb6\x1f\x0f\xc2\xe2\x10\x9d\xc7\x30\x44\x07\xe5\xe3\x0e\x48\x8f\x6f\x4f\x58\xbb\x92\xa6\x0c\x7f\xd2\x63\x35\x22\xcb\xcd\xd4\x81\xb4\x8c\x50\x47\xbf\x51\x56\x75\xef\x05\x69\x1d\xc3\xbc\xd0\x83\x0e\x84\x6e\xc1\x8b\x80\x48\x44\xd4\xdf\x28\x31\x6f\x65\xad\x10\xbe\xbe\xc5\x76\x12\x30\x20\x2e\x16\x98\xfb\x6f\xa1\x71\x09\x15\xf1\x78\xfa\xe8\x40\xf6\xd7\xe9\xaf\x6f\x77\x9d\xf8\x20\x7d\xde\x6f\xfb\xe1\x17\xb6\x34\x36\x62\x8d\x43\x2f\x78\xc2\x9a\x72\x06\x0e\x04\x5a\xc4\x1f\x3e\x56\x06\x2f\xaa\xda\xb7\x50\xa1\xd0\x2e\x59\xb6\x52\x2b\x83\x5d\x06\xff\x43\x7e\x70\xa0\xc6\x42\x29\x73\xdf\x61\x62\xd6\x90\xd7\xe6\x3a\xda\xfb\x04\xae\x2c\x2e\xd0\xf6\x2d\xec\x26\x5f\x9b\x17\x0f\x98\x37\x7e\xa7\x07\x18\xf2\x6d\x44\x95\xc3\xef\x16\xdb\x47\x30\xe4\x47\x6c\x53\xec\x0e\x27\xbb\xc5\x36\x28\x03\x37\xf5\x3a\x24\xea\x5a\x49\x0c\xf0\x74\x8c\x33\xb7\xd8\x3a\xb6\x6f\x9a\x7f\x1b\xa8\x23\x8d\x9f\xf4\x5a\x92\xdc\xec\x0b\x42\x48\xee\xbf\x82\xbe\xe6\xa6\x9a\x4b\x1d\x16\x0b\xa4\x93\x28\x98\x7a\x62\xa8\x2e\xf8\x93\x97\xf9\x14\xec\x4a\x9b\x7a\x04\xcf\x7e\x4e\xe7\xe8\xb1\x3f\x08\xda\xd1\x53\x82\xf1\x2a\x58\xfc\x52\xd6\x29\xa5\xe2\xad\x67\xf0\xab\x50\xb2\xcf\x47\x83\x6e\x04\x0e\xf0\xa9\x5e\x7c\x68\x84\xca\xe0\x79\xf0\x67\x7c\xfa\xd8\x14\x07\x11\x23\x3f\x34\xf2\x4e\x28\x8a\xdf\xde\x90\x87\x2c\x72\x61\x0b\x8e\x30\x31\x4f\x73\x26\x48\x4f\xb0\x23\x20\x78\x9a\xac\xbd\x97\x91\xe3\x1c\x11\x6a\x61\xbd\xcc\x1b\x25\x6c\xaa\x3d\xb5\x9f\x84\xa3\xbd\xd2\x5c\x63\x6e\x74\x31\x6a\xc1\x3b\xbd\x6b\x9c\x3b\xe4\x31\x87\x08\xb4\xd2\x14\x0c\x51\x64\x85\xeb\x4a\x7a\xbc\x1a\xc6\xcd\x22\x59\x75\x67\x62\x13\x30\x14\x3d\xee\xa5\x8b\x69\x5c\x07\x95\x65\x80\xd2\x27\x03\xf7\xd8\x59\x45\x06\xdf\xb7\x29\xd2\x4c\x40\xfa\x10\x7b\x3c\xe1\x9a\x49\x02\x00\x51\x65\x23\xb3\x7b\x83\x5a\x18\x8b\x04\x6f\x8f\x0b\xc3\x73\xf0\x4e\xe6\xfe\x24\x83\xbf\x51\x30\x23\xc1\x6b\x2c\x85\x97\x77\x98\x54\x3c\x05\x3e\x6f\x91\x52\x3f\x10\x0e\x9e\xc1\x31\x4f\x03\x59\x55\x58\x48\xe1\x51\xb5\x27\x30\x6f\x79\x19\xd7\x3a\x8f\xd5\x21\xa2\xa3\xa4\xbe\x5c\xa9\x03\x6d\xfe\x16\x31\x45\x91\xda\x7f\xf9\x97\x91\x91\xbc\xd9\x47\x48\xf6\x57\x4e\xac\x57\x5c\x4d\xc8\xb5\xd7\x44\xd8\xc5\x20\xd3\x79\x91\xce\x6f\x48\x17\x6d\x61\xd2\xdb\x55\xaa\x6c\xcc\xb1\x73\x33\x9d\x80\x7f\x23\x3d\x10\x94\x58\xb0\x96\x07\xcd\xfd\x03\x3a\x2e\xf3\xb1\xd4\x60\x67\x44\xdb\x9d\xb9\x02\x67\xaf\x73\xe1\xf0\xcb\xbf\xec\x48\x09\x42\xdd\x89\x64\xbe\x99\xdd\xc2\x01\x81\xb2\x27\xbe\x4b\x58\x7b\xcd\xba\x5b\xfe\xa3\x28\x48\x4a\x02\xf6\xa6\x2b\x5d\xaa\x20\x74\x27\xef\x69\xca\x08\xb9\x80\x2f\xa4\x46\x1b\xa8\x91\xf3\x93\xda\x79\xa1\xbd\x64\xcf\xd6\xe5\x8e\x29\x97\xbc\x97\x7e\xf9\x98\x74\x85\x75\x2d\x3a\x9a\xa0\x5c\xb1\x3a\xb0\xe1\x1f\x1e\x9d\x56\x26\x40\xbb\xbf\xce\x70\x95\xa0\x6f\x58\x53\x38\x27\x4b\x42\x99\x70\x8f\xb2\x5c\xfa\x14\x4e\x56\xd1\x26\xb5\xc6\x25\xe4\xef\x6c\x4d\x55\x17\x04\xa4\xe7\x08\x30\x47\x62\xa0\x6b\x2a\x2c\x92\xcf\x28\xb0\x46\x5d\xa0\xce\x5b\xae\x6a\xa9\x3b\xb4\x19\xfc\xe2\x48\x52\xf0\xdf\xb2\x5c\x12\x0b\xc3\xa2\x43\xa8\xc4\xa8\x80\x42\xf5\xea\x0e\x24\x21\x7b\xc2\x35\x96\x32\x1a\x62\x3f\x61\xa0\x44\x01\x8b\xb5\xf1\x0e\x8a\x86\x6b\x6d\xeb\x9b\x68\x88\x0f\x19\xa3\x58\x2b\x74\xd9\x15\x12\xba\x94\x20\x18\x3c\x1d\xa9\x34\xa1\xaa\xc6\x95\x5f\xf2\x9d\xde\xf4\x7e\x54\x86\x52\x48\x47\x43\x6a\xff\xc5\xe7\x81\x6e\x4a\x26\xa2\xeb\x31\x20\xd6\x0f\x43\x9a\x03\x8d\x0e\xcc\xc7\x61\x3e\x92\xdc\xcc\xb3\x40\x6a\xdb\x3c\x76\xc7\xa2\x5a\xdf\x72\xef\xd3\xad\xd0\xb7\x58\x80\xc2\x07\x99\x9b\xd2\x8a\x7a\x29\x73\xa1\x54\xcb\x66\xca\xe9\xa0\xf4\x8e\xab\x28\x23\x65\x9b\x5d\x6e\xbc\xbb\x02\x78\x74\xf9\xc2\x61\x6e\xd1\xef\x2f\x85\x5d\x87\x71\x7d\x50\xa6\x08\x48\x2c\x8e\x04\x82\x8e\x44\x9d\x4b\xf5\x1e\x91\xe7\x64\x48\xac\xba\x46\x7b\x8c\x00\x64\xa0\xca\x19\x5c\x72\x48\x9d\xa3\x63\x2d\xbf\x45\xac\x83\xa6\x29\xe9\x3c\xb8\x4a\x28\x35\x01\x27\x75\x8e\x80\x22\x5f\x06\x76\x6a\xc4\x94\x50\x7b\x2b\x31\xc0\x20\x0a\xb5\x6d\x27\x1b\xd4\x7e\x3b\xa8\x19\xcf\xbb\x46\x72\xae\x71\x36\x76\x3e\x65\x3f\x27\x7b\x5f\x94\x62\x62\xbc\x73\x72\xfd\xf5\xde\x23\x96\x0e\x75\xe2\x6b\x4f\xe0\xa3\xdc\xef\x6b\x7e\x59\x19\xde\xdd\x33\x2c\xcd\x7d\xaa\x38\x6f\x18\x39\x39\x5e\x97\x64\x5b\x48\x97\x93\xa5\x63\x01\x17\x46\x3b\xc6\xa7\xe1\xe2\x81\x2f\x0e\xee\x84\x0a\xaa\x90\x08\xd7\x46\x29\x36\xf9\x26\xa5\x13\x84\xe3\x35\x60\x35\xc7\xa2\xc0\x82\x8e\x15\xb6\xb2\x23\xcc\xfd\xc1\x52\x51\x8a\x0f\x57\x46\xa9\xf1\x28\x36\x9a\x97\x1e\x92\x95\x26\x06\x8c\x61\xa3\xd5\xd0\x97\x38\x26\x5d\x67\x33\x05\x7a\xb4\x95\xd4\x11\x1e\x11\xd4\xed\x18\x3b\x47\x7f\x8f\xa8\x21\x5f\x62\x7e\xdb\x99\x52\xbc\xb7\x59\x93\x5a\xbc\x34\x5a\xf5\x58\xfd\x95\x98\x51\x8a\x13\x0d\x87\x08\x92\x72\x02\x8d\xf7\x69\xce\x9a\x8d\x0e\x9c\xbd\xb8\x13\x52\x89\xb9\x42\x8e\x9a\xdd\xd7\x64\xe5\xfe\x28\xc5\xf3\xba\x51\x8a\x40\xac\x2e\xa0\x7c\x73\x75\x01\xde\x8a\xc5\x42\xe6\xd4\x55\x48\x8b\xb9\x8f\x35\x89\x5d\x47\x18\x83\x6b\x3b\x2d\xc2\x79\xe1\x9b\x0d\x19\x8d\x08\x78\x4c\xb0\x94\x87\xc8\x9d\x05\xa2\x15\x51\xbe\x59\x4d\x56\x68\x1b\x18\x92\xad\x95\x62\x6a\x06\xaf\x0d\xe7\x08\xc2\xc3\x2b\x74\x14\x76\x99\x41\x6f\x50\x38\xa3\x07\xde\x95\xd1\xaf\x95\xa5\xd4\x42\xc5\x43\xf1\xad\x0f\x41\x74\x69\x74\x97\x7b\x88\x96\x8c\xb2\x92\xa5\x15\xbe\x73\x8a\xfd\xbe\x63\x74\x89\x71\x71\xd1\xf8\xc6\x62\x06\xe7\xba\x65\x79\x2f\x50\x50\x03\x51\xf6\xd6\x14\x4d\x4e\x78\x89\x1c\x6c\xe3\x86\x44\x3e\xa9\x1b\x5d\xe1\xda\xd1\x45\x5a\x24\x01\x3d\x47\x06\x20\x64\x2c\x9e\x1a\x8d\x20\x5c\x4d\x79\x5c\xd2\xc9\xc6\x72\x11\xbb\x63\x30\x07\x8b\xf3\xab\x4b\x48\x4f\x43\x32\x98\x4e\xa7\xf0\x96\x9a\x9d\xb7\x4d\xce\xf1\x85\x4c\x48\x17\x31\x52\x04\xed\xe3\x43\x0a\x86\x9d\x7c\x0c\x88\x95\x8f\x00\xc1\x6a\xe1\x97\x90\x05\xc6\x67\x03\x56\x00\xbc\xa4\x58\xf3\x20\xaa\x9a\xf5\x9e\x5c\xf7\x4b\x63\xae\x83\x84\xc2\x82\xff\x80\xd3\xd3\x75\x85\x30\x73\xc2\xa7\xb1\x7a\xc8\x7a\xb1\x30\xe6\xa9\x5b\x3d\x4f\x46\x13\x7f\xd4\xe6\x5e\x6f\x5b\x9a\xd7\x12\x16\x67\x70\x73\x74\x9e\x4c\xef\xe6\x68\x02\x37\x47\x57\xd6\x94\x84\x59\xa5\x2e\xa9\x81\x34\xea\xe6\xe8\x39\x96\x56\x14\x58\xdc\x1c\x11\xd9\xff\xa8\x29\xbd\x7a\x85\xb6\xc4\x1f\xb1\xfd\x86\x89\x75\xcd\x29\x1c\x7c\x53\x51\x3f\xb7\x53\xfc\xa5\x20\xf5\x4d\x25\xea\xae\xe1\x95\xa8\xbb\xc9\x17\xbd\x92\xbd\x7b\x5f\xa1\x17\x77\x67\x59\x2f\xce\xbf\xff\xe6\x8c\x9e\xdd\x1c\xf5\xfb\x9f\x98\x8a\xd4\xa2\xf6\xed\xcd\x11\xac\xac\x3a\xbb\x39\xe2\x75\x53\x7b\xda\xe4\xec\xe6\x88\x56\xa2\x66\x6b\xbc\x99\x37\x8b\xd9\xcd\xd1\xbc\xf5\xe8\x26\x67\x13\x8b\xf5\x84\xd0\xd2\x37\xfd\x0a\x37\x47\x7f\x87\x1b\x4d\x9b\xe5\x44\x30\x48\xd2\xc1\x3f\x8f\x46\xe2\xf9\x88\xd3\x1f\x4f\xde\x28\x3b\x53\xc2\xf9\xb7\x56\x68\x27\xd3\x33\x89\x9d\x43\xab\x60\xec\x3b\xfb\x2d\x3b\x80\x9d\xdd\x41\x1b\x76\x76\xef\x08\x9d\x87\x84\xad\xcd\x33\x1c\x58\x72\xde\x9c\x98\xf0\x0c\xf5\xf4\x45\x9a\x4e\x3e\x14\x00\xe2\x68\x32\x44\x02\xf1\x64\xdf\xd1\xb9\x11\x5c\xd4\x2c\xb7\x2c\x1a\x6f\x97\xdd\x77\x57\x9c\x8d\x2e\xd0\xaa\x96\xe0\x44\x4f\x35\x5f\x12\xda\x2f\x32\x08\x45\x03\xd1\x95\x68\x6e\xc9\x90\x38\x34\xe9\x41\xe5\x9a\xf7\xd5\x51\x24\xc7\x11\x0c\x3e\x92\xe1\x28\x97\xe7\x58\x7b\x0e\x73\x1f\x7f\x93\x02\x83\x8a\x0a\xc1\xaa\xa9\xdf\xad\x1e\x51\x39\x0e\x64\x7c\x1c\x1d\x2f\xa5\x9b\x4a\x50\xdc\x10\x05\xed\xb7\xef\x0b\xb9\x5b\xc8\xb5\x82\x3f\x15\x73\xd3\xc4\xda\x6e\x27\x87\xc8\xea\x18\x45\x18\x95\xd5\xbe\xdd\x5b\x2e\x39\xe8\xf0\x95\x78\xf8\x09\x75\xe9\x97\x33\xf8\xe2\xf3\xff\xfc\xf2\xab\x1d\x03\x83\x63\xc4\xe2\x07\xd4\xb1\x10\x74\x20\x1b\x36\x27\xae\x57\x0c\xfb\x97\x4c\x65\x3f\xa6\xab\x70\xf7\x1a\x74\x2f\xf8\x9e\x32\xc6\xca\xa6\x26\xbe\x90\x97\x0f\x85\x86\x1c\x27\x84\x90\xb6\x12\x93\x9d\x03\x57\x2d\x9c\x7d\x3e\x81\x79\x64\xf1\xa6\xfb\x7e\xf7\xf0\x3e\xdb\xb2\x65\xe9\xe0\xaf\x93\xb5\xfd\x48\x07\x24\x2a\xb3\x60\xc5\x09\xf9\xa5\xc5\x10\x06\x53\x25\x60\x33\x0c\x62\xb7\xdf\x7d\x82\xdb\x57\x0c\x3c\xac\x10\x58\x49\x2d\xab\xa6\x9a\xc1\xb3\x1d\x43\x82\x4b\x3b\x50\x9a\x61\x70\x8f\x02\x04\xb9\xae\xd2\x8a\x8a\xf0\x4e\x0e\xb2\x40\xed\xe5\x42\xa2\x1d\xaa\x36\xe7\xfa\x61\x62\xba\x6a\xed\xb8\xc8\xb7\xb0\xe4\x87\x06\xca\x7e\x15\x40\x8e\xe5\x08\x1c\xaf\x6e\xf2\xa1\x83\x6a\x6b\x0c\xd6\x10\xb2\x17\xc0\x87\x3a\xe0\xd4\xc1\x1d\x44\x85\x42\x4b\x5d\xa6\xdb\xdd\x54\x48\x0e\x51\xf7\x7e\x89\x1c\x7a\xba\x22\x65\x28\xf6\xe7\x94\x29\x15\x9c\x34\x09\x28\x1b\x61\x85\xf6\x94\xc3\x9e\x5f\x5d\x06\x80\xbe\x5e\xd0\x14\xfd\x93\x9f\x64\x8d\xc1\x54\x83\xb3\xa2\x2d\xc6\x67\x42\x6c\xb1\x9f\xce\x54\xcf\x9e\x7d\x3e\x2a\xf2\x6e\xdc\xee\xfb\x3b\xe1\x3d\x5a\x3d\x83\xff\x7b\x77\x3e\xfd\x9b\x98\xfe\xfe\xfe\x38\xfe\xf1\x6c\xfa\xd7\xff\x9f\xcc\xde\x7f\x36\xf8\x7c\x7f\xf2\xdd\xbf\xef\xa0\xb4\x1d\xc9\xef\x50\x9f\x18\x44\x12\x48\x4c\x12\x9d\x70\x84\x31\x0b\x78\x6b\x1b\x9c\xc0\x4b\xa1\x1c\x4e\xe0\x17\xcd\xa1\xe1\x0f\x32\x0d\x75\x53\x8d\x65\x7a\x53\x38\xa2\x55\xb7\x83\x8f\x6e\x08\x6f\x69\x7c\x4c\xdc\xee\x58\xee\x7a\x18\x93\x52\x9d\x61\xe0\x69\x06\x4f\xcb\xf8\x2d\x12\x19\x92\xc9\x22\xbc\xcd\x72\x53\x9d\x0e\x9e\x9e\x11\xae\x7e\x25\x74\x0b\xbd\x5b\x0b\xa0\x74\x5d\xd3\x9d\x27\xdf\x24\x72\x6b\x9c\xeb\xde\xce\x39\x50\xf2\x16\xe1\xbc\x4f\x1a\xc9\x59\xce\x31\x17\x0c\xc4\xed\x5c\x7a\x2b\x42\xc5\x37\xe1\xca\xbe\x9c\xb4\x68\x14\x1c\x53\xae\x9a\xf1\x7b\x89\x0d\xef\x7a\x12\x4b\xb7\x73\xa9\xa4\x6f\x43\x1e\x9d\x1b\xbd\x50\x32\xe2\xff\xaa\x36\xd6\x0b\xed\x63\x91\x11\x4b\x7c\x00\xd9\xdf\x7b\x4b\x07\xc7\x85\x76\x67\x67\x9f\x7f\x71\xdd\xcc\x0b\x53\x09\xa9\x5f\x56\xfe\xf4\xe4\xbb\xe3\x0f\x8d\x50\x7c\xc5\xfb\x5a\x54\xf8\xb2\xf2\x27\x9f\x2e\x2c\x9e\x7d\x79\x80\x15\x1d\xbf\x0b\xb6\xf2\xfe\xf8\xdd\x34\xfe\xf5\x59\x6a\x3a\xf9\xee\xf8\x26\x1b\xed\x3f\xf9\x8c\xce\x30\xb0\xc0\xf7\xef\xa6\xbd\xf9\x65\xef\x3f\x3b\xf9\x6e\xd0\x77\xb2\xcd\x18\x1f\xa6\xb7\xcd\x1c\xad\x46\x8f\x6e\x4a\x59\xc0\xb4\x12\xf5\xf4\x16\xdb\x1d\xc6\xb9\x13\x8e\x6e\x12\x0a\x1c\xab\x44\xbd\x2d\xf5\x0e\x4f\xc8\xde\x20\x3f\x5b\xca\xb7\x2a\xf9\x1f\xbc\x7e\xd1\x62\x07\x24\x0b\x5d\xfc\xc8\xfd\x23\x4a\x4e\x14\x77\x42\x99\x6d\x0c\x4e\x1f\xa0\x2d\x87\xe1\x47\x3d\xf2\x4c\x67\xef\x22\xdd\x39\x3f\x9a\x42\xb2\xef\x1d\x2f\x9c\x0f\xa6\xd3\xc8\x9d\x99\xd6\x6a\x01\xf3\xf2\x79\x80\xbe\xec\x7a\x18\xce\x2d\x0d\xe5\x79\x8d\x96\x1f\x1a\x84\xcb\xe7\xd1\x1f\x4d\x40\xea\x5c\x35\x05\x21\x85\x5f\x7e\xb9\x7c\x4e\xc9\xfb\xf7\xd1\xdd\xdc\x23\x14\x46\x3f\xf5\xf0\xf3\xeb\x9f\xfe\x97\x2b\x01\x3c\x62\x12\x02\x7a\xb8\x8c\x12\x4a\x86\xc7\xd1\x29\x00\xc3\xf7\x48\xb4\xe2\xca\xb9\xa8\xbb\xe2\x09\xbb\x3b\x5d\xc0\x12\x55\x4d\x00\xe2\x16\xc1\x35\x36\xee\x8e\x08\x87\xeb\x5e\xe2\x35\xc4\xcb\xe0\x12\x3d\x2b\xb9\xe2\x47\xbe\x1f\xc3\xb4\xf8\xec\x54\x1a\x7d\x4d\x28\xf0\x4f\xb0\x0f\x52\xe4\x9f\x23\x66\xe5\x35\x3e\xc2\x18\x46\xde\xda\xee\x3d\x21\x44\x63\xba\x08\x27\xfd\xd3\x2d\x69\xe3\xbc\x1f\xb5\x62\x28\x66\xf2\xb5\xe6\x9b\x3d\xc5\xe7\x8d\x37\x5c\xab\xa9\xf3\xda\x7f\x79\xe0\xc2\x6a\x77\x33\xba\x14\x0e\xe6\x88\x9a\x6b\xb9\xa1\xf4\x87\x3a\x6a\x1d\xf6\x55\xd8\xa6\x9e\x7a\x33\x2d\xb6\x0b\x6f\x0f\xe7\xf6\x73\x6d\x24\x73\x5d\x39\xdb\xf9\xa3\x13\xd5\xfb\x65\xbb\x8d\x07\x2e\xd4\x32\xf9\xd5\x50\xc2\x20\x8f\x3d\xd8\xee\xc4\x64\xad\xa4\xcb\x99\x45\x2c\x6a\xc4\x3c\x63\x73\x4b\x94\x3d\xae\x54\x36\xbc\xe1\xab\xbc\xd5\xca\xde\xe3\xf7\x18\xc4\x7c\x8d\xf6\x4e\x7e\x54\xf0\xdb\x67\x98\x79\x78\x64\x72\xfe\xe7\x9b\x15\x41\xaf\x8f\x5e\x84\x4b\x7f\xb9\xd9\x73\x77\x33\x42\xc0\x05\x0e\x8e\x3d\x66\x7d\x0c\x8d\xc7\x06\xcb\xe0\x4d\x66\xfc\xb0\x38\x35\x79\x63\xf9\xbe\x7d\xd8\xd6\xcc\x3b\xa0\xdc\x53\x8f\x39\x10\xfc\xe3\x9f\x4f\xfe\x15\x00\x00\xff\xff\xfd\x93\x0e\xb4\x2a\x39\x00\x00") func operatorsCoreosCom_catalogsourcesYamlBytes() ([]byte, error) { return bindataRead( diff --git a/vendor/github.com/operator-framework/api/pkg/manifests/bundleloader.go b/vendor/github.com/operator-framework/api/pkg/manifests/bundleloader.go index 94f14a22ac..5d5bf2dc1a 100644 --- a/vendor/github.com/operator-framework/api/pkg/manifests/bundleloader.go +++ b/vendor/github.com/operator-framework/api/pkg/manifests/bundleloader.go @@ -51,10 +51,6 @@ func (b *bundleLoader) LoadBundle() error { // Add values from the annotations when the values are not loaded func (b *bundleLoader) addChannelsFromAnnotationsFile() { - if b.bundle == nil { - // None of this is relevant if the bundle was not found - return - } // Note that they will not get load for Bundle Format directories // and PackageManifest should not have the annotationsFile. However, // the following check to ensure that channels and default channels diff --git a/vendor/github.com/operator-framework/api/pkg/operators/v1alpha1/catalogsource_types.go b/vendor/github.com/operator-framework/api/pkg/operators/v1alpha1/catalogsource_types.go index ec2a19f6b3..726f8e1aa1 100644 --- a/vendor/github.com/operator-framework/api/pkg/operators/v1alpha1/catalogsource_types.go +++ b/vendor/github.com/operator-framework/api/pkg/operators/v1alpha1/catalogsource_types.go @@ -88,11 +88,6 @@ type CatalogSourceSpec struct { // +optional Secrets []string `json:"secrets,omitempty"` - // RunAsRoot allows admins to indicate that they wish to run the CatalogSource pod in a privileged - // pod as root. This should only be enabled when running older catalog images which could not be run as non-root. - // +optional - RunAsRoot bool `json:"runAsRoot,omitempty"` - // Metadata DisplayName string `json:"displayName,omitempty"` Description string `json:"description,omitempty"` diff --git a/vendor/modules.txt b/vendor/modules.txt index 899c0a96be..402831139f 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -626,7 +626,7 @@ github.com/openshift/client-go/config/informers/externalversions/config github.com/openshift/client-go/config/informers/externalversions/config/v1 github.com/openshift/client-go/config/informers/externalversions/internalinterfaces github.com/openshift/client-go/config/listers/config/v1 -# github.com/operator-framework/api v0.17.0 +# github.com/operator-framework/api v0.16.0 ## explicit; go 1.18 github.com/operator-framework/api/crds github.com/operator-framework/api/pkg/constraints