diff --git a/.gitignore b/.gitignore index 8dd56a11..f5010830 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,3 @@ cover.out bin/ .idea/ vendor -proto/envoy diff --git a/proto/envoy/api/v2/ratelimit/ratelimit.pb.go b/proto/envoy/api/v2/ratelimit/ratelimit.pb.go new file mode 100644 index 00000000..d625f65a --- /dev/null +++ b/proto/envoy/api/v2/ratelimit/ratelimit.pb.go @@ -0,0 +1,138 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// source: envoy/api/v2/ratelimit/ratelimit.proto + +/* +Package ratelimit is a generated protocol buffer package. + +It is generated from these files: + envoy/api/v2/ratelimit/ratelimit.proto + +It has these top-level messages: + RateLimitDescriptor +*/ +package ratelimit + +import proto "github.com/golang/protobuf/proto" +import fmt "fmt" +import math "math" +import _ "github.com/lyft/protoc-gen-validate/validate" + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package + +// A RateLimitDescriptor is a list of hierarchical entries that are used by the service to +// determine the final rate limit key and overall allowed limit. Here are some examples of how +// they might be used for the domain "envoy". +// +// .. code-block:: cpp +// +// ["authenticated": "false"], ["remote_address": "10.0.0.1"] +// +// What it does: Limits all unauthenticated traffic for the IP address 10.0.0.1. The +// configuration supplies a default limit for the *remote_address* key. If there is a desire to +// raise the limit for 10.0.0.1 or block it entirely it can be specified directly in the +// configuration. +// +// .. code-block:: cpp +// +// ["authenticated": "false"], ["path": "/foo/bar"] +// +// What it does: Limits all unauthenticated traffic globally for a specific path (or prefix if +// configured that way in the service). +// +// .. code-block:: cpp +// +// ["authenticated": "false"], ["path": "/foo/bar"], ["remote_address": "10.0.0.1"] +// +// What it does: Limits unauthenticated traffic to a specific path for a specific IP address. +// Like (1) we can raise/block specific IP addresses if we want with an override configuration. +// +// .. code-block:: cpp +// +// ["authenticated": "true"], ["client_id": "foo"] +// +// What it does: Limits all traffic for an authenticated client "foo" +// +// .. code-block:: cpp +// +// ["authenticated": "true"], ["client_id": "foo"], ["path": "/foo/bar"] +// +// What it does: Limits traffic to a specific path for an authenticated client "foo" +// +// The idea behind the API is that (1)/(2)/(3) and (4)/(5) can be sent in 1 request if desired. +// This enables building complex application scenarios with a generic backend. +type RateLimitDescriptor struct { + // Descriptor entries. + Entries []*RateLimitDescriptor_Entry `protobuf:"bytes,1,rep,name=entries" json:"entries,omitempty"` +} + +func (m *RateLimitDescriptor) Reset() { *m = RateLimitDescriptor{} } +func (m *RateLimitDescriptor) String() string { return proto.CompactTextString(m) } +func (*RateLimitDescriptor) ProtoMessage() {} +func (*RateLimitDescriptor) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } + +func (m *RateLimitDescriptor) GetEntries() []*RateLimitDescriptor_Entry { + if m != nil { + return m.Entries + } + return nil +} + +type RateLimitDescriptor_Entry struct { + // Descriptor key. + Key string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"` + // Descriptor value. + Value string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"` +} + +func (m *RateLimitDescriptor_Entry) Reset() { *m = RateLimitDescriptor_Entry{} } +func (m *RateLimitDescriptor_Entry) String() string { return proto.CompactTextString(m) } +func (*RateLimitDescriptor_Entry) ProtoMessage() {} +func (*RateLimitDescriptor_Entry) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0, 0} } + +func (m *RateLimitDescriptor_Entry) GetKey() string { + if m != nil { + return m.Key + } + return "" +} + +func (m *RateLimitDescriptor_Entry) GetValue() string { + if m != nil { + return m.Value + } + return "" +} + +func init() { + proto.RegisterType((*RateLimitDescriptor)(nil), "envoy.api.v2.ratelimit.RateLimitDescriptor") + proto.RegisterType((*RateLimitDescriptor_Entry)(nil), "envoy.api.v2.ratelimit.RateLimitDescriptor.Entry") +} + +func init() { proto.RegisterFile("envoy/api/v2/ratelimit/ratelimit.proto", fileDescriptor0) } + +var fileDescriptor0 = []byte{ + // 211 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4b, 0xcd, 0x2b, 0xcb, + 0xaf, 0xd4, 0x4f, 0x2c, 0xc8, 0xd4, 0x2f, 0x33, 0xd2, 0x2f, 0x4a, 0x2c, 0x49, 0xcd, 0xc9, 0xcc, + 0xcd, 0x2c, 0x41, 0xb0, 0xf4, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0xc4, 0xc0, 0xea, 0xf4, 0x12, + 0x0b, 0x32, 0xf5, 0xca, 0x8c, 0xf4, 0xe0, 0xb2, 0x52, 0xe2, 0x65, 0x89, 0x39, 0x99, 0x29, 0x89, + 0x25, 0xa9, 0xfa, 0x30, 0x06, 0x44, 0x83, 0xd2, 0x56, 0x46, 0x2e, 0xe1, 0xa0, 0xc4, 0x92, 0x54, + 0x1f, 0x90, 0x32, 0x97, 0xd4, 0xe2, 0xe4, 0xa2, 0xcc, 0x82, 0x92, 0xfc, 0x22, 0xa1, 0x70, 0x2e, + 0xf6, 0xd4, 0xbc, 0x92, 0xa2, 0xcc, 0xd4, 0x62, 0x09, 0x46, 0x05, 0x66, 0x0d, 0x6e, 0x23, 0x43, + 0x3d, 0xec, 0x46, 0xeb, 0x61, 0xd1, 0xad, 0xe7, 0x9a, 0x57, 0x52, 0x54, 0xe9, 0xc4, 0xb5, 0xeb, + 0xe5, 0x01, 0x66, 0xd6, 0x49, 0x8c, 0x4c, 0x1c, 0x8c, 0x41, 0x30, 0xd3, 0xa4, 0x5c, 0xb9, 0x58, + 0xc1, 0xb2, 0x42, 0xd2, 0x5c, 0xcc, 0xd9, 0xa9, 0x95, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x9c, 0x4e, + 0x9c, 0x20, 0xa5, 0x2c, 0x45, 0x4c, 0x0a, 0x8c, 0x41, 0x20, 0x51, 0x21, 0x79, 0x2e, 0xd6, 0xb2, + 0xc4, 0x9c, 0xd2, 0x54, 0x09, 0x26, 0x74, 0x69, 0x88, 0xb8, 0x13, 0x77, 0x14, 0x27, 0xdc, 0x09, + 0x49, 0x6c, 0x60, 0xbf, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x86, 0x2d, 0x05, 0x19, 0x26, + 0x01, 0x00, 0x00, +} diff --git a/proto/envoy/service/ratelimit/v2/rls.pb.go b/proto/envoy/service/ratelimit/v2/rls.pb.go new file mode 100644 index 00000000..8c42b799 --- /dev/null +++ b/proto/envoy/service/ratelimit/v2/rls.pb.go @@ -0,0 +1,354 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// source: envoy/service/ratelimit/v2/rls.proto + +/* +Package v2 is a generated protocol buffer package. + +It is generated from these files: + envoy/service/ratelimit/v2/rls.proto + +It has these top-level messages: + RateLimitRequest + RateLimitResponse +*/ +package v2 + +import proto "github.com/golang/protobuf/proto" +import fmt "fmt" +import math "math" +import envoy_api_v2_ratelimit "github.com/lyft/ratelimit/proto/envoy/api/v2/ratelimit" +import _ "github.com/lyft/protoc-gen-validate/validate" + +import ( + context "golang.org/x/net/context" + grpc "google.golang.org/grpc" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package + +type RateLimitResponse_Code int32 + +const ( + RateLimitResponse_UNKNOWN RateLimitResponse_Code = 0 + RateLimitResponse_OK RateLimitResponse_Code = 1 + RateLimitResponse_OVER_LIMIT RateLimitResponse_Code = 2 +) + +var RateLimitResponse_Code_name = map[int32]string{ + 0: "UNKNOWN", + 1: "OK", + 2: "OVER_LIMIT", +} +var RateLimitResponse_Code_value = map[string]int32{ + "UNKNOWN": 0, + "OK": 1, + "OVER_LIMIT": 2, +} + +func (x RateLimitResponse_Code) String() string { + return proto.EnumName(RateLimitResponse_Code_name, int32(x)) +} +func (RateLimitResponse_Code) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{1, 0} } + +type RateLimitResponse_RateLimit_Unit int32 + +const ( + RateLimitResponse_RateLimit_UNKNOWN RateLimitResponse_RateLimit_Unit = 0 + RateLimitResponse_RateLimit_SECOND RateLimitResponse_RateLimit_Unit = 1 + RateLimitResponse_RateLimit_MINUTE RateLimitResponse_RateLimit_Unit = 2 + RateLimitResponse_RateLimit_HOUR RateLimitResponse_RateLimit_Unit = 3 + RateLimitResponse_RateLimit_DAY RateLimitResponse_RateLimit_Unit = 4 +) + +var RateLimitResponse_RateLimit_Unit_name = map[int32]string{ + 0: "UNKNOWN", + 1: "SECOND", + 2: "MINUTE", + 3: "HOUR", + 4: "DAY", +} +var RateLimitResponse_RateLimit_Unit_value = map[string]int32{ + "UNKNOWN": 0, + "SECOND": 1, + "MINUTE": 2, + "HOUR": 3, + "DAY": 4, +} + +func (x RateLimitResponse_RateLimit_Unit) String() string { + return proto.EnumName(RateLimitResponse_RateLimit_Unit_name, int32(x)) +} +func (RateLimitResponse_RateLimit_Unit) EnumDescriptor() ([]byte, []int) { + return fileDescriptor0, []int{1, 0, 0} +} + +// Main message for a rate limit request. The rate limit service is designed to be fully generic +// in the sense that it can operate on arbitrary hierarchical key/value pairs. The loaded +// configuration will parse the request and find the most specific limit to apply. In addition, +// a RateLimitRequest can contain multiple "descriptors" to limit on. When multiple descriptors +// are provided, the server will limit on *ALL* of them and return an OVER_LIMIT response if any +// of them are over limit. This enables more complex application level rate limiting scenarios +// if desired. +// [#not-implemented-hide:] Hiding API for now. +type RateLimitRequest struct { + // All rate limit requests must specify a domain. This enables the configuration to be per + // application without fear of overlap. E.g., "envoy". + Domain string `protobuf:"bytes,1,opt,name=domain" json:"domain,omitempty"` + // All rate limit requests must specify at least one RateLimitDescriptor. Each descriptor is + // processed by the service (see below). If any of the descriptors are over limit, the entire + // request is considered to be over limit. + Descriptors []*envoy_api_v2_ratelimit.RateLimitDescriptor `protobuf:"bytes,2,rep,name=descriptors" json:"descriptors,omitempty"` + // Rate limit requests can optionally specify the number of hits a request adds to the matched + // limit. If the value is not set in the message, a request increases the matched limit by 1. + HitsAddend uint32 `protobuf:"varint,3,opt,name=hits_addend,json=hitsAddend" json:"hits_addend,omitempty"` +} + +func (m *RateLimitRequest) Reset() { *m = RateLimitRequest{} } +func (m *RateLimitRequest) String() string { return proto.CompactTextString(m) } +func (*RateLimitRequest) ProtoMessage() {} +func (*RateLimitRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } + +func (m *RateLimitRequest) GetDomain() string { + if m != nil { + return m.Domain + } + return "" +} + +func (m *RateLimitRequest) GetDescriptors() []*envoy_api_v2_ratelimit.RateLimitDescriptor { + if m != nil { + return m.Descriptors + } + return nil +} + +func (m *RateLimitRequest) GetHitsAddend() uint32 { + if m != nil { + return m.HitsAddend + } + return 0 +} + +// A response from a ShouldRateLimit call. +// [#not-implemented-hide:] Hiding API for now. +type RateLimitResponse struct { + // The overall response code which takes into account all of the descriptors that were passed + // in the RateLimitRequest message. + OverallCode RateLimitResponse_Code `protobuf:"varint,1,opt,name=overall_code,json=overallCode,enum=envoy.service.ratelimit.v2.RateLimitResponse_Code" json:"overall_code,omitempty"` + // A list of DescriptorStatus messages which matches the length of the descriptor list passed + // in the RateLimitRequest. This can be used by the caller to determine which individual + // descriptors failed and/or what the currently configured limits are for all of them. + Statuses []*RateLimitResponse_DescriptorStatus `protobuf:"bytes,2,rep,name=statuses" json:"statuses,omitempty"` +} + +func (m *RateLimitResponse) Reset() { *m = RateLimitResponse{} } +func (m *RateLimitResponse) String() string { return proto.CompactTextString(m) } +func (*RateLimitResponse) ProtoMessage() {} +func (*RateLimitResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } + +func (m *RateLimitResponse) GetOverallCode() RateLimitResponse_Code { + if m != nil { + return m.OverallCode + } + return RateLimitResponse_UNKNOWN +} + +func (m *RateLimitResponse) GetStatuses() []*RateLimitResponse_DescriptorStatus { + if m != nil { + return m.Statuses + } + return nil +} + +// Defines an actual rate limit in terms of requests per unit of time and the unit itself. +type RateLimitResponse_RateLimit struct { + RequestsPerUnit uint32 `protobuf:"varint,1,opt,name=requests_per_unit,json=requestsPerUnit" json:"requests_per_unit,omitempty"` + Unit RateLimitResponse_RateLimit_Unit `protobuf:"varint,2,opt,name=unit,enum=envoy.service.ratelimit.v2.RateLimitResponse_RateLimit_Unit" json:"unit,omitempty"` +} + +func (m *RateLimitResponse_RateLimit) Reset() { *m = RateLimitResponse_RateLimit{} } +func (m *RateLimitResponse_RateLimit) String() string { return proto.CompactTextString(m) } +func (*RateLimitResponse_RateLimit) ProtoMessage() {} +func (*RateLimitResponse_RateLimit) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1, 0} } + +func (m *RateLimitResponse_RateLimit) GetRequestsPerUnit() uint32 { + if m != nil { + return m.RequestsPerUnit + } + return 0 +} + +func (m *RateLimitResponse_RateLimit) GetUnit() RateLimitResponse_RateLimit_Unit { + if m != nil { + return m.Unit + } + return RateLimitResponse_RateLimit_UNKNOWN +} + +type RateLimitResponse_DescriptorStatus struct { + // The response code for an individual descriptor. + Code RateLimitResponse_Code `protobuf:"varint,1,opt,name=code,enum=envoy.service.ratelimit.v2.RateLimitResponse_Code" json:"code,omitempty"` + // The current limit as configured by the server. Useful for debugging, etc. + CurrentLimit *RateLimitResponse_RateLimit `protobuf:"bytes,2,opt,name=current_limit,json=currentLimit" json:"current_limit,omitempty"` + // The limit remaining in the current time unit. + LimitRemaining uint32 `protobuf:"varint,3,opt,name=limit_remaining,json=limitRemaining" json:"limit_remaining,omitempty"` +} + +func (m *RateLimitResponse_DescriptorStatus) Reset() { *m = RateLimitResponse_DescriptorStatus{} } +func (m *RateLimitResponse_DescriptorStatus) String() string { return proto.CompactTextString(m) } +func (*RateLimitResponse_DescriptorStatus) ProtoMessage() {} +func (*RateLimitResponse_DescriptorStatus) Descriptor() ([]byte, []int) { + return fileDescriptor0, []int{1, 1} +} + +func (m *RateLimitResponse_DescriptorStatus) GetCode() RateLimitResponse_Code { + if m != nil { + return m.Code + } + return RateLimitResponse_UNKNOWN +} + +func (m *RateLimitResponse_DescriptorStatus) GetCurrentLimit() *RateLimitResponse_RateLimit { + if m != nil { + return m.CurrentLimit + } + return nil +} + +func (m *RateLimitResponse_DescriptorStatus) GetLimitRemaining() uint32 { + if m != nil { + return m.LimitRemaining + } + return 0 +} + +func init() { + proto.RegisterType((*RateLimitRequest)(nil), "envoy.service.ratelimit.v2.RateLimitRequest") + proto.RegisterType((*RateLimitResponse)(nil), "envoy.service.ratelimit.v2.RateLimitResponse") + proto.RegisterType((*RateLimitResponse_RateLimit)(nil), "envoy.service.ratelimit.v2.RateLimitResponse.RateLimit") + proto.RegisterType((*RateLimitResponse_DescriptorStatus)(nil), "envoy.service.ratelimit.v2.RateLimitResponse.DescriptorStatus") + proto.RegisterEnum("envoy.service.ratelimit.v2.RateLimitResponse_Code", RateLimitResponse_Code_name, RateLimitResponse_Code_value) + proto.RegisterEnum("envoy.service.ratelimit.v2.RateLimitResponse_RateLimit_Unit", RateLimitResponse_RateLimit_Unit_name, RateLimitResponse_RateLimit_Unit_value) +} + +// Reference imports to suppress errors if they are not otherwise used. +var _ context.Context +var _ grpc.ClientConn + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the grpc package it is being compiled against. +const _ = grpc.SupportPackageIsVersion4 + +// Client API for RateLimitService service + +type RateLimitServiceClient interface { + // Determine whether rate limiting should take place. + ShouldRateLimit(ctx context.Context, in *RateLimitRequest, opts ...grpc.CallOption) (*RateLimitResponse, error) +} + +type rateLimitServiceClient struct { + cc *grpc.ClientConn +} + +func NewRateLimitServiceClient(cc *grpc.ClientConn) RateLimitServiceClient { + return &rateLimitServiceClient{cc} +} + +func (c *rateLimitServiceClient) ShouldRateLimit(ctx context.Context, in *RateLimitRequest, opts ...grpc.CallOption) (*RateLimitResponse, error) { + out := new(RateLimitResponse) + err := grpc.Invoke(ctx, "/envoy.service.ratelimit.v2.RateLimitService/ShouldRateLimit", in, out, c.cc, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// Server API for RateLimitService service + +type RateLimitServiceServer interface { + // Determine whether rate limiting should take place. + ShouldRateLimit(context.Context, *RateLimitRequest) (*RateLimitResponse, error) +} + +func RegisterRateLimitServiceServer(s *grpc.Server, srv RateLimitServiceServer) { + s.RegisterService(&_RateLimitService_serviceDesc, srv) +} + +func _RateLimitService_ShouldRateLimit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RateLimitRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RateLimitServiceServer).ShouldRateLimit(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/envoy.service.ratelimit.v2.RateLimitService/ShouldRateLimit", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RateLimitServiceServer).ShouldRateLimit(ctx, req.(*RateLimitRequest)) + } + return interceptor(ctx, in, info, handler) +} + +var _RateLimitService_serviceDesc = grpc.ServiceDesc{ + ServiceName: "envoy.service.ratelimit.v2.RateLimitService", + HandlerType: (*RateLimitServiceServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "ShouldRateLimit", + Handler: _RateLimitService_ShouldRateLimit_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "envoy/service/ratelimit/v2/rls.proto", +} + +func init() { proto.RegisterFile("envoy/service/ratelimit/v2/rls.proto", fileDescriptor0) } + +var fileDescriptor0 = []byte{ + // 518 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x93, 0x41, 0x6f, 0xd3, 0x30, + 0x14, 0xc7, 0x97, 0x34, 0x74, 0xdb, 0xcb, 0xda, 0x66, 0x3e, 0x40, 0x95, 0x0b, 0x55, 0x85, 0xa0, + 0x62, 0xe0, 0x4a, 0xe1, 0xc0, 0x05, 0x4d, 0x1a, 0x6b, 0x11, 0xd5, 0xd6, 0x76, 0x72, 0x57, 0x10, + 0x13, 0x52, 0x64, 0x1a, 0x8b, 0x59, 0xca, 0xe2, 0x60, 0xbb, 0x91, 0xb8, 0xf3, 0x29, 0xb8, 0xf2, + 0x69, 0xf8, 0x18, 0x7c, 0x13, 0x14, 0x27, 0x4d, 0x0b, 0x08, 0x89, 0xb2, 0x9b, 0xfd, 0xde, 0xfb, + 0xff, 0xf4, 0xfe, 0xcf, 0xcf, 0xf0, 0x80, 0x25, 0x99, 0xf8, 0xdc, 0x57, 0x4c, 0x66, 0x7c, 0xc1, + 0xfa, 0x92, 0x6a, 0x16, 0xf3, 0x1b, 0xae, 0xfb, 0x59, 0xd0, 0x97, 0xb1, 0xc2, 0xa9, 0x14, 0x5a, + 0x20, 0xdf, 0x54, 0xe1, 0xb2, 0x0a, 0x57, 0x55, 0x38, 0x0b, 0xfc, 0x87, 0x05, 0x81, 0xa6, 0xdc, + 0x68, 0x2a, 0xc0, 0xba, 0xc8, 0x30, 0xfc, 0x7b, 0x19, 0x8d, 0x79, 0x44, 0x35, 0xeb, 0xaf, 0x0e, + 0x45, 0xa2, 0xfb, 0xd5, 0x02, 0x8f, 0x50, 0xcd, 0xce, 0xf3, 0x62, 0xc2, 0x3e, 0x2d, 0x99, 0xd2, + 0xe8, 0x2e, 0xd4, 0x23, 0x71, 0x43, 0x79, 0xd2, 0xb6, 0x3a, 0x56, 0x6f, 0x9f, 0x94, 0x37, 0x34, + 0x06, 0x37, 0x62, 0x6a, 0x21, 0x79, 0xaa, 0x85, 0x54, 0x6d, 0xbb, 0x53, 0xeb, 0xb9, 0xc1, 0x11, + 0x2e, 0xfa, 0xa3, 0x29, 0xc7, 0x59, 0xb0, 0xd1, 0x5e, 0x85, 0x1d, 0x54, 0x1a, 0xb2, 0xa9, 0x47, + 0xf7, 0xc1, 0xbd, 0xe6, 0x5a, 0x85, 0x34, 0x8a, 0x58, 0x12, 0xb5, 0x6b, 0x1d, 0xab, 0xd7, 0x20, + 0x90, 0x87, 0x4e, 0x4c, 0xa4, 0xfb, 0xed, 0x0e, 0x1c, 0x6e, 0x34, 0xa7, 0x52, 0x91, 0x28, 0x86, + 0xe6, 0x70, 0x20, 0x32, 0x26, 0x69, 0x1c, 0x87, 0x0b, 0x11, 0x31, 0xd3, 0x63, 0x33, 0x08, 0xf0, + 0xdf, 0xc7, 0x84, 0xff, 0x80, 0xe0, 0x53, 0x11, 0x31, 0xe2, 0x96, 0x9c, 0xfc, 0x82, 0xae, 0x60, + 0x4f, 0x69, 0xaa, 0x97, 0x8a, 0xad, 0x9c, 0x1d, 0x6f, 0x87, 0x5c, 0xdb, 0x9c, 0x19, 0x0e, 0xa9, + 0x78, 0xfe, 0x77, 0x0b, 0xf6, 0x2b, 0x01, 0x7a, 0x0c, 0x87, 0xb2, 0x98, 0xb4, 0x0a, 0x53, 0x26, + 0xc3, 0x65, 0xc2, 0xb5, 0x71, 0xd1, 0x20, 0xad, 0x55, 0xe2, 0x82, 0xc9, 0x79, 0xc2, 0x35, 0xba, + 0x00, 0xc7, 0xa4, 0x6d, 0x63, 0xf2, 0xc5, 0x76, 0x1d, 0x55, 0x11, 0x9c, 0xb3, 0x88, 0x21, 0x75, + 0x8f, 0xc1, 0x31, 0x64, 0x17, 0x76, 0xe7, 0x93, 0xb3, 0xc9, 0xf4, 0xed, 0xc4, 0xdb, 0x41, 0x00, + 0xf5, 0xd9, 0xf0, 0x74, 0x3a, 0x19, 0x78, 0x56, 0x7e, 0x1e, 0x8f, 0x26, 0xf3, 0xcb, 0xa1, 0x67, + 0xa3, 0x3d, 0x70, 0x5e, 0x4f, 0xe7, 0xc4, 0xab, 0xa1, 0x5d, 0xa8, 0x0d, 0x4e, 0xde, 0x79, 0x8e, + 0xff, 0xc3, 0x02, 0xef, 0x77, 0xab, 0xe8, 0x15, 0x38, 0xb7, 0x7c, 0x0b, 0xa3, 0x47, 0xef, 0xa1, + 0xb1, 0x58, 0x4a, 0xc9, 0x12, 0x1d, 0x1a, 0x81, 0xf1, 0xed, 0x06, 0xcf, 0xff, 0xd3, 0x37, 0x39, + 0x28, 0x69, 0xc5, 0xe0, 0x1f, 0x41, 0xcb, 0xa8, 0x42, 0xc9, 0xf2, 0x7d, 0xe6, 0xc9, 0xc7, 0x72, + 0xe9, 0x9a, 0x71, 0xa1, 0x2f, 0xa3, 0xdd, 0x23, 0x70, 0xcc, 0x4e, 0xfc, 0x32, 0xa3, 0x3a, 0xd8, + 0xd3, 0x33, 0xcf, 0x42, 0x4d, 0x80, 0xe9, 0x9b, 0x21, 0x09, 0xcf, 0x47, 0xe3, 0xd1, 0xa5, 0x67, + 0x07, 0x5f, 0x36, 0xbf, 0xd0, 0xac, 0xe8, 0x10, 0xa5, 0xd0, 0x9a, 0x5d, 0x8b, 0x65, 0x1c, 0xad, + 0x9f, 0xfd, 0xc9, 0x3f, 0x9a, 0x30, 0x0b, 0xe0, 0x3f, 0xdd, 0xca, 0x72, 0x77, 0xe7, 0xa5, 0x73, + 0x65, 0x67, 0xc1, 0x87, 0xba, 0xf9, 0xd6, 0xcf, 0x7e, 0x06, 0x00, 0x00, 0xff, 0xff, 0x2b, 0x04, + 0xd1, 0xd9, 0x5b, 0x04, 0x00, 0x00, +}