Merge pull request #1367 from yang-g/interop

Add two scenarios in interop test
diff --git a/.travis.yml b/.travis.yml
index 7d86345..f1839ac 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,13 +2,19 @@
 before_install:
   - sudo add-apt-repository ppa:yjwong/gflags -y
   - sudo add-apt-repository ppa:h-rayflood/llvm -y
+  - sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
+  - echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
+  - echo "deb http://download.mono-project.com/repo/debian wheezy-libtiff-compat main" | sudo tee -a /etc/apt/sources.list.d/mono-xamarin.list
   - sudo apt-get update -qq
   - sudo apt-get install -qq libgtest-dev libgflags-dev python-virtualenv clang-3.5
   - sudo pip install cpp-coveralls mako simplejson
+  - sudo apt-get install -qq mono-devel nunit
+  - wget www.nuget.org/NuGet.exe -O nuget.exe
 env:
   global:
     - RUBY_VERSION=2.1
     - COVERALLS_PARALLEL=true
+    - NUGET="mono nuget.exe"
   matrix:
     - CONFIG=opt TEST=sanity
     - CONFIG=dbg TEST=c
@@ -18,6 +24,7 @@
     - CONFIG=opt TEST=node
     - CONFIG=opt TEST=ruby
     - CONFIG=opt TEST=python
+    - CONFIG=opt TEST=csharp
     - CONFIG=gcov TEST=c
     - CONFIG=gcov TEST=c++
     - USE_GCC=4.4 CONFIG=opt TEST=build
diff --git a/BUILD b/BUILD
index 2a93161..e862898 100644
--- a/BUILD
+++ b/BUILD
@@ -579,7 +579,6 @@
     "src/cpp/client/channel.h",
     "src/cpp/proto/proto_utils.h",
     "src/cpp/server/thread_pool.h",
-    "src/cpp/util/time.h",
     "src/cpp/client/secure_credentials.cc",
     "src/cpp/server/secure_server_credentials.cc",
     "src/cpp/client/channel.cc",
@@ -621,6 +620,7 @@
     "include/grpc++/generic_stub.h",
     "include/grpc++/impl/call.h",
     "include/grpc++/impl/client_unary_call.h",
+    "include/grpc++/impl/grpc_library.h",
     "include/grpc++/impl/internal_stub.h",
     "include/grpc++/impl/rpc_method.h",
     "include/grpc++/impl/rpc_service_method.h",
@@ -640,6 +640,7 @@
     "include/grpc++/status_code_enum.h",
     "include/grpc++/stream.h",
     "include/grpc++/thread_pool_interface.h",
+    "include/grpc++/time.h",
   ],
   includes = [
     "include",
@@ -659,7 +660,6 @@
     "src/cpp/client/channel.h",
     "src/cpp/proto/proto_utils.h",
     "src/cpp/server/thread_pool.h",
-    "src/cpp/util/time.h",
     "src/cpp/client/channel.cc",
     "src/cpp/client/channel_arguments.cc",
     "src/cpp/client/client_context.cc",
@@ -699,6 +699,7 @@
     "include/grpc++/generic_stub.h",
     "include/grpc++/impl/call.h",
     "include/grpc++/impl/client_unary_call.h",
+    "include/grpc++/impl/grpc_library.h",
     "include/grpc++/impl/internal_stub.h",
     "include/grpc++/impl/rpc_method.h",
     "include/grpc++/impl/rpc_service_method.h",
@@ -718,6 +719,7 @@
     "include/grpc++/status_code_enum.h",
     "include/grpc++/stream.h",
     "include/grpc++/thread_pool_interface.h",
+    "include/grpc++/time.h",
   ],
   includes = [
     "include",
diff --git a/Makefile b/Makefile
index 3e7930b..2def6e2 100644
--- a/Makefile
+++ b/Makefile
@@ -348,8 +348,8 @@
 ZLIB_CHECK_CMD = $(CC) $(CFLAGS) $(CPPFLAGS) -o $(TMPOUT) test/build/zlib.c -lz $(LDFLAGS)
 PERFTOOLS_CHECK_CMD = $(CC) $(CFLAGS) $(CPPFLAGS) -o $(TMPOUT) test/build/perftools.c -lprofiler $(LDFLAGS)
 PROTOBUF_CHECK_CMD = $(CXX) $(CXXFLAGS) $(CPPFLAGS) -o $(TMPOUT) test/build/protobuf.cc -lprotobuf $(LDFLAGS)
-PROTOC_CMD = which protoc > /dev/null
-PROTOC_CHECK_CMD = protoc --version | grep -q libprotoc.3
+PROTOC_CHECK_CMD = which protoc > /dev/null
+PROTOC_CHECK_VERSION_CMD = protoc --version | grep -q libprotoc.3
 
 ifeq ($(OPENSSL_REQUIRES_DL),true)
 OPENSSL_ALPN_CHECK_CMD += -ldl
@@ -375,9 +375,9 @@
 HAS_SYSTEM_PROTOBUF = false
 endif
 
-HAS_PROTOC = $(shell $(PROTOC_CMD) 2> /dev/null && echo true || echo false)
+HAS_PROTOC = $(shell $(PROTOC_CHECK_CMD) 2> /dev/null && echo true || echo false)
 ifeq ($(HAS_PROTOC),true)
-HAS_VALID_PROTOC = $(shell $(PROTOC_CHECK_CMD) 2> /dev/null && echo true || echo false)
+HAS_VALID_PROTOC = $(shell $(PROTOC_CHECK_VERSION_CMD) 2> /dev/null && echo true || echo false)
 else
 HAS_VALID_PROTOC = false
 endif
@@ -1212,7 +1212,7 @@
 	$(ZLIB_CHECK_CMD) || true
 	$(PERFTOOLS_CHECK_CMD) || true
 	$(PROTOBUF_CHECK_CMD) || true
-	$(PROTOC_CHECK_CMD) || true
+	$(PROTOC_CHECK_VERSION_CMD) || true
 
 $(LIBDIR)/$(CONFIG)/zlib/libz.a:
 	$(E) "[MAKE]    Building zlib"
@@ -3101,42 +3101,6 @@
 -include $(LIBGPR_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/src/core/support/alloc.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/cancellable.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/cmdline.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/cpu_iphone.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/cpu_linux.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/cpu_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/cpu_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/env_linux.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/env_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/env_win32.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/file.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/file_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/file_win32.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/histogram.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/host_port.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/log.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/log_android.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/log_linux.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/log_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/log_win32.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/murmur_hash.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/slice.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/slice_buffer.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/string.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/string_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/string_win32.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/sync.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/sync_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/sync_win32.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/thd.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/thd_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/thd_win32.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/time.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/time_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/support/time_win32.o: 
-
 
 LIBGPR_TEST_UTIL_SRC = \
     test/core/util/test_config.c \
@@ -3160,8 +3124,6 @@
 -include $(LIBGPR_TEST_UTIL_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/util/test_config.o: 
-
 
 LIBGRPC_SRC = \
     src/core/httpcli/format_request.c \
@@ -3351,124 +3313,6 @@
 endif
 endif
 
-$(OBJDIR)/$(CONFIG)/src/core/httpcli/format_request.o: 
-$(OBJDIR)/$(CONFIG)/src/core/httpcli/httpcli.o: 
-$(OBJDIR)/$(CONFIG)/src/core/httpcli/httpcli_security_connector.o: 
-$(OBJDIR)/$(CONFIG)/src/core/httpcli/parser.o: 
-$(OBJDIR)/$(CONFIG)/src/core/security/auth.o: 
-$(OBJDIR)/$(CONFIG)/src/core/security/base64.o: 
-$(OBJDIR)/$(CONFIG)/src/core/security/credentials.o: 
-$(OBJDIR)/$(CONFIG)/src/core/security/credentials_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/security/credentials_win32.o: 
-$(OBJDIR)/$(CONFIG)/src/core/security/google_default_credentials.o: 
-$(OBJDIR)/$(CONFIG)/src/core/security/json_token.o: 
-$(OBJDIR)/$(CONFIG)/src/core/security/secure_endpoint.o: 
-$(OBJDIR)/$(CONFIG)/src/core/security/secure_transport_setup.o: 
-$(OBJDIR)/$(CONFIG)/src/core/security/security_connector.o: 
-$(OBJDIR)/$(CONFIG)/src/core/security/server_secure_chttp2.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/init_secure.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/secure_channel_create.o: 
-$(OBJDIR)/$(CONFIG)/src/core/tsi/fake_transport_security.o: 
-$(OBJDIR)/$(CONFIG)/src/core/tsi/ssl_transport_security.o: 
-$(OBJDIR)/$(CONFIG)/src/core/tsi/transport_security.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/call_op_string.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/census_filter.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/channel_args.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/channel_stack.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/child_channel.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/client_channel.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/client_setup.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/connected_channel.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/http_client_filter.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/http_filter.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/http_server_filter.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/noop_filter.o: 
-$(OBJDIR)/$(CONFIG)/src/core/compression/algorithm.o: 
-$(OBJDIR)/$(CONFIG)/src/core/compression/message_compress.o: 
-$(OBJDIR)/$(CONFIG)/src/core/debug/trace.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/alarm.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/alarm_heap.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/endpoint.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/endpoint_pair_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/endpoint_pair_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/fd_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/iocp_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/iomgr.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/iomgr_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/iomgr_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/pollset_kick.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/pollset_multipoller_with_epoll.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/pollset_multipoller_with_poll_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/pollset_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/pollset_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/resolve_address_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/resolve_address_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/sockaddr_utils.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/socket_utils_common_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/socket_utils_linux.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/socket_utils_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/socket_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/tcp_client_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/tcp_client_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/tcp_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/tcp_server_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/tcp_server_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/tcp_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/time_averaged_stats.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/wakeup_fd_eventfd.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/wakeup_fd_nospecial.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/wakeup_fd_pipe.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/wakeup_fd_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/json/json.o: 
-$(OBJDIR)/$(CONFIG)/src/core/json/json_reader.o: 
-$(OBJDIR)/$(CONFIG)/src/core/json/json_string.o: 
-$(OBJDIR)/$(CONFIG)/src/core/json/json_writer.o: 
-$(OBJDIR)/$(CONFIG)/src/core/profiling/timers.o: 
-$(OBJDIR)/$(CONFIG)/src/core/statistics/census_init.o: 
-$(OBJDIR)/$(CONFIG)/src/core/statistics/census_log.o: 
-$(OBJDIR)/$(CONFIG)/src/core/statistics/census_rpc_stats.o: 
-$(OBJDIR)/$(CONFIG)/src/core/statistics/census_tracing.o: 
-$(OBJDIR)/$(CONFIG)/src/core/statistics/hash_table.o: 
-$(OBJDIR)/$(CONFIG)/src/core/statistics/window_stats.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/byte_buffer.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/byte_buffer_queue.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/byte_buffer_reader.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/call.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/call_details.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/call_log_batch.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/channel.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/channel_create.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/client.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/completion_queue.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/event_string.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/init.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/lame_client.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/metadata_array.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/server.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/server_chttp2.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/server_create.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/surface_trace.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/alpn.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/bin_encoder.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/frame_data.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/frame_goaway.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/frame_ping.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/frame_rst_stream.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/frame_settings.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/frame_window_update.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/hpack_parser.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/hpack_table.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/huffsyms.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/status_conversion.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/stream_encoder.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/stream_map.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/timeout_encoding.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/varint.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2_transport.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/metadata.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/stream_op.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/transport.o: 
-
 
 LIBGRPC_TEST_UTIL_SRC = \
     test/core/end2end/data/server1_cert.c \
@@ -3517,18 +3361,6 @@
 endif
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/data/server1_cert.o: 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/data/server1_key.o: 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/data/test_root_cert.o: 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/cq_verifier.o: 
-$(OBJDIR)/$(CONFIG)/test/core/iomgr/endpoint_tests.o: 
-$(OBJDIR)/$(CONFIG)/test/core/statistics/census_log_tests.o: 
-$(OBJDIR)/$(CONFIG)/test/core/util/grpc_profiler.o: 
-$(OBJDIR)/$(CONFIG)/test/core/util/parse_hexstring.o: 
-$(OBJDIR)/$(CONFIG)/test/core/util/port_posix.o: 
-$(OBJDIR)/$(CONFIG)/test/core/util/port_windows.o: 
-$(OBJDIR)/$(CONFIG)/test/core/util/slice_splitter.o: 
-
 
 LIBGRPC_TEST_UTIL_UNSECURE_SRC = \
     test/core/end2end/cq_verifier.c \
@@ -3560,15 +3392,6 @@
 -include $(LIBGRPC_TEST_UTIL_UNSECURE_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/cq_verifier.o: 
-$(OBJDIR)/$(CONFIG)/test/core/iomgr/endpoint_tests.o: 
-$(OBJDIR)/$(CONFIG)/test/core/statistics/census_log_tests.o: 
-$(OBJDIR)/$(CONFIG)/test/core/util/grpc_profiler.o: 
-$(OBJDIR)/$(CONFIG)/test/core/util/parse_hexstring.o: 
-$(OBJDIR)/$(CONFIG)/test/core/util/port_posix.o: 
-$(OBJDIR)/$(CONFIG)/test/core/util/port_windows.o: 
-$(OBJDIR)/$(CONFIG)/test/core/util/slice_splitter.o: 
-
 
 LIBGRPC_UNSECURE_SRC = \
     src/core/surface/init_unsecure.c \
@@ -3712,105 +3535,6 @@
 -include $(LIBGRPC_UNSECURE_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/src/core/surface/init_unsecure.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/call_op_string.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/census_filter.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/channel_args.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/channel_stack.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/child_channel.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/client_channel.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/client_setup.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/connected_channel.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/http_client_filter.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/http_filter.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/http_server_filter.o: 
-$(OBJDIR)/$(CONFIG)/src/core/channel/noop_filter.o: 
-$(OBJDIR)/$(CONFIG)/src/core/compression/algorithm.o: 
-$(OBJDIR)/$(CONFIG)/src/core/compression/message_compress.o: 
-$(OBJDIR)/$(CONFIG)/src/core/debug/trace.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/alarm.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/alarm_heap.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/endpoint.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/endpoint_pair_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/endpoint_pair_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/fd_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/iocp_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/iomgr.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/iomgr_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/iomgr_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/pollset_kick.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/pollset_multipoller_with_epoll.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/pollset_multipoller_with_poll_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/pollset_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/pollset_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/resolve_address_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/resolve_address_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/sockaddr_utils.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/socket_utils_common_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/socket_utils_linux.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/socket_utils_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/socket_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/tcp_client_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/tcp_client_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/tcp_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/tcp_server_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/tcp_server_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/tcp_windows.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/time_averaged_stats.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/wakeup_fd_eventfd.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/wakeup_fd_nospecial.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/wakeup_fd_pipe.o: 
-$(OBJDIR)/$(CONFIG)/src/core/iomgr/wakeup_fd_posix.o: 
-$(OBJDIR)/$(CONFIG)/src/core/json/json.o: 
-$(OBJDIR)/$(CONFIG)/src/core/json/json_reader.o: 
-$(OBJDIR)/$(CONFIG)/src/core/json/json_string.o: 
-$(OBJDIR)/$(CONFIG)/src/core/json/json_writer.o: 
-$(OBJDIR)/$(CONFIG)/src/core/profiling/timers.o: 
-$(OBJDIR)/$(CONFIG)/src/core/statistics/census_init.o: 
-$(OBJDIR)/$(CONFIG)/src/core/statistics/census_log.o: 
-$(OBJDIR)/$(CONFIG)/src/core/statistics/census_rpc_stats.o: 
-$(OBJDIR)/$(CONFIG)/src/core/statistics/census_tracing.o: 
-$(OBJDIR)/$(CONFIG)/src/core/statistics/hash_table.o: 
-$(OBJDIR)/$(CONFIG)/src/core/statistics/window_stats.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/byte_buffer.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/byte_buffer_queue.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/byte_buffer_reader.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/call.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/call_details.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/call_log_batch.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/channel.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/channel_create.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/client.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/completion_queue.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/event_string.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/init.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/lame_client.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/metadata_array.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/server.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/server_chttp2.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/server_create.o: 
-$(OBJDIR)/$(CONFIG)/src/core/surface/surface_trace.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/alpn.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/bin_encoder.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/frame_data.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/frame_goaway.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/frame_ping.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/frame_rst_stream.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/frame_settings.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/frame_window_update.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/hpack_parser.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/hpack_table.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/huffsyms.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/status_conversion.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/stream_encoder.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/stream_map.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/timeout_encoding.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2/varint.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/chttp2_transport.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/metadata.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/stream_op.o: 
-$(OBJDIR)/$(CONFIG)/src/core/transport/transport.o: 
-
 
 LIBGRPC++_SRC = \
     src/cpp/client/secure_credentials.cc \
@@ -3854,6 +3578,7 @@
     include/grpc++/generic_stub.h \
     include/grpc++/impl/call.h \
     include/grpc++/impl/client_unary_call.h \
+    include/grpc++/impl/grpc_library.h \
     include/grpc++/impl/internal_stub.h \
     include/grpc++/impl/rpc_method.h \
     include/grpc++/impl/rpc_service_method.h \
@@ -3873,6 +3598,7 @@
     include/grpc++/status_code_enum.h \
     include/grpc++/stream.h \
     include/grpc++/thread_pool_interface.h \
+    include/grpc++/time.h \
 
 LIBGRPC++_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_SRC))))
 
@@ -3943,33 +3669,6 @@
 endif
 endif
 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/secure_credentials.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/server/secure_server_credentials.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/channel.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/channel_arguments.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/client_context.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/client_unary_call.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/create_channel.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/credentials.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/generic_stub.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/insecure_credentials.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/internal_stub.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/common/call.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/common/completion_queue.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/common/rpc_method.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/proto/proto_utils.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/server/async_generic_service.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/server/insecure_server_credentials.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/server/server.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/server/server_builder.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/server/server_context.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/server/server_credentials.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/server/thread_pool.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/util/byte_buffer.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/util/slice.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/util/status.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/util/time.o: 
-
 
 LIBGRPC++_TEST_CONFIG_SRC = \
     test/cpp/util/test_config.cc \
@@ -4017,8 +3716,6 @@
 endif
 endif
 
-$(OBJDIR)/$(CONFIG)/test/cpp/util/test_config.o: 
-
 
 LIBGRPC++_TEST_UTIL_SRC = \
     $(GENDIR)/test/cpp/util/messages.pb.cc $(GENDIR)/test/cpp/util/messages.grpc.pb.cc \
@@ -4069,12 +3766,8 @@
 -include $(LIBGRPC++_TEST_UTIL_OBJS:.o=.dep)
 endif
 endif
-
-
-
-
-$(OBJDIR)/$(CONFIG)/test/cpp/util/cli_call.o:     $(GENDIR)/test/cpp/util/messages.pb.cc $(GENDIR)/test/cpp/util/messages.grpc.pb.cc    $(GENDIR)/test/cpp/util/echo.pb.cc $(GENDIR)/test/cpp/util/echo.grpc.pb.cc    $(GENDIR)/test/cpp/util/echo_duplicate.pb.cc $(GENDIR)/test/cpp/util/echo_duplicate.grpc.pb.cc
-$(OBJDIR)/$(CONFIG)/test/cpp/util/create_test_channel.o:     $(GENDIR)/test/cpp/util/messages.pb.cc $(GENDIR)/test/cpp/util/messages.grpc.pb.cc    $(GENDIR)/test/cpp/util/echo.pb.cc $(GENDIR)/test/cpp/util/echo.grpc.pb.cc    $(GENDIR)/test/cpp/util/echo_duplicate.pb.cc $(GENDIR)/test/cpp/util/echo_duplicate.grpc.pb.cc
+$(OBJDIR)/$(CONFIG)/test/cpp/util/cli_call.o: $(GENDIR)/test/cpp/util/messages.pb.cc $(GENDIR)/test/cpp/util/messages.grpc.pb.cc $(GENDIR)/test/cpp/util/echo.pb.cc $(GENDIR)/test/cpp/util/echo.grpc.pb.cc $(GENDIR)/test/cpp/util/echo_duplicate.pb.cc $(GENDIR)/test/cpp/util/echo_duplicate.grpc.pb.cc
+$(OBJDIR)/$(CONFIG)/test/cpp/util/create_test_channel.o: $(GENDIR)/test/cpp/util/messages.pb.cc $(GENDIR)/test/cpp/util/messages.grpc.pb.cc $(GENDIR)/test/cpp/util/echo.pb.cc $(GENDIR)/test/cpp/util/echo.grpc.pb.cc $(GENDIR)/test/cpp/util/echo_duplicate.pb.cc $(GENDIR)/test/cpp/util/echo_duplicate.grpc.pb.cc
 
 
 LIBGRPC++_UNSECURE_SRC = \
@@ -4117,6 +3810,7 @@
     include/grpc++/generic_stub.h \
     include/grpc++/impl/call.h \
     include/grpc++/impl/client_unary_call.h \
+    include/grpc++/impl/grpc_library.h \
     include/grpc++/impl/internal_stub.h \
     include/grpc++/impl/rpc_method.h \
     include/grpc++/impl/rpc_service_method.h \
@@ -4136,6 +3830,7 @@
     include/grpc++/status_code_enum.h \
     include/grpc++/stream.h \
     include/grpc++/thread_pool_interface.h \
+    include/grpc++/time.h \
 
 LIBGRPC++_UNSECURE_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_UNSECURE_SRC))))
 
@@ -4188,31 +3883,6 @@
 -include $(LIBGRPC++_UNSECURE_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/channel.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/channel_arguments.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/client_context.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/client_unary_call.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/create_channel.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/credentials.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/generic_stub.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/insecure_credentials.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/client/internal_stub.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/common/call.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/common/completion_queue.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/common/rpc_method.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/proto/proto_utils.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/server/async_generic_service.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/server/insecure_server_credentials.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/server/server.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/server/server_builder.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/server/server_context.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/server/server_credentials.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/server/thread_pool.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/util/byte_buffer.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/util/slice.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/util/status.o: 
-$(OBJDIR)/$(CONFIG)/src/cpp/util/time.o: 
-
 
 LIBGRPC_PLUGIN_SUPPORT_SRC = \
     src/compiler/cpp_generator.cc \
@@ -4250,11 +3920,6 @@
 -include $(LIBGRPC_PLUGIN_SUPPORT_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/src/compiler/cpp_generator.o: 
-$(OBJDIR)/$(CONFIG)/src/compiler/objective_c_generator.o: 
-$(OBJDIR)/$(CONFIG)/src/compiler/python_generator.o: 
-$(OBJDIR)/$(CONFIG)/src/compiler/ruby_generator.o: 
-
 
 LIBINTEROP_CLIENT_HELPER_SRC = \
     test/cpp/interop/client_helper.cc \
@@ -4302,8 +3967,6 @@
 endif
 endif
 
-$(OBJDIR)/$(CONFIG)/test/cpp/interop/client_helper.o: 
-
 
 LIBINTEROP_CLIENT_MAIN_SRC = \
     $(GENDIR)/test/proto/empty.pb.cc $(GENDIR)/test/proto/empty.grpc.pb.cc \
@@ -4354,12 +4017,8 @@
 -include $(LIBINTEROP_CLIENT_MAIN_OBJS:.o=.dep)
 endif
 endif
-
-
-
-
-$(OBJDIR)/$(CONFIG)/test/cpp/interop/client.o:     $(GENDIR)/test/proto/empty.pb.cc $(GENDIR)/test/proto/empty.grpc.pb.cc    $(GENDIR)/test/proto/messages.pb.cc $(GENDIR)/test/proto/messages.grpc.pb.cc    $(GENDIR)/test/proto/test.pb.cc $(GENDIR)/test/proto/test.grpc.pb.cc
-$(OBJDIR)/$(CONFIG)/test/cpp/interop/interop_client.o:     $(GENDIR)/test/proto/empty.pb.cc $(GENDIR)/test/proto/empty.grpc.pb.cc    $(GENDIR)/test/proto/messages.pb.cc $(GENDIR)/test/proto/messages.grpc.pb.cc    $(GENDIR)/test/proto/test.pb.cc $(GENDIR)/test/proto/test.grpc.pb.cc
+$(OBJDIR)/$(CONFIG)/test/cpp/interop/client.o: $(GENDIR)/test/proto/empty.pb.cc $(GENDIR)/test/proto/empty.grpc.pb.cc $(GENDIR)/test/proto/messages.pb.cc $(GENDIR)/test/proto/messages.grpc.pb.cc $(GENDIR)/test/proto/test.pb.cc $(GENDIR)/test/proto/test.grpc.pb.cc
+$(OBJDIR)/$(CONFIG)/test/cpp/interop/interop_client.o: $(GENDIR)/test/proto/empty.pb.cc $(GENDIR)/test/proto/empty.grpc.pb.cc $(GENDIR)/test/proto/messages.pb.cc $(GENDIR)/test/proto/messages.grpc.pb.cc $(GENDIR)/test/proto/test.pb.cc $(GENDIR)/test/proto/test.grpc.pb.cc
 
 
 LIBINTEROP_SERVER_HELPER_SRC = \
@@ -4408,8 +4067,6 @@
 endif
 endif
 
-$(OBJDIR)/$(CONFIG)/test/cpp/interop/server_helper.o: 
-
 
 LIBINTEROP_SERVER_MAIN_SRC = \
     $(GENDIR)/test/proto/empty.pb.cc $(GENDIR)/test/proto/empty.grpc.pb.cc \
@@ -4459,11 +4116,7 @@
 -include $(LIBINTEROP_SERVER_MAIN_OBJS:.o=.dep)
 endif
 endif
-
-
-
-
-$(OBJDIR)/$(CONFIG)/test/cpp/interop/server.o:     $(GENDIR)/test/proto/empty.pb.cc $(GENDIR)/test/proto/empty.grpc.pb.cc    $(GENDIR)/test/proto/messages.pb.cc $(GENDIR)/test/proto/messages.grpc.pb.cc    $(GENDIR)/test/proto/test.pb.cc $(GENDIR)/test/proto/test.grpc.pb.cc
+$(OBJDIR)/$(CONFIG)/test/cpp/interop/server.o: $(GENDIR)/test/proto/empty.pb.cc $(GENDIR)/test/proto/empty.grpc.pb.cc $(GENDIR)/test/proto/messages.pb.cc $(GENDIR)/test/proto/messages.grpc.pb.cc $(GENDIR)/test/proto/test.pb.cc $(GENDIR)/test/proto/test.grpc.pb.cc
 
 
 LIBPUBSUB_CLIENT_LIB_SRC = \
@@ -4515,12 +4168,8 @@
 -include $(LIBPUBSUB_CLIENT_LIB_OBJS:.o=.dep)
 endif
 endif
-
-
-
-
-$(OBJDIR)/$(CONFIG)/examples/pubsub/publisher.o:     $(GENDIR)/examples/pubsub/label.pb.cc $(GENDIR)/examples/pubsub/label.grpc.pb.cc    $(GENDIR)/examples/pubsub/empty.pb.cc $(GENDIR)/examples/pubsub/empty.grpc.pb.cc    $(GENDIR)/examples/pubsub/pubsub.pb.cc $(GENDIR)/examples/pubsub/pubsub.grpc.pb.cc
-$(OBJDIR)/$(CONFIG)/examples/pubsub/subscriber.o:     $(GENDIR)/examples/pubsub/label.pb.cc $(GENDIR)/examples/pubsub/label.grpc.pb.cc    $(GENDIR)/examples/pubsub/empty.pb.cc $(GENDIR)/examples/pubsub/empty.grpc.pb.cc    $(GENDIR)/examples/pubsub/pubsub.pb.cc $(GENDIR)/examples/pubsub/pubsub.grpc.pb.cc
+$(OBJDIR)/$(CONFIG)/examples/pubsub/publisher.o: $(GENDIR)/examples/pubsub/label.pb.cc $(GENDIR)/examples/pubsub/label.grpc.pb.cc $(GENDIR)/examples/pubsub/empty.pb.cc $(GENDIR)/examples/pubsub/empty.grpc.pb.cc $(GENDIR)/examples/pubsub/pubsub.pb.cc $(GENDIR)/examples/pubsub/pubsub.grpc.pb.cc
+$(OBJDIR)/$(CONFIG)/examples/pubsub/subscriber.o: $(GENDIR)/examples/pubsub/label.pb.cc $(GENDIR)/examples/pubsub/label.grpc.pb.cc $(GENDIR)/examples/pubsub/empty.pb.cc $(GENDIR)/examples/pubsub/empty.grpc.pb.cc $(GENDIR)/examples/pubsub/pubsub.pb.cc $(GENDIR)/examples/pubsub/pubsub.grpc.pb.cc
 
 
 LIBQPS_SRC = \
@@ -4576,16 +4225,14 @@
 -include $(LIBQPS_OBJS:.o=.dep)
 endif
 endif
-
-
-$(OBJDIR)/$(CONFIG)/test/cpp/qps/client_async.o:     $(GENDIR)/test/cpp/qps/qpstest.pb.cc $(GENDIR)/test/cpp/qps/qpstest.grpc.pb.cc
-$(OBJDIR)/$(CONFIG)/test/cpp/qps/client_sync.o:     $(GENDIR)/test/cpp/qps/qpstest.pb.cc $(GENDIR)/test/cpp/qps/qpstest.grpc.pb.cc
-$(OBJDIR)/$(CONFIG)/test/cpp/qps/driver.o:     $(GENDIR)/test/cpp/qps/qpstest.pb.cc $(GENDIR)/test/cpp/qps/qpstest.grpc.pb.cc
-$(OBJDIR)/$(CONFIG)/test/cpp/qps/qps_worker.o:     $(GENDIR)/test/cpp/qps/qpstest.pb.cc $(GENDIR)/test/cpp/qps/qpstest.grpc.pb.cc
-$(OBJDIR)/$(CONFIG)/test/cpp/qps/report.o:     $(GENDIR)/test/cpp/qps/qpstest.pb.cc $(GENDIR)/test/cpp/qps/qpstest.grpc.pb.cc
-$(OBJDIR)/$(CONFIG)/test/cpp/qps/server_async.o:     $(GENDIR)/test/cpp/qps/qpstest.pb.cc $(GENDIR)/test/cpp/qps/qpstest.grpc.pb.cc
-$(OBJDIR)/$(CONFIG)/test/cpp/qps/server_sync.o:     $(GENDIR)/test/cpp/qps/qpstest.pb.cc $(GENDIR)/test/cpp/qps/qpstest.grpc.pb.cc
-$(OBJDIR)/$(CONFIG)/test/cpp/qps/timer.o:     $(GENDIR)/test/cpp/qps/qpstest.pb.cc $(GENDIR)/test/cpp/qps/qpstest.grpc.pb.cc
+$(OBJDIR)/$(CONFIG)/test/cpp/qps/client_async.o: $(GENDIR)/test/cpp/qps/qpstest.pb.cc $(GENDIR)/test/cpp/qps/qpstest.grpc.pb.cc
+$(OBJDIR)/$(CONFIG)/test/cpp/qps/client_sync.o: $(GENDIR)/test/cpp/qps/qpstest.pb.cc $(GENDIR)/test/cpp/qps/qpstest.grpc.pb.cc
+$(OBJDIR)/$(CONFIG)/test/cpp/qps/driver.o: $(GENDIR)/test/cpp/qps/qpstest.pb.cc $(GENDIR)/test/cpp/qps/qpstest.grpc.pb.cc
+$(OBJDIR)/$(CONFIG)/test/cpp/qps/qps_worker.o: $(GENDIR)/test/cpp/qps/qpstest.pb.cc $(GENDIR)/test/cpp/qps/qpstest.grpc.pb.cc
+$(OBJDIR)/$(CONFIG)/test/cpp/qps/report.o: $(GENDIR)/test/cpp/qps/qpstest.pb.cc $(GENDIR)/test/cpp/qps/qpstest.grpc.pb.cc
+$(OBJDIR)/$(CONFIG)/test/cpp/qps/server_async.o: $(GENDIR)/test/cpp/qps/qpstest.pb.cc $(GENDIR)/test/cpp/qps/qpstest.grpc.pb.cc
+$(OBJDIR)/$(CONFIG)/test/cpp/qps/server_sync.o: $(GENDIR)/test/cpp/qps/qpstest.pb.cc $(GENDIR)/test/cpp/qps/qpstest.grpc.pb.cc
+$(OBJDIR)/$(CONFIG)/test/cpp/qps/timer.o: $(GENDIR)/test/cpp/qps/qpstest.pb.cc $(GENDIR)/test/cpp/qps/qpstest.grpc.pb.cc
 
 
 LIBGRPC_CSHARP_EXT_SRC = \
@@ -4646,8 +4293,6 @@
 endif
 endif
 
-$(OBJDIR)/$(CONFIG)/src/csharp/ext/grpc_csharp_ext.o: 
-
 
 LIBEND2END_FIXTURE_CHTTP2_FAKE_SECURITY_SRC = \
     test/core/end2end/fixtures/chttp2_fake_security.c \
@@ -4685,8 +4330,6 @@
 endif
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/fixtures/chttp2_fake_security.o: 
-
 
 LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_SRC = \
     test/core/end2end/fixtures/chttp2_fullstack.c \
@@ -4710,8 +4353,6 @@
 -include $(LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/fixtures/chttp2_fullstack.o: 
-
 
 LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_UDS_SRC = \
     test/core/end2end/fixtures/chttp2_fullstack_uds.c \
@@ -4735,8 +4376,6 @@
 -include $(LIBEND2END_FIXTURE_CHTTP2_FULLSTACK_UDS_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/fixtures/chttp2_fullstack_uds.o: 
-
 
 LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_FULLSTACK_SRC = \
     test/core/end2end/fixtures/chttp2_simple_ssl_fullstack.c \
@@ -4774,8 +4413,6 @@
 endif
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/fixtures/chttp2_simple_ssl_fullstack.o: 
-
 
 LIBEND2END_FIXTURE_CHTTP2_SIMPLE_SSL_WITH_OAUTH2_FULLSTACK_SRC = \
     test/core/end2end/fixtures/chttp2_simple_ssl_with_oauth2_fullstack.c \
@@ -4813,8 +4450,6 @@
 endif
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/fixtures/chttp2_simple_ssl_with_oauth2_fullstack.o: 
-
 
 LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_SRC = \
     test/core/end2end/fixtures/chttp2_socket_pair.c \
@@ -4838,8 +4473,6 @@
 -include $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/fixtures/chttp2_socket_pair.o: 
-
 
 LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_SRC = \
     test/core/end2end/fixtures/chttp2_socket_pair_one_byte_at_a_time.c \
@@ -4863,8 +4496,6 @@
 -include $(LIBEND2END_FIXTURE_CHTTP2_SOCKET_PAIR_ONE_BYTE_AT_A_TIME_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/fixtures/chttp2_socket_pair_one_byte_at_a_time.o: 
-
 
 LIBEND2END_TEST_BAD_HOSTNAME_SRC = \
     test/core/end2end/tests/bad_hostname.c \
@@ -4888,8 +4519,6 @@
 -include $(LIBEND2END_TEST_BAD_HOSTNAME_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/bad_hostname.o: 
-
 
 LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_SRC = \
     test/core/end2end/tests/cancel_after_accept.c \
@@ -4913,8 +4542,6 @@
 -include $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/cancel_after_accept.o: 
-
 
 LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_SRC = \
     test/core/end2end/tests/cancel_after_accept_and_writes_closed.c \
@@ -4938,8 +4565,6 @@
 -include $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/cancel_after_accept_and_writes_closed.o: 
-
 
 LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_LEGACY_SRC = \
     test/core/end2end/tests/cancel_after_accept_and_writes_closed_legacy.c \
@@ -4963,8 +4588,6 @@
 -include $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_AND_WRITES_CLOSED_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/cancel_after_accept_and_writes_closed_legacy.o: 
-
 
 LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_LEGACY_SRC = \
     test/core/end2end/tests/cancel_after_accept_legacy.c \
@@ -4988,8 +4611,6 @@
 -include $(LIBEND2END_TEST_CANCEL_AFTER_ACCEPT_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/cancel_after_accept_legacy.o: 
-
 
 LIBEND2END_TEST_CANCEL_AFTER_INVOKE_SRC = \
     test/core/end2end/tests/cancel_after_invoke.c \
@@ -5013,8 +4634,6 @@
 -include $(LIBEND2END_TEST_CANCEL_AFTER_INVOKE_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/cancel_after_invoke.o: 
-
 
 LIBEND2END_TEST_CANCEL_AFTER_INVOKE_LEGACY_SRC = \
     test/core/end2end/tests/cancel_after_invoke_legacy.c \
@@ -5038,8 +4657,6 @@
 -include $(LIBEND2END_TEST_CANCEL_AFTER_INVOKE_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/cancel_after_invoke_legacy.o: 
-
 
 LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_SRC = \
     test/core/end2end/tests/cancel_before_invoke.c \
@@ -5063,8 +4680,6 @@
 -include $(LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/cancel_before_invoke.o: 
-
 
 LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_LEGACY_SRC = \
     test/core/end2end/tests/cancel_before_invoke_legacy.c \
@@ -5088,8 +4703,6 @@
 -include $(LIBEND2END_TEST_CANCEL_BEFORE_INVOKE_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/cancel_before_invoke_legacy.o: 
-
 
 LIBEND2END_TEST_CANCEL_IN_A_VACUUM_SRC = \
     test/core/end2end/tests/cancel_in_a_vacuum.c \
@@ -5113,8 +4726,6 @@
 -include $(LIBEND2END_TEST_CANCEL_IN_A_VACUUM_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/cancel_in_a_vacuum.o: 
-
 
 LIBEND2END_TEST_CANCEL_IN_A_VACUUM_LEGACY_SRC = \
     test/core/end2end/tests/cancel_in_a_vacuum_legacy.c \
@@ -5138,8 +4749,6 @@
 -include $(LIBEND2END_TEST_CANCEL_IN_A_VACUUM_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/cancel_in_a_vacuum_legacy.o: 
-
 
 LIBEND2END_TEST_CENSUS_SIMPLE_REQUEST_SRC = \
     test/core/end2end/tests/census_simple_request.c \
@@ -5163,8 +4772,6 @@
 -include $(LIBEND2END_TEST_CENSUS_SIMPLE_REQUEST_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/census_simple_request.o: 
-
 
 LIBEND2END_TEST_CENSUS_SIMPLE_REQUEST_LEGACY_SRC = \
     test/core/end2end/tests/census_simple_request_legacy.c \
@@ -5188,8 +4795,6 @@
 -include $(LIBEND2END_TEST_CENSUS_SIMPLE_REQUEST_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/census_simple_request_legacy.o: 
-
 
 LIBEND2END_TEST_DISAPPEARING_SERVER_SRC = \
     test/core/end2end/tests/disappearing_server.c \
@@ -5213,8 +4818,6 @@
 -include $(LIBEND2END_TEST_DISAPPEARING_SERVER_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/disappearing_server.o: 
-
 
 LIBEND2END_TEST_DISAPPEARING_SERVER_LEGACY_SRC = \
     test/core/end2end/tests/disappearing_server_legacy.c \
@@ -5238,8 +4841,6 @@
 -include $(LIBEND2END_TEST_DISAPPEARING_SERVER_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/disappearing_server_legacy.o: 
-
 
 LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_SRC = \
     test/core/end2end/tests/early_server_shutdown_finishes_inflight_calls.c \
@@ -5263,8 +4864,6 @@
 -include $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/early_server_shutdown_finishes_inflight_calls.o: 
-
 
 LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_LEGACY_SRC = \
     test/core/end2end/tests/early_server_shutdown_finishes_inflight_calls_legacy.c \
@@ -5288,8 +4887,6 @@
 -include $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_INFLIGHT_CALLS_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/early_server_shutdown_finishes_inflight_calls_legacy.o: 
-
 
 LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_SRC = \
     test/core/end2end/tests/early_server_shutdown_finishes_tags.c \
@@ -5313,8 +4910,6 @@
 -include $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/early_server_shutdown_finishes_tags.o: 
-
 
 LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_LEGACY_SRC = \
     test/core/end2end/tests/early_server_shutdown_finishes_tags_legacy.c \
@@ -5338,8 +4933,6 @@
 -include $(LIBEND2END_TEST_EARLY_SERVER_SHUTDOWN_FINISHES_TAGS_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/early_server_shutdown_finishes_tags_legacy.o: 
-
 
 LIBEND2END_TEST_EMPTY_BATCH_SRC = \
     test/core/end2end/tests/empty_batch.c \
@@ -5363,8 +4956,6 @@
 -include $(LIBEND2END_TEST_EMPTY_BATCH_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/empty_batch.o: 
-
 
 LIBEND2END_TEST_GRACEFUL_SERVER_SHUTDOWN_SRC = \
     test/core/end2end/tests/graceful_server_shutdown.c \
@@ -5388,8 +4979,6 @@
 -include $(LIBEND2END_TEST_GRACEFUL_SERVER_SHUTDOWN_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/graceful_server_shutdown.o: 
-
 
 LIBEND2END_TEST_GRACEFUL_SERVER_SHUTDOWN_LEGACY_SRC = \
     test/core/end2end/tests/graceful_server_shutdown_legacy.c \
@@ -5413,8 +5002,6 @@
 -include $(LIBEND2END_TEST_GRACEFUL_SERVER_SHUTDOWN_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/graceful_server_shutdown_legacy.o: 
-
 
 LIBEND2END_TEST_INVOKE_LARGE_REQUEST_SRC = \
     test/core/end2end/tests/invoke_large_request.c \
@@ -5438,8 +5025,6 @@
 -include $(LIBEND2END_TEST_INVOKE_LARGE_REQUEST_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/invoke_large_request.o: 
-
 
 LIBEND2END_TEST_INVOKE_LARGE_REQUEST_LEGACY_SRC = \
     test/core/end2end/tests/invoke_large_request_legacy.c \
@@ -5463,8 +5048,6 @@
 -include $(LIBEND2END_TEST_INVOKE_LARGE_REQUEST_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/invoke_large_request_legacy.o: 
-
 
 LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_SRC = \
     test/core/end2end/tests/max_concurrent_streams.c \
@@ -5488,8 +5071,6 @@
 -include $(LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/max_concurrent_streams.o: 
-
 
 LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_LEGACY_SRC = \
     test/core/end2end/tests/max_concurrent_streams_legacy.c \
@@ -5513,8 +5094,6 @@
 -include $(LIBEND2END_TEST_MAX_CONCURRENT_STREAMS_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/max_concurrent_streams_legacy.o: 
-
 
 LIBEND2END_TEST_NO_OP_SRC = \
     test/core/end2end/tests/no_op.c \
@@ -5538,8 +5117,6 @@
 -include $(LIBEND2END_TEST_NO_OP_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/no_op.o: 
-
 
 LIBEND2END_TEST_NO_OP_LEGACY_SRC = \
     test/core/end2end/tests/no_op_legacy.c \
@@ -5563,8 +5140,6 @@
 -include $(LIBEND2END_TEST_NO_OP_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/no_op_legacy.o: 
-
 
 LIBEND2END_TEST_PING_PONG_STREAMING_SRC = \
     test/core/end2end/tests/ping_pong_streaming.c \
@@ -5588,8 +5163,6 @@
 -include $(LIBEND2END_TEST_PING_PONG_STREAMING_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/ping_pong_streaming.o: 
-
 
 LIBEND2END_TEST_PING_PONG_STREAMING_LEGACY_SRC = \
     test/core/end2end/tests/ping_pong_streaming_legacy.c \
@@ -5613,8 +5186,6 @@
 -include $(LIBEND2END_TEST_PING_PONG_STREAMING_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/ping_pong_streaming_legacy.o: 
-
 
 LIBEND2END_TEST_REGISTERED_CALL_SRC = \
     test/core/end2end/tests/registered_call.c \
@@ -5638,8 +5209,6 @@
 -include $(LIBEND2END_TEST_REGISTERED_CALL_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/registered_call.o: 
-
 
 LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_SRC = \
     test/core/end2end/tests/request_response_with_binary_metadata_and_payload.c \
@@ -5663,8 +5232,6 @@
 -include $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/request_response_with_binary_metadata_and_payload.o: 
-
 
 LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_LEGACY_SRC = \
     test/core/end2end/tests/request_response_with_binary_metadata_and_payload_legacy.c \
@@ -5688,8 +5255,6 @@
 -include $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_BINARY_METADATA_AND_PAYLOAD_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/request_response_with_binary_metadata_and_payload_legacy.o: 
-
 
 LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_SRC = \
     test/core/end2end/tests/request_response_with_metadata_and_payload.c \
@@ -5713,8 +5278,6 @@
 -include $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/request_response_with_metadata_and_payload.o: 
-
 
 LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_LEGACY_SRC = \
     test/core/end2end/tests/request_response_with_metadata_and_payload_legacy.c \
@@ -5738,8 +5301,6 @@
 -include $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_METADATA_AND_PAYLOAD_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/request_response_with_metadata_and_payload_legacy.o: 
-
 
 LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_SRC = \
     test/core/end2end/tests/request_response_with_payload.c \
@@ -5763,8 +5324,6 @@
 -include $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/request_response_with_payload.o: 
-
 
 LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_LEGACY_SRC = \
     test/core/end2end/tests/request_response_with_payload_legacy.c \
@@ -5788,8 +5347,6 @@
 -include $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_PAYLOAD_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/request_response_with_payload_legacy.o: 
-
 
 LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_LEGACY_SRC = \
     test/core/end2end/tests/request_response_with_trailing_metadata_and_payload_legacy.c \
@@ -5813,8 +5370,6 @@
 -include $(LIBEND2END_TEST_REQUEST_RESPONSE_WITH_TRAILING_METADATA_AND_PAYLOAD_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/request_response_with_trailing_metadata_and_payload_legacy.o: 
-
 
 LIBEND2END_TEST_REQUEST_WITH_LARGE_METADATA_SRC = \
     test/core/end2end/tests/request_with_large_metadata.c \
@@ -5838,8 +5393,6 @@
 -include $(LIBEND2END_TEST_REQUEST_WITH_LARGE_METADATA_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/request_with_large_metadata.o: 
-
 
 LIBEND2END_TEST_REQUEST_WITH_LARGE_METADATA_LEGACY_SRC = \
     test/core/end2end/tests/request_with_large_metadata_legacy.c \
@@ -5863,8 +5416,6 @@
 -include $(LIBEND2END_TEST_REQUEST_WITH_LARGE_METADATA_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/request_with_large_metadata_legacy.o: 
-
 
 LIBEND2END_TEST_REQUEST_WITH_PAYLOAD_SRC = \
     test/core/end2end/tests/request_with_payload.c \
@@ -5888,8 +5439,6 @@
 -include $(LIBEND2END_TEST_REQUEST_WITH_PAYLOAD_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/request_with_payload.o: 
-
 
 LIBEND2END_TEST_REQUEST_WITH_PAYLOAD_LEGACY_SRC = \
     test/core/end2end/tests/request_with_payload_legacy.c \
@@ -5913,8 +5462,6 @@
 -include $(LIBEND2END_TEST_REQUEST_WITH_PAYLOAD_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/request_with_payload_legacy.o: 
-
 
 LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_SRC = \
     test/core/end2end/tests/simple_delayed_request.c \
@@ -5938,8 +5485,6 @@
 -include $(LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/simple_delayed_request.o: 
-
 
 LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_LEGACY_SRC = \
     test/core/end2end/tests/simple_delayed_request_legacy.c \
@@ -5963,8 +5508,6 @@
 -include $(LIBEND2END_TEST_SIMPLE_DELAYED_REQUEST_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/simple_delayed_request_legacy.o: 
-
 
 LIBEND2END_TEST_SIMPLE_REQUEST_SRC = \
     test/core/end2end/tests/simple_request.c \
@@ -5988,8 +5531,6 @@
 -include $(LIBEND2END_TEST_SIMPLE_REQUEST_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/simple_request.o: 
-
 
 LIBEND2END_TEST_SIMPLE_REQUEST_LEGACY_SRC = \
     test/core/end2end/tests/simple_request_legacy.c \
@@ -6013,8 +5554,6 @@
 -include $(LIBEND2END_TEST_SIMPLE_REQUEST_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/simple_request_legacy.o: 
-
 
 LIBEND2END_TEST_THREAD_STRESS_SRC = \
     test/core/end2end/tests/thread_stress.c \
@@ -6038,8 +5577,6 @@
 -include $(LIBEND2END_TEST_THREAD_STRESS_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/thread_stress.o: 
-
 
 LIBEND2END_TEST_THREAD_STRESS_LEGACY_SRC = \
     test/core/end2end/tests/thread_stress_legacy.c \
@@ -6063,8 +5600,6 @@
 -include $(LIBEND2END_TEST_THREAD_STRESS_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/thread_stress_legacy.o: 
-
 
 LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_SRC = \
     test/core/end2end/tests/writes_done_hangs_with_pending_read.c \
@@ -6088,8 +5623,6 @@
 -include $(LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/writes_done_hangs_with_pending_read.o: 
-
 
 LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_LEGACY_SRC = \
     test/core/end2end/tests/writes_done_hangs_with_pending_read_legacy.c \
@@ -6113,8 +5646,6 @@
 -include $(LIBEND2END_TEST_WRITES_DONE_HANGS_WITH_PENDING_READ_LEGACY_OBJS:.o=.dep)
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/tests/writes_done_hangs_with_pending_read_legacy.o: 
-
 
 LIBEND2END_CERTS_SRC = \
     test/core/end2end/data/test_root_cert.c \
@@ -6154,10 +5685,6 @@
 endif
 endif
 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/data/test_root_cert.o: 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/data/server1_cert.o: 
-$(OBJDIR)/$(CONFIG)/test/core/end2end/data/server1_key.o: 
-
 
 
 # All of the test targets, and protoc plugins
diff --git a/build.json b/build.json
index 8838d3a..e072ed6 100644
--- a/build.json
+++ b/build.json
@@ -28,6 +28,7 @@
         "include/grpc++/generic_stub.h",
         "include/grpc++/impl/call.h",
         "include/grpc++/impl/client_unary_call.h",
+        "include/grpc++/impl/grpc_library.h",
         "include/grpc++/impl/internal_stub.h",
         "include/grpc++/impl/rpc_method.h",
         "include/grpc++/impl/rpc_service_method.h",
@@ -46,13 +47,13 @@
         "include/grpc++/status.h",
         "include/grpc++/status_code_enum.h",
         "include/grpc++/stream.h",
-        "include/grpc++/thread_pool_interface.h"
+        "include/grpc++/thread_pool_interface.h",
+        "include/grpc++/time.h"
       ],
       "headers": [
         "src/cpp/client/channel.h",
         "src/cpp/proto/proto_utils.h",
-        "src/cpp/server/thread_pool.h",
-        "src/cpp/util/time.h"
+        "src/cpp/server/thread_pool.h"
       ],
       "src": [
         "src/cpp/client/channel.cc",
@@ -810,6 +811,7 @@
     },
     {
       "name": "census_statistics_multiple_writers_test",
+      "flaky": true,
       "build": "test",
       "language": "c",
       "src": [
@@ -824,6 +826,7 @@
     },
     {
       "name": "census_statistics_performance_test",
+      "flaky": true,
       "build": "test",
       "language": "c",
       "src": [
@@ -838,6 +841,7 @@
     },
     {
       "name": "census_statistics_quick_test",
+      "flaky": true,
       "build": "test",
       "language": "c",
       "src": [
diff --git a/examples/pubsub/main.cc b/examples/pubsub/main.cc
index 8f8eefa..68620e6 100644
--- a/examples/pubsub/main.cc
+++ b/examples/pubsub/main.cc
@@ -31,7 +31,6 @@
  *
  */
 
-#include <chrono>
 #include <fstream>
 #include <memory>
 #include <sstream>
@@ -65,7 +64,6 @@
 }  // namespace
 
 int main(int argc, char** argv) {
-  grpc_init();
   grpc::testing::InitTest(&argc, &argv, true);
   gpr_log(GPR_INFO, "Start PUBSUB client");
 
@@ -146,7 +144,5 @@
 
   subscriber.Shutdown();
   publisher.Shutdown();
-  channel.reset();
-  grpc_shutdown();
   return 0;
 }
diff --git a/examples/pubsub/publisher_test.cc b/examples/pubsub/publisher_test.cc
index ac49212..6b9dcac 100644
--- a/examples/pubsub/publisher_test.cc
+++ b/examples/pubsub/publisher_test.cc
@@ -148,10 +148,8 @@
 
 int main(int argc, char** argv) {
   grpc_test_init(argc, argv);
-  grpc_init();
   ::testing::InitGoogleTest(&argc, argv);
   gpr_log(GPR_INFO, "Start test ...");
   int result = RUN_ALL_TESTS();
-  grpc_shutdown();
   return result;
 }
diff --git a/examples/pubsub/subscriber_test.cc b/examples/pubsub/subscriber_test.cc
index 9ab60ed..b0e7fc0 100644
--- a/examples/pubsub/subscriber_test.cc
+++ b/examples/pubsub/subscriber_test.cc
@@ -147,10 +147,8 @@
 
 int main(int argc, char** argv) {
   grpc_test_init(argc, argv);
-  grpc_init();
   ::testing::InitGoogleTest(&argc, argv);
   gpr_log(GPR_INFO, "Start test ...");
   int result = RUN_ALL_TESTS();
-  grpc_shutdown();
   return result;
 }
diff --git a/gRPC.podspec b/gRPC.podspec
index 7f7ff88..e93eae2 100644
--- a/gRPC.podspec
+++ b/gRPC.podspec
@@ -16,7 +16,9 @@
     rs.summary  = 'Reactive Extensions library for iOS.'
     rs.authors  = { 'Jorge Canizales' => 'jcanizales@google.com' }
 
-    rs.source_files = 'src/objective-c/RxLibrary/*.{h,m}', 'src/objective-c/RxLibrary/transformations/*.{h,m}', 'src/objective-c/RxLibrary/private/*.{h,m}'
+    rs.source_files = 'src/objective-c/RxLibrary/*.{h,m}',
+                      'src/objective-c/RxLibrary/transformations/*.{h,m}',
+                      'src/objective-c/RxLibrary/private/*.{h,m}'
     rs.private_header_files = 'src/objective-c/RxLibrary/private/*.h'
   end
 
@@ -36,35 +38,38 @@
     cs.requires_arc = false
     cs.libraries = 'z'
     cs.dependency 'OpenSSL', '~> 1.0.200'
-
-    # This is a workaround for Cocoapods Issue #1437.
-    # It renames time.h and string.h to grpc_time.h and grpc_string.h.
-    cs.prepare_command = <<-CMD
-      DIR_TIME="grpc/support"
-      BAD_TIME="$DIR_TIME/time.h"
-      GOOD_TIME="$DIR_TIME/grpc_time.h"
-      if [ -f "include/$BAD_TIME" ];
-      then
-        grep -rl "$BAD_TIME" include/grpc src/core | xargs sed -i '' -e s@$BAD_TIME@$GOOD_TIME@g
-        mv "include/$BAD_TIME" "include/$GOOD_TIME"
-      fi
-
-      DIR_STRING="src/core/support"
-      BAD_STRING="$DIR_STRING/string.h"
-      GOOD_STRING="$DIR_STRING/grpc_string.h"
-      if [ -f "$BAD_STRING" ];
-      then
-        grep -rl "$BAD_STRING" include/grpc src/core | xargs sed -i '' -e s@$BAD_STRING@$GOOD_STRING@g
-        mv "$BAD_STRING" "$GOOD_STRING"
-      fi
-    CMD
   end
 
+  # This is a workaround for Cocoapods Issue #1437.
+  # It renames time.h and string.h to grpc_time.h and grpc_string.h.
+  # It needs to be here (top-level) instead of in the C-Core subspec because Cocoapods doesn't run
+  # prepare_command's of subspecs.
+  s.prepare_command = <<-CMD
+    DIR_TIME="grpc/support"
+    BAD_TIME="$DIR_TIME/time.h"
+    GOOD_TIME="$DIR_TIME/grpc_time.h"
+    if [ -f "include/$BAD_TIME" ];
+    then
+      grep -rl "$BAD_TIME" include/grpc src/core | xargs sed -i '' -e s@$BAD_TIME@$GOOD_TIME@g
+      mv "include/$BAD_TIME" "include/$GOOD_TIME"
+    fi
+
+    DIR_STRING="src/core/support"
+    BAD_STRING="$DIR_STRING/string.h"
+    GOOD_STRING="$DIR_STRING/grpc_string.h"
+    if [ -f "$BAD_STRING" ];
+    then
+      grep -rl "$BAD_STRING" include/grpc src/core | xargs sed -i '' -e s@$BAD_STRING@$GOOD_STRING@g
+      mv "$BAD_STRING" "$GOOD_STRING"
+    fi
+  CMD
+
   s.subspec 'GRPCClient' do |gs|
     gs.summary = 'Objective-C wrapper around the core gRPC library.'
     gs.authors  = { 'Jorge Canizales' => 'jcanizales@google.com' }
 
-    gs.source_files = 'src/objective-c/GRPCClient/*.{h,m}', 'src/objective-c/GRPCClient/private/*.{h,m}'
+    gs.source_files = 'src/objective-c/GRPCClient/*.{h,m}',
+                      'src/objective-c/GRPCClient/private/*.{h,m}'
     gs.private_header_files = 'src/objective-c/GRPCClient/private/*.h'
 
     gs.dependency 'gRPC/C-Core'
diff --git a/include/grpc++/channel_interface.h b/include/grpc++/channel_interface.h
index 4d48974..10fb953 100644
--- a/include/grpc++/channel_interface.h
+++ b/include/grpc++/channel_interface.h
@@ -34,6 +34,8 @@
 #ifndef GRPCXX_CHANNEL_INTERFACE_H
 #define GRPCXX_CHANNEL_INTERFACE_H
 
+#include <memory>
+
 #include <grpc++/status.h>
 #include <grpc++/impl/call.h>
 
@@ -47,11 +49,12 @@
 class RpcMethod;
 class CallInterface;
 
-class ChannelInterface : public CallHook {
+class ChannelInterface : public CallHook,
+                         public std::enable_shared_from_this<ChannelInterface> {
  public:
   virtual ~ChannelInterface() {}
 
-  virtual void *RegisterMethod(const char *method_name) = 0;
+  virtual void* RegisterMethod(const char* method_name) = 0;
   virtual Call CreateCall(const RpcMethod& method, ClientContext* context,
                           CompletionQueue* cq) = 0;
 };
diff --git a/include/grpc++/client_context.h b/include/grpc++/client_context.h
index 4e7f5a7..a58e987 100644
--- a/include/grpc++/client_context.h
+++ b/include/grpc++/client_context.h
@@ -34,15 +34,14 @@
 #ifndef GRPCXX_CLIENT_CONTEXT_H
 #define GRPCXX_CLIENT_CONTEXT_H
 
-#include <chrono>
 #include <map>
+#include <memory>
 #include <string>
 
 #include <grpc/support/log.h>
 #include <grpc/support/time.h>
 #include <grpc++/config.h>
-
-using std::chrono::system_clock;
+#include <grpc++/time.h>
 
 struct grpc_call;
 struct grpc_completion_queue;
@@ -87,8 +86,19 @@
     return trailing_metadata_;
   }
 
-  void set_absolute_deadline(const system_clock::time_point& deadline);
-  system_clock::time_point absolute_deadline();
+  template <typename T>
+  void set_deadline(const T& deadline) {
+    TimePoint<T> deadline_tp(deadline);
+    deadline_ = deadline_tp.raw_time();
+  }
+
+#ifndef GRPC_CXX0X_NO_CHRONO
+  std::chrono::system_clock::time_point deadline() {
+    return Timespec2Timepoint(deadline_);
+  }
+#endif  // !GRPC_CXX0X_NO_CHRONO
+
+  gpr_timespec raw_deadline() { return deadline_; }
 
   void set_authority(const grpc::string& authority) { authority_ = authority; }
 
@@ -117,22 +127,22 @@
   friend class ::grpc::ClientAsyncResponseReader;
 
   grpc_call* call() { return call_; }
-  void set_call(grpc_call* call) {
+  void set_call(grpc_call* call, const std::shared_ptr<ChannelInterface>& channel) {
     GPR_ASSERT(call_ == nullptr);
     call_ = call;
+    channel_ = channel;
   }
 
   grpc_completion_queue* cq() { return cq_; }
   void set_cq(grpc_completion_queue* cq) { cq_ = cq; }
 
-  gpr_timespec RawDeadline() { return absolute_deadline_; }
-
   grpc::string authority() { return authority_; }
 
   bool initial_metadata_received_;
+  std::shared_ptr<ChannelInterface> channel_;
   grpc_call* call_;
   grpc_completion_queue* cq_;
-  gpr_timespec absolute_deadline_;
+  gpr_timespec deadline_;
   grpc::string authority_;
   std::multimap<grpc::string, grpc::string> send_initial_metadata_;
   std::multimap<grpc::string, grpc::string> recv_initial_metadata_;
diff --git a/include/grpc++/completion_queue.h b/include/grpc++/completion_queue.h
index e6a8c6f..5c2b1cc 100644
--- a/include/grpc++/completion_queue.h
+++ b/include/grpc++/completion_queue.h
@@ -34,9 +34,10 @@
 #ifndef GRPCXX_COMPLETION_QUEUE_H
 #define GRPCXX_COMPLETION_QUEUE_H
 
-#include <chrono>
-#include <grpc++/impl/client_unary_call.h>
 #include <grpc/support/time.h>
+#include <grpc++/impl/client_unary_call.h>
+#include <grpc++/impl/grpc_library.h>
+#include <grpc++/time.h>
 
 struct grpc_completion_queue;
 
@@ -71,21 +72,24 @@
 };
 
 // grpc_completion_queue wrapper class
-class CompletionQueue {
+class CompletionQueue : public GrpcLibrary {
  public:
   CompletionQueue();
   explicit CompletionQueue(grpc_completion_queue* take);
-  ~CompletionQueue();
+  ~CompletionQueue() GRPC_OVERRIDE;
 
   // Tri-state return for AsyncNext: SHUTDOWN, GOT_EVENT, TIMEOUT
   enum NextStatus { SHUTDOWN, GOT_EVENT, TIMEOUT };
 
   // Nonblocking (until deadline) read from queue.
   // Cannot rely on result of tag or ok if return is TIMEOUT
-  NextStatus AsyncNext(void** tag, bool* ok,
-                       std::chrono::system_clock::time_point deadline);
+  template<typename T>
+  NextStatus AsyncNext(void** tag, bool* ok, const T& deadline) {
+    TimePoint<T> deadline_tp(deadline);
+    return AsyncNextInternal(tag, ok, deadline_tp.raw_time());
+  }
 
-  // Blocking (until deadline) read from queue.
+  // Blocking read from queue.
   // Returns false if the queue is ready for destruction, true if event
 
   bool Next(void** tag, bool* ok) {
diff --git a/include/grpc++/credentials.h b/include/grpc++/credentials.h
index 2ac3eec..61c4094 100644
--- a/include/grpc++/credentials.h
+++ b/include/grpc++/credentials.h
@@ -34,19 +34,19 @@
 #ifndef GRPCXX_CREDENTIALS_H
 #define GRPCXX_CREDENTIALS_H
 
-#include <chrono>
 #include <memory>
 
 #include <grpc++/config.h>
+#include <grpc++/impl/grpc_library.h>
 
 namespace grpc {
 class ChannelArguments;
 class ChannelInterface;
 class SecureCredentials;
 
-class Credentials {
+class Credentials : public GrpcLibrary {
  public:
-  virtual ~Credentials();
+  ~Credentials() GRPC_OVERRIDE;
 
  protected:
   friend std::unique_ptr<Credentials> CompositeCredentials(
@@ -98,20 +98,20 @@
 // Builds service account credentials.
 // json_key is the JSON key string containing the client's private key.
 // scope is a space-delimited list of the requested permissions.
-// token_lifetime is the lifetime of each token acquired through this service
-// account credentials. It should be positive and should not exceed
-// grpc_max_auth_token_lifetime or will be cropped to this value.
+// token_lifetime_seconds is the lifetime in seconds of each token acquired
+// through this service account credentials. It should be positive and should
+// not exceed grpc_max_auth_token_lifetime or will be cropped to this value.
 std::unique_ptr<Credentials> ServiceAccountCredentials(
     const grpc::string& json_key, const grpc::string& scope,
-    std::chrono::seconds token_lifetime);
+    long token_lifetime_seconds);
 
 // Builds JWT credentials.
 // json_key is the JSON key string containing the client's private key.
-// token_lifetime is the lifetime of each Json Web Token (JWT) created with
-// this credentials.  It should not exceed grpc_max_auth_token_lifetime or
-// will be cropped to this value.
+// token_lifetime_seconds is the lifetime in seconds of each Json Web Token
+// (JWT) created with this credentials. It should not exceed
+// grpc_max_auth_token_lifetime or will be cropped to this value.
 std::unique_ptr<Credentials> JWTCredentials(
-    const grpc::string& json_key, std::chrono::seconds token_lifetime);
+    const grpc::string& json_key, long token_lifetime_seconds);
 
 // Builds refresh token credentials.
 // json_refresh_token is the JSON string containing the refresh token along
diff --git a/src/cpp/util/time.h b/include/grpc++/impl/grpc_library.h
similarity index 79%
rename from src/cpp/util/time.h
rename to include/grpc++/impl/grpc_library.h
index 8b7fcf5..f9fa677 100644
--- a/src/cpp/util/time.h
+++ b/include/grpc++/impl/grpc_library.h
@@ -31,21 +31,20 @@
  *
  */
 
-#ifndef GRPC_INTERNAL_CPP_UTIL_TIME_H
-#define GRPC_INTERNAL_CPP_UTIL_TIME_H
+#ifndef GRPCXX_IMPL_GRPC_LIBRARY_H
+#define GRPCXX_IMPL_GRPC_LIBRARY_H
 
-#include <chrono>
-
-#include <grpc/support/time.h>
+#include <grpc/grpc.h>
 
 namespace grpc {
 
-// from and to should be absolute time.
-void Timepoint2Timespec(const std::chrono::system_clock::time_point& from,
-                        gpr_timespec* to);
-
-std::chrono::system_clock::time_point Timespec2Timepoint(gpr_timespec t);
+class GrpcLibrary {
+ public:
+  GrpcLibrary() { grpc_init(); }
+  virtual ~GrpcLibrary() { grpc_shutdown(); }
+};
 
 }  // namespace grpc
 
-#endif  // GRPC_INTERNAL_CPP_UTIL_TIME_H
+
+#endif  // GRPCXX_IMPL_GRPC_LIBRARY_H
diff --git a/include/grpc++/server.h b/include/grpc++/server.h
index eb50611..c686474 100644
--- a/include/grpc++/server.h
+++ b/include/grpc++/server.h
@@ -40,6 +40,7 @@
 #include <grpc++/completion_queue.h>
 #include <grpc++/config.h>
 #include <grpc++/impl/call.h>
+#include <grpc++/impl/grpc_library.h>
 #include <grpc++/impl/service_type.h>
 #include <grpc++/impl/sync.h>
 #include <grpc++/status.h>
@@ -56,7 +57,8 @@
 class ThreadPoolInterface;
 
 // Currently it only supports handling rpcs in a single thread.
-class Server GRPC_FINAL : private CallHook,
+class Server GRPC_FINAL : public GrpcLibrary,
+                          private CallHook,
                           private AsynchronousService::DispatchImpl {
  public:
   ~Server();
@@ -78,7 +80,6 @@
 
   // ServerBuilder use only
   Server(ThreadPoolInterface* thread_pool, bool thread_pool_owned);
-  Server() = delete;
   // Register a service. This call does not take ownership of the service.
   // The service must exist for the lifetime of the Server instance.
   bool RegisterService(RpcService* service);
@@ -116,7 +117,7 @@
   int num_running_cb_;
   grpc::condition_variable callback_cv_;
 
-  std::list<SyncRequest> sync_methods_;
+  std::list<SyncRequest>* sync_methods_;
 
   // Pointer to the c grpc server.
   grpc_server* const server_;
@@ -124,6 +125,8 @@
   ThreadPoolInterface* thread_pool_;
   // Whether the thread pool is created and owned by the server.
   bool thread_pool_owned_;
+ private:
+  Server() : server_(NULL) { abort(); }
 };
 
 }  // namespace grpc
diff --git a/include/grpc++/server_context.h b/include/grpc++/server_context.h
index 9e3b80c..a62babd 100644
--- a/include/grpc++/server_context.h
+++ b/include/grpc++/server_context.h
@@ -34,10 +34,11 @@
 #ifndef GRPCXX_SERVER_CONTEXT_H
 #define GRPCXX_SERVER_CONTEXT_H
 
-#include <chrono>
 #include <map>
 
+#include <grpc/support/time.h>
 #include <grpc++/config.h>
+#include <grpc++/time.h>
 
 struct gpr_timespec;
 struct grpc_metadata;
@@ -71,9 +72,13 @@
   ServerContext();  // for async calls
   ~ServerContext();
 
-  std::chrono::system_clock::time_point absolute_deadline() {
-    return deadline_;
+#ifndef GRPC_CXX0X_NO_CHRONO
+  std::chrono::system_clock::time_point deadline() {
+    return Timespec2Timepoint(deadline_);
   }
+#endif  // !GRPC_CXX0X_NO_CHRONO
+
+  gpr_timespec raw_deadline() { return deadline_; }
 
   void AddInitialMetadata(const grpc::string& key, const grpc::string& value);
   void AddTrailingMetadata(const grpc::string& key, const grpc::string& value);
@@ -110,7 +115,7 @@
 
   CompletionOp* completion_op_;
 
-  std::chrono::system_clock::time_point deadline_;
+  gpr_timespec deadline_;
   grpc_call* call_;
   CompletionQueue* cq_;
   bool sent_initial_metadata_;
diff --git a/include/grpc++/stream.h b/include/grpc++/stream.h
index 7625bcc..6647e34 100644
--- a/include/grpc++/stream.h
+++ b/include/grpc++/stream.h
@@ -173,7 +173,7 @@
     buf.AddRecvMessage(response_);
     buf.AddClientRecvStatus(context_, &status);
     call_.PerformOps(&buf);
-    GPR_ASSERT(cq_.Pluck(&buf) && buf.got_message);
+    GPR_ASSERT(cq_.Pluck(&buf));
     return status;
   }
 
diff --git a/include/grpc++/time.h b/include/grpc++/time.h
new file mode 100644
index 0000000..f9b2ce5
--- /dev/null
+++ b/include/grpc++/time.h
@@ -0,0 +1,106 @@
+/*
+ *
+ * Copyright 2015, Google Inc.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met:
+ *
+ *     * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ *     * Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following disclaimer
+ * in the documentation and/or other materials provided with the
+ * distribution.
+ *     * Neither the name of Google Inc. nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ */
+
+#ifndef GRPCXX_TIME_H
+#define GRPCXX_TIME_H
+
+#include <grpc++/config.h>
+
+namespace grpc {
+
+/* If you are trying to use CompletionQueue::AsyncNext with a time class that
+   isn't either gpr_timespec or std::chrono::system_clock::time_point, you
+   will most likely be looking at this comment as your compiler will have
+   fired an error below. In order to fix this issue, you have two potential
+   solutions:
+
+     1. Use gpr_timespec or std::chrono::system_clock::time_point instead
+     2. Specialize the TimePoint class with whichever time class that you
+        want to use here. See below for two examples of how to do this.
+ */
+
+template <typename T>
+class TimePoint {
+ public:
+  TimePoint(const T& time) {
+    you_need_a_specialization_of_TimePoint();
+  }
+  gpr_timespec raw_time() {
+    gpr_timespec t;
+    return t;
+  }
+ private:
+  void you_need_a_specialization_of_TimePoint();
+};
+
+template<>
+class TimePoint<gpr_timespec> {
+ public:
+  TimePoint(const gpr_timespec& time) : time_(time) { }
+  gpr_timespec raw_time() { return time_; }
+ private:
+  gpr_timespec time_;
+};
+
+}  // namespace grpc
+
+#ifndef GRPC_CXX0X_NO_CHRONO
+
+#include <chrono>
+
+#include <grpc/support/time.h>
+
+namespace grpc {
+
+// from and to should be absolute time.
+void Timepoint2Timespec(const std::chrono::system_clock::time_point& from,
+                        gpr_timespec* to);
+
+std::chrono::system_clock::time_point Timespec2Timepoint(gpr_timespec t);
+
+template <>
+class TimePoint<std::chrono::system_clock::time_point> {
+ public:
+  TimePoint(const std::chrono::system_clock::time_point& time) {
+	Timepoint2Timespec(time, &time_);
+  }
+  gpr_timespec raw_time() const { return time_; }
+ private:
+  gpr_timespec time_;
+};
+
+}  // namespace grpc
+
+#endif  // !GRPC_CXX0X_NO_CHRONO
+
+#endif  // GRPCXX_TIME_H
diff --git a/include/grpc/support/tls.h b/include/grpc/support/tls.h
index 1077fde..8dffd52 100644
--- a/include/grpc/support/tls.h
+++ b/include/grpc/support/tls.h
@@ -44,7 +44,7 @@
    Thread locals have type gpr_intptr.
 
    Declaring a thread local variable 'foo':
-     GPR_TLS_DECL(foo, initial_value);
+     GPR_TLS_DECL(foo);
    Thread locals always have static scope.
 
    Initializing a thread local (must be done at library initialization 
diff --git a/src/core/iomgr/pollset_multipoller_with_poll_posix.c b/src/core/iomgr/pollset_multipoller_with_poll_posix.c
index bcef7c3..25b7cfda 100644
--- a/src/core/iomgr/pollset_multipoller_with_poll_posix.c
+++ b/src/core/iomgr/pollset_multipoller_with_poll_posix.c
@@ -203,7 +203,7 @@
 }
 
 static void multipoll_with_poll_pollset_kick(grpc_pollset *p) {
-  grpc_pollset_kick_kick(&p->kick_state);
+  grpc_pollset_force_kick(p);
 }
 
 static void multipoll_with_poll_pollset_destroy(grpc_pollset *pollset) {
diff --git a/src/core/iomgr/pollset_posix.c b/src/core/iomgr/pollset_posix.c
index 03fd94f..60d0dad 100644
--- a/src/core/iomgr/pollset_posix.c
+++ b/src/core/iomgr/pollset_posix.c
@@ -47,9 +47,11 @@
 #include "src/core/iomgr/fd_posix.h"
 #include "src/core/iomgr/iomgr_internal.h"
 #include "src/core/iomgr/socket_utils_posix.h"
+#include "src/core/profiling/timers.h"
 #include <grpc/support/alloc.h>
 #include <grpc/support/log.h>
 #include <grpc/support/thd.h>
+#include <grpc/support/tls.h>
 #include <grpc/support/useful.h>
 
 static grpc_pollset g_backup_pollset;
@@ -57,6 +59,8 @@
 static gpr_event g_backup_poller_done;
 static gpr_event g_backup_pollset_shutdown_done;
 
+GPR_TLS_DECL(g_current_thread_poller);
+
 static void backup_poller(void *p) {
   gpr_timespec delta = gpr_time_from_millis(100);
   gpr_timespec last_poll = gpr_now();
@@ -76,17 +80,21 @@
 }
 
 void grpc_pollset_kick(grpc_pollset *p) {
-  if (p->counter) {
+  if (gpr_tls_get(&g_current_thread_poller) != (gpr_intptr)p && p->counter) {
     p->vtable->kick(p);
   }
 }
 
 void grpc_pollset_force_kick(grpc_pollset *p) {
-  grpc_pollset_kick_kick(&p->kick_state);
+  if (gpr_tls_get(&g_current_thread_poller) != (gpr_intptr)p) {
+    grpc_pollset_kick_kick(&p->kick_state);
+  }
 }
 
 static void kick_using_pollset_kick(grpc_pollset *p) {
-  grpc_pollset_kick_kick(&p->kick_state);
+  if (gpr_tls_get(&g_current_thread_poller) != (gpr_intptr)p) {
+    grpc_pollset_kick_kick(&p->kick_state);
+  }
 }
 
 /* global state management */
@@ -96,6 +104,8 @@
 void grpc_pollset_global_init(void) {
   gpr_thd_id id;
 
+  gpr_tls_init(&g_current_thread_poller);
+
   /* Initialize kick fd state */
   grpc_pollset_kick_global_init();
 
@@ -129,6 +139,8 @@
 
   /* destroy the kick pipes */
   grpc_pollset_kick_global_destroy();
+
+  gpr_tls_destroy(&g_current_thread_poller);
 }
 
 /* main interface */
@@ -161,8 +173,8 @@
 
 int grpc_pollset_work(grpc_pollset *pollset, gpr_timespec deadline) {
   /* pollset->mu already held */
-  gpr_timespec now;
-  now = gpr_now();
+  gpr_timespec now = gpr_now();
+  int r;
   if (gpr_time_cmp(now, deadline) > 0) {
     return 0;
   }
@@ -172,7 +184,10 @@
   if (grpc_alarm_check(&pollset->mu, now, &deadline)) {
     return 1;
   }
-  return pollset->vtable->maybe_work(pollset, deadline, now, 1);
+  gpr_tls_set(&g_current_thread_poller, (gpr_intptr)pollset);
+  r = pollset->vtable->maybe_work(pollset, deadline, now, 1);
+  gpr_tls_set(&g_current_thread_poller, 0);
+  return r;
 }
 
 void grpc_pollset_shutdown(grpc_pollset *pollset,
@@ -396,6 +411,7 @@
   pfd[1].events = grpc_fd_begin_poll(fd, pollset, POLLIN, POLLOUT, &fd_watcher);
 
   r = poll(pfd, GPR_ARRAY_SIZE(pfd), timeout);
+  GRPC_TIMER_MARK(POLL_FINISHED, r);
 
   grpc_fd_end_poll(&fd_watcher);
 
diff --git a/src/core/iomgr/resolve_address_windows.c b/src/core/iomgr/resolve_address_windows.c
index ac31dad..9b416df 100644
--- a/src/core/iomgr/resolve_address_windows.c
+++ b/src/core/iomgr/resolve_address_windows.c
@@ -65,7 +65,6 @@
   int s;
   size_t i;
   grpc_resolved_addresses *addrs = NULL;
-  const gpr_timespec start_time = gpr_now();
 
   /* parse name, splitting it into host and port parts */
   gpr_split_host_port(name, &host, &port);
@@ -108,9 +107,6 @@
   }
 
   {
-    const gpr_timespec delay = gpr_time_sub(gpr_now(), start_time);
-    const int delay_ms =
-        delay.tv_sec * GPR_MS_PER_SEC + delay.tv_nsec / GPR_NS_PER_MS;
     for (i = 0; i < addrs->naddrs; i++) {
       char *buf;
       grpc_sockaddr_to_string(&buf, (struct sockaddr *)&addrs->addrs[i].addr,
diff --git a/src/core/iomgr/tcp_server_windows.c b/src/core/iomgr/tcp_server_windows.c
index 6e10da9..fe92846 100644
--- a/src/core/iomgr/tcp_server_windows.c
+++ b/src/core/iomgr/tcp_server_windows.c
@@ -192,7 +192,7 @@
   }
 
   /* TODO(jtattermusch): probably a race here, we regularly get use-after-free on server shutdown */
-  GPR_ASSERT(port->socket != 0xfeeefeee);
+  GPR_ASSERT(port->socket != (grpc_winsocket*)0xfeeefeee);
   success = port->AcceptEx(port->socket->socket, sock, port->addresses, 0,
                            addrlen, addrlen, &bytes_received,
                            &port->socket->read_info.overlapped);
diff --git a/src/core/support/alloc.c b/src/core/support/alloc.c
index a19a014..d2ed82e 100644
--- a/src/core/support/alloc.c
+++ b/src/core/support/alloc.c
@@ -55,7 +55,7 @@
 }
 
 void *gpr_malloc_aligned(size_t size, size_t alignment_log) {
-  size_t alignment = 1 << alignment_log;
+  size_t alignment = ((size_t)1) << alignment_log;
   size_t extra = alignment - 1 + sizeof(void *);
   void *p = gpr_malloc(size + extra);
   void **ret = (void **)(((gpr_uintptr)p + extra) & ~(alignment - 1));
diff --git a/src/core/support/time_win32.c b/src/core/support/time_win32.c
index 539470b..f4443b5 100644
--- a/src/core/support/time_win32.c
+++ b/src/core/support/time_win32.c
@@ -64,7 +64,7 @@
     }
 
     delta = gpr_time_sub(until, now);
-    sleep_millis = delta.tv_sec * GPR_MS_PER_SEC + delta.tv_nsec / GPR_NS_PER_MS;
+    sleep_millis = (DWORD)delta.tv_sec * GPR_MS_PER_SEC + delta.tv_nsec / GPR_NS_PER_MS;
     Sleep(sleep_millis);
   }
 }
diff --git a/src/core/surface/completion_queue.c b/src/core/surface/completion_queue.c
index 24f4a05..e0135d9 100644
--- a/src/core/surface/completion_queue.c
+++ b/src/core/surface/completion_queue.c
@@ -67,6 +67,8 @@
   /* When refs drops to zero, we are in shutdown mode, and will be destroyable
      once all queued events are drained */
   gpr_refcount refs;
+  /* Once owning_refs drops to zero, we will destroy the cq */
+  gpr_refcount owning_refs;
   /* the set of low level i/o things that concern this cq */
   grpc_pollset pollset;
   /* 0 initially, 1 once we've begun shutting down */
@@ -91,11 +93,29 @@
   memset(cc, 0, sizeof(*cc));
   /* Initial ref is dropped by grpc_completion_queue_shutdown */
   gpr_ref_init(&cc->refs, 1);
+  gpr_ref_init(&cc->owning_refs, 1);
   grpc_pollset_init(&cc->pollset);
   cc->allow_polling = 1;
   return cc;
 }
 
+void grpc_cq_internal_ref(grpc_completion_queue *cc) {
+  gpr_ref(&cc->owning_refs);
+}
+
+static void on_pollset_destroy_done(void *arg) {
+  grpc_completion_queue *cc = arg;
+  grpc_pollset_destroy(&cc->pollset);
+  gpr_free(cc);
+}
+
+void grpc_cq_internal_unref(grpc_completion_queue *cc) {
+  if (gpr_unref(&cc->owning_refs)) {
+    GPR_ASSERT(cc->queue == NULL);
+    grpc_pollset_shutdown(&cc->pollset, on_pollset_destroy_done, cc);
+  }
+}
+
 void grpc_completion_queue_dont_poll_test_only(grpc_completion_queue *cc) {
   cc->allow_polling = 0;
 }
@@ -394,15 +414,8 @@
   }
 }
 
-static void on_pollset_destroy_done(void *arg) {
-  grpc_completion_queue *cc = arg;
-  grpc_pollset_destroy(&cc->pollset);
-  gpr_free(cc);
-}
-
 void grpc_completion_queue_destroy(grpc_completion_queue *cc) {
-  GPR_ASSERT(cc->queue == NULL);
-  grpc_pollset_shutdown(&cc->pollset, on_pollset_destroy_done, cc);
+  grpc_cq_internal_unref(cc);
 }
 
 void grpc_event_finish(grpc_event *base) {
diff --git a/src/core/surface/completion_queue.h b/src/core/surface/completion_queue.h
index 3a7cc99..41024cd 100644
--- a/src/core/surface/completion_queue.h
+++ b/src/core/surface/completion_queue.h
@@ -43,6 +43,9 @@
    grpc_event_finish */
 typedef void (*grpc_event_finish_func)(void *user_data, grpc_op_error error);
 
+void grpc_cq_internal_ref(grpc_completion_queue *cc);
+void grpc_cq_internal_unref(grpc_completion_queue *cc);
+
 /* Flag that an operation is beginning: the completion channel will not finish
    shutdown until a corrensponding grpc_cq_end_* call is made */
 void grpc_cq_begin_op(grpc_completion_queue *cc, grpc_call *call,
diff --git a/src/core/surface/server.c b/src/core/surface/server.c
index e771929..a2e94d5 100644
--- a/src/core/surface/server.c
+++ b/src/core/surface/server.c
@@ -262,6 +262,7 @@
 
 static void server_unref(grpc_server *server) {
   registered_method *rm;
+  size_t i;
   if (gpr_unref(&server->internal_refcount)) {
     grpc_channel_args_destroy(server->channel_args);
     gpr_mu_destroy(&server->mu);
@@ -275,6 +276,9 @@
       requested_call_array_destroy(&rm->requested);
       gpr_free(rm);
     }
+    for (i = 0; i < server->cq_count; i++) {
+      grpc_cq_internal_unref(server->cqs[i]);
+    }
     gpr_free(server->cqs);
     gpr_free(server->pollsets);
     gpr_free(server->shutdown_tags);
@@ -601,6 +605,7 @@
   for (i = 0; i < server->cq_count; i++) {
     if (server->cqs[i] == cq) return;
   }
+  grpc_cq_internal_ref(cq);
   n = server->cq_count++;
   server->cqs = gpr_realloc(server->cqs,
                             server->cq_count * sizeof(grpc_completion_queue *));
@@ -1083,6 +1088,7 @@
             &rc->data.batch.details->host_capacity, calld->host);
       cpstr(&rc->data.batch.details->method,
             &rc->data.batch.details->method_capacity, calld->path);
+      rc->data.batch.details->deadline = calld->deadline;
       grpc_call_set_completion_queue(calld->call, rc->data.batch.cq_bind);
       *rc->data.batch.call = calld->call;
       r->op = GRPC_IOREQ_RECV_INITIAL_METADATA;
diff --git a/src/core/tsi/ssl_transport_security.c b/src/core/tsi/ssl_transport_security.c
index 018ddc4..b7c2859 100644
--- a/src/core/tsi/ssl_transport_security.c
+++ b/src/core/tsi/ssl_transport_security.c
@@ -34,6 +34,7 @@
 #include "src/core/tsi/ssl_transport_security.h"
 
 #include <limits.h>
+#include <string.h>
 
 #include <grpc/support/log.h>
 #include <grpc/support/sync.h>
diff --git a/src/cpp/client/channel.cc b/src/cpp/client/channel.cc
index 478f223..c541ddf 100644
--- a/src/cpp/client/channel.cc
+++ b/src/cpp/client/channel.cc
@@ -33,7 +33,6 @@
 
 #include "src/cpp/client/channel.h"
 
-#include <chrono>
 #include <memory>
 
 #include <grpc/grpc.h>
@@ -65,14 +64,14 @@
       method.channel_tag()
           ? grpc_channel_create_registered_call(c_channel_, cq->cq(),
                                                 method.channel_tag(),
-                                                context->RawDeadline())
+                                                context->raw_deadline())
           : grpc_channel_create_call(c_channel_, cq->cq(), method.name(),
                                      context->authority().empty()
                                          ? target_.c_str()
                                          : context->authority().c_str(),
-                                     context->RawDeadline());
+                                     context->raw_deadline());
   GRPC_TIMER_MARK(CALL_CREATED, c_call);
-  context->set_call(c_call);
+  context->set_call(c_call, shared_from_this());
   return Call(c_call, this, cq);
 }
 
diff --git a/src/cpp/client/channel.h b/src/cpp/client/channel.h
index aaf4dbe..cd23924 100644
--- a/src/cpp/client/channel.h
+++ b/src/cpp/client/channel.h
@@ -38,6 +38,7 @@
 
 #include <grpc++/channel_interface.h>
 #include <grpc++/config.h>
+#include <grpc++/impl/grpc_library.h>
 
 struct grpc_channel;
 
@@ -49,7 +50,8 @@
 class Credentials;
 class StreamContextInterface;
 
-class Channel GRPC_FINAL : public ChannelInterface {
+class Channel GRPC_FINAL : public GrpcLibrary,
+                           public ChannelInterface {
  public:
   Channel(const grpc::string& target, grpc_channel* c_channel);
   ~Channel() GRPC_OVERRIDE;
diff --git a/src/cpp/client/client_context.cc b/src/cpp/client/client_context.cc
index de9f8c7..70c9cb4 100644
--- a/src/cpp/client/client_context.cc
+++ b/src/cpp/client/client_context.cc
@@ -34,9 +34,7 @@
 #include <grpc++/client_context.h>
 
 #include <grpc/grpc.h>
-#include "src/cpp/util/time.h"
-
-using std::chrono::system_clock;
+#include <grpc++/time.h>
 
 namespace grpc {
 
@@ -44,7 +42,7 @@
     : initial_metadata_received_(false),
       call_(nullptr),
       cq_(nullptr),
-      absolute_deadline_(gpr_inf_future) {}
+      deadline_(gpr_inf_future) {}
 
 ClientContext::~ClientContext() {
   if (call_) {
@@ -64,15 +62,6 @@
   }
 }
 
-void ClientContext::set_absolute_deadline(
-    const system_clock::time_point& deadline) {
-  Timepoint2Timespec(deadline, &absolute_deadline_);
-}
-
-system_clock::time_point ClientContext::absolute_deadline() {
-  return Timespec2Timepoint(absolute_deadline_);
-}
-
 void ClientContext::AddMetadata(const grpc::string& meta_key,
                                 const grpc::string& meta_value) {
   send_initial_metadata_.insert(std::make_pair(meta_key, meta_value));
diff --git a/src/cpp/client/secure_credentials.cc b/src/cpp/client/secure_credentials.cc
index 0a73b2c..48bf743 100644
--- a/src/cpp/client/secure_credentials.cc
+++ b/src/cpp/client/secure_credentials.cc
@@ -81,27 +81,27 @@
 // Builds service account credentials.
 std::unique_ptr<Credentials> ServiceAccountCredentials(
     const grpc::string& json_key, const grpc::string& scope,
-    std::chrono::seconds token_lifetime) {
-  if (token_lifetime.count() <= 0) {
+    long token_lifetime_seconds) {
+  if (token_lifetime_seconds <= 0) {
     gpr_log(GPR_ERROR,
             "Trying to create ServiceAccountCredentials "
             "with non-positive lifetime");
     return WrapCredentials(nullptr);
   }
-  gpr_timespec lifetime = gpr_time_from_seconds(token_lifetime.count());
+  gpr_timespec lifetime = gpr_time_from_seconds(token_lifetime_seconds);
   return WrapCredentials(grpc_service_account_credentials_create(
       json_key.c_str(), scope.c_str(), lifetime));
 }
 
 // Builds JWT credentials.
 std::unique_ptr<Credentials> JWTCredentials(
-    const grpc::string& json_key, std::chrono::seconds token_lifetime) {
-  if (token_lifetime.count() <= 0) {
+    const grpc::string& json_key, long token_lifetime_seconds) {
+  if (token_lifetime_seconds <= 0) {
     gpr_log(GPR_ERROR,
             "Trying to create JWTCredentials with non-positive lifetime");
     return WrapCredentials(nullptr);
   }
-  gpr_timespec lifetime = gpr_time_from_seconds(token_lifetime.count());
+  gpr_timespec lifetime = gpr_time_from_seconds(token_lifetime_seconds);
   return WrapCredentials(
       grpc_jwt_credentials_create(json_key.c_str(), lifetime));
 }
diff --git a/src/cpp/common/completion_queue.cc b/src/cpp/common/completion_queue.cc
index cea2d24..07122db 100644
--- a/src/cpp/common/completion_queue.cc
+++ b/src/cpp/common/completion_queue.cc
@@ -36,7 +36,7 @@
 
 #include <grpc/grpc.h>
 #include <grpc/support/log.h>
-#include "src/cpp/util/time.h"
+#include <grpc++/time.h>
 
 namespace grpc {
 
@@ -77,13 +77,6 @@
   }
 }
 
-CompletionQueue::NextStatus CompletionQueue::AsyncNext(
-    void** tag, bool* ok, std::chrono::system_clock::time_point deadline) {
-  gpr_timespec gpr_deadline;
-  Timepoint2Timespec(deadline, &gpr_deadline);
-  return AsyncNextInternal(tag, ok, gpr_deadline);
-}
-
 bool CompletionQueue::Pluck(CompletionQueueTag* tag) {
   std::unique_ptr<grpc_event, EventDeleter> ev;
 
@@ -92,7 +85,8 @@
   void* ignored = tag;
   GPR_ASSERT(tag->FinalizeResult(&ignored, &ok));
   GPR_ASSERT(ignored == tag);
-  return ok;
+  // Ignore mutations by FinalizeResult: Pluck returns the C API status
+  return ev->data.op_complete == GRPC_OP_OK;
 }
 
 void CompletionQueue::TryPluck(CompletionQueueTag* tag) {
diff --git a/src/cpp/server/server.cc b/src/cpp/server/server.cc
index b3cd1fd..4694a3a 100644
--- a/src/cpp/server/server.cc
+++ b/src/cpp/server/server.cc
@@ -45,10 +45,10 @@
 #include <grpc++/server_context.h>
 #include <grpc++/server_credentials.h>
 #include <grpc++/thread_pool_interface.h>
+#include <grpc++/time.h>
 
 #include "src/core/profiling/timers.h"
 #include "src/cpp/proto/proto_utils.h"
-#include "src/cpp/util/time.h"
 
 namespace grpc {
 
@@ -180,6 +180,7 @@
     : started_(false),
       shutdown_(false),
       num_running_cb_(0),
+      sync_methods_(new std::list<SyncRequest>),
       server_(grpc_server_create(cq_.cq(), nullptr)),
       thread_pool_(thread_pool),
       thread_pool_owned_(thread_pool_owned) {}
@@ -196,6 +197,7 @@
   if (thread_pool_owned_) {
     delete thread_pool_;
   }
+  delete sync_methods_;
 }
 
 bool Server::RegisterService(RpcService* service) {
@@ -208,7 +210,8 @@
               method->name());
       return false;
     }
-    sync_methods_.emplace_back(method, tag);
+    SyncRequest request(method, tag);
+    sync_methods_->emplace_back(request);
   }
   return true;
 }
@@ -250,8 +253,8 @@
   grpc_server_start(server_);
 
   // Start processing rpcs.
-  if (!sync_methods_.empty()) {
-    for (auto m = sync_methods_.begin(); m != sync_methods_.end(); m++) {
+  if (!sync_methods_->empty()) {
+    for (auto m = sync_methods_->begin(); m != sync_methods_->end(); m++) {
       m->Request(server_);
     }
 
@@ -353,7 +356,7 @@
     ServerContext* ctx = ctx_ ? ctx_ : generic_ctx_;
     GPR_ASSERT(ctx);
     if (*status) {
-      ctx->deadline_ = Timespec2Timepoint(call_details_.deadline);
+      ctx->deadline_ = call_details_.deadline;
       for (size_t i = 0; i < array_.count; i++) {
         ctx->client_metadata_.insert(std::make_pair(
             grpc::string(array_.metadata[i].key),
diff --git a/src/cpp/server/server_builder.cc b/src/cpp/server/server_builder.cc
index c5e115f..81cb0e6 100644
--- a/src/cpp/server/server_builder.cc
+++ b/src/cpp/server/server_builder.cc
@@ -66,7 +66,8 @@
 void ServerBuilder::AddListeningPort(const grpc::string& addr,
                                      std::shared_ptr<ServerCredentials> creds,
                                      int* selected_port) {
-  ports_.push_back(Port{addr, creds, selected_port});
+  Port port = {addr, creds, selected_port};
+  ports_.push_back(port);
 }
 
 void ServerBuilder::SetThreadPool(ThreadPoolInterface* thread_pool) {
diff --git a/src/cpp/server/server_context.cc b/src/cpp/server/server_context.cc
index ffd6d30..6b5e41d 100644
--- a/src/cpp/server/server_context.cc
+++ b/src/cpp/server/server_context.cc
@@ -33,11 +33,11 @@
 
 #include <grpc++/server_context.h>
 
-#include <grpc++/impl/call.h>
-#include <grpc++/impl/sync.h>
 #include <grpc/grpc.h>
 #include <grpc/support/log.h>
-#include "src/cpp/util/time.h"
+#include <grpc++/impl/call.h>
+#include <grpc++/impl/sync.h>
+#include <grpc++/time.h>
 
 namespace grpc {
 
@@ -99,7 +99,7 @@
 ServerContext::ServerContext(gpr_timespec deadline, grpc_metadata* metadata,
                              size_t metadata_count)
     : completion_op_(nullptr),
-      deadline_(Timespec2Timepoint(deadline)),
+      deadline_(deadline),
       call_(nullptr),
       cq_(nullptr),
       sent_initial_metadata_(false) {
diff --git a/src/cpp/util/time.cc b/src/cpp/util/time.cc
index 059ea72..1fef2a5 100644
--- a/src/cpp/util/time.cc
+++ b/src/cpp/util/time.cc
@@ -31,9 +31,12 @@
  *
  */
 
-#include "src/cpp/util/time.h"
+#include <grpc++/config.h>
+
+#ifndef GRPC_CXX0X_NO_CHRONO
 
 #include <grpc/support/time.h>
+#include <grpc++/time.h>
 
 using std::chrono::duration_cast;
 using std::chrono::nanoseconds;
@@ -68,3 +71,5 @@
 }
 
 }  // namespace grpc
+
+#endif  // !GRPC_CXX0X_NO_CHRONO
diff --git a/src/csharp/Grpc.Auth/.gitignore b/src/csharp/Grpc.Auth/.gitignore
new file mode 100644
index 0000000..c2dd664
--- /dev/null
+++ b/src/csharp/Grpc.Auth/.gitignore
@@ -0,0 +1,3 @@
+bin
+obj
+*.nupkg
diff --git a/src/csharp/Grpc.Auth/GoogleCredential.cs b/src/csharp/Grpc.Auth/GoogleCredential.cs
new file mode 100644
index 0000000..36d43d3
--- /dev/null
+++ b/src/csharp/Grpc.Auth/GoogleCredential.cs
@@ -0,0 +1,124 @@
+#region Copyright notice and license
+
+// Copyright 2015, Google Inc.
+// All rights reserved.
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are
+// met:
+//
+//     * Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+//     * Redistributions in binary form must reproduce the above
+// copyright notice, this list of conditions and the following disclaimer
+// in the documentation and/or other materials provided with the
+// distribution.
+//     * Neither the name of Google Inc. nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+#endregion
+
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Security.Cryptography;
+
+using Google.Apis.Auth.OAuth2;
+using Mono.Security.Cryptography;
+using Newtonsoft.Json.Linq;
+using Org.BouncyCastle.Crypto.Parameters;
+using Org.BouncyCastle.Security;
+
+namespace Grpc.Auth
+{
+    // TODO(jtattermusch): Remove this class once possible.
+    /// <summary>
+    /// A temporary placeholder for Google credential from 
+    /// Google Auth library for .NET. It emulates the usage pattern 
+    /// for Usable auth.
+    /// </summary>
+    public class GoogleCredential
+    {
+        private const string GoogleApplicationCredentialsEnvName = "GOOGLE_APPLICATION_CREDENTIALS";
+        private const string ClientEmailFieldName = "client_email";
+        private const string PrivateKeyFieldName = "private_key";
+
+        private ServiceCredential credential;
+
+        private GoogleCredential(ServiceCredential credential)
+        {
+            this.credential = credential;
+        }
+
+        public static GoogleCredential GetApplicationDefault()
+        {
+            return new GoogleCredential(null);  
+        }
+
+        public bool IsCreateScopedRequired
+        {
+            get
+            {
+                return true;
+            }
+        }
+
+        public GoogleCredential CreateScoped(IEnumerable<string> scopes)
+        {
+            var credsPath = Environment.GetEnvironmentVariable(GoogleApplicationCredentialsEnvName);
+            if (credsPath == null)
+            {
+                // Default to ComputeCredentials if path to JSON key is not set.
+                // ComputeCredential is not scoped actually, but for our use case it's
+                // fine to treat is as such.
+                return new GoogleCredential(new ComputeCredential(new ComputeCredential.Initializer()));
+            }
+
+            JObject o1 = JObject.Parse(File.ReadAllText(credsPath));
+            string clientEmail = o1.GetValue(ClientEmailFieldName).Value<string>();
+            string privateKeyString = o1.GetValue(PrivateKeyFieldName).Value<string>();
+            var privateKey = ParsePrivateKeyFromString(privateKeyString);
+
+            var serviceCredential = new ServiceAccountCredential(
+                new ServiceAccountCredential.Initializer(clientEmail)
+                {
+                    Scopes = scopes,
+                    Key = privateKey
+                });
+            return new GoogleCredential(serviceCredential);
+        }
+
+        internal ServiceCredential InternalCredential
+        {
+            get
+            {
+                return credential;
+            }
+        }
+
+        private RSACryptoServiceProvider ParsePrivateKeyFromString(string base64PrivateKey)
+        {
+            // TODO(jtattermusch): temporary code to create RSACryptoServiceProvider.
+            base64PrivateKey = base64PrivateKey.Replace("-----BEGIN PRIVATE KEY-----", "").Replace("\n", "").Replace("-----END PRIVATE KEY-----", "");
+            PKCS8.PrivateKeyInfo PKI = new PKCS8.PrivateKeyInfo(Convert.FromBase64String(base64PrivateKey));
+            RsaPrivateCrtKeyParameters key = (RsaPrivateCrtKeyParameters)PrivateKeyFactory.CreateKey(PKI.GetBytes());
+            RSAParameters rsaParameters = DotNetUtilities.ToRSAParameters(key);
+            RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
+            rsa.ImportParameters(rsaParameters);
+            return rsa;
+        }
+    }
+}
diff --git a/src/csharp/Grpc.Auth/Grpc.Auth.csproj b/src/csharp/Grpc.Auth/Grpc.Auth.csproj
new file mode 100644
index 0000000..1931db5
--- /dev/null
+++ b/src/csharp/Grpc.Auth/Grpc.Auth.csproj
@@ -0,0 +1,93 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <ProductVersion>10.0.0</ProductVersion>
+    <SchemaVersion>2.0</SchemaVersion>
+    <ProjectGuid>{AE21D0EE-9A2C-4C15-AB7F-5224EED5B0EA}</ProjectGuid>
+    <OutputType>Library</OutputType>
+    <RootNamespace>Grpc.Auth</RootNamespace>
+    <AssemblyName>Grpc.Auth</AssemblyName>
+    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+    <DebugSymbols>true</DebugSymbols>
+    <DebugType>full</DebugType>
+    <Optimize>false</Optimize>
+    <OutputPath>bin\Debug</OutputPath>
+    <DefineConstants>DEBUG;</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+    <ConsolePause>false</ConsolePause>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+    <DebugType>full</DebugType>
+    <Optimize>true</Optimize>
+    <OutputPath>bin\Release</OutputPath>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+    <ConsolePause>false</ConsolePause>
+  </PropertyGroup>
+  <ItemGroup>
+    <Reference Include="BouncyCastle.Crypto">
+      <HintPath>..\packages\BouncyCastle.1.7.0\lib\Net40-Client\BouncyCastle.Crypto.dll</HintPath>
+    </Reference>
+    <Reference Include="Google.Apis.Auth">
+      <HintPath>..\packages\Google.Apis.Auth.1.9.1\lib\net40\Google.Apis.Auth.dll</HintPath>
+    </Reference>
+    <Reference Include="Google.Apis.Auth.PlatformServices">
+      <HintPath>..\packages\Google.Apis.Auth.1.9.1\lib\net40\Google.Apis.Auth.PlatformServices.dll</HintPath>
+    </Reference>
+    <Reference Include="Google.Apis.Core">
+      <HintPath>..\packages\Google.Apis.Core.1.9.1\lib\portable-net40+sl50+win+wpa81+wp80\Google.Apis.Core.dll</HintPath>
+    </Reference>
+    <Reference Include="Microsoft.Threading.Tasks">
+      <HintPath>..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll</HintPath>
+    </Reference>
+    <Reference Include="Microsoft.Threading.Tasks.Extensions">
+      <HintPath>..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll</HintPath>
+    </Reference>
+    <Reference Include="Microsoft.Threading.Tasks.Extensions.Desktop">
+      <HintPath>..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll</HintPath>
+    </Reference>
+    <Reference Include="Mono.Security">
+      <HintPath>..\packages\Mono.Security.3.2.3.0\lib\net45\Mono.Security.dll</HintPath>
+    </Reference>
+    <Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\packages\Newtonsoft.Json.6.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
+    </Reference>
+    <Reference Include="System" />
+    <Reference Include="System.Net" />
+    <Reference Include="System.Net.Http" />
+    <Reference Include="System.Net.Http.Extensions">
+      <HintPath>..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Extensions.dll</HintPath>
+    </Reference>
+    <Reference Include="System.Net.Http.Primitives">
+      <HintPath>..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Primitives.dll</HintPath>
+    </Reference>
+    <Reference Include="System.Net.Http.WebRequest" />
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="Properties\AssemblyInfo.cs" />
+    <Compile Include="GoogleCredential.cs" />
+    <Compile Include="OAuth2InterceptorFactory.cs" />
+  </ItemGroup>
+  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
+  <ItemGroup>
+    <ProjectReference Include="..\Grpc.Core\Grpc.Core.csproj">
+      <Project>{CCC4440E-49F7-4790-B0AF-FEABB0837AE7}</Project>
+      <Name>Grpc.Core</Name>
+    </ProjectReference>
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="app.config" />
+    <None Include="packages.config" />
+  </ItemGroup>
+  <Import Project="..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" />
+  <Target Name="EnsureBclBuildImported" BeforeTargets="BeforeBuild" Condition="'$(BclBuildImported)' == ''">
+    <Error Condition="!Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" Text="This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=317567." HelpKeyword="BCLBUILD2001" />
+    <Error Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" Text="The build restored NuGet packages. Build the project again to include these packages in the build. For more information, see http://go.microsoft.com/fwlink/?LinkID=317568." HelpKeyword="BCLBUILD2002" />
+  </Target>
+</Project>
\ No newline at end of file
diff --git a/src/csharp/Grpc.Auth/OAuth2InterceptorFactory.cs b/src/csharp/Grpc.Auth/OAuth2InterceptorFactory.cs
new file mode 100644
index 0000000..ca384d1
--- /dev/null
+++ b/src/csharp/Grpc.Auth/OAuth2InterceptorFactory.cs
@@ -0,0 +1,104 @@
+#region Copyright notice and license
+
+// Copyright 2015, Google Inc.
+// All rights reserved.
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are
+// met:
+//
+//     * Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+//     * Redistributions in binary form must reproduce the above
+// copyright notice, this list of conditions and the following disclaimer
+// in the documentation and/or other materials provided with the
+// distribution.
+//     * Neither the name of Google Inc. nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+#endregion
+
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.IO;
+using System.Security.Cryptography.X509Certificates;
+using System.Text.RegularExpressions;
+using System.Threading;
+using System.Threading.Tasks;
+
+using Google.Apis.Auth.OAuth2;
+using Google.Apis.Util;
+using Grpc.Core;
+using Grpc.Core.Utils;
+
+namespace Grpc.Auth
+{
+    public static class OAuth2InterceptorFactory
+    {
+        /// <summary>
+        /// Creates OAuth2 interceptor.
+        /// </summary>
+        public static HeaderInterceptorDelegate Create(GoogleCredential googleCredential)
+        {
+            var interceptor = new OAuth2Interceptor(googleCredential.InternalCredential, SystemClock.Default);
+            return new HeaderInterceptorDelegate(interceptor.InterceptHeaders);
+        }
+
+        /// <summary>
+        /// Injects OAuth2 authorization header into initial metadata (= request headers).
+        /// </summary>
+        private class OAuth2Interceptor
+        {
+            private const string AuthorizationHeader = "Authorization";
+            private const string Schema = "Bearer";
+
+            private ServiceCredential credential;
+            private IClock clock;
+
+            public OAuth2Interceptor(ServiceCredential credential, IClock clock)
+            {
+                this.credential = credential;
+                this.clock = clock;
+            }
+
+            /// <summary>
+            /// Gets access token and requests refreshing it if is going to expire soon.
+            /// </summary>
+            /// <param name="cancellationToken"></param>
+            /// <returns></returns>
+            public string GetAccessToken(CancellationToken cancellationToken)
+            {
+                if (credential.Token == null || credential.Token.IsExpired(clock))
+                {
+                    // TODO(jtattermusch): Parallel requests will spawn multiple requests to refresh the token once the token expires.
+                    // TODO(jtattermusch): Rethink synchronous wait to obtain the result.
+                    if (!credential.RequestAccessTokenAsync(cancellationToken).Result)
+                    {
+                        throw new InvalidOperationException("The access token has expired but we can't refresh it");
+                    }
+                }
+                return credential.Token.AccessToken;
+            }
+
+            public void InterceptHeaders(Metadata.Builder headerBuilder)
+            {
+                var accessToken = GetAccessToken(CancellationToken.None);
+                headerBuilder.Add(new Metadata.MetadataEntry(AuthorizationHeader, Schema + " " + accessToken));
+            }
+        }
+    }
+}
diff --git a/src/csharp/Grpc.Auth/Properties/AssemblyInfo.cs b/src/csharp/Grpc.Auth/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..66b18d0
--- /dev/null
+++ b/src/csharp/Grpc.Auth/Properties/AssemblyInfo.cs
@@ -0,0 +1,14 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+
+[assembly: AssemblyTitle("Grpc.Auth")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("")]
+[assembly: AssemblyCopyright("Google Inc.  All rights reserved.")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+[assembly: AssemblyVersion("0.2.*")]
+
+[assembly: InternalsVisibleTo("Grpc.Auth.Tests")]
\ No newline at end of file
diff --git a/src/csharp/Grpc.Auth/app.config b/src/csharp/Grpc.Auth/app.config
new file mode 100644
index 0000000..966b777
--- /dev/null
+++ b/src/csharp/Grpc.Auth/app.config
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+  <runtime>
+    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
+      <dependentAssembly>
+        <assemblyIdentity name="System.Net.Http.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+        <bindingRedirect oldVersion="0.0.0.0-4.2.28.0" newVersion="4.2.28.0" />
+      </dependentAssembly>
+      <dependentAssembly>
+        <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+        <bindingRedirect oldVersion="0.0.0.0-4.2.28.0" newVersion="4.0.0.0" />
+      </dependentAssembly>
+    </assemblyBinding>
+  </runtime>
+</configuration>
\ No newline at end of file
diff --git a/src/csharp/Grpc.Auth/packages.config b/src/csharp/Grpc.Auth/packages.config
new file mode 100644
index 0000000..0816bdb
--- /dev/null
+++ b/src/csharp/Grpc.Auth/packages.config
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="utf-8"?>
+<packages>
+  <package id="BouncyCastle" version="1.7.0" targetFramework="net45" />
+  <package id="Google.Apis.Auth" version="1.9.1" targetFramework="net45" />
+  <package id="Google.Apis.Core" version="1.9.1" targetFramework="net45" />
+  <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />
+  <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />
+  <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" />
+  <package id="Microsoft.Net.Http" version="2.2.28" targetFramework="net45" />
+  <package id="Mono.Security" version="3.2.3.0" targetFramework="net45" />
+  <package id="Newtonsoft.Json" version="6.0.6" targetFramework="net45" />
+</packages>
\ No newline at end of file
diff --git a/src/csharp/Grpc.Core/Grpc.Core.csproj b/src/csharp/Grpc.Core/Grpc.Core.csproj
index b612512..0b85392 100644
--- a/src/csharp/Grpc.Core/Grpc.Core.csproj
+++ b/src/csharp/Grpc.Core/Grpc.Core.csproj
@@ -34,8 +34,7 @@
   </PropertyGroup>
   <ItemGroup>
     <Reference Include="System" />
-    <Reference Include="System.Collections.Immutable, Version=1.0.34.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
-      <SpecificVersion>False</SpecificVersion>
+    <Reference Include="System.Collections.Immutable">
       <HintPath>..\packages\Microsoft.Bcl.Immutable.1.0.34\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll</HintPath>
     </Reference>
   </ItemGroup>
diff --git a/src/csharp/Grpc.Core/RpcException.cs b/src/csharp/Grpc.Core/RpcException.cs
index 433d872..c585782 100644
--- a/src/csharp/Grpc.Core/RpcException.cs
+++ b/src/csharp/Grpc.Core/RpcException.cs
@@ -42,7 +42,7 @@
     {
         private readonly Status status;
 
-        public RpcException(Status status)
+        public RpcException(Status status) : base(status.ToString())
         {
             this.status = status;
         }
diff --git a/src/csharp/Grpc.Core/Status.cs b/src/csharp/Grpc.Core/Status.cs
index 080bbdc..7d76aec 100644
--- a/src/csharp/Grpc.Core/Status.cs
+++ b/src/csharp/Grpc.Core/Status.cs
@@ -69,5 +69,10 @@
                 return detail;
             }
         }
+
+        public override string ToString()
+        {
+            return string.Format("Status(StatusCode={0}, Detail=\"{1}\")", statusCode, detail);
+        }
     }
 }
diff --git a/src/csharp/Grpc.IntegrationTesting.Client/Grpc.IntegrationTesting.Client.csproj b/src/csharp/Grpc.IntegrationTesting.Client/Grpc.IntegrationTesting.Client.csproj
index b1a4a81..df05c53 100644
--- a/src/csharp/Grpc.IntegrationTesting.Client/Grpc.IntegrationTesting.Client.csproj
+++ b/src/csharp/Grpc.IntegrationTesting.Client/Grpc.IntegrationTesting.Client.csproj
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8"?>
 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
   <PropertyGroup>
     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -46,4 +46,7 @@
       <Name>Grpc.IntegrationTesting</Name>
     </ProjectReference>
   </ItemGroup>
+  <ItemGroup>
+    <None Include="app.config" />
+  </ItemGroup>
 </Project>
\ No newline at end of file
diff --git a/src/csharp/Grpc.IntegrationTesting.Client/app.config b/src/csharp/Grpc.IntegrationTesting.Client/app.config
new file mode 100644
index 0000000..966b777
--- /dev/null
+++ b/src/csharp/Grpc.IntegrationTesting.Client/app.config
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+  <runtime>
+    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
+      <dependentAssembly>
+        <assemblyIdentity name="System.Net.Http.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+        <bindingRedirect oldVersion="0.0.0.0-4.2.28.0" newVersion="4.2.28.0" />
+      </dependentAssembly>
+      <dependentAssembly>
+        <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+        <bindingRedirect oldVersion="0.0.0.0-4.2.28.0" newVersion="4.0.0.0" />
+      </dependentAssembly>
+    </assemblyBinding>
+  </runtime>
+</configuration>
\ No newline at end of file
diff --git a/src/csharp/Grpc.IntegrationTesting.Server/Grpc.IntegrationTesting.Server.csproj b/src/csharp/Grpc.IntegrationTesting.Server/Grpc.IntegrationTesting.Server.csproj
index 73c9f2d..235897c 100644
--- a/src/csharp/Grpc.IntegrationTesting.Server/Grpc.IntegrationTesting.Server.csproj
+++ b/src/csharp/Grpc.IntegrationTesting.Server/Grpc.IntegrationTesting.Server.csproj
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8"?>
 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
   <PropertyGroup>
     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -46,4 +46,7 @@
       <Name>Grpc.IntegrationTesting</Name>
     </ProjectReference>
   </ItemGroup>
+  <ItemGroup>
+    <None Include="app.config" />
+  </ItemGroup>
 </Project>
\ No newline at end of file
diff --git a/src/csharp/Grpc.IntegrationTesting.Server/app.config b/src/csharp/Grpc.IntegrationTesting.Server/app.config
new file mode 100644
index 0000000..966b777
--- /dev/null
+++ b/src/csharp/Grpc.IntegrationTesting.Server/app.config
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+  <runtime>
+    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
+      <dependentAssembly>
+        <assemblyIdentity name="System.Net.Http.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+        <bindingRedirect oldVersion="0.0.0.0-4.2.28.0" newVersion="4.2.28.0" />
+      </dependentAssembly>
+      <dependentAssembly>
+        <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+        <bindingRedirect oldVersion="0.0.0.0-4.2.28.0" newVersion="4.0.0.0" />
+      </dependentAssembly>
+    </assemblyBinding>
+  </runtime>
+</configuration>
\ No newline at end of file
diff --git a/src/csharp/Grpc.IntegrationTesting/Grpc.IntegrationTesting.csproj b/src/csharp/Grpc.IntegrationTesting/Grpc.IntegrationTesting.csproj
index 6ae8041..13bbb53 100644
--- a/src/csharp/Grpc.IntegrationTesting/Grpc.IntegrationTesting.csproj
+++ b/src/csharp/Grpc.IntegrationTesting/Grpc.IntegrationTesting.csproj
@@ -32,6 +32,21 @@
     <PlatformTarget>x86</PlatformTarget>
   </PropertyGroup>
   <ItemGroup>
+    <Reference Include="Google.Apis.Auth.PlatformServices">
+      <HintPath>..\packages\Google.Apis.Auth.1.9.1\lib\net40\Google.Apis.Auth.PlatformServices.dll</HintPath>
+    </Reference>
+    <Reference Include="Google.Apis.Core">
+      <HintPath>..\packages\Google.Apis.Core.1.9.1\lib\portable-net40+sl50+win+wpa81+wp80\Google.Apis.Core.dll</HintPath>
+    </Reference>
+    <Reference Include="Microsoft.Threading.Tasks">
+      <HintPath>..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll</HintPath>
+    </Reference>
+    <Reference Include="Microsoft.Threading.Tasks.Extensions">
+      <HintPath>..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll</HintPath>
+    </Reference>
+    <Reference Include="Microsoft.Threading.Tasks.Extensions.Desktop">
+      <HintPath>..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll</HintPath>
+    </Reference>
     <Reference Include="nunit.framework">
       <HintPath>..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
     </Reference>
@@ -39,8 +54,19 @@
     <Reference Include="Google.ProtocolBuffers">
       <HintPath>..\packages\Google.ProtocolBuffers.2.4.1.521\lib\net40\Google.ProtocolBuffers.dll</HintPath>
     </Reference>
-    <Reference Include="System.Collections.Immutable, Version=1.0.34.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
-      <SpecificVersion>False</SpecificVersion>
+    <Reference Include="System.Net" />
+    <Reference Include="System.Net.Http" />
+    <Reference Include="System.Net.Http.Extensions">
+      <HintPath>..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Extensions.dll</HintPath>
+    </Reference>
+    <Reference Include="System.Net.Http.Primitives">
+      <HintPath>..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Primitives.dll</HintPath>
+    </Reference>
+    <Reference Include="System.Net.Http.WebRequest" />
+    <Reference Include="Newtonsoft.Json">
+      <HintPath>..\packages\Newtonsoft.Json.6.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
+    </Reference>
+    <Reference Include="System.Collections.Immutable">
       <HintPath>..\packages\Microsoft.Bcl.Immutable.1.0.34\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll</HintPath>
     </Reference>
   </ItemGroup>
@@ -61,8 +87,13 @@
       <Project>{CCC4440E-49F7-4790-B0AF-FEABB0837AE7}</Project>
       <Name>Grpc.Core</Name>
     </ProjectReference>
+    <ProjectReference Include="..\Grpc.Auth\Grpc.Auth.csproj">
+      <Project>{AE21D0EE-9A2C-4C15-AB7F-5224EED5B0EA}</Project>
+      <Name>Grpc.Auth</Name>
+    </ProjectReference>
   </ItemGroup>
   <ItemGroup>
+    <None Include="app.config" />
     <None Include="packages.config" />
     <None Include="proto\test.proto" />
     <None Include="proto\empty.proto" />
@@ -83,4 +114,9 @@
   <ItemGroup>
     <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
   </ItemGroup>
+  <Import Project="..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" />
+  <Target Name="EnsureBclBuildImported" BeforeTargets="BeforeBuild" Condition="'$(BclBuildImported)' == ''">
+    <Error Condition="!Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" Text="This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=317567." HelpKeyword="BCLBUILD2001" />
+    <Error Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" Text="The build restored NuGet packages. Build the project again to include these packages in the build. For more information, see http://go.microsoft.com/fwlink/?LinkID=317568." HelpKeyword="BCLBUILD2002" />
+  </Target>
 </Project>
\ No newline at end of file
diff --git a/src/csharp/Grpc.IntegrationTesting/InteropClient.cs b/src/csharp/Grpc.IntegrationTesting/InteropClient.cs
index 6b92d3c..1fbae37 100644
--- a/src/csharp/Grpc.IntegrationTesting/InteropClient.cs
+++ b/src/csharp/Grpc.IntegrationTesting/InteropClient.cs
@@ -33,12 +33,11 @@
 
 using System;
 using System.Collections.Generic;
-using System.Diagnostics;
-using System.IO;
 using System.Text.RegularExpressions;
-using System.Threading.Tasks;
+
 using Google.ProtocolBuffers;
 using grpc.testing;
+using Grpc.Auth;
 using Grpc.Core;
 using Grpc.Core.Utils;
 using NUnit.Framework;
@@ -47,6 +46,11 @@
 {
     public class InteropClient
     {
+        private const string ServiceAccountUser = "155450119199-3psnrh1sdr3d8cpj1v46naggf81mhdnk@developer.gserviceaccount.com";
+        private const string ComputeEngineUser = "155450119199-r5aaqa2vqoa9g5mv2m6s3m1l293rlmel@developer.gserviceaccount.com";
+        private const string AuthScope = "https://www.googleapis.com/auth/xapi.zoo";
+        private const string AuthScopeResponse = "xapi.zoo";
+
         private class ClientOptions
         {
             public bool help;
@@ -115,7 +119,18 @@
 
             using (Channel channel = new Channel(addr, credentials, channelArgs))
             {
-                TestServiceGrpc.ITestServiceClient client = new TestServiceGrpc.TestServiceClientStub(channel);
+                var stubConfig = StubConfiguration.Default;
+                if (options.testCase == "service_account_creds" || options.testCase == "compute_engine_creds")
+                {
+                    var credential = GoogleCredential.GetApplicationDefault();
+                    if (credential.IsCreateScopedRequired)
+                    {
+                        credential = credential.CreateScoped(new[] { AuthScope });
+                    }
+                    stubConfig = new StubConfiguration(OAuth2InterceptorFactory.Create(credential));
+                }
+
+                TestServiceGrpc.ITestServiceClient client = new TestServiceGrpc.TestServiceClientStub(channel, stubConfig);
                 RunTestCase(options.testCase, client);
             }
 
@@ -144,6 +159,12 @@
                 case "empty_stream":
                     RunEmptyStream(client);
                     break;
+                case "service_account_creds":
+                    RunServiceAccountCreds(client);
+                    break;
+                case "compute_engine_creds":
+                    RunComputeEngineCreds(client);
+                    break;
                 case "benchmark_empty_unary":
                     RunBenchmarkEmptyUnary(client);
                     break;
@@ -287,6 +308,46 @@
             Console.WriteLine("Passed!");
         }
 
+        public static void RunServiceAccountCreds(TestServiceGrpc.ITestServiceClient client)
+        {
+            Console.WriteLine("running service_account_creds");
+            var request = SimpleRequest.CreateBuilder()
+                .SetResponseType(PayloadType.COMPRESSABLE)
+                    .SetResponseSize(314159)
+                    .SetPayload(CreateZerosPayload(271828))
+                    .SetFillUsername(true)
+                    .SetFillOauthScope(true)
+                    .Build();
+
+            var response = client.UnaryCall(request);
+
+            Assert.AreEqual(PayloadType.COMPRESSABLE, response.Payload.Type);
+            Assert.AreEqual(314159, response.Payload.Body.Length);
+            Assert.AreEqual(AuthScopeResponse, response.OauthScope);
+            Assert.AreEqual(ServiceAccountUser, response.Username);
+            Console.WriteLine("Passed!");
+        }
+
+        public static void RunComputeEngineCreds(TestServiceGrpc.ITestServiceClient client)
+        {
+            Console.WriteLine("running compute_engine_creds");
+            var request = SimpleRequest.CreateBuilder()
+                .SetResponseType(PayloadType.COMPRESSABLE)
+                    .SetResponseSize(314159)
+                    .SetPayload(CreateZerosPayload(271828))
+                    .SetFillUsername(true)
+                    .SetFillOauthScope(true)
+                    .Build();
+
+            var response = client.UnaryCall(request);
+
+            Assert.AreEqual(PayloadType.COMPRESSABLE, response.Payload.Type);
+            Assert.AreEqual(314159, response.Payload.Body.Length);
+            Assert.AreEqual(AuthScopeResponse, response.OauthScope);
+            Assert.AreEqual(ComputeEngineUser, response.Username);
+            Console.WriteLine("Passed!");
+        }
+
         // This is not an official interop test, but it's useful.
         public static void RunBenchmarkEmptyUnary(TestServiceGrpc.ITestServiceClient client)
         {
diff --git a/src/csharp/Grpc.IntegrationTesting/app.config b/src/csharp/Grpc.IntegrationTesting/app.config
new file mode 100644
index 0000000..966b777
--- /dev/null
+++ b/src/csharp/Grpc.IntegrationTesting/app.config
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+  <runtime>
+    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
+      <dependentAssembly>
+        <assemblyIdentity name="System.Net.Http.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+        <bindingRedirect oldVersion="0.0.0.0-4.2.28.0" newVersion="4.2.28.0" />
+      </dependentAssembly>
+      <dependentAssembly>
+        <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+        <bindingRedirect oldVersion="0.0.0.0-4.2.28.0" newVersion="4.0.0.0" />
+      </dependentAssembly>
+    </assemblyBinding>
+  </runtime>
+</configuration>
\ No newline at end of file
diff --git a/src/csharp/Grpc.IntegrationTesting/packages.config b/src/csharp/Grpc.IntegrationTesting/packages.config
index 335f829..e33b6e3 100644
--- a/src/csharp/Grpc.IntegrationTesting/packages.config
+++ b/src/csharp/Grpc.IntegrationTesting/packages.config
@@ -1,6 +1,13 @@
 <?xml version="1.0" encoding="utf-8"?>
 <packages>
+  <package id="Google.Apis.Auth" version="1.9.1" targetFramework="net45" />
+  <package id="Google.Apis.Core" version="1.9.1" targetFramework="net45" />
   <package id="Google.ProtocolBuffers" version="2.4.1.521" targetFramework="net45" />
+  <package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />
+  <package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />
+  <package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" />
   <package id="Microsoft.Bcl.Immutable" version="1.0.34" targetFramework="net45" />
+  <package id="Microsoft.Net.Http" version="2.2.28" targetFramework="net45" />
+  <package id="Newtonsoft.Json" version="6.0.6" targetFramework="net45" />
   <package id="NUnit" version="2.6.4" targetFramework="net45" />
 </packages>
\ No newline at end of file
diff --git a/src/csharp/Grpc.sln b/src/csharp/Grpc.sln
index 2f8c2e1..e2a374e 100644
--- a/src/csharp/Grpc.sln
+++ b/src/csharp/Grpc.sln
@@ -19,6 +19,8 @@
 EndProject

 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Grpc.Examples.MathServer", "Grpc.Examples.MathServer\Grpc.Examples.MathServer.csproj", "{BF62FE08-373A-43D6-9D73-41CAA38B7011}"

 EndProject

+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Grpc.Auth", "Grpc.Auth\Grpc.Auth.csproj", "{AE21D0EE-9A2C-4C15-AB7F-5224EED5B0EA}"

+EndProject

 Global

 	GlobalSection(SolutionConfigurationPlatforms) = preSolution

 		Debug|x86 = Debug|x86

@@ -49,6 +51,10 @@
 		{A654F3B8-E859-4E6A-B30D-227527DBEF0D}.Debug|x86.Build.0 = Debug|x86

 		{A654F3B8-E859-4E6A-B30D-227527DBEF0D}.Release|x86.ActiveCfg = Release|x86

 		{A654F3B8-E859-4E6A-B30D-227527DBEF0D}.Release|x86.Build.0 = Release|x86

+		{AE21D0EE-9A2C-4C15-AB7F-5224EED5B0EA}.Debug|x86.ActiveCfg = Debug|Any CPU

+		{AE21D0EE-9A2C-4C15-AB7F-5224EED5B0EA}.Debug|x86.Build.0 = Debug|Any CPU

+		{AE21D0EE-9A2C-4C15-AB7F-5224EED5B0EA}.Release|x86.ActiveCfg = Release|Any CPU

+		{AE21D0EE-9A2C-4C15-AB7F-5224EED5B0EA}.Release|x86.Build.0 = Release|Any CPU

 		{BF62FE08-373A-43D6-9D73-41CAA38B7011}.Debug|x86.ActiveCfg = Debug|x86

 		{BF62FE08-373A-43D6-9D73-41CAA38B7011}.Debug|x86.Build.0 = Debug|x86

 		{BF62FE08-373A-43D6-9D73-41CAA38B7011}.Release|x86.ActiveCfg = Release|x86

diff --git a/src/objective-c/examples/Sample/Podfile.lock b/src/objective-c/examples/Sample/Podfile.lock
deleted file mode 100644
index 7fa4f5d..0000000
--- a/src/objective-c/examples/Sample/Podfile.lock
+++ /dev/null
@@ -1,20 +0,0 @@
-PODS:
-  - GRPCClient (0.0.1):
-    - RxLibrary (~> 0.0)
-  - RxLibrary (0.0.1)
-
-DEPENDENCIES:
-  - GRPCClient (from `../../GRPCClient`)
-  - RxLibrary (from `../../RxLibrary`)
-
-EXTERNAL SOURCES:
-  GRPCClient:
-    :path: ../../GRPCClient
-  RxLibrary:
-    :path: ../../RxLibrary
-
-SPEC CHECKSUMS:
-  GRPCClient: 05c58faab99661384178bb7c5f93b60c2bfc89f8
-  RxLibrary: 70cfcf1573ec16a375b4fe61d976a3188aab9303
-
-COCOAPODS: 0.35.0
diff --git a/src/objective-c/examples/Sample/Pods/Headers/Public/GRPCClient/GRPCCall.h b/src/objective-c/examples/Sample/Pods/Headers/Public/GRPCClient/GRPCCall.h
deleted file mode 120000
index cacb261..0000000
--- a/src/objective-c/examples/Sample/Pods/Headers/Public/GRPCClient/GRPCCall.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../GRPCClient/GRPCCall.h
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Headers/Public/GRPCClient/GRPCMethodName.h b/src/objective-c/examples/Sample/Pods/Headers/Public/GRPCClient/GRPCMethodName.h
deleted file mode 120000
index 4dddbd8..0000000
--- a/src/objective-c/examples/Sample/Pods/Headers/Public/GRPCClient/GRPCMethodName.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../GRPCClient/GRPCMethodName.h
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXImmediateWriter.h b/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXImmediateWriter.h
deleted file mode 120000
index 915b0e4..0000000
--- a/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXImmediateWriter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../RxLibrary/GRXImmediateWriter.h
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXMappingWriter.h b/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXMappingWriter.h
deleted file mode 120000
index 4d1073f..0000000
--- a/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXMappingWriter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../RxLibrary/transformations/GRXMappingWriter.h
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXWriteable.h b/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXWriteable.h
deleted file mode 120000
index cb27519..0000000
--- a/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXWriteable.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../RxLibrary/GRXWriteable.h
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXWriter+Immediate.h b/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXWriter+Immediate.h
deleted file mode 120000
index fe5e740..0000000
--- a/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXWriter+Immediate.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../RxLibrary/GRXWriter+Immediate.h
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXWriter+Transformations.h b/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXWriter+Transformations.h
deleted file mode 120000
index c57168c..0000000
--- a/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXWriter+Transformations.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../RxLibrary/GRXWriter+Transformations.h
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXWriter.h b/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXWriter.h
deleted file mode 120000
index c4f657e..0000000
--- a/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/GRXWriter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../RxLibrary/GRXWriter.h
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/NSEnumerator+GRXUtil.h b/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/NSEnumerator+GRXUtil.h
deleted file mode 120000
index 97c6aae..0000000
--- a/src/objective-c/examples/Sample/Pods/Headers/Public/RxLibrary/NSEnumerator+GRXUtil.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../RxLibrary/NSEnumerator+GRXUtil.h
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Local Podspecs/GRPCClient.podspec b/src/objective-c/examples/Sample/Pods/Local Podspecs/GRPCClient.podspec
deleted file mode 100644
index a34c50b..0000000
--- a/src/objective-c/examples/Sample/Pods/Local Podspecs/GRPCClient.podspec
+++ /dev/null
@@ -1,14 +0,0 @@
-Pod::Spec.new do |s|
-  s.name         = 'GRPCClient'
-  s.version      = '0.0.1'
-  s.summary      = 'Generic gRPC client library for iOS'
-  s.author = {
-    'Jorge Canizales' => 'jcanizales@google.com'
-  }
-  s.source_files = '*.{h,m}', 'private/*.{h,m}'
-  s.private_header_files = 'private/*.h'
-  s.platform = :ios
-  s.ios.deployment_target = '6.0'
-  s.requires_arc = true
-  s.dependency 'RxLibrary', '~> 0.0'
-end
diff --git a/src/objective-c/examples/Sample/Pods/Local Podspecs/RxLibrary.podspec b/src/objective-c/examples/Sample/Pods/Local Podspecs/RxLibrary.podspec
deleted file mode 100644
index 605aeda..0000000
--- a/src/objective-c/examples/Sample/Pods/Local Podspecs/RxLibrary.podspec
+++ /dev/null
@@ -1,13 +0,0 @@
-Pod::Spec.new do |s|
-  s.name         = 'RxLibrary'
-  s.version      = '0.0.1'
-  s.summary      = 'Reactive Extensions library for iOS'
-  s.author = {
-    'Jorge Canizales' => 'jcanizales@google.com'
-  }
-  s.source_files = '*.{h,m}', 'transformations/*.{h,m}', 'private/*.{h,m}'
-  s.private_header_files = 'private/*.h'
-  s.platform = :ios
-  s.ios.deployment_target = '6.0'
-  s.requires_arc = true
-end
diff --git a/src/objective-c/examples/Sample/Pods/Manifest.lock b/src/objective-c/examples/Sample/Pods/Manifest.lock
deleted file mode 100644
index 7fa4f5d..0000000
--- a/src/objective-c/examples/Sample/Pods/Manifest.lock
+++ /dev/null
@@ -1,20 +0,0 @@
-PODS:
-  - GRPCClient (0.0.1):
-    - RxLibrary (~> 0.0)
-  - RxLibrary (0.0.1)
-
-DEPENDENCIES:
-  - GRPCClient (from `../../GRPCClient`)
-  - RxLibrary (from `../../RxLibrary`)
-
-EXTERNAL SOURCES:
-  GRPCClient:
-    :path: ../../GRPCClient
-  RxLibrary:
-    :path: ../../RxLibrary
-
-SPEC CHECKSUMS:
-  GRPCClient: 05c58faab99661384178bb7c5f93b60c2bfc89f8
-  RxLibrary: 70cfcf1573ec16a375b4fe61d976a3188aab9303
-
-COCOAPODS: 0.35.0
diff --git a/src/objective-c/examples/Sample/Pods/Pods.xcodeproj/project.pbxproj b/src/objective-c/examples/Sample/Pods/Pods.xcodeproj/project.pbxproj
deleted file mode 100644
index 9573126..0000000
--- a/src/objective-c/examples/Sample/Pods/Pods.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,22200 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
-	<key>archiveVersion</key>
-	<string>1</string>
-	<key>classes</key>
-	<dict/>
-	<key>objectVersion</key>
-	<string>46</string>
-	<key>objects</key>
-	<dict>
-		<key>0032174F6A886E3F8276DF8A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3FF59718D8279E1EFBC613A8</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0037A820EFBF3B13F8379DCF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FD4056C1E72FA6046DC0DE4D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0055F4110B7DF51C8F7D0DC3</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>huffsyms.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/huffsyms.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>0057479E9C883834A402CDDF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E641063DBDE5CAB35BFCB642</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>006672A63663395FD6F14F13</key>
-		<dict>
-			<key>fileRef</key>
-			<string>17B128836D599F09BCA81641</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>008340097D0BE4A048E86B86</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C4371E31941BEFC099C5276B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>00A345202AE48DFB037FDBF2</key>
-		<dict>
-			<key>containerPortal</key>
-			<string>EF6CCB5D3B9A6AAB7B6B4A70</string>
-			<key>isa</key>
-			<string>PBXContainerItemProxy</string>
-			<key>proxyType</key>
-			<string>1</string>
-			<key>remoteGlobalIDString</key>
-			<string>5178199C95874904FB00D5C1</string>
-			<key>remoteInfo</key>
-			<string>Pods-RxLibrary</string>
-		</dict>
-		<key>0120E03A8ACF06BD221604EE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CF1D573AD05F34862B43C0E7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>013E1A4AE6CD84F3F0CAFF32</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4EC5137EB2D52417F110AE61</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>015B4FC95DE52539055C0A0A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>41D6177A52EDB173FAF337F0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>016A062B325DED502FB66018</key>
-		<dict>
-			<key>fileRef</key>
-			<string>50B4F4277CD01BF58FF97E36</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>019EC915480E3C1C93519A28</key>
-		<dict>
-			<key>buildConfigurationList</key>
-			<string>195416C5DFE037EBFC2E8C9A</string>
-			<key>buildPhases</key>
-			<array>
-				<string>DF1EAF04C9DE4F8A52A3D12A</string>
-				<string>CEE966E6DCB8B4C97CDA91A0</string>
-				<string>054A099D0596302440F74BA7</string>
-			</array>
-			<key>buildRules</key>
-			<array/>
-			<key>dependencies</key>
-			<array/>
-			<key>isa</key>
-			<string>PBXNativeTarget</string>
-			<key>name</key>
-			<string>Pods-SampleTests-RxLibrary</string>
-			<key>productName</key>
-			<string>Pods-SampleTests-RxLibrary</string>
-			<key>productReference</key>
-			<string>3F32E233D900771E0882C48C</string>
-			<key>productType</key>
-			<string>com.apple.product-type.library.static</string>
-		</dict>
-		<key>01B9E1CC50B132B7319C5E7C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>74BD7D89488C19B0692A54E1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>01EB720CD47224FB5953BF12</key>
-		<dict>
-			<key>fileRef</key>
-			<string>78419FA9BB1CF508010CF41E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>01F8EC4930C71D3E98F74F35</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EF5BF73B082FA5277F400D09</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>027D20FE486D8D2C32172A96</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B1F6D3CD27B150EC2197A151</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>027FD40220A6CEE42890FCFB</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>grpc_time.h</string>
-			<key>path</key>
-			<string>include/grpc/support/grpc_time.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>028BED32E6411075424FBFD0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>52670463AE07C6E94650D891</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>02968FE6B78F9426E4ECF627</key>
-		<dict>
-			<key>explicitFileType</key>
-			<string>archive.ar</string>
-			<key>includeInIndex</key>
-			<string>0</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>path</key>
-			<string>libPods-Sample.a</string>
-			<key>sourceTree</key>
-			<string>BUILT_PRODUCTS_DIR</string>
-		</dict>
-		<key>02BFDCB323EFAA40CB9AC180</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BC97B6FB429DB45B267E2154</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>02C5BCC8AFDCAA8769956BF0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>40038AA5508AF842FFDDC3BC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>02C6C43B4D8BA13745884C87</key>
-		<dict>
-			<key>fileRef</key>
-			<string>87351743F2826AD6D5FF3269</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>02CBFA99851F30E9675EE44A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>649DBF314EA59E30407979CB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>031D7CC86E9E587C003CC76D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>09DA8CAB0DA4A3BA2018E2C5</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>033E9B255AF1FCC1058CB337</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>wakeup_fd_eventfd.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/wakeup_fd_eventfd.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>036C64315C42154E1C63406D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F3D3988DCB6A896529EE0FBB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>04028C1B002DC222AE30A052</key>
-		<dict>
-			<key>fileRef</key>
-			<string>753448EC1331A4F22A884630</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>042A85A3290882AB91494ACF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DFF8522D6E79FA378B09E2AF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0437454510A3EE82382338C4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9C4F9B2E32C34E146AA06A7B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0438074CBCD6FF0D367DBFC2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6BE65E7C42C30A9CC06C37CC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0463873868411A736F02FC30</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EF219F2CB45B6C39AE422ACC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>046C1A5B02414086837FE511</key>
-		<dict>
-			<key>fileRef</key>
-			<string>36B5D06D44B5DEC4A0582942</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>04707602B9799798094CDF13</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4D5F69A5F499ADA629DB6A82</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>04A17B4FCE59C8AF0B83867D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>Pods-SampleTests-OpenSSL-prefix.pch</string>
-			<key>path</key>
-			<string>../Pods-SampleTests-OpenSSL/Pods-SampleTests-OpenSSL-prefix.pch</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>04B65B5690EE8399472EF468</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8E740BA19823D74A7D9CC6CF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>04DDC349CD70A002C915916B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>271500B0CF6170CB1AF47149</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>0528756D4D235146310082F0</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>census_tracing.c</string>
-			<key>path</key>
-			<string>src/core/statistics/census_tracing.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>054A099D0596302440F74BA7</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>01EB720CD47224FB5953BF12</string>
-				<string>DE2503A5CD5A96019546C8AC</string>
-				<string>2E76D86D8C8B67C0B65BA104</string>
-				<string>BF28337445324458A823286C</string>
-				<string>50DDC3080AB5C6E43FF75FA6</string>
-				<string>68563C3CF97193799D0ED470</string>
-				<string>383DC42BF7737B437CE71CD3</string>
-				<string>24E87E4C716C16493589CE62</string>
-				<string>C3B1EF3961E761E443BE9108</string>
-				<string>3FB5B08828F98A04D14E8D23</string>
-			</array>
-			<key>isa</key>
-			<string>PBXHeadersBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>0578D7C4E1B95D30926AB6E5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>668E37E4D791102E499585F9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>05B4E1BE83C06D82AA05B867</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E77C5C56A04DB8BC5EB4E7F1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>05B9CCD334DC99FB0BF50D47</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>parser.c</string>
-			<key>path</key>
-			<string>src/core/httpcli/parser.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>05D4CDE62027CB90FC729FCE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>17FD73CC0F32C37DA1273B68</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>05DDCABAC8346AB00E66744C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7AA177C0AFC491F3C14C5AE6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>060FC8529A11C241F2CFC5E0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0E4FAB5750FFE3A2E16B10A4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0626C0BB65A5ECCFCADEB364</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4C3D736DF745D1B78D068BF1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>0673AFB27C3D50025CADB986</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4BA7D4DD0077A316187A4FCD</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0692F07B9E49D9CEB7CF8371</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DF5227880697E2E68AC060D3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>069BC52FB776D90695CC8400</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C33E2C3577461F009B35036F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>06AAA04862A9ADFEE90D756D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>file.h</string>
-			<key>path</key>
-			<string>src/core/support/file.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>06B0153C30E7B03B6E7F9CD5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2EF03C938557266641037A73</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>06C677AD82D6A2D46938D5C0</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.plist.xml</string>
-			<key>path</key>
-			<string>Pods-SampleTests-acknowledgements.plist</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>070F778E9840EAB236589520</key>
-		<dict>
-			<key>fileRef</key>
-			<string>08C7C14F8FDDECE621D05299</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>074436466C7F8A231C2A1111</key>
-		<dict>
-			<key>fileRef</key>
-			<string>ADFD53FA9A8E05973B205F80</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>075C02341A149CAE3A3AD275</key>
-		<dict>
-			<key>fileRef</key>
-			<string>916A8345964DEAFB4DDF8D1F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>07930EC4EE25DF8CD9491F1C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DB0C66D2A5F00157E328075E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>07B9C9E792437C124C383A4F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C5610466549D4B577E63E392</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>07CC03DD8D351A9A1476B417</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>socket_utils_posix.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/socket_utils_posix.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>07CD3B9045DA720A459FB927</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F90E7A24B0681976E3AFF342</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>07E10A39D047B95EC69DB5AF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7A2C0FE529F637D6478C9294</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>080863E4AE3E6D3E39CAF640</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>init_unsecure.c</string>
-			<key>path</key>
-			<string>src/core/surface/init_unsecure.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>082147556AD598669355FC87</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6E38DAB56A2F2AF3D32AF55F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>08257E715CF2CE95ACFE2007</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8B16C4C6B750EBDB84D4250A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>082732821A301BE319A43D55</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>grpc_string.h</string>
-			<key>path</key>
-			<string>src/core/support/grpc_string.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>083EE303E6E7E18713E19BA9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>97385E01E0518B4E89D823CE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0843CBEFAC04EF3AB671EA0B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D07B947A06B7CDA82DF5378C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>088A2350EA439137EB7D9819</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>path</key>
-			<string>Pods-SampleTests.debug.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>088EA2C7131A61736EB66927</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>path</key>
-			<string>Pods.debug.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>089B10F9184930C487DA372B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DBC29C43D1775F41AAD9DB68</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>08BAE63DA1EE8E619E885024</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7BB1EB3259E3DC428BA9927B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>08C2C78E8C5C3B431E9AE27C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C7E59BD438F0F1ED32112050</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>08C7C14F8FDDECE621D05299</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>sync_posix.c</string>
-			<key>path</key>
-			<string>src/core/support/sync_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>08FD81D4AA784A828A197F3D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>86694F04BACF1D2F3D67BF91</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>090BEFEEC4EC3BFAD2F44C29</key>
-		<dict>
-			<key>fileRef</key>
-			<string>36DC5DBBA81F58CBC6F12B69</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>093DF8C07C82EB3B2741CE32</key>
-		<dict>
-			<key>fileRef</key>
-			<string>21BA344E73508DB706901EFA</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>099376711EB32D098773F971</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0BDF06AEFAF554EB6E9F2806</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>09A8705D7520518D7EC5EC96</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8DE2FEF54A4DB08AB4D23FC8</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>09B2798DEDAAAC35C8859D0D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B27A42723D792CC73BC91FC0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>09C5C94835C932491C6D797A</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>census_init.c</string>
-			<key>path</key>
-			<string>src/core/statistics/census_init.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>09DA8CAB0DA4A3BA2018E2C5</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>sync_posix.h</string>
-			<key>path</key>
-			<string>include/grpc/support/sync_posix.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>0A1F18AA4FCD9DDA129D2780</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>security_context.h</string>
-			<key>path</key>
-			<string>src/core/security/security_context.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>0A7599B61BA6110D36B4AE31</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B0953E84284D4CCAD89A8FA1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0A803E8124C3FF9452A50D17</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FE5E400FCDFE4E120E751BD9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>0ADD9DE41E7F9C7C2603F957</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>buffer.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/buffer.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>0AEB049078C1DDF0EB136CE2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B0953E84284D4CCAD89A8FA1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0B1895DF544D5AFD5710A9D8</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>D26066FE22267E3342FF740E</string>
-				<string>74BD7D89488C19B0692A54E1</string>
-				<string>4371CED1B1505B58D0DD40B6</string>
-				<string>6063F859BC59312B059CF91D</string>
-				<string>64EE4150A5FFF8C2DF1E1BC3</string>
-				<string>EDCA1F07FB400E1CE2406DDC</string>
-				<string>3C8E80ECBBB1553D4B3ECAD4</string>
-				<string>0ADD9DE41E7F9C7C2603F957</string>
-				<string>8F2A5ECC396D1A11DBC3F020</string>
-				<string>B76388DAE36733682FF681AB</string>
-				<string>753448EC1331A4F22A884630</string>
-				<string>8A3FFA359AAF23E5D40C4625</string>
-				<string>17FD73CC0F32C37DA1273B68</string>
-				<string>26D5A00C5D363C2B88EB6022</string>
-				<string>E975EBE61BC4688C5F7036F7</string>
-				<string>26D71D13BCCCE8C95C4A4AD2</string>
-				<string>46FAF51D64801E7D472BB776</string>
-				<string>8BA82365E8893A76F633998A</string>
-				<string>C8F8CA2778AFCC4F7C705215</string>
-				<string>AA44C91B353FAF347EBA8C5B</string>
-				<string>9E248AE4927FC2B338C5BD26</string>
-				<string>92087180D1834EEC0769E330</string>
-				<string>BB56FF1B10C90442EA0E9922</string>
-				<string>21BA344E73508DB706901EFA</string>
-				<string>44710470DD111C15AC809782</string>
-				<string>B61F3F6429BDAFF0077745B0</string>
-				<string>145DC67262745588DD7393C7</string>
-				<string>C5610466549D4B577E63E392</string>
-				<string>393E5BB299200BE615C1B696</string>
-				<string>F19A4D16767373F7873F5B73</string>
-				<string>8B3B37023FF9E8E73CC99322</string>
-				<string>A24D9C9B0A3B1531053B1316</string>
-				<string>8DE2FEF54A4DB08AB4D23FC8</string>
-				<string>D561FFCDA8946C531DE569BF</string>
-				<string>DFF8522D6E79FA378B09E2AF</string>
-				<string>A24CCE81E4BD7EB9EC4EE049</string>
-				<string>46B8E9F1A81F523E07C7F6A1</string>
-				<string>C872112D1B148457B204ABBE</string>
-				<string>DB0C66D2A5F00157E328075E</string>
-				<string>3B7551FF2E890E0288CCFF7E</string>
-				<string>8B16C4C6B750EBDB84D4250A</string>
-				<string>F59856CDE3A736AC06C74829</string>
-				<string>99C2E00B823FF695DE1AF703</string>
-				<string>6921582421293146CB69A657</string>
-				<string>F21D1B56522DBE967A41A000</string>
-				<string>E641063DBDE5CAB35BFCB642</string>
-				<string>B27A42723D792CC73BC91FC0</string>
-				<string>5822A294383B44D69AB62D69</string>
-				<string>997839BCB6FCF8646369F61C</string>
-				<string>98D504A8975304EC7E951FBB</string>
-				<string>C54A331859E953767BF5543B</string>
-				<string>C78D061C9F46F06C8334F4E4</string>
-				<string>3E7BCFC8E8B501FC5B0383F6</string>
-				<string>40038AA5508AF842FFDDC3BC</string>
-				<string>F90E7A24B0681976E3AFF342</string>
-				<string>223682FDADBBFC7CCE7AB8D1</string>
-				<string>E8C8EF12A80456AFEBA0C4CE</string>
-				<string>C08B1253D8582ECD0579BF07</string>
-				<string>E77C5C56A04DB8BC5EB4E7F1</string>
-				<string>A97716562F0D00563BACF91A</string>
-				<string>C95F1381DCB9456BD725D0ED</string>
-				<string>3075CAA736C46F8E83F3B9C9</string>
-				<string>16B2EB8CF6E0DC64AAE6362D</string>
-				<string>86694F04BACF1D2F3D67BF91</string>
-				<string>689FF7B5170019FC27CF8682</string>
-				<string>255D1090014941559D1E8208</string>
-				<string>8A8A433981E87901C5F6A698</string>
-				<string>9C4F9B2E32C34E146AA06A7B</string>
-				<string>33AF6670C47BFA4C07898B03</string>
-				<string>644161E693A1881539117778</string>
-				<string>500AE03C874D997750B5836E</string>
-				<string>60B3FFF7224676E000FFC99F</string>
-				<string>308BF23215B052808B4E700C</string>
-				<string>E7BC0C7DDB495B1D29A3D309</string>
-				<string>D600CB01889EC10BA9FE1D45</string>
-				<string>60CF6FE8969FC85872AD72A4</string>
-				<string>65169830D56F77F3585ED2C0</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>name</key>
-			<string>OpenSSL</string>
-			<key>path</key>
-			<string>OpenSSL</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>0B198DD76D6A7D4B247F7448</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>json_common.h</string>
-			<key>path</key>
-			<string>src/core/json/json_common.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>0B1FCC62895AC4E53CD44BA6</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>call.c</string>
-			<key>path</key>
-			<string>src/core/surface/call.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>0B34CF00B6F4EECDD88BDBEE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>08C7C14F8FDDECE621D05299</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>0B4536158B6E2C5AF05B92E3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A29E429E34B19E53CF3AF4A0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>0B47AE8C4E2CD1E850B4C8D2</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>credentials.c</string>
-			<key>path</key>
-			<string>src/core/security/credentials.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>0B92279AA0BC63F4C14C9E55</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9BCA3C5E1E11A295F38CAB7A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0BA8F8429E95CB00593DD957</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>channel_args.h</string>
-			<key>path</key>
-			<string>src/core/channel/channel_args.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>0BB26F19D4FBCD1013C81182</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BB157902FBE43FDB4878F236</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>0BC3E1603E4A8EE1498755E3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A1187890FF30DC066C063A22</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0BD1F15EA9E37E794274C4C6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>38F7BED6F24599DA7AE205AB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>0BDF06AEFAF554EB6E9F2806</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>census_filter.h</string>
-			<key>path</key>
-			<string>src/core/channel/census_filter.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>0BF7FA6C1C235F6CCFBAFB5C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9C8009641C88B04CF81A8B73</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>0C1E165416BFAA0147B21701</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>channel_create.c</string>
-			<key>path</key>
-			<string>src/core/surface/channel_create.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>0C864B9C1A92E5F37D3815A1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>35834F8EFDF918F766424079</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>0CC35844AE2950CB177AD248</key>
-		<dict>
-			<key>fileRef</key>
-			<string>644161E693A1881539117778</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0CE368F81A14F550EB5D707F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>pollset_multipoller_with_poll_posix.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/pollset_multipoller_with_poll_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>0CE89A667D6937B97AEDEADC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CA65B1878419143FE2644503</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0D1AB44758FB69DA24A79E86</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F56A8A024FEFFF1D2B980766</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0D2075C9C957E9276845CD6C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>85D6F5B4AE1B266E2DC5055E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>0D7ADB061CAAFD479A9CD257</key>
-		<dict>
-			<key>fileRef</key>
-			<string>145DC67262745588DD7393C7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0D93F65C8FC05FD271D5D768</key>
-		<dict>
-			<key>fileRef</key>
-			<string>47237B827DD7403D472237E4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0DA5C89672365E51AF903ACE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>894D1EE01C658C3F8033DCAF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0E455B28FC7F657E30BE1C7D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>46BB228586778F08C3205E0C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>0E4FAB5750FFE3A2E16B10A4</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>atm_gcc_sync.h</string>
-			<key>path</key>
-			<string>include/grpc/support/atm_gcc_sync.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>0E8B5873576753103E2AA78D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>97385E01E0518B4E89D823CE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0EA451E14CDAB8045E4E4F4A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3B46D720BC96472A94497EC1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0EBFF7D8043D001D4FD2F113</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EA1E287DD8525C80F280E4AC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>0ECB45695F3E06E052EAFFD5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B62F259F4CAF915352371941</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>0EF1D0636605D7C0D2948EA3</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>wakeup_fd_pipe.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/wakeup_fd_pipe.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>0F341D67F0DC27FFA5322889</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3A93AAC878F7B1907C695CF4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>0F65E3244BFCB2D5982EDAF6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4CBE9D1FEE4A0B6614579FED</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>0F7E273DF3ED1451D8A5B9A5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F1F27FF9817028212E7026A3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0FD1A9172DA559C9C3D28C67</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4FD344A4C37F355D47A7FFFE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>0FF927010EA9E25B43291817</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8DE2FEF54A4DB08AB4D23FC8</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>104561FA0B116B8261BC17ED</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9740CE8A2943145FA3F1A1BC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>105D0D1A5490A2C376632C23</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>window_stats.c</string>
-			<key>path</key>
-			<string>src/core/statistics/window_stats.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>10793779B46E2CA07B8B328E</key>
-		<dict>
-			<key>containerPortal</key>
-			<string>EF6CCB5D3B9A6AAB7B6B4A70</string>
-			<key>isa</key>
-			<string>PBXContainerItemProxy</string>
-			<key>proxyType</key>
-			<string>1</string>
-			<key>remoteGlobalIDString</key>
-			<string>E6BD399A8C9ADFC8662292C2</string>
-			<key>remoteInfo</key>
-			<string>Pods-SampleTests-OpenSSL</string>
-		</dict>
-		<key>10A6464F5ED77A4099AFE7FB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D9E90FC23D314C3938387079</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>10CD9126C8AB535E82FD38B2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FBECCE6A82E89B6FC889F695</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>10EBA542D5C2DF4452500953</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CCF40176486A4BD0A7ACF6E6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>10FA2D02DBFF1B75C88B905D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A7C712CE20377B4371F7C459</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>112D4518CB350C9A6EC0FBF6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>33AF6670C47BFA4C07898B03</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>1178DF24E96E755C938AF601</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6450C7404935D2BCA5C1BA45</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>11CD3A24FFE7D392586AE75F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9740CE8A2943145FA3F1A1BC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>11DE021FAF3654F8F1B67574</key>
-		<dict>
-			<key>fileRef</key>
-			<string>105D0D1A5490A2C376632C23</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>11F28F9FB55AE05B71E8C7D4</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>http_server_filter.h</string>
-			<key>path</key>
-			<string>src/core/channel/http_server_filter.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>1202DBBAFD5A83DFA42FA40D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1EE530AB0A91A2E4C5D3F6CF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>121F10D93715525604FDCE38</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>log_android.c</string>
-			<key>path</key>
-			<string>src/core/support/log_android.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>12A345A0CFED500F6B775287</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>GRPCChannel.h</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/private/GRPCChannel.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>12CD7362B97079B6D8CC0323</key>
-		<dict>
-			<key>fileRef</key>
-			<string>15F3B9386551E7B27C6ABDE7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>12DA0AD96ADF39E39C928185</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D600CB01889EC10BA9FE1D45</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>12E34A782808ECE191995622</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8B3B37023FF9E8E73CC99322</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>13022F3FE97A84183259DD81</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>0B1895DF544D5AFD5710A9D8</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>name</key>
-			<string>Pods</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>13259FE8947D9CCF46354A3C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C7EF667C6A815D05A0141437</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>134BE188919D386A4C303E55</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2B40B07A6D0FE99745EE82F2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>13797758B008859B698A8B0F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4BA7D4DD0077A316187A4FCD</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>13DC064E1697E2582E99EC94</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9280D9C818A79AD66D50A7F0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>14205681A376B5AE93DC9F83</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CAA36CDC6768501E59664D2C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>14380149D2CAE5204C7EB620</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FE33C32D23CB14E3A8312C6F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>145DC67262745588DD7393C7</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>ecdsa.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/ecdsa.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>146A2BFC5F871953CB2C6160</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>E6BA3DDEFA6996A5F7675AC2</string>
-			</array>
-			<key>isa</key>
-			<string>PBXFrameworksBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>1473065B9B84353092466D26</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C8F8CA2778AFCC4F7C705215</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>14BEBA34B7520B2443B79C60</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DE01AD2E1DC6FE17ABF873E7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>14CE4B4733F8F57634B33085</key>
-		<dict>
-			<key>fileRef</key>
-			<string>965B77D271A8DA40952B05FB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>1504400614F2E75956C85805</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8A4CE294B8B3F1F293B2BB20</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>1512227359DF5CFD75AB6137</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>sync_win32.c</string>
-			<key>path</key>
-			<string>src/core/support/sync_win32.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>1532DBB6F8A50EFCA81172A9</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>Pods-Sample-RxLibrary-dummy.m</string>
-			<key>path</key>
-			<string>../Pods-Sample-RxLibrary/Pods-Sample-RxLibrary-dummy.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>1536719610E89D217A1690ED</key>
-		<dict>
-			<key>fileRef</key>
-			<string>09C5C94835C932491C6D797A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>156006AC7B2BB9AE9C8F76DB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EF4C604AF8DFD93892271C18</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>15C343A1075EA0EABA3096F4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>5822A294383B44D69AB62D69</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>15CA149B86393A6BD1ECA4C6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EEE15CA8B94B9F0E60B27B4E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>15F3B9386551E7B27C6ABDE7</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>endpoint.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/endpoint.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>1625667FEAD7C03BF05072D7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8542018AA6FEDBF4F935FE62</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>1635EE4E92B2B458D434508A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>99C1B279E8FFE738C373CE5C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>167C46EAB33F72A0A6FD4648</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D052838662172FD36315F833</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>16A81250574CBC5AA4BEBE09</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C4403E8EC433DE1BD059DFD9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>16B2EB8CF6E0DC64AAE6362D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>ssl23.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/ssl23.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>16EE46302A54026EAD670FB5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CA65B1878419143FE2644503</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>1748CF83A0D483C86747AE9E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FE598A1FD58F4A066AD65636</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>1749A001B794EB90075AB4DE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4E994676D533E9CC25F4518E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>17718474B2B466194D6D2BBA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>86272741E64E0FD21E28911E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>17B128836D599F09BCA81641</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>pollset.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/pollset.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>17FD73CC0F32C37DA1273B68</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>comp.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/comp.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>1849A9E0893C762909367E5A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2E7903344C81D180FB28D3B7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>184DF0F2DC0A9733517F5103</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4E994676D533E9CC25F4518E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>1857FE53D4A8339FFA4F7AC4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>96FA40B0A24DFD1A977EA48C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>18F2D878E0926C69EA0DB839</key>
-		<dict>
-			<key>fileRef</key>
-			<string>91D9331637BB25ED83E3315B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>195416C5DFE037EBFC2E8C9A</key>
-		<dict>
-			<key>buildConfigurations</key>
-			<array>
-				<string>1DF0D42D4F56DF19DD2B021B</string>
-				<string>5204DC7E570D6FAEC8284472</string>
-			</array>
-			<key>defaultConfigurationIsVisible</key>
-			<string>0</string>
-			<key>defaultConfigurationName</key>
-			<string>Release</string>
-			<key>isa</key>
-			<string>XCConfigurationList</string>
-		</dict>
-		<key>198C6F023275ABA80AE60818</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>socket_windows.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/socket_windows.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>19CFBDA59D240B76372438CD</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>2B6198F27F465E9CB64F5FD1</string>
-			</array>
-			<key>isa</key>
-			<string>PBXSourcesBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>19DC88FB14050D7CD7864D16</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>stream_map.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/stream_map.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>19E26A868D15FFB6E8044284</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8DE2FEF54A4DB08AB4D23FC8</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>19EAD7B225767B0FE81D1B88</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4371CED1B1505B58D0DD40B6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>1A0F5FA237687D2A013CD662</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>name</key>
-			<string>Pods-gRPC.xcconfig</string>
-			<key>path</key>
-			<string>../Pods-gRPC/Pods-gRPC.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>1A25FE7D9ED5BE32FD124EBC</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>byte_buffer.c</string>
-			<key>path</key>
-			<string>src/core/surface/byte_buffer.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>1A7292699189E37B14D181B4</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text</string>
-			<key>name</key>
-			<string>Podfile</string>
-			<key>path</key>
-			<string>../Podfile</string>
-			<key>sourceTree</key>
-			<string>SOURCE_ROOT</string>
-			<key>xcLanguageSpecificationIdentifier</key>
-			<string>xcode.lang.ruby</string>
-		</dict>
-		<key>1A7544DE3FB366A63C120399</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0C1E165416BFAA0147B21701</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>1AC6D96ECC7AF34B3C524864</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>log_win32.c</string>
-			<key>path</key>
-			<string>src/core/support/log_win32.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>1AD8C730591AEE51C3338055</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>5B9522819F9A4CFD4390CCE9</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>name</key>
-			<string>Frameworks</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>1AE74C47AB87CA2C041D1EAE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>5EE3B6D1012B212265C1BB8C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>1B0990BF14CAA7E337C67697</key>
-		<dict>
-			<key>fileRef</key>
-			<string>033E9B255AF1FCC1058CB337</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>1B1A326D514D01067DC93BED</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>7E15D59BE449D7E1C774BFAB</string>
-				<string>36A63545F8709ED44227FF0B</string>
-				<string>7D2023720CB66FFC7E2C8A1E</string>
-				<string>B5840E57925E2437C0D31D8A</string>
-				<string>53F2B39341D67369164993AB</string>
-				<string>5B6CD8263A3E97E4F93EDEBE</string>
-				<string>1532DBB6F8A50EFCA81172A9</string>
-				<string>209B705A6173EE02FB6D6CE8</string>
-				<string>3CF197D7191B811EBD6F51BF</string>
-				<string>8518B5790A7605D761CDBF5F</string>
-				<string>BEC6379003DCEBB8729B0EC1</string>
-				<string>E8D94090C12307C06ADAD3E7</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>name</key>
-			<string>Support Files</string>
-			<key>path</key>
-			<string>src/objective-c/examples/Sample/Pods/Target Support Files/Pods-RxLibrary</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>1B1D81ECD72B264242E6EFDB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3061C7B10FA9E321217600A0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>1B4CE102C55280CFA2F5A216</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>time.c</string>
-			<key>path</key>
-			<string>src/core/support/time.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>1BAE68563D9071D0843994D4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B0953E84284D4CCAD89A8FA1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>1BD452BBED63DFB3CBAE94E8</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>channel.c</string>
-			<key>path</key>
-			<string>src/core/surface/channel.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>1BDC56986C60BC6C8AA7AD27</key>
-		<dict>
-			<key>fileRef</key>
-			<string>36216819E061128E0D3F3B1B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>1BDFB1B109564A8847DCC7E4</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>lame_client.h</string>
-			<key>path</key>
-			<string>src/core/surface/lame_client.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>1BFA2C1670708A3FDCA849AD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>ABABD0CDFD3E41EE2E942D9D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>1C0FA0D98A037BE68270FE79</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8A30A080A65CA525F242B11D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>1C70EC6FBD47CDFF70157C10</key>
-		<dict>
-			<key>buildConfigurations</key>
-			<array>
-				<string>EE1F46588CE6C8690143006A</string>
-				<string>D0B9A6B1A8D6F071EFFC9731</string>
-			</array>
-			<key>defaultConfigurationIsVisible</key>
-			<string>0</string>
-			<key>defaultConfigurationName</key>
-			<string>Release</string>
-			<key>isa</key>
-			<string>XCConfigurationList</string>
-		</dict>
-		<key>1C77716F736C03AC55CA2A7F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6DADFC4129105CA3F9C35CE2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>1CABFCD96F2BA55603790E2F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3C8E80ECBBB1553D4B3ECAD4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>1CB7FD40DEFA18E01CD0A446</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2D404DC9121BDE0D46D9C311</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>1CB9E8D0C728DE376555F95B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>69067E0159C82E4500EDD649</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>1D69695B89A47D7F7A046BF2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A7C712CE20377B4371F7C459</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>1D78C51984852802AAF21B08</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>77BAB415E3C6B36887EA5EF9</string>
-				<string>587C02B1B9A75FDB2424955A</string>
-				<string>D26128D5B9290E994C5C56A6</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>name</key>
-			<string>Targets Support Files</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>1D84F8A33A3E54D6D52CA5CE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EB7C915070654BB1EEAF664A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>1DAF1CBE016CA0A8D7BBA6F3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B39BAAB2D5DD2BF6802CCAF1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>1DD0FCAB703C9B8C13B64731</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C5727C361A185A47C38DE74F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>1DF0D42D4F56DF19DD2B021B</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>8518B5790A7605D761CDBF5F</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>NO</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_DYNAMIC_NO_PIC</key>
-				<string>NO</string>
-				<key>GCC_OPTIMIZATION_LEVEL</key>
-				<string>0</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary-prefix.pch</string>
-				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
-				<array>
-					<string>DEBUG=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
-				<string>NO</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Debug</string>
-		</dict>
-		<key>1E06ADB8CBA69DCA97B2745E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E7D1FFC956B8A56A55BA432B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>1E15FCBA075ADB76707F2B25</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4BED3946EC8B30746EDB3C17</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>1EE1F0DF3B208C17FAFD232E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>92087180D1834EEC0769E330</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>1EE530AB0A91A2E4C5D3F6CF</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>fd_posix.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/fd_posix.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>1F0744AF91DD80F43150691E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9E2995626A53D35C33A1E880</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>1FA2B1E16BCB0028CE4D0D30</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9280D9C818A79AD66D50A7F0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>1FD181F59ABA234B38392084</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>slice_buffer.h</string>
-			<key>path</key>
-			<string>include/grpc/support/slice_buffer.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>1FEE38F50BF1E509122440F2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9C4F9B2E32C34E146AA06A7B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>20108C36F574075708F59ACB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AC16D2F576455F6505380390</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2023AE3B1DDD58ED7FB7F6CD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FFA389620F44B4EAF5D26E26</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2081F37FB715BF181AB12BB6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DE4C762B94ADCDEBD4CBCD39</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2087F67F6B1EEC840708A802</key>
-		<dict>
-			<key>fileRef</key>
-			<string>393E5BB299200BE615C1B696</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>20913EAEE15A9542E376AB37</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3D6478130E0E220A851B312F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>209B705A6173EE02FB6D6CE8</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>Pods-Sample-RxLibrary-prefix.pch</string>
-			<key>path</key>
-			<string>../Pods-Sample-RxLibrary/Pods-Sample-RxLibrary-prefix.pch</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>20ADFF84BC9675D23552CE74</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>088EA2C7131A61736EB66927</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>NO</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_DYNAMIC_NO_PIC</key>
-				<string>NO</string>
-				<key>GCC_OPTIMIZATION_LEVEL</key>
-				<string>0</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
-				<array>
-					<string>DEBUG=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
-				<string>NO</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Debug</string>
-		</dict>
-		<key>20E96591DCA484AC1906F8BB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>96EDDB65D155EF4F18258A48</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>20F9B68BDAAE524BFDD87C56</key>
-		<dict>
-			<key>buildConfigurations</key>
-			<array>
-				<string>D0B31A61AEA88B19BEBB02BC</string>
-				<string>D8AB2B167BB2DF00DC4ACBEC</string>
-			</array>
-			<key>defaultConfigurationIsVisible</key>
-			<string>0</string>
-			<key>defaultConfigurationName</key>
-			<string>Release</string>
-			<key>isa</key>
-			<string>XCConfigurationList</string>
-		</dict>
-		<key>20FA3472CA8E5FCF1F3A55D3</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>client.c</string>
-			<key>path</key>
-			<string>src/core/surface/client.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>21099190FA751DE9ECCF6038</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0B47AE8C4E2CD1E850B4C8D2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>210B5CC41DAF085857BC0870</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EDCA1F07FB400E1CE2406DDC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>215791AA05DBEABC3EA80F77</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CE613B64A3AA1DB09D137B22</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2176505C7D5CF7B7BAE39048</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4B370D7822739445ED511CD7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>21812E5959B6F88D7D667885</key>
-		<dict>
-			<key>fileRef</key>
-			<string>34031C0126BC6758614E2329</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2187D95CC17440E347F0AA1E</key>
-		<dict>
-			<key>buildConfigurations</key>
-			<array>
-				<string>45F1A968A402A40A2F1EB6BF</string>
-				<string>2EC8AE2DCEE7943D810C1B7E</string>
-			</array>
-			<key>defaultConfigurationIsVisible</key>
-			<string>0</string>
-			<key>defaultConfigurationName</key>
-			<string>Release</string>
-			<key>isa</key>
-			<string>XCConfigurationList</string>
-		</dict>
-		<key>219A77D2AECBC384657EAAFE</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>8688B8920C01933C25D3EB9F</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>NO</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_DYNAMIC_NO_PIC</key>
-				<string>NO</string>
-				<key>GCC_OPTIMIZATION_LEVEL</key>
-				<string>0</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-SampleTests-OpenSSL/Pods-SampleTests-OpenSSL-prefix.pch</string>
-				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
-				<array>
-					<string>DEBUG=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
-				<string>NO</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Debug</string>
-		</dict>
-		<key>21B90117F971A7B20A1CF653</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6450C7404935D2BCA5C1BA45</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>21BA344E73508DB706901EFA</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>ebcdic.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/ebcdic.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>21BF57D149E2F080A966C226</key>
-		<dict>
-			<key>fileRef</key>
-			<string>61C9F7E9F2B692ABC1E833C1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>21FA3BAB516587F1C0D23837</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9E31EA7FB9DCBDEB4A07DC3A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>221C783B74991EA9849679DE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CC7DBCF5B4C830C34F6A42CA</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>223682FDADBBFC7CCE7AB8D1</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>safestack.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/safestack.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>227D17AB38436BFBA01536FA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FE8EAD42A7475EFCBFB8BA06</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>22DECC39715F42B545CC5092</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E999CD2C6C127C0CCEE5CA54</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>22E568AA3E9C78AEA9BD62D2</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>status_conversion.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/status_conversion.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>2304C0FD095D75F7DF93DB6E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6E38DAB56A2F2AF3D32AF55F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>232DD5AE3F69DD23F4FCACF6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>84CA5442DDDC6A90684A830B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>23485D13BF0AEEA27E09F3F9</key>
-		<dict>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>CLANG_CXX_LANGUAGE_STANDARD</key>
-				<string>gnu++0x</string>
-				<key>CLANG_CXX_LIBRARY</key>
-				<string>libc++</string>
-				<key>CLANG_ENABLE_MODULES</key>
-				<string>YES</string>
-				<key>CLANG_ENABLE_OBJC_ARC</key>
-				<string>YES</string>
-				<key>CLANG_WARN_BOOL_CONVERSION</key>
-				<string>YES</string>
-				<key>CLANG_WARN_CONSTANT_CONVERSION</key>
-				<string>YES</string>
-				<key>CLANG_WARN_DIRECT_OBJC_ISA_USAGE</key>
-				<string>YES</string>
-				<key>CLANG_WARN_EMPTY_BODY</key>
-				<string>YES</string>
-				<key>CLANG_WARN_ENUM_CONVERSION</key>
-				<string>YES</string>
-				<key>CLANG_WARN_INT_CONVERSION</key>
-				<string>YES</string>
-				<key>CLANG_WARN_OBJC_ROOT_CLASS</key>
-				<string>YES</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>NO</string>
-				<key>ENABLE_NS_ASSERTIONS</key>
-				<string>NO</string>
-				<key>GCC_C_LANGUAGE_STANDARD</key>
-				<string>gnu99</string>
-				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
-				<array>
-					<string>RELEASE=1</string>
-				</array>
-				<key>GCC_WARN_64_TO_32_BIT_CONVERSION</key>
-				<string>YES</string>
-				<key>GCC_WARN_ABOUT_RETURN_TYPE</key>
-				<string>YES</string>
-				<key>GCC_WARN_UNDECLARED_SELECTOR</key>
-				<string>YES</string>
-				<key>GCC_WARN_UNINITIALIZED_AUTOS</key>
-				<string>YES</string>
-				<key>GCC_WARN_UNUSED_FUNCTION</key>
-				<string>YES</string>
-				<key>GCC_WARN_UNUSED_VARIABLE</key>
-				<string>YES</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>STRIP_INSTALLED_PRODUCT</key>
-				<string>NO</string>
-				<key>VALIDATE_PRODUCT</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Release</string>
-		</dict>
-		<key>236820A24949666DC4BEFCE9</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>GRPCDelegateWrapper.m</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/private/GRPCDelegateWrapper.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>23862C0452B23FBD75CE7A2C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>36B5D06D44B5DEC4A0582942</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>23A18642F3FF9C3F82E8A4C2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>027FD40220A6CEE42890FCFB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>23AE6665BFE2DE545A7FF5BE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>64EE4150A5FFF8C2DF1E1BC3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>23EEDEBEAEE7D6F8ADEF43EC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DCE6F838BF9A76E1E90F8F29</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2409222888E41486090AFF8B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>5B5980115B9F57F23C415785</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>24171A028BAEF79F1EFDFDD1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CB4A618E542B03D760C2481E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>243132FB51D5E42FB295C5E0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>64EE4150A5FFF8C2DF1E1BC3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>244E78FB8BC027D003C823D1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>77B55EEAAE337991A39F497C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>24525C4BBB0AC12A3C992439</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>path</key>
-			<string>Pods-Sample.release.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>24541F7D7260A18E0F1F1EE0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4371CED1B1505B58D0DD40B6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>24CDDC5BBA2BDB009EE79DA4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>78419FA9BB1CF508010CF41E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>24DE9AD22B1E230CF2595754</key>
-		<dict>
-			<key>fileRef</key>
-			<string>40038AA5508AF842FFDDC3BC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>24E87E4C716C16493589CE62</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DE01AD2E1DC6FE17ABF873E7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>252E38BCC9C7951594800E81</key>
-		<dict>
-			<key>fileRef</key>
-			<string>94DBACF5F8646DE3687EA89D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>254003A1482D4A4EF9F9B4B4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C872112D1B148457B204ABBE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>254E3BF6152CA41DA8057596</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2BC92A2D33B15B43988C5400</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>255D1090014941559D1E8208</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>symhacks.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/symhacks.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>259DD0ACEAACC5F7009B987A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3075CAA736C46F8E83F3B9C9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>25EC7DF37F1307468A59F519</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0CE368F81A14F550EB5D707F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>265B7DCC607F958D68B7C58C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A24D9C9B0A3B1531053B1316</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>26767A7F172EDCD408F95507</key>
-		<dict>
-			<key>fileRef</key>
-			<string>15F3B9386551E7B27C6ABDE7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>26D5A00C5D363C2B88EB6022</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>conf.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/conf.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>26D71D13BCCCE8C95C4A4AD2</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>crypto.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/crypto.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>27035AA2B3381D70E0EB2101</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4CBE9D1FEE4A0B6614579FED</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>271500B0CF6170CB1AF47149</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>hpack_table.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/hpack_table.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>27FB5959A54E8187CDA4DBC3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A1187890FF30DC066C063A22</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2823E976FE60E85BBB4ABA15</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F479DEC52B8363BF3688AAFE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>284FB4EEBAD2682FC06C50B5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B61F3F6429BDAFF0077745B0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>289165D00173AF4ED46CF21D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1BDFB1B109564A8847DCC7E4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>289C85FB4A7A85937CE201CB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3D761DFB0128E72F50E4B1BD</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>28B95C0C2707A55FEC37D8D1</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>init.c</string>
-			<key>path</key>
-			<string>src/core/surface/init.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>2906ADB1783E546ED2C16D6C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>364EAC466D0C65E8D8B58AC0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>29396A708DDF90595D04CE21</key>
-		<dict>
-			<key>fileRef</key>
-			<string>ECE467216AE94759184A54C8</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>295A13EFB64D8765156FB0C7</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>iomgr.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/iomgr.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>297EA9EEF986275291E56ED5</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>cancellable_platform.h</string>
-			<key>path</key>
-			<string>include/grpc/support/cancellable_platform.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>2986E2FF3687B7B130FE0BDC</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>histogram.h</string>
-			<key>path</key>
-			<string>include/grpc/support/histogram.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>298B9E1F4FE96441684C83A8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>357D8C9988DD885668F2FBB1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>29B23B095A7B729F93AD45D5</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>json_writer.c</string>
-			<key>path</key>
-			<string>src/core/json/json_writer.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>29D14A8A377808181BC1222F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A99C3A0F6DB1DDFE12666578</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2A0AF801A6284D9166A0B8AB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B3E02FFCB91C6642373943D2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2A18EA340EDBFDBBDB1D6EFF</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>fake_transport_security.c</string>
-			<key>path</key>
-			<string>src/core/tsi/fake_transport_security.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>2A658A8080DC3DE952E38C18</key>
-		<dict>
-			<key>fileRef</key>
-			<string>762E15359B5ACE886246F496</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2A7DCCF5AECC50D87DCD8FDE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B35F00EA0F43E499609BEF33</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2A9A0E7D3723EE77CE56F10C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>98832F1AA62791BCECA5C960</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2AB20A8633F00DF478B41D10</key>
-		<dict>
-			<key>fileRef</key>
-			<string>894D1EE01C658C3F8033DCAF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2B0D8F3C3D495C6BEC3613EE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4F90D0AFF745DCF57FABD55D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2B0E9701D4627716BC20A373</key>
-		<dict>
-			<key>fileRef</key>
-			<string>375DE8DE567BEE25B14AF9F0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2B15A41FC87C156EA7B167AF</key>
-		<dict>
-			<key>containerPortal</key>
-			<string>EF6CCB5D3B9A6AAB7B6B4A70</string>
-			<key>isa</key>
-			<string>PBXContainerItemProxy</string>
-			<key>proxyType</key>
-			<string>1</string>
-			<key>remoteGlobalIDString</key>
-			<string>C8AAD4FFD18ED62CF23187F8</string>
-			<key>remoteInfo</key>
-			<string>Pods-SampleTests-gRPC</string>
-		</dict>
-		<key>2B19DD81C1113D481042377B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B97492608B4721D2A584A459</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2B40B07A6D0FE99745EE82F2</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>iomgr_posix.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/iomgr_posix.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>2B618D5AF9F28A5A827B6D5C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C54A331859E953767BF5543B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2B6198F27F465E9CB64F5FD1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BE5CBB0C24097EEA6E542C6B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2B72DECE7512CEA2F6ADD3F4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>44710470DD111C15AC809782</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2B7503E27A95E1EB267B5E07</key>
-		<dict>
-			<key>fileRef</key>
-			<string>817E0434460DA6B1BC731476</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2B7E543FD4A515A4008CF1AA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>07CC03DD8D351A9A1476B417</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2BC92A2D33B15B43988C5400</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>sync_generic.h</string>
-			<key>path</key>
-			<string>include/grpc/support/sync_generic.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>2BDE7E0E48135B25519E04FA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6921582421293146CB69A657</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2BE62E810A170A1A5BBCF1FD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4162D63ED358ABEA4101E734</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2BF3FB22CD77FE306C424BA9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C3EE0A62C008F21FD53D281D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2C1D7C1261DB41B444560176</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>metadata.c</string>
-			<key>path</key>
-			<string>src/core/transport/metadata.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>2C3DF9A4F0B44FF3249679EC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3A93AAC878F7B1907C695CF4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2C4ADA14FCC290C6B12FC113</key>
-		<dict>
-			<key>buildConfigurations</key>
-			<array>
-				<string>FE231D732AC34031F2FC10C2</string>
-				<string>F3E9B6E9A0F6B868F5F415C5</string>
-			</array>
-			<key>defaultConfigurationIsVisible</key>
-			<string>0</string>
-			<key>defaultConfigurationName</key>
-			<string>Release</string>
-			<key>isa</key>
-			<string>XCConfigurationList</string>
-		</dict>
-		<key>2C8699862F4A579E332B1594</key>
-		<dict>
-			<key>fileRef</key>
-			<string>5A244D6060420351A712F2A2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2C9CC4C15DA55272AF0A3205</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6FC651BF50A48D13DD20BC6B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2CA483F817F2255BAD8C30D6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>649DBF314EA59E30407979CB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2CDCC7398FA4F55DE7D24719</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.plist.xml</string>
-			<key>path</key>
-			<string>Pods-acknowledgements.plist</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>2D1977CF27C7C78C7A95EC10</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6DADFC4129105CA3F9C35CE2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2D369576F579410EB00E315D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8715B25A0DE3CACC14BBD626</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2D404DC9121BDE0D46D9C311</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>NSDictionary+GRPC.m</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/private/NSDictionary+GRPC.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>2D42C9F2C1FBBA7572EDD01E</key>
-		<dict>
-			<key>containerPortal</key>
-			<string>EF6CCB5D3B9A6AAB7B6B4A70</string>
-			<key>isa</key>
-			<string>PBXContainerItemProxy</string>
-			<key>proxyType</key>
-			<string>1</string>
-			<key>remoteGlobalIDString</key>
-			<string>C861662370F99B8D5130D4F4</string>
-			<key>remoteInfo</key>
-			<string>Pods-Sample-gRPC</string>
-		</dict>
-		<key>2D65D8EF63B095DF957B3CA5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7532E65A3BD1314F1A843707</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2DF440E3E55E28B15AA19A9E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1A25FE7D9ED5BE32FD124EBC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2E03CFD21BCEAA6D1BA0EEBB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6921582421293146CB69A657</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2E26C689FCF39C8612D6E719</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>tcp_posix.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/tcp_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>2E3F443F5544266650AC7090</key>
-		<dict>
-			<key>fileRef</key>
-			<string>85D6F5B4AE1B266E2DC5055E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2E43E26E9B94E7606C90F3BD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FFA389620F44B4EAF5D26E26</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2E76D86D8C8B67C0B65BA104</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AACA730E78FB3DE204B5B362</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2E7903344C81D180FB28D3B7</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>parser.h</string>
-			<key>path</key>
-			<string>src/core/httpcli/parser.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>2E8BF9690BABD3BE03905508</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F35C20493437B1BA0212EA81</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2E8C09CD7F0F24C765114522</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>16EE46302A54026EAD670FB5</string>
-				<string>A2A4552CE70734B114D1C529</string>
-				<string>EF6786B34AD929EE2D3DAA8A</string>
-				<string>4ECE160278CDC6A04729C160</string>
-				<string>9C3207F46DFC1D3739F7FDEF</string>
-				<string>763918BB64ECC0B5CA40D046</string>
-				<string>B59BCC904E2E8FEAC96DC19E</string>
-				<string>02CBFA99851F30E9675EE44A</string>
-				<string>7AAF487B253D60E1791DEBA7</string>
-				<string>D0AACE8D5A3D9D055537ABF5</string>
-				<string>D8144293CB4B123533B56768</string>
-			</array>
-			<key>isa</key>
-			<string>PBXSourcesBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>2E99AE7073DF58050D165405</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F5EC782889E78C64F5FE925F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2EB0CF3F1A608B51600BDCFE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>836BB5DD3F8F3AC58643748E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2EB374AFB178557E283EB705</key>
-		<dict>
-			<key>fileRef</key>
-			<string>5CEAAE8ACC2208053633633F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2EBB008FD46AF37B43490E29</key>
-		<dict>
-			<key>fileRef</key>
-			<string>426B8FA69F7F8DC09EC303BF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2EC8AE2DCEE7943D810C1B7E</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>387FEEC6D92C0E1CE9E0D224</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>YES</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-SampleTests-gRPC/Pods-SampleTests-gRPC-prefix.pch</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_CFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_CPLUSPLUSFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-				<key>VALIDATE_PRODUCT</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Release</string>
-		</dict>
-		<key>2EF03C938557266641037A73</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>frame_settings.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/frame_settings.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>2F029B8FDC0F19133B4ADEE6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>16B2EB8CF6E0DC64AAE6362D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>2F3EE0D0754C86C1A9645791</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D66C9178A237F3206AC28994</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2F4F4EE4EE322EA424849452</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2C1D7C1261DB41B444560176</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2FA5A790B1AF683BB0CBC9EC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C90346AE945DEC7DE5A020D9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2FE8F5BA8277F6EC569C40DA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FE5E400FCDFE4E120E751BD9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>2FF6527BCE880D11CAEA9120</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DEDFB50008BE43CBB3004B50</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>300680E7E95873F04FC03AB7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>997839BCB6FCF8646369F61C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>300E6C685A5BD0FF9A2DD648</key>
-		<dict>
-			<key>isa</key>
-			<string>PBXTargetDependency</string>
-			<key>name</key>
-			<string>Pods-Sample-RxLibrary</string>
-			<key>target</key>
-			<string>D6D07C30809CD707CC0BF7A3</string>
-			<key>targetProxy</key>
-			<string>4538D9BC82E1FAD9856E0143</string>
-		</dict>
-		<key>3021924999C886E47BB643D2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AC23394D43B5B113928C948B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>302A0A0BFFCCD9CE4813E689</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6BE65E7C42C30A9CC06C37CC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3061C7B10FA9E321217600A0</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>env_linux.c</string>
-			<key>path</key>
-			<string>src/core/support/env_linux.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>306803EF6E261D19E30B0491</key>
-		<dict>
-			<key>fileRef</key>
-			<string>37569C3B8AC5433CF65B34F2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3074189BD4271731927D9A6D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7015927CC6AFAE2A1C0EB34A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3075CAA736C46F8E83F3B9C9</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>ssl2.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/ssl2.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>30781B6FDC7746382EA8FAB6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E5E3D8FF89E386FE61A3887F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>307D08AD8917F2A1AD228EB8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>121F10D93715525604FDCE38</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>308BF23215B052808B4E700C</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>x509.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/x509.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>30D53E6A101CCFE5C85CD6BE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EF5BF73B082FA5277F400D09</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>30F3B65AE1CB22B659D201AF</key>
-		<dict>
-			<key>isa</key>
-			<string>PBXTargetDependency</string>
-			<key>name</key>
-			<string>Pods-SampleTests-RxLibrary</string>
-			<key>target</key>
-			<string>019EC915480E3C1C93519A28</string>
-			<key>targetProxy</key>
-			<string>E0A3D8467CE38E0A791B9E2A</string>
-		</dict>
-		<key>30FC369C108C7DF9C90BDE5C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CE613B64A3AA1DB09D137B22</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3104228A3269C95FBDE0D173</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AC75EBB38A56E3D30CB0627B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>31484FB8D129B492770401AD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8108B7358A64888529BAFCD3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>319F9405AEA5CB03870BC458</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>CDD7E1BDC247E908A09AC36E</string>
-			</array>
-			<key>isa</key>
-			<string>PBXFrameworksBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>31CC1E2FF4E37C0C046972B2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B51324FB9685E791FBF732E6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>31D2AB1FACD857935677D08D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>198C6F023275ABA80AE60818</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>321FD9F46C9AEF1172C7673F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0EF1D0636605D7C0D2948EA3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>32DA6EA2EB8A4321526C2779</key>
-		<dict>
-			<key>fileRef</key>
-			<string>33AF6670C47BFA4C07898B03</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>32F6ADA70A72325BA32DAF4B</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>E7B77C082F981EF21B3C523B</string>
-			</array>
-			<key>isa</key>
-			<string>PBXFrameworksBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>3357DA574574A9CCA498F500</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1A25FE7D9ED5BE32FD124EBC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>335D3CD9708B50CF288CCBC2</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>69EF1AB3BE283E38D210DB48</string>
-				<string>FADDAE1852B4D3E38A5BE3C6</string>
-				<string>5944BF0B7ADCEA63E41CE99E</string>
-				<string>9D54C44B692F10BD2B2C6018</string>
-				<string>A3A875DFE4B935FD53D8BB99</string>
-				<string>2AB20A8633F00DF478B41D10</string>
-				<string>3F74B85FE6446BBA2CD730F0</string>
-				<string>5F17EF75E1E4A4AF933DAD3E</string>
-				<string>14CE4B4733F8F57634B33085</string>
-				<string>8C1BBEAC1B5EDCCEABD4C63E</string>
-				<string>6F02B98C8F587E7F7E3BB187</string>
-				<string>0D1AB44758FB69DA24A79E86</string>
-				<string>73718E825CACFE378F012B38</string>
-				<string>090BEFEEC4EC3BFAD2F44C29</string>
-				<string>0E8B5873576753103E2AA78D</string>
-				<string>1C77716F736C03AC55CA2A7F</string>
-				<string>F24241103A7459839369AF90</string>
-				<string>D5DDBAB2F6224BB33B9047F9</string>
-				<string>5C5897DEF7FD6CDB39DC8B0D</string>
-				<string>652778EF439BBD51C88D0BD3</string>
-				<string>CACBA78F95D8D082EEC1A2DB</string>
-				<string>72AF070079D0E8AAA90AC656</string>
-				<string>65E3C741EB521867736A603E</string>
-				<string>1748CF83A0D483C86747AE9E</string>
-				<string>D73EE8993FF1562EDE456B08</string>
-				<string>3B35F0FC1E95A1782F4B63AF</string>
-				<string>4B73BE20BE7672DF7E75396A</string>
-				<string>C46FF850FCB3DC9693B12237</string>
-				<string>F36A39F0500441DE7C6BD5D7</string>
-				<string>30FC369C108C7DF9C90BDE5C</string>
-				<string>FE090A4AB3DE384F91AF337E</string>
-				<string>9B27123517CC21C323F7319B</string>
-				<string>FECDF2ABC23ACB9EDCC8537B</string>
-				<string>75FFA5A89F3597BE2BE968E5</string>
-				<string>8A07078DA38B5D8B17133D0C</string>
-				<string>89DABF79DFDE395AF0FC7983</string>
-				<string>D42504ACED768142CEF9F0E4</string>
-				<string>A7A6AFCCDFC6AD5AFA3187C5</string>
-				<string>CEFBBF3E14854C9127C949B6</string>
-				<string>4BE32A90AB71DC9EB5A30CDE</string>
-				<string>A1E08754C789AD81C1610C68</string>
-				<string>2C8699862F4A579E332B1594</string>
-				<string>31484FB8D129B492770401AD</string>
-				<string>4AD65E679D1FDC38CCBD08F2</string>
-				<string>9AECFB9BA8B0B12C4BDE2BEA</string>
-				<string>E59EBD56BEDB7A8B1D39AC74</string>
-				<string>D5B02F9B59EE85513AE18E22</string>
-				<string>C106DDA18B26E91B9264A0A0</string>
-				<string>744A2C25A333FB7B3A3BD023</string>
-				<string>C07D5183FD6E65DC4C204259</string>
-				<string>1202DBBAFD5A83DFA42FA40D</string>
-				<string>54648B5657B38A65FB07913A</string>
-				<string>2B0D8F3C3D495C6BEC3613EE</string>
-				<string>8245D7352741D9B71A00227F</string>
-				<string>4C78221278F53FA315CE62B4</string>
-				<string>489F0D55D989FF0182A5A117</string>
-				<string>5EBDAC62072FF3E8F3672068</string>
-				<string>AB46A5D63FC34967E00B3187</string>
-				<string>468F4C717231E3411BB18BEF</string>
-				<string>45912D1B68C3F12769762AA2</string>
-				<string>FD9C86975353452CCB67240A</string>
-				<string>CD4547BE008B024309641516</string>
-				<string>64AB4DE83F5D54A7B8A03BB7</string>
-				<string>F2FAE654A4BC5802F6E5A965</string>
-				<string>7AF731AB17C58A7859435B4D</string>
-				<string>9C63F1FF34B1EC9DC4A2BEA1</string>
-				<string>AA62C2AE571D3FE82BD23627</string>
-				<string>DCFE6C610400285D9DBE9883</string>
-				<string>5478792C4736C2AD57B9CEBC</string>
-				<string>B7C2E08CDF85E94A53AA70A2</string>
-				<string>E528D0430088FA7A99D87953</string>
-				<string>4DA1AAF7DAFC3C6E67C481AA</string>
-				<string>DA144B6EC7CDF502EEFCF5A9</string>
-				<string>41A8F9F43669ADEBC39BE513</string>
-				<string>CA4148CC28BCF7B90B1CA692</string>
-				<string>8BA93076DF9D72C54D5CC4F3</string>
-				<string>3679B46F9971A40D3F1BFE08</string>
-				<string>C055683B6E4D03EF0FC36154</string>
-				<string>1AE74C47AB87CA2C041D1EAE</string>
-				<string>99CDD912A0C4356D666A5873</string>
-				<string>0673AFB27C3D50025CADB986</string>
-				<string>134BE188919D386A4C303E55</string>
-				<string>978048BEA83A85DCE4FBD455</string>
-				<string>61FC63158E05EBE0627831D0</string>
-				<string>BE1A18249F1E7AED0D3B9065</string>
-				<string>3AED3357C33BCAFF9814C744</string>
-				<string>488E803F161FDDE56CE60C88</string>
-				<string>289165D00173AF4ED46CF21D</string>
-				<string>513BB0CCB933788054B076A7</string>
-				<string>A75CB366CBC8CFD362E93FF3</string>
-				<string>B4193103D3BBF8CF068C3E06</string>
-				<string>4269DCBB8D35531E1E698A9D</string>
-				<string>74C48F6D86C2FC29432A1DD5</string>
-				<string>5EEDDF61E1FE31FA8131215E</string>
-				<string>5A03933DE26A47D8B2897FF0</string>
-				<string>DDB1C0781AC4F3A98D93B928</string>
-				<string>88F42A9686666533A8324AC4</string>
-				<string>EC921AE33B1F525DF1F7BEED</string>
-				<string>E7F10BE09F4FB176D9ED20E6</string>
-				<string>91BBF730DE85752E739CF1DD</string>
-				<string>4374BD1EC64A9E643CCE6853</string>
-				<string>94E07A810D4029588C061989</string>
-				<string>CC29BEE7A8FFD567D3880637</string>
-				<string>445F99674FF46534A8E3775A</string>
-				<string>227D17AB38436BFBA01536FA</string>
-				<string>6CB528C62019D4AA39259753</string>
-				<string>A21B73408E29016F2C5AE685</string>
-				<string>8B3B920E132387A24E6485A5</string>
-				<string>0463873868411A736F02FC30</string>
-				<string>7F559365BFF3F3287257D7E2</string>
-				<string>C77295C9F39211FBA42C8065</string>
-				<string>5A56C3B2732B45EEADADAECA</string>
-				<string>638CAE79F583AD3D740D3471</string>
-				<string>5F4F3D942CA81E3AF7E5D25C</string>
-				<string>52A95DAC511A564FAE9CB4A1</string>
-				<string>31D2AB1FACD857935677D08D</string>
-				<string>0AEB049078C1DDF0EB136CE2</string>
-				<string>DF00089A1C3B62C5E7CF03BE</string>
-				<string>768932B35479C5363AF8D3BA</string>
-				<string>9D5008808325DDA0BF7147AC</string>
-				<string>91F2DEEF628E5DF1F4A853BE</string>
-				<string>3B03529B89156C527E596AB1</string>
-				<string>51901361A740E9CC8FF7D862</string>
-				<string>104561FA0B116B8261BC17ED</string>
-				<string>D9C7F42C1753AE8C749DBF4E</string>
-				<string>FBC713821A3C7A2B139F60D2</string>
-				<string>031D7CC86E9E587C003CC76D</string>
-				<string>3385691353A9B9BCE80C4B10</string>
-				<string>C7CC75D7620AD6D0E4771494</string>
-				<string>B844B4614A938620F971B399</string>
-				<string>B4941F77B83515DEE73CFFAE</string>
-				<string>2BE62E810A170A1A5BBCF1FD</string>
-				<string>C3E5C53AC3B25153145C807A</string>
-				<string>4702C8E3584F37AAB90254B2</string>
-				<string>3AE3EE689AA3F4EBE5BB76A2</string>
-				<string>58F57C54C6A99CB2DE02F578</string>
-				<string>EE76B32705241C7A7811E34C</string>
-				<string>85C81F2814D63626BCC2702B</string>
-				<string>F84822BB0BC17146CC461A27</string>
-				<string>1635EE4E92B2B458D434508A</string>
-				<string>34F9993A1FF5B8546E3A5259</string>
-				<string>7789095F3D68DA5FC99698AF</string>
-				<string>6B6A33BE574EA4F98D01991A</string>
-				<string>2B19DD81C1113D481042377B</string>
-				<string>3074189BD4271731927D9A6D</string>
-				<string>40224B1A39EC60B459B1469E</string>
-			</array>
-			<key>isa</key>
-			<string>PBXHeadersBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>336666BA7A5C7F6E426E0DEB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>033E9B255AF1FCC1058CB337</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>33842D454E072994160EEC43</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>Pods-gRPC-dummy.m</string>
-			<key>path</key>
-			<string>../Pods-gRPC/Pods-gRPC-dummy.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>3385691353A9B9BCE80C4B10</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CD41AAD795A3857E29F6D065</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>33AF6670C47BFA4C07898B03</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>txt_db.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/txt_db.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>34031C0126BC6758614E2329</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>varint.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/varint.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>34055CA9C85022326ED1CECE</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>resolve_address.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/resolve_address.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>347B4E6E6F78D92D5349AEA8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8913A0830655A122B5D9C9BC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>3495EDA1753AF43A20FA6CA0</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>log_win32.h</string>
-			<key>path</key>
-			<string>include/grpc/support/log_win32.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>34E9DCBE6EA4E46854C7A620</key>
-		<dict>
-			<key>fileRef</key>
-			<string>451541B815BDBB7A51B8B558</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>34F9993A1FF5B8546E3A5259</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DF9DBB49E67087607553EBB4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>35235F9F07B924089DAF62B5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>41D6177A52EDB173FAF337F0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>3556D28254F236B2F9A58211</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>path</key>
-			<string>Pods-SampleTests-environment.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>357D8C9988DD885668F2FBB1</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>iocp_windows.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/iocp_windows.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>35834F8EFDF918F766424079</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>auth.c</string>
-			<key>path</key>
-			<string>src/core/security/auth.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>35B7B3CF4F701A5A496218D1</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>child_channel.h</string>
-			<key>path</key>
-			<string>src/core/channel/child_channel.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>35C235A25B44FCE187FAA3EA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6CB7527D34B577A0608E122B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>35CE826363462AE380884D9B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8A8A433981E87901C5F6A698</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>35EB0B87EB97568DA49B8275</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D82E19DAAEFC7EA0DD7A149B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3602B71691FBEE9C8B185AEC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>997839BCB6FCF8646369F61C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>36216819E061128E0D3F3B1B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>file.c</string>
-			<key>path</key>
-			<string>src/core/support/file.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>364EAC466D0C65E8D8B58AC0</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>frame_rst_stream.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/frame_rst_stream.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>3679B46F9971A40D3F1BFE08</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EF12D13A82E13B6B4B9F7B1E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>36A63545F8709ED44227FF0B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>path</key>
-			<string>Pods-RxLibrary-Private.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>36B5D06D44B5DEC4A0582942</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>call_op_string.c</string>
-			<key>path</key>
-			<string>src/core/channel/call_op_string.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>36DC5DBBA81F58CBC6F12B69</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>alloc.h</string>
-			<key>path</key>
-			<string>include/grpc/support/alloc.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>37237EF4375455451C706BBB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>86272741E64E0FD21E28911E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>37569C3B8AC5433CF65B34F2</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>hash_table.h</string>
-			<key>path</key>
-			<string>src/core/statistics/hash_table.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>375DE8DE567BEE25B14AF9F0</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>path</key>
-			<string>Pods-SampleTests-dummy.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>376CE283BC1815F79FBEA580</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D7CB4A20B855DC7338EA7C38</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3770360C7C4E24EF561EDD00</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>secure_channel_create.c</string>
-			<key>path</key>
-			<string>src/core/surface/secure_channel_create.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>37A7984C21A54FE69C671D9F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>46B78A6F01667D7B0FC98E17</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>37C20332908E95AF47726F28</key>
-		<dict>
-			<key>fileRef</key>
-			<string>271500B0CF6170CB1AF47149</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>37F36D73CEB819EA976D6B43</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D6EB9981606955226C03A02F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>3812629E97154598D8C4697E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>58EE7495552555A9FA26D6EC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>383DC42BF7737B437CE71CD3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6AF51495B3362C2BD08A0402</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3840C892086F738D1807A9A9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C95F1381DCB9456BD725D0ED</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>38654B4F64FA394C5D6AAE0E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3075CAA736C46F8E83F3B9C9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>387FEEC6D92C0E1CE9E0D224</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>name</key>
-			<string>Pods-SampleTests-gRPC-Private.xcconfig</string>
-			<key>path</key>
-			<string>../Pods-SampleTests-gRPC/Pods-SampleTests-gRPC-Private.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>388F8FA045DA2D95C05BB64B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>21BA344E73508DB706901EFA</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>38E7954524258CAA18F1A421</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>thd_posix.c</string>
-			<key>path</key>
-			<string>src/core/support/thd_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>38F7BED6F24599DA7AE205AB</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>frame_goaway.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/frame_goaway.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>393E5BB299200BE615C1B696</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>err.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/err.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>394296CD3FBF6441C7EDAADE</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>cmdline.h</string>
-			<key>path</key>
-			<string>include/grpc/support/cmdline.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>394ED2B7C25213042544D585</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E7D1FFC956B8A56A55BA432B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>397ED8675D54BE6AF1067594</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AD884583F0A7FE161EBDDCEB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>39EA3D5E6CE9C0F7469E0C7F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>GRXMappingWriter.m</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/transformations/GRXMappingWriter.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>39FE8F8E9D9ADC7BBC28A67C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6B670E75366F84FC704EE412</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>3A25D0EE36B810217C7E0498</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3D1F28965FAB5FCF104F8E82</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3A28A85BE8521BCD09F48A08</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FD4056C1E72FA6046DC0DE4D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3A93AAC878F7B1907C695CF4</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>alarm_heap.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/alarm_heap.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>3AA665531F952C3E179DCBE6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3D6478130E0E220A851B312F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3AA922014F2EAF68FACB6EDB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F8F69793DCC04A79F99DDB6C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3AE3EE689AA3F4EBE5BB76A2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9B19C806B4AFE8A83414EE19</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3AED3357C33BCAFF9814C744</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FD4056C1E72FA6046DC0DE4D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3B03529B89156C527E596AB1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C1AB9420EC401C5BB395F7CC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3B03624C2E98807A4A7FF943</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>4280283570E4D7D0CA98B849</string>
-				<string>D439D7286A59520842437B2E</string>
-				<string>DECE9544878E610FB6CF1CE7</string>
-				<string>87608FFD0BF559777DBB65AA</string>
-				<string>D5F0408497E76FF2719543FF</string>
-				<string>8B4F15415CF9347F68C5A545</string>
-				<string>71B0901634785458F8E4B596</string>
-				<string>58BB3EC98748D4A65D2D4FF0</string>
-				<string>E00C254AAEE7DF46540EDB56</string>
-				<string>A6D1059B92E9998B68ABE7B6</string>
-				<string>9EC4107615B7C178804BE158</string>
-				<string>0F341D67F0DC27FFA5322889</string>
-				<string>4CB9BFC0250B14B1787F6169</string>
-				<string>2E3F443F5544266650AC7090</string>
-				<string>6726193FB24B22B72FB83BA9</string>
-				<string>8BE21821E665BA2D4986D025</string>
-				<string>AC3D9619BD78A9BCCEE167B9</string>
-				<string>EC8A9638D016FEE6ECAE07F9</string>
-				<string>3357DA574574A9CCA498F500</string>
-				<string>91D39668B98F37C112A8B764</string>
-				<string>2081F37FB715BF181AB12BB6</string>
-				<string>5BF0B9AADE5BB2DCA364C700</string>
-				<string>16A81250574CBC5AA4BEBE09</string>
-				<string>046C1A5B02414086837FE511</string>
-				<string>DB343DAD68841B66AB8F4F16</string>
-				<string>244E78FB8BC027D003C823D1</string>
-				<string>937F9ADAC8A717F4BD4DFCD9</string>
-				<string>08C2C78E8C5C3B431E9AE27C</string>
-				<string>5021EB34D6F211573438FDCA</string>
-				<string>F978E7D9EE163EF3E08525B1</string>
-				<string>5AC6EE5B7365632532DF9DB5</string>
-				<string>C8FD3776765F96E5B1CAD950</string>
-				<string>A58F87A9B6D0B425C931384B</string>
-				<string>A9805591C68501A81714A399</string>
-				<string>65971FB333058FB6AC0D1F8F</string>
-				<string>8AD72395996C333C79309F9D</string>
-				<string>C5C31E10B791A59C03811FF1</string>
-				<string>008340097D0BE4A048E86B86</string>
-				<string>F973CE802397B117E2CF43B8</string>
-				<string>41C76D3FE9BC47637DED5CDE</string>
-				<string>CD578844906390B6BB470CB9</string>
-				<string>1749A001B794EB90075AB4DE</string>
-				<string>3DE6305BD7A3467554E3761A</string>
-				<string>E70C13DC2788AE837C8763D1</string>
-				<string>8ED9074DC03EBED358238D55</string>
-				<string>21099190FA751DE9ECCF6038</string>
-				<string>A8B15C5EDAD898129263979A</string>
-				<string>77BD06D866C5DFFE7918214A</string>
-				<string>26767A7F172EDCD408F95507</string>
-				<string>4627396DB44282A4E3EDDA70</string>
-				<string>1B1D81ECD72B264242E6EFDB</string>
-				<string>2A658A8080DC3DE952E38C18</string>
-				<string>5E6A32F678C508478F1E551D</string>
-				<string>21B90117F971A7B20A1CF653</string>
-				<string>C29646A41BED8580ED8CD1AF</string>
-				<string>DB11B2553A88A34E941C03B1</string>
-				<string>831C5EB71B797C592FFE5726</string>
-				<string>C730EA10F6B99040F207E9D4</string>
-				<string>B585BE4615E2AD5C8430226E</string>
-				<string>E8C2B2DA067A7CB92256FA9B</string>
-				<string>089B10F9184930C487DA372B</string>
-				<string>477A00F3406F91881B3A52C1</string>
-				<string>0BD1F15EA9E37E794274C4C6</string>
-				<string>D956925C1B6710D96C7A5624</string>
-				<string>640165417CDB0BC1CC398E15</string>
-				<string>06B0153C30E7B03B6E7F9CD5</string>
-				<string>347B4E6E6F78D92D5349AEA8</string>
-				<string>AB19B24A8AE877DBE20FE7D5</string>
-				<string>87FABC286705B298558FB92D</string>
-				<string>ABEA5CDEAAE4D2AD657F534D</string>
-				<string>89F2226343E1DDD80EC4FE03</string>
-				<string>4CBC3CB3BEC92A99B6E50C75</string>
-				<string>5BDD7C43A14E861EE282DE73</string>
-				<string>37C20332908E95AF47726F28</string>
-				<string>F9E9CBB99C7EC8B787B44355</string>
-				<string>C786CFC2F02E60FACE3D7828</string>
-				<string>FA163360AF2A7AF7A9582146</string>
-				<string>9001F14AB338113F598087D0</string>
-				<string>D7BF8A0AC278F81DB34A2445</string>
-				<string>C68806BFCDCADED1583F7D02</string>
-				<string>FEBFF776901D11CC0BE1656E</string>
-				<string>0E455B28FC7F657E30BE1C7D</string>
-				<string>B4BB4D68927D5944369C09F0</string>
-				<string>C0C37E9C4E6296E474CA119E</string>
-				<string>E3DEC05211ECFC05CD100F9B</string>
-				<string>4F07956C4361820E040248F2</string>
-				<string>BAAE3717938AA63A71F509FD</string>
-				<string>0BF7FA6C1C235F6CCFBAFB5C</string>
-				<string>592FC20A062EFA9F8B903A1C</string>
-				<string>78C695EEFAB9F8E82AC4FB7C</string>
-				<string>40B2EC8FC8AEDA1470CB363D</string>
-				<string>41003D4846C5B10ED053DC4C</string>
-				<string>0B4536158B6E2C5AF05B92E3</string>
-				<string>3E97C07DC01EDEC2FA2C818C</string>
-				<string>622ED1911A318732B26E196B</string>
-				<string>13259FE8947D9CCF46354A3C</string>
-				<string>A8B0058FA8600EBC190AC0C1</string>
-				<string>567073DD0687ABBECBC51F4F</string>
-				<string>545BFCB62361D98CD916165A</string>
-				<string>52A0D2D189DD30AD3B1F4BD0</string>
-				<string>ED707F407E7F124D0D7B6A09</string>
-				<string>7B2CC7A9FF6A85E4C20FF971</string>
-				<string>B87BC18FFBE23E84D2491ECF</string>
-				<string>74E23B622D97F1FC838C109F</string>
-				<string>727EDFD4F05E468B079088D7</string>
-				<string>B7B1804F55E90BCA57DDA6C1</string>
-				<string>ECC4A8B64D607946277B1655</string>
-				<string>489C2AB6EF0F9D6CF7A0969D</string>
-				<string>F64EB18BE55590DAEC480DC8</string>
-				<string>C3702A2AD3C1B547F077B11D</string>
-				<string>F68B0726CA238CDFE0711EBE</string>
-				<string>8359D1B2EF954827F01EAAAD</string>
-				<string>B7A88F69228CBDE4FCBD61B6</string>
-				<string>6C262C4C1E04BFD9A378EB42</string>
-				<string>5453C70CB84737CE84A83585</string>
-				<string>BA986944474FFA6A1E01A2A3</string>
-				<string>816772F8253EB95CC7B38AE8</string>
-				<string>56C7A95BEEBEE97559C88B9F</string>
-				<string>30D53E6A101CCFE5C85CD6BE</string>
-				<string>2023AE3B1DDD58ED7FB7F6CD</string>
-				<string>E65C5806EEB59892F1038AED</string>
-				<string>4A65A5F10314784068241062</string>
-				<string>2E8BF9690BABD3BE03905508</string>
-				<string>D43F73B84D5FE0CE65C485F8</string>
-				<string>789410F4F037AB5E3F457507</string>
-				<string>016A062B325DED502FB66018</string>
-				<string>487DE6FE9D75F70C473CF000</string>
-				<string>FCD7BC4C67B084ACF9B45849</string>
-				<string>819C6C98F878B153B96962BA</string>
-				<string>5F0B3320FA30E288F9604F71</string>
-				<string>289C85FB4A7A85937CE201CB</string>
-				<string>A3BBA46E564544113DC90245</string>
-				<string>394ED2B7C25213042544D585</string>
-				<string>B8C14C0BA71068FDBA6E7A47</string>
-				<string>3C298D1E5DA43BFF69032B4D</string>
-				<string>8CDDE00C6F3075F7F5B5BF00</string>
-				<string>4AC447F615633382E6317751</string>
-				<string>8DD5F0FE1AB891A569BA4CCA</string>
-				<string>0B34CF00B6F4EECDD88BDBEE</string>
-				<string>77BC8B9442CB6DAB389BEDE6</string>
-				<string>FC01BA1725BEE2C4022CDF14</string>
-				<string>68CB6A2ECB8BF65CFFCB3B72</string>
-				<string>EDF353C0F6EB2CFC4685F8D8</string>
-				<string>29D14A8A377808181BC1222F</string>
-				<string>4A02341D276ECEBF5CDB3AB7</string>
-				<string>0A803E8124C3FF9452A50D17</string>
-				<string>D7BF1CCAFDAB3091719BA7B5</string>
-				<string>9265E4744047BF8406063EF0</string>
-				<string>FF6E8B145B5B023F9A1239F3</string>
-				<string>CAC8D781D93FED36F2E8089C</string>
-				<string>67BF62F188594FEB75199F01</string>
-				<string>69FCE575868D69563C63A0F7</string>
-				<string>F5BE1CCF93932868B03CD36D</string>
-				<string>84639C670D87B1605CDF6825</string>
-				<string>1857FE53D4A8339FFA4F7AC4</string>
-				<string>50576DD5CB99957AC87E56EB</string>
-				<string>F9455772A3E6654BA3B9C466</string>
-				<string>336666BA7A5C7F6E426E0DEB</string>
-				<string>58EC573888A4167DAE642669</string>
-				<string>6326CE0F0D42F39D6E5D0B14</string>
-				<string>4A9A5B5B13000DD79C871054</string>
-				<string>4F5F975D23B39E37939FAF1B</string>
-			</array>
-			<key>isa</key>
-			<string>PBXSourcesBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>3B35F0FC1E95A1782F4B63AF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B51324FB9685E791FBF732E6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3B3AA1BA6036387228B68A8A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FFA26A980DF5CC0503459576</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>3B3BE2C143B978EBE7360287</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BA56A2199AF8BC3D12FC302B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3B46D720BC96472A94497EC1</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>json_writer.h</string>
-			<key>path</key>
-			<string>src/core/json/json_writer.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>3B6F380C78A39C32D27BCEA4</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>path</key>
-			<string>Pods.release.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>3B7551FF2E890E0288CCFF7E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>obj_mac.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/obj_mac.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>3B9AD412CB7F41DE126A69C9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A24CCE81E4BD7EB9EC4EE049</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3BB654F4AE9F9A5DD238C500</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F19A4D16767373F7873F5B73</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3BCA10344A141BA8E069DF24</key>
-		<dict>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>CLANG_CXX_LANGUAGE_STANDARD</key>
-				<string>gnu++0x</string>
-				<key>CLANG_CXX_LIBRARY</key>
-				<string>libc++</string>
-				<key>CLANG_ENABLE_MODULES</key>
-				<string>YES</string>
-				<key>CLANG_ENABLE_OBJC_ARC</key>
-				<string>YES</string>
-				<key>CLANG_WARN_BOOL_CONVERSION</key>
-				<string>YES</string>
-				<key>CLANG_WARN_CONSTANT_CONVERSION</key>
-				<string>YES</string>
-				<key>CLANG_WARN_DIRECT_OBJC_ISA_USAGE</key>
-				<string>YES</string>
-				<key>CLANG_WARN_EMPTY_BODY</key>
-				<string>YES</string>
-				<key>CLANG_WARN_ENUM_CONVERSION</key>
-				<string>YES</string>
-				<key>CLANG_WARN_INT_CONVERSION</key>
-				<string>YES</string>
-				<key>CLANG_WARN_OBJC_ROOT_CLASS</key>
-				<string>YES</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>YES</string>
-				<key>GCC_C_LANGUAGE_STANDARD</key>
-				<string>gnu99</string>
-				<key>GCC_DYNAMIC_NO_PIC</key>
-				<string>NO</string>
-				<key>GCC_OPTIMIZATION_LEVEL</key>
-				<string>0</string>
-				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
-				<array>
-					<string>DEBUG=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
-				<string>NO</string>
-				<key>GCC_WARN_64_TO_32_BIT_CONVERSION</key>
-				<string>YES</string>
-				<key>GCC_WARN_ABOUT_RETURN_TYPE</key>
-				<string>YES</string>
-				<key>GCC_WARN_UNDECLARED_SELECTOR</key>
-				<string>YES</string>
-				<key>GCC_WARN_UNINITIALIZED_AUTOS</key>
-				<string>YES</string>
-				<key>GCC_WARN_UNUSED_FUNCTION</key>
-				<string>YES</string>
-				<key>GCC_WARN_UNUSED_VARIABLE</key>
-				<string>YES</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>ONLY_ACTIVE_ARCH</key>
-				<string>YES</string>
-				<key>STRIP_INSTALLED_PRODUCT</key>
-				<string>NO</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Debug</string>
-		</dict>
-		<key>3BE528956BA4883697F93997</key>
-		<dict>
-			<key>fileRef</key>
-			<string>989BDFD334A0E7681EB229F9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>3BED337CF586AD476974B023</key>
-		<dict>
-			<key>fileRef</key>
-			<string>65B68FCD018081F1D1049DC7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>3C298D1E5DA43BFF69032B4D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EF4C604AF8DFD93892271C18</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>3C6AE9EB25ACEE5EE96E66C2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C5610466549D4B577E63E392</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3C744A856D8C9D47E022CFFD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>668E37E4D791102E499585F9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3C7DB74CF303976E9EA2A26D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8A3FFA359AAF23E5D40C4625</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3C8E80ECBBB1553D4B3ECAD4</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>bn.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/bn.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>3CA38C9500AC04DE0482CFDC</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>hpack_parser.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/hpack_parser.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>3CF197D7191B811EBD6F51BF</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>name</key>
-			<string>Pods-SampleTests-RxLibrary.xcconfig</string>
-			<key>path</key>
-			<string>../Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>3D1F28965FAB5FCF104F8E82</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>frame_settings.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/frame_settings.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>3D6478130E0E220A851B312F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>grpc.h</string>
-			<key>path</key>
-			<string>include/grpc/grpc.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>3D761DFB0128E72F50E4B1BD</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>stream_encoder.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/stream_encoder.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>3DE6305BD7A3467554E3761A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>672235DED2FD80A0C49993C9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>3E029E36BBB2AE32AAE5FF44</key>
-		<dict>
-			<key>containerPortal</key>
-			<string>EF6CCB5D3B9A6AAB7B6B4A70</string>
-			<key>isa</key>
-			<string>PBXContainerItemProxy</string>
-			<key>proxyType</key>
-			<string>1</string>
-			<key>remoteGlobalIDString</key>
-			<string>DA05884BD9CA260488B8A356</string>
-			<key>remoteInfo</key>
-			<string>Pods-OpenSSL</string>
-		</dict>
-		<key>3E27E706F7D0931BC65E45BA</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>json_token.c</string>
-			<key>path</key>
-			<string>src/core/security/json_token.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>3E29735ACDA33E3316F68BEF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AC16D2F576455F6505380390</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3E5C42E09441B31D1157E2F6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C8F8CA2778AFCC4F7C705215</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3E7BCFC8E8B501FC5B0383F6</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>rc4.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/rc4.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>3E97C07DC01EDEC2FA2C818C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D07B947A06B7CDA82DF5378C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>3F2A075199D540127B67DFAB</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>GRPCChannel.m</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/private/GRPCChannel.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>3F32E233D900771E0882C48C</key>
-		<dict>
-			<key>explicitFileType</key>
-			<string>archive.ar</string>
-			<key>includeInIndex</key>
-			<string>0</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>path</key>
-			<string>libPods-SampleTests-RxLibrary.a</string>
-			<key>sourceTree</key>
-			<string>BUILT_PRODUCTS_DIR</string>
-		</dict>
-		<key>3F40A43637069556DC7FE0F4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>ABABD0CDFD3E41EE2E942D9D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3F56E210459D0BD2701A533D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E5E3D8FF89E386FE61A3887F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3F67AD5506C3AB2531E4FAED</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1512227359DF5CFD75AB6137</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>3F74B85FE6446BBA2CD730F0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AC75EBB38A56E3D30CB0627B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3F95DA2B90D8CEDFB0373C06</key>
-		<dict>
-			<key>fileRef</key>
-			<string>295A13EFB64D8765156FB0C7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>3FB5B08828F98A04D14E8D23</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AF8EC9542851957B39CCBBCD</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>3FEB3FA79FEE72F49495FA8E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C4403E8EC433DE1BD059DFD9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>3FF59718D8279E1EFBC613A8</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>transport_impl.h</string>
-			<key>path</key>
-			<string>src/core/transport/transport_impl.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>40038AA5508AF842FFDDC3BC</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>ripemd.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/ripemd.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>40224B1A39EC60B459B1469E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C18F1E7E303D6620D67D711A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>40B2EC8FC8AEDA1470CB363D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3E27E706F7D0931BC65E45BA</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>41003D4846C5B10ED053DC4C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>29B23B095A7B729F93AD45D5</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>41296DD9C638F26070B35F62</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E3E4C05ADDDB4242AD752A04</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>414115116BCB5AF86B921B18</key>
-		<dict>
-			<key>isa</key>
-			<string>PBXTargetDependency</string>
-			<key>name</key>
-			<string>Pods-gRPC</string>
-			<key>target</key>
-			<string>CF7B8538119C9381CEE1CB4E</string>
-			<key>targetProxy</key>
-			<string>BFD9F07A07691C64A2DFA99E</string>
-		</dict>
-		<key>4162D63ED358ABEA4101E734</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>tcp_windows.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/tcp_windows.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4176DD3B43920D4963F9BEAF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>26D71D13BCCCE8C95C4A4AD2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>41A8F9F43669ADEBC39BE513</key>
-		<dict>
-			<key>fileRef</key>
-			<string>11F28F9FB55AE05B71E8C7D4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>41C76D3FE9BC47637DED5CDE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8A30A080A65CA525F242B11D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>41C9A5865D9D869C46648BD2</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>log.h</string>
-			<key>path</key>
-			<string>include/grpc/support/log.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>41D6177A52EDB173FAF337F0</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>pollset_posix.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/pollset_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4212A0092BB53EFCB9976A7C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>99CFB370C1B8272A5232E251</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4269DCBB8D35531E1E698A9D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>49E325B5F444ECFC9724C969</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>426B8FA69F7F8DC09EC303BF</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>security_context.c</string>
-			<key>path</key>
-			<string>src/core/security/security_context.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4280283570E4D7D0CA98B849</key>
-		<dict>
-			<key>fileRef</key>
-			<string>87351743F2826AD6D5FF3269</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>42D28E8888B821027543512C</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>F2CDBC4114F494739221E5A5</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>NO</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_DYNAMIC_NO_PIC</key>
-				<string>NO</string>
-				<key>GCC_OPTIMIZATION_LEVEL</key>
-				<string>0</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-Sample-gRPC/Pods-Sample-gRPC-prefix.pch</string>
-				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
-				<array>
-					<string>DEBUG=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
-				<string>NO</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Debug</string>
-		</dict>
-		<key>42D2E844EAA078AEB5EE22D4</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>Pods-SampleTests-gRPC-dummy.m</string>
-			<key>path</key>
-			<string>../Pods-SampleTests-gRPC/Pods-SampleTests-gRPC-dummy.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>42D91B850D56169824BFA0B1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C95F1381DCB9456BD725D0ED</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>42E0E0E0F6E9E32B7E5F648E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D356DE374B525E41FE09BB18</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>4309D58C95BD00159D83EAF0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1BD452BBED63DFB3CBAE94E8</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>43219C6F459E3CDDA432F09A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8660BD5D9AD30CEE8070E879</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>4371CED1B1505B58D0DD40B6</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>asn1_mac.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/asn1_mac.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4374BD1EC64A9E643CCE6853</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F6AA0415A2165CA301FBDED7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4415C474C50A2855E6C5A15D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>29B23B095A7B729F93AD45D5</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>4418D2691A2D98931DE90DA9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3E27E706F7D0931BC65E45BA</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>4458DA3DF9B7A626495E26DC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9E31EA7FB9DCBDEB4A07DC3A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>445BD3199F9DF54D603082D2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4FD344A4C37F355D47A7FFFE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>445F99674FF46534A8E3775A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>34055CA9C85022326ED1CECE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>44710470DD111C15AC809782</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>ec.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/ec.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>44F69D97A9658B3BFB97FCEB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2986E2FF3687B7B130FE0BDC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>451541B815BDBB7A51B8B558</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>GRPCCompletionQueue.m</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/private/GRPCCompletionQueue.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4538D9BC82E1FAD9856E0143</key>
-		<dict>
-			<key>containerPortal</key>
-			<string>EF6CCB5D3B9A6AAB7B6B4A70</string>
-			<key>isa</key>
-			<string>PBXContainerItemProxy</string>
-			<key>proxyType</key>
-			<string>1</string>
-			<key>remoteGlobalIDString</key>
-			<string>D6D07C30809CD707CC0BF7A3</string>
-			<key>remoteInfo</key>
-			<string>Pods-Sample-RxLibrary</string>
-		</dict>
-		<key>4550EEC9CAC8DFC6E1702BF8</key>
-		<dict>
-			<key>buildConfigurations</key>
-			<array>
-				<string>3BCA10344A141BA8E069DF24</string>
-				<string>23485D13BF0AEEA27E09F3F9</string>
-			</array>
-			<key>defaultConfigurationIsVisible</key>
-			<string>0</string>
-			<key>defaultConfigurationName</key>
-			<string>Release</string>
-			<key>isa</key>
-			<string>XCConfigurationList</string>
-		</dict>
-		<key>4579FAC6DD2648BA6504C215</key>
-		<dict>
-			<key>explicitFileType</key>
-			<string>archive.ar</string>
-			<key>includeInIndex</key>
-			<string>0</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>path</key>
-			<string>libPods-SampleTests-gRPC.a</string>
-			<key>sourceTree</key>
-			<string>BUILT_PRODUCTS_DIR</string>
-		</dict>
-		<key>45912D1B68C3F12769762AA2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F8F69793DCC04A79F99DDB6C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>45D73912F742D47D3A69CDB2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7DBE0B39468165252F95191A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>45E39EDF821105443B17773E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DEC0127013FF7E2BE404F94A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>45E895967C7477C1144B5514</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>EBFDDA03D21778DBE9E91909</string>
-			</array>
-			<key>isa</key>
-			<string>PBXFrameworksBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>45F1A968A402A40A2F1EB6BF</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>387FEEC6D92C0E1CE9E0D224</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>NO</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_DYNAMIC_NO_PIC</key>
-				<string>NO</string>
-				<key>GCC_OPTIMIZATION_LEVEL</key>
-				<string>0</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-SampleTests-gRPC/Pods-SampleTests-gRPC-prefix.pch</string>
-				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
-				<array>
-					<string>DEBUG=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
-				<string>NO</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Debug</string>
-		</dict>
-		<key>462259396D76315E55627A91</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BD14D76A2B42BF6F3C7901D9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4627396DB44282A4E3EDDA70</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DCB800C7DFD5A06206FBBD1E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>46678974D7A8EA0CA9C91153</key>
-		<dict>
-			<key>explicitFileType</key>
-			<string>archive.ar</string>
-			<key>includeInIndex</key>
-			<string>0</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>path</key>
-			<string>libPods-OpenSSL.a</string>
-			<key>sourceTree</key>
-			<string>BUILT_PRODUCTS_DIR</string>
-		</dict>
-		<key>4689EA5BBF79218E1F2D9AED</key>
-		<dict>
-			<key>fileRef</key>
-			<string>672235DED2FD80A0C49993C9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>468F4C717231E3411BB18BEF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3D1F28965FAB5FCF104F8E82</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>469571A6093FE7D82CF45380</key>
-		<dict>
-			<key>explicitFileType</key>
-			<string>archive.ar</string>
-			<key>includeInIndex</key>
-			<string>0</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>path</key>
-			<string>libPods-SampleTests-OpenSSL.a</string>
-			<key>sourceTree</key>
-			<string>BUILT_PRODUCTS_DIR</string>
-		</dict>
-		<key>46B78A6F01667D7B0FC98E17</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>server_secure_chttp2.c</string>
-			<key>path</key>
-			<string>src/core/security/server_secure_chttp2.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>46B8E9F1A81F523E07C7F6A1</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>md5.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/md5.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>46BB228586778F08C3205E0C</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>init_secure.c</string>
-			<key>path</key>
-			<string>src/core/surface/init_secure.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>46C2B7DEC51D57D29D5A4126</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>secure_transport_setup.c</string>
-			<key>path</key>
-			<string>src/core/security/secure_transport_setup.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>46CA1F0737ACC82A5C6142D4</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>path</key>
-			<string>Pods-OpenSSL-dummy.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>46FAF51D64801E7D472BB776</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>des.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/des.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4702C8E3584F37AAB90254B2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7759BCE23EB7ACAF13F435C6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>470BE752EF0C32D3AC691DB4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>74BD7D89488C19B0692A54E1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>47188AB9C1A1FDA387FFED43</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9A5061527A8C5EE35E2E4810</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4720F26A57F112A3C1EC2AC1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>758610F4F170AD69EC353CA2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>47237B827DD7403D472237E4</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>credentials.h</string>
-			<key>path</key>
-			<string>src/core/security/credentials.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4724227D569E13AD75A3CD5A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8B16C4C6B750EBDB84D4250A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4770785DE2B0A867254E6354</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DFF8522D6E79FA378B09E2AF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>47761D2AAD51AFCEAA49E81A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>65B68FCD018081F1D1049DC7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>477A00F3406F91881B3A52C1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6E38DAB56A2F2AF3D32AF55F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>47E182731BB4B55C334FF4A1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E975EBE61BC4688C5F7036F7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>482ADAB78B711B277BFFF6AB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>46B8E9F1A81F523E07C7F6A1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>482CEB489ABA2F2345752A59</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>message_compress.h</string>
-			<key>path</key>
-			<string>src/core/compression/message_compress.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>483C551FEF24EEB614E9985E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E8C8EF12A80456AFEBA0C4CE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>484605C45AF3DEFF8C53B5D8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>236820A24949666DC4BEFCE9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>487DE6FE9D75F70C473CF000</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7F872E2EAC068C8108225651</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>488E803F161FDDE56CE60C88</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3B46D720BC96472A94497EC1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>489B0B19CE387A2571193370</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F3412D255B723D85AD5CA754</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>489B5F63F67ADBFADBBB7541</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FE8EAD42A7475EFCBFB8BA06</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>489C042EE5EE716A215D0865</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F6AA0415A2165CA301FBDED7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>489C2AB6EF0F9D6CF7A0969D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0CE368F81A14F550EB5D707F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>489F0D55D989FF0182A5A117</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B8DF9068117725B6C1CEE497</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4913B127B0F2095A8574E697</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C4371E31941BEFC099C5276B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>4970427BF3C64B397D861394</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4BDF1EE4E7927550DFBAACA3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>49736C3F860A3039E077337E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8A8A433981E87901C5F6A698</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>49E325B5F444ECFC9724C969</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>metadata.h</string>
-			<key>path</key>
-			<string>src/core/transport/metadata.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>49E559F46D300D059E54AE07</key>
-		<dict>
-			<key>fileRef</key>
-			<string>96FA40B0A24DFD1A977EA48C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>49EC1FF918F97DC07B0C6516</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>FFBDA56CD6FADE996A409346</string>
-				<string>87351743F2826AD6D5FF3269</string>
-				<string>12A345A0CFED500F6B775287</string>
-				<string>3F2A075199D540127B67DFAB</string>
-				<string>94DBACF5F8646DE3687EA89D</string>
-				<string>451541B815BDBB7A51B8B558</string>
-				<string>B457AA86A4E8558B26ABE2A2</string>
-				<string>236820A24949666DC4BEFCE9</string>
-				<string>894D1EE01C658C3F8033DCAF</string>
-				<string>9280D9C818A79AD66D50A7F0</string>
-				<string>F5CD4D631C142B46A08A6581</string>
-				<string>69067E0159C82E4500EDD649</string>
-				<string>AC75EBB38A56E3D30CB0627B</string>
-				<string>508860F9FE4C6C81958EAFEF</string>
-				<string>817E0434460DA6B1BC731476</string>
-				<string>2D404DC9121BDE0D46D9C311</string>
-				<string>965B77D271A8DA40952B05FB</string>
-				<string>B39BAAB2D5DD2BF6802CCAF1</string>
-				<string>5AB9C591F017338028EE2093</string>
-				<string>B50D70064A0015E3665DE395</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>name</key>
-			<string>gRPC</string>
-			<key>path</key>
-			<string>../../../../..</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4A02341D276ECEBF5CDB3AB7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CF1D573AD05F34862B43C0E7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>4A33FF2DC647B5741A56889F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>46BB228586778F08C3205E0C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>4A3484A247E92D1547267FCA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>16B2EB8CF6E0DC64AAE6362D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4A594D1939C7AD71889FFD1D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>varint.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/varint.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4A65A5F10314784068241062</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D6EB9981606955226C03A02F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>4A9A5B5B13000DD79C871054</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E79FE1F6E53A6A4575BE1B88</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>4AC447F615633382E6317751</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D9E90FC23D314C3938387079</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>4AD65E679D1FDC38CCBD08F2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CA63389D5D8D9AF7044B1551</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4B370D7822739445ED511CD7</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>status_conversion.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/status_conversion.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4B73BE20BE7672DF7E75396A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>297EA9EEF986275291E56ED5</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4B7DBC727C64A8B276EE9B57</key>
-		<dict>
-			<key>fileRef</key>
-			<string>46B8E9F1A81F523E07C7F6A1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4BA4DA67CF58A65DCC85F5BA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7F396A61A4C14A1C90DCC003</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>4BA7D4DD0077A316187A4FCD</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>iomgr_internal.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/iomgr_internal.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4BDF1EE4E7927550DFBAACA3</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>gen_hpack_tables.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/gen_hpack_tables.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4BE32A90AB71DC9EB5A30CDE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F40D9B7EE9C803659F6B0F74</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4BED3946EC8B30746EDB3C17</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>iomgr_windows.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/iomgr_windows.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4BF420C2743CC6CA325EA4BA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3770360C7C4E24EF561EDD00</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>4C3B75A5C1D65AB011B20958</key>
-		<dict>
-			<key>fileRef</key>
-			<string>121F10D93715525604FDCE38</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>4C3D736DF745D1B78D068BF1</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>host_port.c</string>
-			<key>path</key>
-			<string>src/core/support/host_port.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4C78221278F53FA315CE62B4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>88D67EC37DF042B27D94365E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4C8990A586F5092024104FFA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>41C9A5865D9D869C46648BD2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4CACC2BF389CB649D3D4D329</key>
-		<dict>
-			<key>fileRef</key>
-			<string>41C9A5865D9D869C46648BD2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4CB9BFC0250B14B1787F6169</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CAA36CDC6768501E59664D2C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>4CBC3CB3BEC92A99B6E50C75</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4C3D736DF745D1B78D068BF1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>4CBE9D1FEE4A0B6614579FED</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>frame_ping.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/frame_ping.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4CF49E5FB787766D78AB97A6</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>tcp_client.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/tcp_client.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4CF933A2460B0F60700E893D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1FD181F59ABA234B38392084</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4D5F69A5F499ADA629DB6A82</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>noop_filter.h</string>
-			<key>path</key>
-			<string>src/core/channel/noop_filter.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4D8116104EC4ABC71E2F70B1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3C8E80ECBBB1553D4B3ECAD4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4DA1AAF7DAFC3C6E67C481AA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>52670463AE07C6E94650D891</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4DBEB3554098CDC806278A56</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A24D9C9B0A3B1531053B1316</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4E03959DC12A722C981103D6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DB0C66D2A5F00157E328075E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4E5D433C426169F69B7AB02C</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>path</key>
-			<string>Pods-Sample-gRPC-prefix.pch</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4E994676D533E9CC25F4518E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>connected_channel.c</string>
-			<key>path</key>
-			<string>src/core/channel/connected_channel.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4EC5137EB2D52417F110AE61</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>tcp_client_windows.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/tcp_client_windows.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4ECE160278CDC6A04729C160</key>
-		<dict>
-			<key>fileRef</key>
-			<string>ECE467216AE94759184A54C8</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4EF633BD20E4E82C86DC8733</key>
-		<dict>
-			<key>isa</key>
-			<string>PBXTargetDependency</string>
-			<key>name</key>
-			<string>Pods-SampleTests-RxLibrary</string>
-			<key>target</key>
-			<string>019EC915480E3C1C93519A28</string>
-			<key>targetProxy</key>
-			<string>7806638A34EE76510ADF9299</string>
-		</dict>
-		<key>4F07956C4361820E040248F2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>811E3F932053EA8B786904ED</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>4F0EA7D5816F204F93703766</key>
-		<dict>
-			<key>fileRef</key>
-			<string>11F28F9FB55AE05B71E8C7D4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4F1662B8333A489ED09E9F10</key>
-		<dict>
-			<key>fileRef</key>
-			<string>689564C2E5A29FF77AF4FD64</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4F5F975D23B39E37939FAF1B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>105D0D1A5490A2C376632C23</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>4F800A6D1CE4AB69BE8065B0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AF8EC9542851957B39CCBBCD</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4F90D0AFF745DCF57FABD55D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>format_request.h</string>
-			<key>path</key>
-			<string>src/core/httpcli/format_request.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>4FC27A8C04B2E73406AAA087</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F21D1B56522DBE967A41A000</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4FD344A4C37F355D47A7FFFE</key>
-		<dict>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>wrapper.framework</string>
-			<key>name</key>
-			<string>Foundation.framework</string>
-			<key>path</key>
-			<string>Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Foundation.framework</string>
-			<key>sourceTree</key>
-			<string>DEVELOPER_DIR</string>
-		</dict>
-		<key>4FD6A69BBB883AC50D80AD4B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>26D5A00C5D363C2B88EB6022</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>4FE5240752E470D1C9E6BE02</key>
-		<dict>
-			<key>buildConfigurations</key>
-			<array>
-				<string>D9347248FC3DF84931AF8B36</string>
-				<string>C1E9A6CD5E97856C5AE4477E</string>
-			</array>
-			<key>defaultConfigurationIsVisible</key>
-			<string>0</string>
-			<key>defaultConfigurationName</key>
-			<string>Release</string>
-			<key>isa</key>
-			<string>XCConfigurationList</string>
-		</dict>
-		<key>500AE03C874D997750B5836E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>ui_compat.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/ui_compat.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>501094B8BCD7F5D827ACDEFD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>36DC5DBBA81F58CBC6F12B69</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5021EB34D6F211573438FDCA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D66C9178A237F3206AC28994</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>5051443D7B4C41C9E00D50B4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>762E15359B5ACE886246F496</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>50576DD5CB99957AC87E56EB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>989BDFD334A0E7681EB229F9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>505EF5C28FC4D79E2AAD6CC0</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>9E8D16D535C5AF31871580C4</string>
-				<string>2A7DCCF5AECC50D87DCD8FDE</string>
-				<string>56069C020DE31BF58FC3A0DE</string>
-				<string>45E39EDF821105443B17773E</string>
-				<string>5CD16099D5458FC8084DCDB7</string>
-				<string>D6BF25300F17FB13B1F5D6C7</string>
-				<string>8861AC9195B9A0AE8BE02F53</string>
-				<string>A357F4C4B1A7C80AB2AAEA16</string>
-				<string>CE5DDE8010917A49C309D55E</string>
-				<string>4F800A6D1CE4AB69BE8065B0</string>
-			</array>
-			<key>isa</key>
-			<string>PBXHeadersBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>508860F9FE4C6C81958EAFEF</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>NSData+GRPC.m</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/private/NSData+GRPC.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>50B4F4277CD01BF58FF97E36</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>socket_utils_linux.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/socket_utils_linux.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>50DDC3080AB5C6E43FF75FA6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>5CEAAE8ACC2208053633633F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>50F00E6C4C2A1F5D3D6380C1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>648AF9A08A47AF20C52B8B4F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>511BF4B6B736572A3BFC20CD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FE598A1FD58F4A066AD65636</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>512E7BB911E7896D88034ED9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4FD344A4C37F355D47A7FFFE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>512EA6C1235EE98940728B6C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4162D63ED358ABEA4101E734</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>513238AC2EAC27D0195BD944</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B76388DAE36733682FF681AB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>513BB0CCB933788054B076A7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>41C9A5865D9D869C46648BD2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5178199C95874904FB00D5C1</key>
-		<dict>
-			<key>buildConfigurationList</key>
-			<string>5E19A600B1B68EAF6F4E726F</string>
-			<key>buildPhases</key>
-			<array>
-				<string>2E8C09CD7F0F24C765114522</string>
-				<string>FF45FA8C70ECA06C36B3A958</string>
-				<string>505EF5C28FC4D79E2AAD6CC0</string>
-			</array>
-			<key>buildRules</key>
-			<array/>
-			<key>dependencies</key>
-			<array/>
-			<key>isa</key>
-			<string>PBXNativeTarget</string>
-			<key>name</key>
-			<string>Pods-RxLibrary</string>
-			<key>productName</key>
-			<string>Pods-RxLibrary</string>
-			<key>productReference</key>
-			<string>ED6EBFCF9B5856C8295B2621</string>
-			<key>productType</key>
-			<string>com.apple.product-type.library.static</string>
-		</dict>
-		<key>51901361A740E9CC8FF7D862</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DEDFB50008BE43CBB3004B50</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>51BD382C1AE557C5AA76B332</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CD41AAD795A3857E29F6D065</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>51DA84AAC8731914040A7D12</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C33E2C3577461F009B35036F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5204DC7E570D6FAEC8284472</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>8518B5790A7605D761CDBF5F</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>YES</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary-prefix.pch</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_CFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_CPLUSPLUSFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-				<key>VALIDATE_PRODUCT</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Release</string>
-		</dict>
-		<key>52670463AE07C6E94650D891</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>http_client_filter.h</string>
-			<key>path</key>
-			<string>src/core/channel/http_client_filter.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>5288C6D220DB80AEBBFC6F77</key>
-		<dict>
-			<key>buildConfigurations</key>
-			<array>
-				<string>42D28E8888B821027543512C</string>
-				<string>DBB02942DC6D425BCF4EA482</string>
-			</array>
-			<key>defaultConfigurationIsVisible</key>
-			<string>0</string>
-			<key>defaultConfigurationName</key>
-			<string>Release</string>
-			<key>isa</key>
-			<string>XCConfigurationList</string>
-		</dict>
-		<key>52A0D2D189DD30AD3B1F4BD0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2C1D7C1261DB41B444560176</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>52A95DAC511A564FAE9CB4A1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>07CC03DD8D351A9A1476B417</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>532313D0D1293BE59BB1DF49</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>path</key>
-			<string>Pods-Sample-dummy.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>533F1E05CFFF91CF7B87858D</key>
-		<dict>
-			<key>isa</key>
-			<string>PBXTargetDependency</string>
-			<key>name</key>
-			<string>Pods-Sample-OpenSSL</string>
-			<key>target</key>
-			<string>B65DE04C9C73EB40B0BAD0A4</string>
-			<key>targetProxy</key>
-			<string>D440E97BEE15C83278F0BD54</string>
-		</dict>
-		<key>53E32C79D5CFB75084D47BFB</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>0FD1A9172DA559C9C3D28C67</string>
-			</array>
-			<key>isa</key>
-			<string>PBXFrameworksBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>53E5785D6807251EFBFD5B4D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>49E325B5F444ECFC9724C969</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>53F2B39341D67369164993AB</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>name</key>
-			<string>Pods-Sample-RxLibrary.xcconfig</string>
-			<key>path</key>
-			<string>../Pods-Sample-RxLibrary/Pods-Sample-RxLibrary.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>5453C70CB84737CE84A83585</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B1F6D3CD27B150EC2197A151</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>5454389A44BDD445AC71C9C9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3D761DFB0128E72F50E4B1BD</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>545BFCB62361D98CD916165A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9207E6F582C115225797A69A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>54648B5657B38A65FB07913A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>06AAA04862A9ADFEE90D756D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5478792C4736C2AD57B9CEBC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3CA38C9500AC04DE0482CFDC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>548E31330CB1A55701776A14</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FFBDA56CD6FADE996A409346</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>54C200B2CFBE6FCFE3154E80</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8A3FFA359AAF23E5D40C4625</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>54D41208DC5E0F2EBDB4A2E7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7F872E2EAC068C8108225651</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>552D563BF45C786797882D69</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9207E6F582C115225797A69A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>5552C6D52A2193572031E18F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BA56A2199AF8BC3D12FC302B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>55A8650CB9AFB5E2CC137D7D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>989BDFD334A0E7681EB229F9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>55C40ECD4A56F0F121C26335</key>
-		<dict>
-			<key>explicitFileType</key>
-			<string>archive.ar</string>
-			<key>includeInIndex</key>
-			<string>0</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>path</key>
-			<string>libPods-Sample-RxLibrary.a</string>
-			<key>sourceTree</key>
-			<string>BUILT_PRODUCTS_DIR</string>
-		</dict>
-		<key>55C507B8C6EF42805867A7CD</key>
-		<dict>
-			<key>buildConfigurations</key>
-			<array>
-				<string>20ADFF84BC9675D23552CE74</string>
-				<string>AC286244342D3C63FF7672B7</string>
-			</array>
-			<key>defaultConfigurationIsVisible</key>
-			<string>0</string>
-			<key>defaultConfigurationName</key>
-			<string>Release</string>
-			<key>isa</key>
-			<string>XCConfigurationList</string>
-		</dict>
-		<key>55DD6D9447E275AED59DD0CF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4F90D0AFF745DCF57FABD55D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>56069C020DE31BF58FC3A0DE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AACA730E78FB3DE204B5B362</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>562C27523097919A0B068266</key>
-		<dict>
-			<key>fileRef</key>
-			<string>44710470DD111C15AC809782</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>567073DD0687ABBECBC51F4F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1AC6D96ECC7AF34B3C524864</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>567ECDE7788B4EB8E8C018AC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4BA7D4DD0077A316187A4FCD</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>56992ABBA02D4488F6EB2153</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>http_client_filter.c</string>
-			<key>path</key>
-			<string>src/core/channel/http_client_filter.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>56BE8CEDDEDDB2B5611E3F7E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>99C1B279E8FFE738C373CE5C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>56C7A95BEEBEE97559C88B9F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6C4E2EB3CDCEED1D6C5709ED</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>5822A294383B44D69AB62D69</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>pkcs12.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/pkcs12.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>587435AC3184C380979FE720</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A7D2AF3763172C0EF4919E3C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>587C02B1B9A75FDB2424955A</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>D62A1CF80C5412356960D509</string>
-				<string>9EA92772E4BE82A404130B11</string>
-				<string>532313D0D1293BE59BB1DF49</string>
-				<string>8175EEF52FD10F82A9B1C3C7</string>
-				<string>7DD1ECB5C561E628787F8B15</string>
-				<string>C3E47797378796C59F443F1A</string>
-				<string>24525C4BBB0AC12A3C992439</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>name</key>
-			<string>Pods-Sample</string>
-			<key>path</key>
-			<string>Target Support Files/Pods-Sample</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>58B662EA4B19ABA90ADBBB6F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>transport.h</string>
-			<key>path</key>
-			<string>src/core/transport/transport.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>58BB3EC98748D4A65D2D4FF0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2D404DC9121BDE0D46D9C311</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>58EC573888A4167DAE642669</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CCF40176486A4BD0A7ACF6E6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>58EE7495552555A9FA26D6EC</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>byte_buffer_queue.c</string>
-			<key>path</key>
-			<string>src/core/surface/byte_buffer_queue.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>58F57C54C6A99CB2DE02F578</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FBECCE6A82E89B6FC889F695</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>590FFA6BE25DD709D27A4073</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3C8E80ECBBB1553D4B3ECAD4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>592AC39AC3FECEB19777C5D6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>28B95C0C2707A55FEC37D8D1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>592C2E4FEB50D9A8D5D5F297</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>resolve_address_windows.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/resolve_address_windows.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>592FC20A062EFA9F8B903A1C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9B54EB6995D92C4AB9DE123E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>5944BF0B7ADCEA63E41CE99E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>94DBACF5F8646DE3687EA89D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>59FF2F9AAFD47BC93ABB2F49</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1532DBB6F8A50EFCA81172A9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5A03933DE26A47D8B2897FF0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4D5F69A5F499ADA629DB6A82</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5A244D6060420351A712F2A2</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>completion_queue.h</string>
-			<key>path</key>
-			<string>src/core/surface/completion_queue.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>5A4783023067EB1DB947294C</key>
-		<dict>
-			<key>isa</key>
-			<string>PBXTargetDependency</string>
-			<key>name</key>
-			<string>Pods-OpenSSL</string>
-			<key>target</key>
-			<string>DA05884BD9CA260488B8A356</string>
-			<key>targetProxy</key>
-			<string>5D07BFB96D6E7931F8432E75</string>
-		</dict>
-		<key>5A56C3B2732B45EEADADAECA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BA56A2199AF8BC3D12FC302B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5AAF7287C65DC7CB9E5619DE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8B16C4C6B750EBDB84D4250A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5AB9C591F017338028EE2093</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>84CA5442DDDC6A90684A830B</string>
-				<string>F3D3988DCB6A896529EE0FBB</string>
-				<string>3A93AAC878F7B1907C695CF4</string>
-				<string>9E2995626A53D35C33A1E880</string>
-				<string>F56A8A024FEFFF1D2B980766</string>
-				<string>CAA36CDC6768501E59664D2C</string>
-				<string>A46D083615082877DD4179DE</string>
-				<string>85D6F5B4AE1B266E2DC5055E</string>
-				<string>36DC5DBBA81F58CBC6F12B69</string>
-				<string>630630C2FEBAB1E0CF581ED9</string>
-				<string>97385E01E0518B4E89D823CE</string>
-				<string>6DADFC4129105CA3F9C35CE2</string>
-				<string>E60F729854F318259F7B413D</string>
-				<string>0E4FAB5750FFE3A2E16B10A4</string>
-				<string>900F3BE96F445E868C426425</string>
-				<string>35834F8EFDF918F766424079</string>
-				<string>F1ACC5FAB761447CA87BC69B</string>
-				<string>BC97B6FB429DB45B267E2154</string>
-				<string>98832F1AA62791BCECA5C960</string>
-				<string>8542018AA6FEDBF4F935FE62</string>
-				<string>6F07874169E0970EC859C33D</string>
-				<string>1A25FE7D9ED5BE32FD124EBC</string>
-				<string>F5EC782889E78C64F5FE925F</string>
-				<string>58EE7495552555A9FA26D6EC</string>
-				<string>FE598A1FD58F4A066AD65636</string>
-				<string>DE4C762B94ADCDEBD4CBCD39</string>
-				<string>9E31EA7FB9DCBDEB4A07DC3A</string>
-				<string>0B1FCC62895AC4E53CD44BA6</string>
-				<string>B51324FB9685E791FBF732E6</string>
-				<string>C4403E8EC433DE1BD059DFD9</string>
-				<string>36B5D06D44B5DEC4A0582942</string>
-				<string>99B287793D41F6BEE8147D5D</string>
-				<string>297EA9EEF986275291E56ED5</string>
-				<string>77B55EEAAE337991A39F497C</string>
-				<string>0BDF06AEFAF554EB6E9F2806</string>
-				<string>09C5C94835C932491C6D797A</string>
-				<string>6B8BB7CA63E66D66C95EE7F0</string>
-				<string>C7E59BD438F0F1ED32112050</string>
-				<string>CE613B64A3AA1DB09D137B22</string>
-				<string>D66C9178A237F3206AC28994</string>
-				<string>ABABD0CDFD3E41EE2E942D9D</string>
-				<string>0528756D4D235146310082F0</string>
-				<string>EDA7C450AB879FFBCC923362</string>
-				<string>1BD452BBED63DFB3CBAE94E8</string>
-				<string>EB4D5B08A336D5C42E28718D</string>
-				<string>7D8B6EC4FE13EA3E130862A2</string>
-				<string>0BA8F8429E95CB00593DD957</string>
-				<string>0C1E165416BFAA0147B21701</string>
-				<string>DCE6F838BF9A76E1E90F8F29</string>
-				<string>7C25482D582A5D4E5DD54FCE</string>
-				<string>A1A5CBD42D19C0B5CFAB6B39</string>
-				<string>35B7B3CF4F701A5A496218D1</string>
-				<string>89E2EEA76098486434C7121E</string>
-				<string>E5E3D8FF89E386FE61A3887F</string>
-				<string>20FA3472CA8E5FCF1F3A55D3</string>
-				<string>7532E65A3BD1314F1A843707</string>
-				<string>C4371E31941BEFC099C5276B</string>
-				<string>AE386E16943E96A0DC7068B6</string>
-				<string>BEA26311AB6D7A1968DFFE5D</string>
-				<string>F40D9B7EE9C803659F6B0F74</string>
-				<string>8A30A080A65CA525F242B11D</string>
-				<string>394296CD3FBF6441C7EDAADE</string>
-				<string>7C71802E69011B6C745E2BD0</string>
-				<string>5A244D6060420351A712F2A2</string>
-				<string>4E994676D533E9CC25F4518E</string>
-				<string>8108B7358A64888529BAFCD3</string>
-				<string>CA63389D5D8D9AF7044B1551</string>
-				<string>672235DED2FD80A0C49993C9</string>
-				<string>7F396A61A4C14A1C90DCC003</string>
-				<string>7AA177C0AFC491F3C14C5AE6</string>
-				<string>0B47AE8C4E2CD1E850B4C8D2</string>
-				<string>47237B827DD7403D472237E4</string>
-				<string>86272741E64E0FD21E28911E</string>
-				<string>C5727C361A185A47C38DE74F</string>
-				<string>15F3B9386551E7B27C6ABDE7</string>
-				<string>D7CB4A20B855DC7338EA7C38</string>
-				<string>61C9F7E9F2B692ABC1E833C1</string>
-				<string>DCB800C7DFD5A06206FBBD1E</string>
-				<string>C33E2C3577461F009B35036F</string>
-				<string>3061C7B10FA9E321217600A0</string>
-				<string>762E15359B5ACE886246F496</string>
-				<string>C8B869E1FB97EE7D5761D2E2</string>
-				<string>6450C7404935D2BCA5C1BA45</string>
-				<string>689564C2E5A29FF77AF4FD64</string>
-				<string>EEE15CA8B94B9F0E60B27B4E</string>
-				<string>2A18EA340EDBFDBBDB1D6EFF</string>
-				<string>99CFB370C1B8272A5232E251</string>
-				<string>8A4CE294B8B3F1F293B2BB20</string>
-				<string>1EE530AB0A91A2E4C5D3F6CF</string>
-				<string>36216819E061128E0D3F3B1B</string>
-				<string>06AAA04862A9ADFEE90D756D</string>
-				<string>7CD2BC67F9A63F19E985242A</string>
-				<string>B62F259F4CAF915352371941</string>
-				<string>DBC29C43D1775F41AAD9DB68</string>
-				<string>4F90D0AFF745DCF57FABD55D</string>
-				<string>62931C3BEE80AC36EF1C1D6F</string>
-				<string>6E38DAB56A2F2AF3D32AF55F</string>
-				<string>88D67EC37DF042B27D94365E</string>
-				<string>38F7BED6F24599DA7AE205AB</string>
-				<string>B8DF9068117725B6C1CEE497</string>
-				<string>4CBE9D1FEE4A0B6614579FED</string>
-				<string>9F9019CF97857676B40A69FA</string>
-				<string>D99750A8B713DBDFD2B7EC99</string>
-				<string>364EAC466D0C65E8D8B58AC0</string>
-				<string>2EF03C938557266641037A73</string>
-				<string>3D1F28965FAB5FCF104F8E82</string>
-				<string>8913A0830655A122B5D9C9BC</string>
-				<string>F8F69793DCC04A79F99DDB6C</string>
-				<string>4BDF1EE4E7927550DFBAACA3</string>
-				<string>AD884583F0A7FE161EBDDCEB</string>
-				<string>3D6478130E0E220A851B312F</string>
-				<string>7A2C0FE529F637D6478C9294</string>
-				<string>91D9331637BB25ED83E3315B</string>
-				<string>082732821A301BE319A43D55</string>
-				<string>027FD40220A6CEE42890FCFB</string>
-				<string>EE197DD087F97537B4CC1534</string>
-				<string>37569C3B8AC5433CF65B34F2</string>
-				<string>FDC6CC7E16BE18E45D8AFF9E</string>
-				<string>2986E2FF3687B7B130FE0BDC</string>
-				<string>4C3D736DF745D1B78D068BF1</string>
-				<string>AC16D2F576455F6505380390</string>
-				<string>A7C712CE20377B4371F7C459</string>
-				<string>3CA38C9500AC04DE0482CFDC</string>
-				<string>271500B0CF6170CB1AF47149</string>
-				<string>ADFD53FA9A8E05973B205F80</string>
-				<string>9BCA3C5E1E11A295F38CAB7A</string>
-				<string>56992ABBA02D4488F6EB2153</string>
-				<string>52670463AE07C6E94650D891</string>
-				<string>6FC651BF50A48D13DD20BC6B</string>
-				<string>96EDDB65D155EF4F18258A48</string>
-				<string>EA1E287DD8525C80F280E4AC</string>
-				<string>11F28F9FB55AE05B71E8C7D4</string>
-				<string>CC7DBCF5B4C830C34F6A42CA</string>
-				<string>C3EE0A62C008F21FD53D281D</string>
-				<string>DF5227880697E2E68AC060D3</string>
-				<string>B4573EE9D7FF342E24C6B89F</string>
-				<string>0055F4110B7DF51C8F7D0DC3</string>
-				<string>EF12D13A82E13B6B4B9F7B1E</string>
-				<string>28B95C0C2707A55FEC37D8D1</string>
-				<string>BD14D76A2B42BF6F3C7901D9</string>
-				<string>46BB228586778F08C3205E0C</string>
-				<string>080863E4AE3E6D3E39CAF640</string>
-				<string>357D8C9988DD885668F2FBB1</string>
-				<string>5EE3B6D1012B212265C1BB8C</string>
-				<string>295A13EFB64D8765156FB0C7</string>
-				<string>D451028DF94152C4822D977C</string>
-				<string>4BA7D4DD0077A316187A4FCD</string>
-				<string>811E3F932053EA8B786904ED</string>
-				<string>2B40B07A6D0FE99745EE82F2</string>
-				<string>4BED3946EC8B30746EDB3C17</string>
-				<string>9C8009641C88B04CF81A8B73</string>
-				<string>F479DEC52B8363BF3688AAFE</string>
-				<string>0B198DD76D6A7D4B247F7448</string>
-				<string>9B54EB6995D92C4AB9DE123E</string>
-				<string>78AF39D8F892B7377F66B941</string>
-				<string>A1CDA6321F1A6FF2F8828222</string>
-				<string>3E27E706F7D0931BC65E45BA</string>
-				<string>FD4056C1E72FA6046DC0DE4D</string>
-				<string>29B23B095A7B729F93AD45D5</string>
-				<string>3B46D720BC96472A94497EC1</string>
-				<string>A29E429E34B19E53CF3AF4A0</string>
-				<string>1BDFB1B109564A8847DCC7E4</string>
-				<string>D07B947A06B7CDA82DF5378C</string>
-				<string>41C9A5865D9D869C46648BD2</string>
-				<string>121F10D93715525604FDCE38</string>
-				<string>C7EF667C6A815D05A0141437</string>
-				<string>F7AD7CD61AC9BD0D63C5DA7A</string>
-				<string>1AC6D96ECC7AF34B3C524864</string>
-				<string>3495EDA1753AF43A20FA6CA0</string>
-				<string>9207E6F582C115225797A69A</string>
-				<string>482CEB489ABA2F2345752A59</string>
-				<string>2C1D7C1261DB41B444560176</string>
-				<string>49E325B5F444ECFC9724C969</string>
-				<string>FFA26A980DF5CC0503459576</string>
-				<string>CD3038A42DDA7AEB8DA259C2</string>
-				<string>E999CD2C6C127C0CCEE5CA54</string>
-				<string>6F3724EBA46ADF2702ECF9D9</string>
-				<string>668E37E4D791102E499585F9</string>
-				<string>E3E4C05ADDDB4242AD752A04</string>
-				<string>4D5F69A5F499ADA629DB6A82</string>
-				<string>05B9CCD334DC99FB0BF50D47</string>
-				<string>2E7903344C81D180FB28D3B7</string>
-				<string>17B128836D599F09BCA81641</string>
-				<string>AA7AF3F1DD0FD4E9DE7BA7AF</string>
-				<string>5B5980115B9F57F23C415785</string>
-				<string>EB7C915070654BB1EEAF664A</string>
-				<string>6BE65E7C42C30A9CC06C37CC</string>
-				<string>CB4A618E542B03D760C2481E</string>
-				<string>0CE368F81A14F550EB5D707F</string>
-				<string>41D6177A52EDB173FAF337F0</string>
-				<string>F6AA0415A2165CA301FBDED7</string>
-				<string>842CA809080A7E042EC87FC4</string>
-				<string>A1187890FF30DC066C063A22</string>
-				<string>61808120480AD703F7BE5A1F</string>
-				<string>34055CA9C85022326ED1CECE</string>
-				<string>7BB1EB3259E3DC428BA9927B</string>
-				<string>592C2E4FEB50D9A8D5D5F297</string>
-				<string>3770360C7C4E24EF561EDD00</string>
-				<string>BA4782F1ECEEACD72F202A06</string>
-				<string>FE8EAD42A7475EFCBFB8BA06</string>
-				<string>B1F6D3CD27B150EC2197A151</string>
-				<string>46C2B7DEC51D57D29D5A4126</string>
-				<string>EABF904D0F76AC91C97DEC58</string>
-				<string>426B8FA69F7F8DC09EC303BF</string>
-				<string>0A1F18AA4FCD9DDA129D2780</string>
-				<string>6C4E2EB3CDCEED1D6C5709ED</string>
-				<string>AC23394D43B5B113928C948B</string>
-				<string>EF5BF73B082FA5277F400D09</string>
-				<string>FFA389620F44B4EAF5D26E26</string>
-				<string>46B78A6F01667D7B0FC98E17</string>
-				<string>D6EB9981606955226C03A02F</string>
-				<string>EF219F2CB45B6C39AE422ACC</string>
-				<string>F35C20493437B1BA0212EA81</string>
-				<string>1FD181F59ABA234B38392084</string>
-				<string>9A5061527A8C5EE35E2E4810</string>
-				<string>BA56A2199AF8BC3D12FC302B</string>
-				<string>B3E02FFCB91C6642373943D2</string>
-				<string>CE82950CBB27A547783F53AF</string>
-				<string>D052838662172FD36315F833</string>
-				<string>7554996AD809A448DF1F241B</string>
-				<string>50B4F4277CD01BF58FF97E36</string>
-				<string>7F872E2EAC068C8108225651</string>
-				<string>07CC03DD8D351A9A1476B417</string>
-				<string>8660BD5D9AD30CEE8070E879</string>
-				<string>198C6F023275ABA80AE60818</string>
-				<string>7CD744B1ED1027A4C7849EAE</string>
-				<string>B0953E84284D4CCAD89A8FA1</string>
-				<string>F1F27FF9817028212E7026A3</string>
-				<string>4B370D7822739445ED511CD7</string>
-				<string>22E568AA3E9C78AEA9BD62D2</string>
-				<string>3D761DFB0128E72F50E4B1BD</string>
-				<string>BCB6B2D7B7F1FFDC74F231D9</string>
-				<string>6B670E75366F84FC704EE412</string>
-				<string>19DC88FB14050D7CD7864D16</string>
-				<string>E7D1FFC956B8A56A55BA432B</string>
-				<string>C1AB9420EC401C5BB395F7CC</string>
-				<string>BB157902FBE43FDB4878F236</string>
-				<string>EF4C604AF8DFD93892271C18</string>
-				<string>C90346AE945DEC7DE5A020D9</string>
-				<string>DEDFB50008BE43CBB3004B50</string>
-				<string>D9E90FC23D314C3938387079</string>
-				<string>9740CE8A2943145FA3F1A1BC</string>
-				<string>D356DE374B525E41FE09BB18</string>
-				<string>916A8345964DEAFB4DDF8D1F</string>
-				<string>2BC92A2D33B15B43988C5400</string>
-				<string>08C7C14F8FDDECE621D05299</string>
-				<string>09DA8CAB0DA4A3BA2018E2C5</string>
-				<string>1512227359DF5CFD75AB6137</string>
-				<string>CD41AAD795A3857E29F6D065</string>
-				<string>4CF49E5FB787766D78AB97A6</string>
-				<string>F4642401A54E132E9EFCB2EA</string>
-				<string>4EC5137EB2D52417F110AE61</string>
-				<string>2E26C689FCF39C8612D6E719</string>
-				<string>758610F4F170AD69EC353CA2</string>
-				<string>6CB7527D34B577A0608E122B</string>
-				<string>A99C3A0F6DB1DDFE12666578</string>
-				<string>CF1D573AD05F34862B43C0E7</string>
-				<string>FE5E400FCDFE4E120E751BD9</string>
-				<string>4162D63ED358ABEA4101E734</string>
-				<string>A7D2AF3763172C0EF4919E3C</string>
-				<string>7759BCE23EB7ACAF13F435C6</string>
-				<string>38E7954524258CAA18F1A421</string>
-				<string>8715B25A0DE3CACC14BBD626</string>
-				<string>1B4CE102C55280CFA2F5A216</string>
-				<string>648AF9A08A47AF20C52B8B4F</string>
-				<string>9B19C806B4AFE8A83414EE19</string>
-				<string>8D7DA71EEC85D0C95235EF68</string>
-				<string>65B68FCD018081F1D1049DC7</string>
-				<string>67AB9C4F5493800A859FABDC</string>
-				<string>FBECCE6A82E89B6FC889F695</string>
-				<string>A1380B22B4413997F1D7178D</string>
-				<string>D82E19DAAEFC7EA0DD7A149B</string>
-				<string>96FA40B0A24DFD1A977EA48C</string>
-				<string>58B662EA4B19ABA90ADBBB6F</string>
-				<string>3FF59718D8279E1EFBC613A8</string>
-				<string>989BDFD334A0E7681EB229F9</string>
-				<string>99C1B279E8FFE738C373CE5C</string>
-				<string>DF9DBB49E67087607553EBB4</string>
-				<string>F3412D255B723D85AD5CA754</string>
-				<string>4A594D1939C7AD71889FFD1D</string>
-				<string>34031C0126BC6758614E2329</string>
-				<string>033E9B255AF1FCC1058CB337</string>
-				<string>CCF40176486A4BD0A7ACF6E6</string>
-				<string>0EF1D0636605D7C0D2948EA3</string>
-				<string>B97492608B4721D2A584A459</string>
-				<string>E79FE1F6E53A6A4575BE1B88</string>
-				<string>7015927CC6AFAE2A1C0EB34A</string>
-				<string>105D0D1A5490A2C376632C23</string>
-				<string>C18F1E7E303D6620D67D711A</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>name</key>
-			<string>C-Core</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>5AC6EE5B7365632532DF9DB5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1BD452BBED63DFB3CBAE94E8</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>5B5980115B9F57F23C415785</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>pollset_kick.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/pollset_kick.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>5B6CD8263A3E97E4F93EDEBE</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>name</key>
-			<string>Pods-Sample-RxLibrary-Private.xcconfig</string>
-			<key>path</key>
-			<string>../Pods-Sample-RxLibrary/Pods-Sample-RxLibrary-Private.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>5B8F0AE9A06375432CAFB284</key>
-		<dict>
-			<key>fileRef</key>
-			<string>84CA5442DDDC6A90684A830B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>5B9522819F9A4CFD4390CCE9</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>4FD344A4C37F355D47A7FFFE</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>name</key>
-			<string>iOS</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>5BDD7C43A14E861EE282DE73</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A7C712CE20377B4371F7C459</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>5BF0B9AADE5BB2DCA364C700</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0B1FCC62895AC4E53CD44BA6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>5C11F254AF4BB886721265B5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B27A42723D792CC73BC91FC0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5C1D43548523CBB12D0556CF</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>8644A327C3F768ED3DF43DBC</string>
-			</array>
-			<key>isa</key>
-			<string>PBXFrameworksBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>5C5897DEF7FD6CDB39DC8B0D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>900F3BE96F445E868C426425</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5CA35CF2DBB0FBCDE28CC9DA</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>0CE89A667D6937B97AEDEADC</string>
-				<string>CBDCB0898B7B431D1F8F3DB4</string>
-				<string>840ECD1BBB2E6E0C33A3FF40</string>
-				<string>29396A708DDF90595D04CE21</string>
-				<string>88A01A68E297ADFF4229FFE4</string>
-				<string>2EB0CF3F1A608B51600BDCFE</string>
-				<string>A57DB1080194D46703479C42</string>
-				<string>9CD70309E5CA5BF655A67D95</string>
-				<string>A518158007BD9A40A2EB705A</string>
-				<string>D370D2FD90916191B0BE4A7B</string>
-				<string>59FF2F9AAFD47BC93ABB2F49</string>
-			</array>
-			<key>isa</key>
-			<string>PBXSourcesBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>5CD16099D5458FC8084DCDB7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>5CEAAE8ACC2208053633633F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5CEAAE8ACC2208053633633F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>GRXNSScalarEnumerator.h</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/private/GRXNSScalarEnumerator.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>5D07BFB96D6E7931F8432E75</key>
-		<dict>
-			<key>containerPortal</key>
-			<string>EF6CCB5D3B9A6AAB7B6B4A70</string>
-			<key>isa</key>
-			<string>PBXContainerItemProxy</string>
-			<key>proxyType</key>
-			<string>1</string>
-			<key>remoteGlobalIDString</key>
-			<string>DA05884BD9CA260488B8A356</string>
-			<key>remoteInfo</key>
-			<string>Pods-OpenSSL</string>
-		</dict>
-		<key>5D30DA979EC0AA4D2F06938D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1FD181F59ABA234B38392084</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5D457433C39CBF1CBB71D30D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C18F1E7E303D6620D67D711A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5D82EC9CD65D0EB146F7309F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2B40B07A6D0FE99745EE82F2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5D9435A7F85FD79265167A47</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3B7551FF2E890E0288CCFF7E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5DA81756CBDB0BA47308F08F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7A2C0FE529F637D6478C9294</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5DC744EEA679A0C2D5576B2A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AC23394D43B5B113928C948B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5DD24E2FFC5E58A6580D6DD6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CF1D573AD05F34862B43C0E7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>5E0BB9E5D28DFAD2750FFCA2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F35C20493437B1BA0212EA81</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>5E19A600B1B68EAF6F4E726F</key>
-		<dict>
-			<key>buildConfigurations</key>
-			<array>
-				<string>646DF469F1F71170BBFC96C8</string>
-				<string>613303AEED0F4D114F2FA2ED</string>
-			</array>
-			<key>defaultConfigurationIsVisible</key>
-			<string>0</string>
-			<key>defaultConfigurationName</key>
-			<string>Release</string>
-			<key>isa</key>
-			<string>XCConfigurationList</string>
-		</dict>
-		<key>5E6A32F678C508478F1E551D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C8B869E1FB97EE7D5761D2E2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>5EA277C257310B56615985A4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4CF49E5FB787766D78AB97A6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5EBDAC62072FF3E8F3672068</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9F9019CF97857676B40A69FA</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5EE3B6D1012B212265C1BB8C</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>iocp_windows.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/iocp_windows.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>5EEDDF61E1FE31FA8131215E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>668E37E4D791102E499585F9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5F0056D7EFB5B4CCEB0932D0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>198C6F023275ABA80AE60818</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5F0B3320FA30E288F9604F71</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4B370D7822739445ED511CD7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>5F17EF75E1E4A4AF933DAD3E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>817E0434460DA6B1BC731476</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5F25A6C443F24715271BEC55</key>
-		<dict>
-			<key>fileRef</key>
-			<string>44710470DD111C15AC809782</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5F46106FCD582A61DC59ECFF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3E7BCFC8E8B501FC5B0383F6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5F4F3D942CA81E3AF7E5D25C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D052838662172FD36315F833</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5F5E1704B31255289324EA4B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>105D0D1A5490A2C376632C23</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>5F7A7C576417292D6E8EC3B3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>97385E01E0518B4E89D823CE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5FC169197462F0F7F899AEDF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DE4C762B94ADCDEBD4CBCD39</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>5FC82D35A9CF5FD2B85E3C5E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F56A8A024FEFFF1D2B980766</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>5FE7FCF33604DE346AB41C16</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>5B6CD8263A3E97E4F93EDEBE</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>NO</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_DYNAMIC_NO_PIC</key>
-				<string>NO</string>
-				<key>GCC_OPTIMIZATION_LEVEL</key>
-				<string>0</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-Sample-RxLibrary/Pods-Sample-RxLibrary-prefix.pch</string>
-				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
-				<array>
-					<string>DEBUG=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
-				<string>NO</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Debug</string>
-		</dict>
-		<key>6050F583B27019DDD533F1D7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DBC29C43D1775F41AAD9DB68</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>6063F859BC59312B059CF91D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>asn1t.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/asn1t.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>60B3FFF7224676E000FFC99F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>whrlpool.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/whrlpool.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>60CF6FE8969FC85872AD72A4</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>EA0D329F069571F7540BCD0D</string>
-				<string>6B0F9A832430902164AE9308</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>name</key>
-			<string>Frameworks</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>60D2021139D55AAD81C49AA0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C5727C361A185A47C38DE74F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>613303AEED0F4D114F2FA2ED</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>36A63545F8709ED44227FF0B</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>YES</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-RxLibrary/Pods-RxLibrary-prefix.pch</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_CFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_CPLUSPLUSFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-				<key>VALIDATE_PRODUCT</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Release</string>
-		</dict>
-		<key>6145BD33E1B257F00EDB3959</key>
-		<dict>
-			<key>isa</key>
-			<string>PBXTargetDependency</string>
-			<key>name</key>
-			<string>Pods-OpenSSL</string>
-			<key>target</key>
-			<string>DA05884BD9CA260488B8A356</string>
-			<key>targetProxy</key>
-			<string>3E029E36BBB2AE32AAE5FF44</string>
-		</dict>
-		<key>61808120480AD703F7BE5A1F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>port_platform.h</string>
-			<key>path</key>
-			<string>include/grpc/support/port_platform.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>61A05D1FB5D07F63DBF41A6F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EB7C915070654BB1EEAF664A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>61BA8FF5C7852BD984053003</key>
-		<dict>
-			<key>fileRef</key>
-			<string>61808120480AD703F7BE5A1F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>61C9C646E1D68077ECA5F55C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AE386E16943E96A0DC7068B6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>61C9F7E9F2B692ABC1E833C1</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>endpoint_pair.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/endpoint_pair.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>61FC63158E05EBE0627831D0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0B198DD76D6A7D4B247F7448</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>62246DDE1641EA3AB31A4AD5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>58B662EA4B19ABA90ADBBB6F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>622ED1911A318732B26E196B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>121F10D93715525604FDCE38</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>624D819A6B2BA9AF422FE7BF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6F3724EBA46ADF2702ECF9D9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>62931C3BEE80AC36EF1C1D6F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>frame.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/frame.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>62D5DF47C43728A2F65C8612</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>GRXNSBlockEnumerator.m</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/private/GRXNSBlockEnumerator.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>630630C2FEBAB1E0CF581ED9</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>alpn.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/alpn.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>6326CE0F0D42F39D6E5D0B14</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0EF1D0636605D7C0D2948EA3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>634919C4E72162262206810C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2E7903344C81D180FB28D3B7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>63583B8C3A6A9B5220B32448</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F6AA0415A2165CA301FBDED7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>636D0C999212A58F964A46B5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0A1F18AA4FCD9DDA129D2780</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>638CAE79F583AD3D740D3471</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CE82950CBB27A547783F53AF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>63EB911F0668A801C4E92F8A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C18F1E7E303D6620D67D711A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>640165417CDB0BC1CC398E15</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D99750A8B713DBDFD2B7EC99</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>640301AED99E10610E554348</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F21D1B56522DBE967A41A000</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>644161E693A1881539117778</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>ui.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/ui.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>6450C7404935D2BCA5C1BA45</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>event_string.c</string>
-			<key>path</key>
-			<string>src/core/surface/event_string.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>646DF469F1F71170BBFC96C8</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>36A63545F8709ED44227FF0B</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>NO</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_DYNAMIC_NO_PIC</key>
-				<string>NO</string>
-				<key>GCC_OPTIMIZATION_LEVEL</key>
-				<string>0</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-RxLibrary/Pods-RxLibrary-prefix.pch</string>
-				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
-				<array>
-					<string>DEBUG=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
-				<string>NO</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Debug</string>
-		</dict>
-		<key>648AF9A08A47AF20C52B8B4F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>time_averaged_stats.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/time_averaged_stats.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>649DBF314EA59E30407979CB</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>GRXWriter+Transformations.m</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/GRXWriter+Transformations.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>64A756445EA94EF4BBC3EC0B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>86694F04BACF1D2F3D67BF91</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>64AB4DE83F5D54A7B8A03BB7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>91D9331637BB25ED83E3315B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>64C4AAF18BAED0CC7CB13BE6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F59856CDE3A736AC06C74829</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>64E3D0DA052D217552821FCD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6063F859BC59312B059CF91D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>64EE4150A5FFF8C2DF1E1BC3</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>bio.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/bio.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>65169830D56F77F3585ED2C0</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>CF7B2329FB1B001A0010470A</string>
-				<string>A6042770D77AE61CC21E098B</string>
-				<string>46CA1F0737ACC82A5C6142D4</string>
-				<string>EF88F9C3AD9B7F0B0303E301</string>
-				<string>C222B542A30DED64E4155E5F</string>
-				<string>928CE56932F20758C9C6FD73</string>
-				<string>BC13BD16BB935D60ECAED57C</string>
-				<string>7519C0E8932CE5AFB1F21C07</string>
-				<string>86FD3452952E2F203454F00C</string>
-				<string>8688B8920C01933C25D3EB9F</string>
-				<string>BE5CBB0C24097EEA6E542C6B</string>
-				<string>04A17B4FCE59C8AF0B83867D</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>name</key>
-			<string>Support Files</string>
-			<key>path</key>
-			<string>../Target Support Files/Pods-OpenSSL</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>652778EF439BBD51C88D0BD3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F1ACC5FAB761447CA87BC69B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>654F5897886B8BB7F5E26A0B</key>
-		<dict>
-			<key>buildConfigurationList</key>
-			<string>20F9B68BDAAE524BFDD87C56</string>
-			<key>buildPhases</key>
-			<array>
-				<string>CE3D62DC8C488DCFED22A93A</string>
-				<string>146A2BFC5F871953CB2C6160</string>
-			</array>
-			<key>buildRules</key>
-			<array/>
-			<key>dependencies</key>
-			<array>
-				<string>FDC59864DE8EE29B7AB15FDF</string>
-				<string>30F3B65AE1CB22B659D201AF</string>
-				<string>A7E52866E48BA7D7483939E6</string>
-			</array>
-			<key>isa</key>
-			<string>PBXNativeTarget</string>
-			<key>name</key>
-			<string>Pods-SampleTests</string>
-			<key>productName</key>
-			<string>Pods-SampleTests</string>
-			<key>productReference</key>
-			<string>7C69F11820431FDA95D6B376</string>
-			<key>productType</key>
-			<string>com.apple.product-type.library.static</string>
-		</dict>
-		<key>659665B6AD770297A75853CE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3E27E706F7D0931BC65E45BA</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>65971FB333058FB6AC0D1F8F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A1A5CBD42D19C0B5CFAB6B39</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>65B5B4BC857E9FBA09E95B52</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>C6FD05362488EE2D35DD26C9</string>
-				<string>470BE752EF0C32D3AC691DB4</string>
-				<string>24541F7D7260A18E0F1F1EE0</string>
-				<string>BC354D9F0AD6180106057919</string>
-				<string>9CA870B5860DE32D4F5982D2</string>
-				<string>E59C8A5299D81913452A95CE</string>
-				<string>1CABFCD96F2BA55603790E2F</string>
-				<string>BC5149815D3A7AC698ECA450</string>
-				<string>BB538A1A5D1C6757CC7FD94F</string>
-				<string>7B42372EFDE13562FA668CB6</string>
-				<string>FC076E4C978DE9D6AE1DBD23</string>
-				<string>C8EDE7A9A32993B9675C3706</string>
-				<string>05D4CDE62027CB90FC729FCE</string>
-				<string>737207C49448600F078D6EAA</string>
-				<string>47E182731BB4B55C334FF4A1</string>
-				<string>797AF8684E995C32EADBDF43</string>
-				<string>AF158B5508A79109D8231CA0</string>
-				<string>C0AD0D08D1210D0F68A7293F</string>
-				<string>AA80780FE4D215DA62413A67</string>
-				<string>6D40C103875882CE777823D2</string>
-				<string>865BD7C01B6B064547590849</string>
-				<string>1EE1F0DF3B208C17FAFD232E</string>
-				<string>976E9F36516F90E82231B755</string>
-				<string>093DF8C07C82EB3B2741CE32</string>
-				<string>562C27523097919A0B068266</string>
-				<string>B98605ECA6C94E37B90AF42D</string>
-				<string>82E2169838B02916C0E537A3</string>
-				<string>07B9C9E792437C124C383A4F</string>
-				<string>C1ED7DBAC7463711EB5902CA</string>
-				<string>3BB654F4AE9F9A5DD238C500</string>
-				<string>CA852A77EB431B988E863107</string>
-				<string>4DBEB3554098CDC806278A56</string>
-				<string>0FF927010EA9E25B43291817</string>
-				<string>B27A7D04EF0865AC8F7C63A8</string>
-				<string>DCF982AB7309E23BD635309F</string>
-				<string>3B9AD412CB7F41DE126A69C9</string>
-				<string>4B7DBC727C64A8B276EE9B57</string>
-				<string>99C95EE3DF69765D8083B804</string>
-				<string>4E03959DC12A722C981103D6</string>
-				<string>EAA677E52893091E71EE80EB</string>
-				<string>5AAF7287C65DC7CB9E5619DE</string>
-				<string>A3B768615FE3C5228DA90BF5</string>
-				<string>F4356AEE89FF027A4BAEA0F6</string>
-				<string>98258D7A6CDABCF0EADC9F50</string>
-				<string>8A02EA52778C79CAB5333CB4</string>
-				<string>693AB96AF5AB83DD6CFC514B</string>
-				<string>09B2798DEDAAAC35C8859D0D</string>
-				<string>D9891EADF45E9ACBCDA6A4C9</string>
-				<string>300680E7E95873F04FC03AB7</string>
-				<string>93B61D551F875828DB26C24E</string>
-				<string>2B618D5AF9F28A5A827B6D5C</string>
-				<string>7D2B0DEE69CC6460A769D663</string>
-				<string>5F46106FCD582A61DC59ECFF</string>
-				<string>02C5BCC8AFDCAA8769956BF0</string>
-				<string>07CD3B9045DA720A459FB927</string>
-				<string>8B1BFA61AF5AAEE70B844F5C</string>
-				<string>8E88B4467C34765BCCE1C255</string>
-				<string>F59F69E29642873D19E60C14</string>
-				<string>05B4E1BE83C06D82AA05B867</string>
-				<string>964EE39911513DD28C095429</string>
-				<string>B8B94E1FC7DD5F044B5F7D1B</string>
-				<string>C74EA80F2B0141BB09B8E37B</string>
-				<string>4A3484A247E92D1547267FCA</string>
-				<string>711B277CB922D8263E94DDDD</string>
-				<string>B4D6482C08BE4BFDB5D66056</string>
-				<string>AB0BEB3FE8DB7BC2C4C725B8</string>
-				<string>35CE826363462AE380884D9B</string>
-				<string>7A634A263E9F3E1286FDD9BD</string>
-				<string>112D4518CB350C9A6EC0FBF6</string>
-				<string>69D36A746F4C071BB61460F4</string>
-				<string>CDCB56535FC5D99F517C978D</string>
-				<string>B53E8DBA4C83762338C51C63</string>
-				<string>C13A1A1343B5BF54A3335EF3</string>
-				<string>F106F666B5A108F1DD774AA3</string>
-				<string>9DF0111DF6E617967588B108</string>
-			</array>
-			<key>isa</key>
-			<string>PBXHeadersBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>65B68FCD018081F1D1049DC7</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>time_win32.c</string>
-			<key>path</key>
-			<string>src/core/support/time_win32.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>65E183F344A62BE6CE92A1E4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>36B5D06D44B5DEC4A0582942</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>65E3C741EB521867736A603E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F5EC782889E78C64F5FE925F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>666D70D220F299C4C25266BB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>34055CA9C85022326ED1CECE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>6689C756FC41AA9CFC2443A0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C7EF667C6A815D05A0141437</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>668E37E4D791102E499585F9</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>murmur_hash.h</string>
-			<key>path</key>
-			<string>src/core/support/murmur_hash.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>672235DED2FD80A0C49993C9</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>cpu_linux.c</string>
-			<key>path</key>
-			<string>src/core/support/cpu_linux.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>6726193FB24B22B72FB83BA9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>630630C2FEBAB1E0CF581ED9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>6798C55C2B628860663AE70E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EA1E287DD8525C80F280E4AC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>679A20A64E35DA8B2B30068F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C1AB9420EC401C5BB395F7CC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>67A42CBD66215AA75B04863C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>92087180D1834EEC0769E330</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>67AB9C4F5493800A859FABDC</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>timeout_encoding.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/timeout_encoding.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>67BF62F188594FEB75199F01</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8D7DA71EEC85D0C95235EF68</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>67ED3520E93EFB8CB9A2A625</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8913A0830655A122B5D9C9BC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>68563C3CF97193799D0ED470</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A86876ED4DB60AEE65ACDCD1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>689564C2E5A29FF77AF4FD64</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>event_string.h</string>
-			<key>path</key>
-			<string>src/core/surface/event_string.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>689FF7B5170019FC27CF8682</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>stack.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/stack.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>68CB6A2ECB8BF65CFFCB3B72</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4EC5137EB2D52417F110AE61</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>69067E0159C82E4500EDD649</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>GRPCMethodName+HTTP2Encoding.m</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/private/GRPCMethodName+HTTP2Encoding.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>691497F1A1B01B1F369D8E3C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>689FF7B5170019FC27CF8682</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>6921582421293146CB69A657</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>opensslv.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/opensslv.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>693AB96AF5AB83DD6CFC514B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E641063DBDE5CAB35BFCB642</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>694ADED078B5277472B37773</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1512227359DF5CFD75AB6137</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>69D36A746F4C071BB61460F4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>644161E693A1881539117778</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>69D657B4D1185AE0E39992D4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C3EE0A62C008F21FD53D281D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>69D9CFAF5BBB7F17B1E3D73F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AC75EBB38A56E3D30CB0627B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>69EF1AB3BE283E38D210DB48</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FFBDA56CD6FADE996A409346</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>69FCE575868D69563C63A0F7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>65B68FCD018081F1D1049DC7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>6A1C5C04EF8DD66F8D33C98D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DB0C66D2A5F00157E328075E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>6A5B4F6A4388D41CD98E73DB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7C71802E69011B6C745E2BD0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>6A6D0174C36F094C22D36D4D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>52670463AE07C6E94650D891</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>6AA32F46FB6BCF9CC9C26CE7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A97716562F0D00563BACF91A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>6AF51495B3362C2BD08A0402</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>GRXWriter+Immediate.h</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/GRXWriter+Immediate.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>6B0F9A832430902164AE9308</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>archive.ar</string>
-			<key>name</key>
-			<string>libssl.a</string>
-			<key>path</key>
-			<string>lib/libssl.a</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>6B5851CC962D07E93C176995</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4162D63ED358ABEA4101E734</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>6B670E75366F84FC704EE412</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>stream_map.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/stream_map.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>6B6A33BE574EA4F98D01991A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>34031C0126BC6758614E2329</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>6B8BB7CA63E66D66C95EE7F0</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>census_interface.h</string>
-			<key>path</key>
-			<string>src/core/statistics/census_interface.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>6BB92BB757E5CF342F886DB4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7D8B6EC4FE13EA3E130862A2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>6BE65E7C42C30A9CC06C37CC</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>pollset_kick_windows.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/pollset_kick_windows.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>6BF7AAF6FAC0C45508C8684F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>61C9F7E9F2B692ABC1E833C1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>6C1FD3E240DB34DF3AA0C957</key>
-		<dict>
-			<key>fileRef</key>
-			<string>19DC88FB14050D7CD7864D16</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>6C262C4C1E04BFD9A378EB42</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BA4782F1ECEEACD72F202A06</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>6C2CF13F6F29A5ED25D037AA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>842CA809080A7E042EC87FC4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>6C4E2EB3CDCEED1D6C5709ED</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>server.c</string>
-			<key>path</key>
-			<string>src/core/surface/server.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>6C9A8DD619972DE3D36F2646</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7554996AD809A448DF1F241B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>6CB528C62019D4AA39259753</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EABF904D0F76AC91C97DEC58</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>6CB7527D34B577A0608E122B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>tcp_server.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/tcp_server.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>6CCA28942D772FED2E20FB07</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0EF1D0636605D7C0D2948EA3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>6CD68A8818465318BD97A51A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B4573EE9D7FF342E24C6B89F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>6CFB0D6E49B2A37FB1670BE8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F7AD7CD61AC9BD0D63C5DA7A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>6D40C103875882CE777823D2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AA44C91B353FAF347EBA8C5B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>6DADFC4129105CA3F9C35CE2</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>atm.h</string>
-			<key>path</key>
-			<string>include/grpc/support/atm.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>6E09BD8E523822024DCFD99E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9A5061527A8C5EE35E2E4810</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>6E18C5B1BA639D970AC2ADB3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>38E7954524258CAA18F1A421</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>6E38DAB56A2F2AF3D32AF55F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>frame_data.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/frame_data.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>6F02B98C8F587E7F7E3BB187</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9E2995626A53D35C33A1E880</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>6F07874169E0970EC859C33D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>bin_encoder.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/bin_encoder.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>6F3724EBA46ADF2702ECF9D9</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>murmur_hash.c</string>
-			<key>path</key>
-			<string>src/core/support/murmur_hash.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>6F4608C9B857F575CBB3300F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4C3D736DF745D1B78D068BF1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>6F6868A8FD54B418A8144ECE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CE82950CBB27A547783F53AF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>6F99344551E6279E35FD08F7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>965B77D271A8DA40952B05FB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>6F9F439B6E33296246D041AC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CAA36CDC6768501E59664D2C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>6FA6D2AE05FD42F890C33795</key>
-		<dict>
-			<key>fileRef</key>
-			<string>46C2B7DEC51D57D29D5A4126</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>6FC651BF50A48D13DD20BC6B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>http_filter.c</string>
-			<key>path</key>
-			<string>src/core/channel/http_filter.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7015927CC6AFAE2A1C0EB34A</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>wakeup_fd_posix.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/wakeup_fd_posix.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7061B51D6844C417D797E4BC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>46FAF51D64801E7D472BB776</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>70B3FBBF53F7FDE423D4CB2A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CE82950CBB27A547783F53AF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>711B277CB922D8263E94DDDD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>86694F04BACF1D2F3D67BF91</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>712C540B561A46983D53A00E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>753448EC1331A4F22A884630</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>7161638CFE99778DE5CAF0C2</key>
-		<dict>
-			<key>isa</key>
-			<string>PBXTargetDependency</string>
-			<key>name</key>
-			<string>Pods-RxLibrary</string>
-			<key>target</key>
-			<string>5178199C95874904FB00D5C1</string>
-			<key>targetProxy</key>
-			<string>E2C665E7DA085C5E66120795</string>
-		</dict>
-		<key>716DFA83625085B80D20D865</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CD41AAD795A3857E29F6D065</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>717C9A960B10C1D8B189FA34</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EE197DD087F97537B4CC1534</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>71B0901634785458F8E4B596</key>
-		<dict>
-			<key>fileRef</key>
-			<string>508860F9FE4C6C81958EAFEF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>71B15BB0388FD43112B80E8E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A7D2AF3763172C0EF4919E3C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>71C951773F0F5D432D87194E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3E7BCFC8E8B501FC5B0383F6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>7209353163FBAB88E0429370</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C08B1253D8582ECD0579BF07</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>727EDFD4F05E468B079088D7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>05B9CCD334DC99FB0BF50D47</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7288AEFEB109F7AB0814A295</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E8C8EF12A80456AFEBA0C4CE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>728AD0DDB766BF806572AA88</key>
-		<dict>
-			<key>fileRef</key>
-			<string>40038AA5508AF842FFDDC3BC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>728F18EAB4698DA3B39C061B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>644161E693A1881539117778</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>72A9C245AC433237E4A21E59</key>
-		<dict>
-			<key>fileRef</key>
-			<string>56992ABBA02D4488F6EB2153</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>72AF070079D0E8AAA90AC656</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6F07874169E0970EC859C33D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>731B72C765A260A8AED2B4AD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2E26C689FCF39C8612D6E719</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>733B0554F0EA0960BCF1D52C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EE197DD087F97537B4CC1534</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>733C159D3DC1A3398DE12050</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B62F259F4CAF915352371941</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>73718E825CACFE378F012B38</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A46D083615082877DD4179DE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>737207C49448600F078D6EAA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>26D5A00C5D363C2B88EB6022</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>73F081AF7815C42D349B1EB1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>35B7B3CF4F701A5A496218D1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>73F957500D7369AD5072A614</key>
-		<dict>
-			<key>fileRef</key>
-			<string>87351743F2826AD6D5FF3269</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>73FF1675FBEAC57940D173D0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FDC6CC7E16BE18E45D8AFF9E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7427111E3AA498220C2B13D9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F90E7A24B0681976E3AFF342</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>7438AAB290E8E8C134357031</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>path</key>
-			<string>Pods-Sample-gRPC.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>744A2C25A333FB7B3A3BD023</key>
-		<dict>
-			<key>fileRef</key>
-			<string>689564C2E5A29FF77AF4FD64</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>74BD7D89488C19B0692A54E1</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>asn1.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/asn1.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>74C48F6D86C2FC29432A1DD5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E999CD2C6C127C0CCEE5CA54</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>74E23B622D97F1FC838C109F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E3E4C05ADDDB4242AD752A04</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>74EBFC114B1D3C4FCEF0EFBB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0B1FCC62895AC4E53CD44BA6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>750736E07515A06AC9B6BCB8</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>78419FA9BB1CF508010CF41E</string>
-				<string>CA65B1878419143FE2644503</string>
-				<string>B35F00EA0F43E499609BEF33</string>
-				<string>39EA3D5E6CE9C0F7469E0C7F</string>
-				<string>AACA730E78FB3DE204B5B362</string>
-				<string>62D5DF47C43728A2F65C8612</string>
-				<string>DEC0127013FF7E2BE404F94A</string>
-				<string>ECE467216AE94759184A54C8</string>
-				<string>5CEAAE8ACC2208053633633F</string>
-				<string>90D51E97705F8ED52E08B452</string>
-				<string>A86876ED4DB60AEE65ACDCD1</string>
-				<string>836BB5DD3F8F3AC58643748E</string>
-				<string>7DBE0B39468165252F95191A</string>
-				<string>80009AC97A88857C7E6B93FC</string>
-				<string>6AF51495B3362C2BD08A0402</string>
-				<string>D7619368410CA7CE988467C9</string>
-				<string>DE01AD2E1DC6FE17ABF873E7</string>
-				<string>649DBF314EA59E30407979CB</string>
-				<string>AF8EC9542851957B39CCBBCD</string>
-				<string>8E740BA19823D74A7D9CC6CF</string>
-				<string>1B1A326D514D01067DC93BED</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>name</key>
-			<string>RxLibrary</string>
-			<key>path</key>
-			<string>../../../../..</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7519C0E8932CE5AFB1F21C07</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>Pods-Sample-OpenSSL-prefix.pch</string>
-			<key>path</key>
-			<string>../Pods-Sample-OpenSSL/Pods-Sample-OpenSSL-prefix.pch</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7532E65A3BD1314F1A843707</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>client.h</string>
-			<key>path</key>
-			<string>src/core/surface/client.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>753448EC1331A4F22A884630</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>cmac.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/cmac.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7554996AD809A448DF1F241B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>socket_utils_common_posix.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/socket_utils_common_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7565989F81F47BCDD132699E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BC13BD16BB935D60ECAED57C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>758610F4F170AD69EC353CA2</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>tcp_posix.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/tcp_posix.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>75E06B9219E7A4C4B804D2E1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8B3B37023FF9E8E73CC99322</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>75FFA5A89F3597BE2BE968E5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0BA8F8429E95CB00593DD957</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>762E15359B5ACE886246F496</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>env_posix.c</string>
-			<key>path</key>
-			<string>src/core/support/env_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>76325E85DD3253DE073C5CCF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A1CDA6321F1A6FF2F8828222</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>763918BB64ECC0B5CA40D046</key>
-		<dict>
-			<key>fileRef</key>
-			<string>836BB5DD3F8F3AC58643748E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>764FF5DE72EF00DE8A2F4CAC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AA44C91B353FAF347EBA8C5B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>765B075B94A20A3AD784A698</key>
-		<dict>
-			<key>fileRef</key>
-			<string>5A244D6060420351A712F2A2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>7679CDCB221DE1A2A30D932C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>762E15359B5ACE886246F496</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>768932B35479C5363AF8D3BA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>22E568AA3E9C78AEA9BD62D2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>76DE390DA5E144716FCE9750</key>
-		<dict>
-			<key>fileRef</key>
-			<string>198C6F023275ABA80AE60818</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>770EF8A92E537873B37F1A97</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>C3FCC84C8D8CBAC2653214F7</string>
-				<string>87DB11961CD607A570449DF6</string>
-				<string>D2DEB1B407725DEAC75C7A9A</string>
-				<string>8E77610110664D7D316E6859</string>
-				<string>23AE6665BFE2DE545A7FF5BE</string>
-				<string>CD32457FA0CFA81AF443BF94</string>
-				<string>590FFA6BE25DD709D27A4073</string>
-				<string>A5F7528E80CAE6A2525B8FC6</string>
-				<string>A570AF54AE58046B9A93CAA2</string>
-				<string>513238AC2EAC27D0195BD944</string>
-				<string>04028C1B002DC222AE30A052</string>
-				<string>3C7DB74CF303976E9EA2A26D</string>
-				<string>E40892AC07D82FBF26EDD351</string>
-				<string>4FD6A69BBB883AC50D80AD4B</string>
-				<string>FAF9B3C9B27BBC850D53A56F</string>
-				<string>4176DD3B43920D4963F9BEAF</string>
-				<string>C574351F6DA0F4043D34D597</string>
-				<string>DF79E5347EB087C4A477EA51</string>
-				<string>1473065B9B84353092466D26</string>
-				<string>764FF5DE72EF00DE8A2F4CAC</string>
-				<string>F52B9B7DF1156C93A1B86673</string>
-				<string>67A42CBD66215AA75B04863C</string>
-				<string>B16F2028EAB67119ADEB8516</string>
-				<string>388F8FA045DA2D95C05BB64B</string>
-				<string>2B72DECE7512CEA2F6ADD3F4</string>
-				<string>284FB4EEBAD2682FC06C50B5</string>
-				<string>0D7ADB061CAAFD479A9CD257</string>
-				<string>D59A65CF09BBB18AC24DE8A4</string>
-				<string>A95BB2746AF97188B34F3D1E</string>
-				<string>AE377333752E99CE9E73E4CC</string>
-				<string>12E34A782808ECE191995622</string>
-				<string>265B7DCC607F958D68B7C58C</string>
-				<string>09A8705D7520518D7EC5EC96</string>
-				<string>EB2208B799188A1774A09FB8</string>
-				<string>4770785DE2B0A867254E6354</string>
-				<string>F012F22301089C2C0F4475A3</string>
-				<string>482ADAB78B711B277BFFF6AB</string>
-				<string>254003A1482D4A4EF9F9B4B4</string>
-				<string>07930EC4EE25DF8CD9491F1C</string>
-				<string>5D9435A7F85FD79265167A47</string>
-				<string>4724227D569E13AD75A3CD5A</string>
-				<string>F408DD08429818D7654D374B</string>
-				<string>A7A7F8CF1C0206635710D58C</string>
-				<string>2E03CFD21BCEAA6D1BA0EEBB</string>
-				<string>640301AED99E10610E554348</string>
-				<string>0057479E9C883834A402CDDF</string>
-				<string>5C11F254AF4BB886721265B5</string>
-				<string>15C343A1075EA0EABA3096F4</string>
-				<string>B325D829C214C8B80B5D93D4</string>
-				<string>A80BAF81F7F23BDD6B2BEE9E</string>
-				<string>F68CC46338EDE530C4D5D55E</string>
-				<string>BBD4C6EF072FA683FEAF46D0</string>
-				<string>71C951773F0F5D432D87194E</string>
-				<string>24DE9AD22B1E230CF2595754</string>
-				<string>B51D85F360DB77029A83F9AE</string>
-				<string>785287E4190404F2011279B9</string>
-				<string>7288AEFEB109F7AB0814A295</string>
-				<string>A207FE8279C852FD84A7DFC1</string>
-				<string>85C29889C051DBC4C8256D32</string>
-				<string>6AA32F46FB6BCF9CC9C26CE7</string>
-				<string>3840C892086F738D1807A9A9</string>
-				<string>38654B4F64FA394C5D6AAE0E</string>
-				<string>2F029B8FDC0F19133B4ADEE6</string>
-				<string>08FD81D4AA784A828A197F3D</string>
-				<string>861AE75A85F0E73C02BDA770</string>
-				<string>FBF96229A24D212CFC1D8764</string>
-				<string>49736C3F860A3039E077337E</string>
-				<string>1FEE38F50BF1E509122440F2</string>
-				<string>A6D827D13A3B5C1082774993</string>
-				<string>728F18EAB4698DA3B39C061B</string>
-				<string>EF6DD7F5E115C1726A0BDF61</string>
-				<string>D46DA4DAF36C9D71ED92C33E</string>
-				<string>AFE74D0CDED63A4C876FD475</string>
-				<string>858FE0760FBBC96E7ADE9FE4</string>
-				<string>12DA0AD96ADF39E39C928185</string>
-			</array>
-			<key>isa</key>
-			<string>PBXHeadersBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>773715353961760112B70D1D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>22E568AA3E9C78AEA9BD62D2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>7759BCE23EB7ACAF13F435C6</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>thd_internal.h</string>
-			<key>path</key>
-			<string>src/core/support/thd_internal.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7789095F3D68DA5FC99698AF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F3412D255B723D85AD5CA754</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>77B160290490CF457B4F571B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CD3038A42DDA7AEB8DA259C2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>77B55EEAAE337991A39F497C</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>census_filter.c</string>
-			<key>path</key>
-			<string>src/core/channel/census_filter.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>77BAB415E3C6B36887EA5EF9</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>B0F2082A9912AB626A1C9049</string>
-				<string>2CDCC7398FA4F55DE7D24719</string>
-				<string>FE33C32D23CB14E3A8312C6F</string>
-				<string>EEA7B30423B861EDF4086443</string>
-				<string>FF9A1B272582D8ED50479416</string>
-				<string>088EA2C7131A61736EB66927</string>
-				<string>3B6F380C78A39C32D27BCEA4</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>name</key>
-			<string>Pods</string>
-			<key>path</key>
-			<string>Target Support Files/Pods</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>77BC8B9442CB6DAB389BEDE6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1512227359DF5CFD75AB6137</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>77BD06D866C5DFFE7918214A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C5727C361A185A47C38DE74F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>77DFC004EDE846C1391200F6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2E26C689FCF39C8612D6E719</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7806638A34EE76510ADF9299</key>
-		<dict>
-			<key>containerPortal</key>
-			<string>EF6CCB5D3B9A6AAB7B6B4A70</string>
-			<key>isa</key>
-			<string>PBXContainerItemProxy</string>
-			<key>proxyType</key>
-			<string>1</string>
-			<key>remoteGlobalIDString</key>
-			<string>019EC915480E3C1C93519A28</string>
-			<key>remoteInfo</key>
-			<string>Pods-SampleTests-RxLibrary</string>
-		</dict>
-		<key>78419FA9BB1CF508010CF41E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>GRXImmediateWriter.h</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/GRXImmediateWriter.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>785287E4190404F2011279B9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>223682FDADBBFC7CCE7AB8D1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>788751C7F8A6048D4D424568</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A24D9C9B0A3B1531053B1316</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>789410F4F037AB5E3F457507</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7554996AD809A448DF1F241B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7898506CBFEA253B559331DD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CE613B64A3AA1DB09D137B22</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>78AF39D8F892B7377F66B941</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>json_reader.h</string>
-			<key>path</key>
-			<string>src/core/json/json_reader.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>78C695EEFAB9F8E82AC4FB7C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A1CDA6321F1A6FF2F8828222</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>78D59FA1BE988979B6761F14</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4BED3946EC8B30746EDB3C17</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7913EFBB226B7A0303E92053</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D99750A8B713DBDFD2B7EC99</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>793B98225026B04927554AEA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CA65B1878419143FE2644503</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>79425FC1F6976BF842091CB7</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>750736E07515A06AC9B6BCB8</string>
-				<string>49EC1FF918F97DC07B0C6516</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>name</key>
-			<string>Development Pods</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>797150103FE8B73C8C699933</key>
-		<dict>
-			<key>fileRef</key>
-			<string>758610F4F170AD69EC353CA2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>797AF8684E995C32EADBDF43</key>
-		<dict>
-			<key>fileRef</key>
-			<string>26D71D13BCCCE8C95C4A4AD2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>79BC090DC8C39AC2EC9E16C9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1B4CE102C55280CFA2F5A216</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>79E71A7CC255E1AF5C14A75E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4E994676D533E9CC25F4518E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7A2C0FE529F637D6478C9294</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>grpc_http.h</string>
-			<key>path</key>
-			<string>include/grpc/grpc_http.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7A3E901E7AE5B92F9B432D73</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>CD20AC061F19BD056952FAF9</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>YES</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-gRPC/Pods-gRPC-prefix.pch</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_CFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_CPLUSPLUSFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-				<key>VALIDATE_PRODUCT</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Release</string>
-		</dict>
-		<key>7A634A263E9F3E1286FDD9BD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9C4F9B2E32C34E146AA06A7B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>7AA177C0AFC491F3C14C5AE6</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>cpu_windows.c</string>
-			<key>path</key>
-			<string>src/core/support/cpu_windows.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7AAF487B253D60E1791DEBA7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>80009AC97A88857C7E6B93FC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>7AF731AB17C58A7859435B4D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>027FD40220A6CEE42890FCFB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>7B2CC7A9FF6A85E4C20FF971</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CD3038A42DDA7AEB8DA259C2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7B307E7187D641E851349DF7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>56992ABBA02D4488F6EB2153</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7B42372EFDE13562FA668CB6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B76388DAE36733682FF681AB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>7BB1EB3259E3DC428BA9927B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>resolve_address_posix.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/resolve_address_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7BEBC7042ABEB45E221A10F0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F479DEC52B8363BF3688AAFE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>7BFE9A7FA41C3C4434694884</key>
-		<dict>
-			<key>fileRef</key>
-			<string>20FA3472CA8E5FCF1F3A55D3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7C25482D582A5D4E5DD54FCE</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>channel_stack.h</string>
-			<key>path</key>
-			<string>src/core/channel/channel_stack.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7C2E713C77E0810004604D1D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>900F3BE96F445E868C426425</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>7C69F11820431FDA95D6B376</key>
-		<dict>
-			<key>explicitFileType</key>
-			<string>archive.ar</string>
-			<key>includeInIndex</key>
-			<string>0</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>path</key>
-			<string>libPods-SampleTests.a</string>
-			<key>sourceTree</key>
-			<string>BUILT_PRODUCTS_DIR</string>
-		</dict>
-		<key>7C7175481B4FBC8D9E80A2B9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>05B9CCD334DC99FB0BF50D47</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7C71802E69011B6C745E2BD0</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>completion_queue.c</string>
-			<key>path</key>
-			<string>src/core/surface/completion_queue.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7CD2BC67F9A63F19E985242A</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>file_posix.c</string>
-			<key>path</key>
-			<string>src/core/support/file_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7CD744B1ED1027A4C7849EAE</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>ssl_transport_security.c</string>
-			<key>path</key>
-			<string>src/core/tsi/ssl_transport_security.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7CF07C36E6664675E65A4BBF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>34031C0126BC6758614E2329</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>7D10EB224B07EE04E5AE8877</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>02C6C43B4D8BA13745884C87</string>
-				<string>E2F7C15B7051EC560A0C784D</string>
-				<string>34E9DCBE6EA4E46854C7A620</string>
-				<string>8CA4AA75EBB3A46F7B81117D</string>
-				<string>1CB9E8D0C728DE376555F95B</string>
-				<string>1FA2B1E16BCB0028CE4D0D30</string>
-				<string>CE61EDC94355F84767BAC48E</string>
-				<string>1CB7FD40DEFA18E01CD0A446</string>
-				<string>CA5BA54BD3D7B9741F0B301D</string>
-				<string>826656CDB84345D9B7AADA81</string>
-				<string>5B8F0AE9A06375432CAFB284</string>
-				<string>7FA0DDE7056998D336375D5A</string>
-				<string>6F9F439B6E33296246D041AC</string>
-				<string>EA069FB60539F05F18E6ABB8</string>
-				<string>C8A449C08910901EFB613892</string>
-				<string>C89CF0151F1149F2E7A3CA29</string>
-				<string>02BFDCB323EFAA40CB9AC180</string>
-				<string>1625667FEAD7C03BF05072D7</string>
-				<string>EB99EC4D85B47B39D76828E9</string>
-				<string>A46D5C849CB7443E1ED77E72</string>
-				<string>5FC169197462F0F7F899AEDF</string>
-				<string>74EBFC114B1D3C4FCEF0EFBB</string>
-				<string>3FEB3FA79FEE72F49495FA8E</string>
-				<string>23862C0452B23FBD75CE7A2C</string>
-				<string>B733F1A82171F3389F2BE994</string>
-				<string>86A6CC6B84C0B777F134B315</string>
-				<string>1536719610E89D217A1690ED</string>
-				<string>BDEA784DF960F3A89447F559</string>
-				<string>2F3EE0D0754C86C1A9645791</string>
-				<string>EE89B7A093F1B774EE6D2B6F</string>
-				<string>4309D58C95BD00159D83EAF0</string>
-				<string>6BB92BB757E5CF342F886DB4</string>
-				<string>1A7544DE3FB366A63C120399</string>
-				<string>DC7516FB8708E4912E4CB837</string>
-				<string>BB969021CE33D94A86350427</string>
-				<string>B64D4E9631ED195D19131433</string>
-				<string>7BFE9A7FA41C3C4434694884</string>
-				<string>4913B127B0F2095A8574E697</string>
-				<string>F2A56F49466FCD1D5197B2C2</string>
-				<string>93FA70D0DCA210F25B87F7C6</string>
-				<string>6A5B4F6A4388D41CD98E73DB</string>
-				<string>79E71A7CC255E1AF5C14A75E</string>
-				<string>EAEE508B3460A40554BA3026</string>
-				<string>E614A9EB40C74815D9492143</string>
-				<string>05DDCABAC8346AB00E66744C</string>
-				<string>C1897F90EAC9B8356AB0C355</string>
-				<string>17718474B2B466194D6D2BBA</string>
-				<string>60D2021139D55AAD81C49AA0</string>
-				<string>12CD7362B97079B6D8CC0323</string>
-				<string>B434C6A8C14B9445C030ED58</string>
-				<string>99AE681AC62D074FBB97AF0A</string>
-				<string>5051443D7B4C41C9E00D50B4</string>
-				<string>8A77A92BBF7D2DBB87D169F1</string>
-				<string>1178DF24E96E755C938AF601</string>
-				<string>15CA149B86393A6BD1ECA4C6</string>
-				<string>F7147314809CD3100CD9DEBD</string>
-				<string>A70FAAADAA233FEE69C952DA</string>
-				<string>C02ADD3539DAB85FD034AD51</string>
-				<string>BCEE397F8F79855073448765</string>
-				<string>733C159D3DC1A3398DE12050</string>
-				<string>F9FF9B986B80F1AC443B1B4B</string>
-				<string>082147556AD598669355FC87</string>
-				<string>A3C9715375F68A794366B7F6</string>
-				<string>27035AA2B3381D70E0EB2101</string>
-				<string>E3CBB834ACC21DD968334F8E</string>
-				<string>9B6939A5C53796C99A4F4986</string>
-				<string>67ED3520E93EFB8CB9A2A625</string>
-				<string>AFFB941C48B8E3F5491B105D</string>
-				<string>397ED8675D54BE6AF1067594</string>
-				<string>733B0554F0EA0960BCF1D52C</string>
-				<string>EE75656CA1893E65459C546C</string>
-				<string>0626C0BB65A5ECCFCADEB364</string>
-				<string>10FA2D02DBFF1B75C88B905D</string>
-				<string>CD9A6BE2F6F670FD7EA634F3</string>
-				<string>72A9C245AC433237E4A21E59</string>
-				<string>D8718D298A042D6F9C7519C5</string>
-				<string>6798C55C2B628860663AE70E</string>
-				<string>FEFC65FEABCFD86D81F6E4B8</string>
-				<string>8C9CAD95F444BEFA798AAA2B</string>
-				<string>997D0FDE896555A4EDD25DF5</string>
-				<string>592AC39AC3FECEB19777C5D6</string>
-				<string>4A33FF2DC647B5741A56889F</string>
-				<string>A4787804FC3F866FA96D4F51</string>
-				<string>8221005AD71A2E472245077E</string>
-				<string>3F95DA2B90D8CEDFB0373C06</string>
-				<string>7F82F683B6A447F2B7962FD9</string>
-				<string>1E15FCBA075ADB76707F2B25</string>
-				<string>DFD3142F22B9BA43FB80FE88</string>
-				<string>F7A71A6927720A7283CAC548</string>
-				<string>9AD978E8E1E959E446949C8C</string>
-				<string>659665B6AD770297A75853CE</string>
-				<string>DF55C80F0BF55E243ADCAA23</string>
-				<string>FFDD797E31A4F9B35936B04B</string>
-				<string>0843CBEFAC04EF3AB671EA0B</string>
-				<string>307D08AD8917F2A1AD228EB8</string>
-				<string>6689C756FC41AA9CFC2443A0</string>
-				<string>6CFB0D6E49B2A37FB1670BE8</string>
-				<string>A42ACDD15164C9316B47041B</string>
-				<string>82A9C721332B429EFCCBCABC</string>
-				<string>2F4F4EE4EE322EA424849452</string>
-				<string>3B3AA1BA6036387228B68A8A</string>
-				<string>77B160290490CF457B4F571B</string>
-				<string>8AE2D34999AE254A280343AA</string>
-				<string>41296DD9C638F26070B35F62</string>
-				<string>7C7175481B4FBC8D9E80A2B9</string>
-				<string>E8AA156BA4A03A9073B19806</string>
-				<string>24171A028BAEF79F1EFDFDD1</string>
-				<string>D4F5E1AE044C187B810AD07F</string>
-				<string>015B4FC95DE52539055C0A0A</string>
-				<string>6C2CF13F6F29A5ED25D037AA</string>
-				<string>D38F265C9E832B713B3A0724</string>
-				<string>9BADD77952D657D18AE3A86B</string>
-				<string>4BF420C2743CC6CA325EA4BA</string>
-				<string>7D7991EFA53B3E06869B177B</string>
-				<string>027D20FE486D8D2C32172A96</string>
-				<string>AD34B306F6CB575CDF80D2A7</string>
-				<string>DE48398D09545395F18443EA</string>
-				<string>F7045F65305B4686C5B1F77F</string>
-				<string>01F8EC4930C71D3E98F74F35</string>
-				<string>89F9F2F5E1139B63609AE0E6</string>
-				<string>37A7984C21A54FE69C671D9F</string>
-				<string>F2353633639C898F17028730</string>
-				<string>5E0BB9E5D28DFAD2750FFCA2</string>
-				<string>CB64B312FE4E0FBFE3112A70</string>
-				<string>6C9A8DD619972DE3D36F2646</string>
-				<string>A7A56D1A8B33BAE254E2B2B6</string>
-				<string>96DF8107CFC358AF2393EA60</string>
-				<string>D8E95F46A8CCD36804EE6671</string>
-				<string>C7E7619F0059B8743B66A912</string>
-				<string>E6D9448BE62BF145C8C4DCB6</string>
-				<string>9DD2ACD0CEC24A82EAE7D854</string>
-				<string>94DB75B3684486D6B241D326</string>
-				<string>1E06ADB8CBA69DCA97B2745E</string>
-				<string>B36B1044D0423D546E9F41AE</string>
-				<string>D5EE6C4A25A583B033D84C2E</string>
-				<string>E67D12231F5C1EEFFA502A57</string>
-				<string>10A6464F5ED77A4099AFE7FB</string>
-				<string>42E0E0E0F6E9E32B7E5F648E</string>
-				<string>070F778E9840EAB236589520</string>
-				<string>694ADED078B5277472B37773</string>
-				<string>94B3BE6E9D96C1C64D075A3D</string>
-				<string>013E1A4AE6CD84F3F0CAFF32</string>
-				<string>77DFC004EDE846C1391200F6</string>
-				<string>7FCF4D095759B320887FC62C</string>
-				<string>0120E03A8ACF06BD221604EE</string>
-				<string>A3F9BDA1B1ACF64CF140F4FC</string>
-				<string>DDE76DB46D07831D3E5B09AA</string>
-				<string>2D369576F579410EB00E315D</string>
-				<string>D7D4DF8890E0FECEFD6A913F</string>
-				<string>50F00E6C4C2A1F5D3D6380C1</string>
-				<string>E868EF3CBB39DBAEEFE43C2E</string>
-				<string>47761D2AAD51AFCEAA49E81A</string>
-				<string>A50F1943C62B45328D8AE0DA</string>
-				<string>8BE1EC9813A8C593519BB7CC</string>
-				<string>49E559F46D300D059E54AE07</string>
-				<string>55A8650CB9AFB5E2CC137D7D</string>
-				<string>E450AE9CDBD525C20BCB3507</string>
-				<string>9995E79BCB6DEF68BDFE53AB</string>
-				<string>D367BF5004329D41346AFFF5</string>
-				<string>6CCA28942D772FED2E20FB07</string>
-				<string>FCAC52A4C995C14111912FE9</string>
-				<string>5F5E1704B31255289324EA4B</string>
-			</array>
-			<key>isa</key>
-			<string>PBXSourcesBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>7D2023720CB66FFC7E2C8A1E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>path</key>
-			<string>Pods-RxLibrary-dummy.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7D2B0DEE69CC6460A769D663</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C78D061C9F46F06C8334F4E4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>7D6252CA5EC10ACDF5E55526</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>CD20AC061F19BD056952FAF9</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>NO</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_DYNAMIC_NO_PIC</key>
-				<string>NO</string>
-				<key>GCC_OPTIMIZATION_LEVEL</key>
-				<string>0</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-gRPC/Pods-gRPC-prefix.pch</string>
-				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
-				<array>
-					<string>DEBUG=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
-				<string>NO</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Debug</string>
-		</dict>
-		<key>7D7991EFA53B3E06869B177B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BA4782F1ECEEACD72F202A06</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7D8B6EC4FE13EA3E130862A2</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>channel_args.c</string>
-			<key>path</key>
-			<string>src/core/channel/channel_args.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7D8F102F913D78DF3B2ED68C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E3E4C05ADDDB4242AD752A04</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7DB53196F7B3078EA3DD8F84</key>
-		<dict>
-			<key>fileRef</key>
-			<string>648AF9A08A47AF20C52B8B4F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7DBE0B39468165252F95191A</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>GRXWriter.h</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/GRXWriter.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7DD1ECB5C561E628787F8B15</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.script.sh</string>
-			<key>path</key>
-			<string>Pods-Sample-resources.sh</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7E15D59BE449D7E1C774BFAB</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>path</key>
-			<string>Pods-RxLibrary.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7E3DC9508597F6CD6A62F51E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0BDF06AEFAF554EB6E9F2806</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>7E4C956749E3386C7DEB12A4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C8B869E1FB97EE7D5761D2E2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7EC5471D8A069EC5545940CF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7AA177C0AFC491F3C14C5AE6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7F396A61A4C14A1C90DCC003</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>cpu_posix.c</string>
-			<key>path</key>
-			<string>src/core/support/cpu_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7F559365BFF3F3287257D7E2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1FD181F59ABA234B38392084</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>7F82F683B6A447F2B7962FD9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>811E3F932053EA8B786904ED</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7F872E2EAC068C8108225651</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>socket_utils_posix.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/socket_utils_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>7FA0DDE7056998D336375D5A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3A93AAC878F7B1907C695CF4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7FAEFF9812D0403032571A9B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1EE530AB0A91A2E4C5D3F6CF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>7FBE9079FE3A6D7FD20FA7CB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>62931C3BEE80AC36EF1C1D6F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>7FCF4D095759B320887FC62C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A99C3A0F6DB1DDFE12666578</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>7FE68294E841BE71789B4168</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FE598A1FD58F4A066AD65636</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>80009AC97A88857C7E6B93FC</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>GRXWriter.m</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/GRXWriter.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>807401F7D2926EA95DCDAE9F</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>5B6CD8263A3E97E4F93EDEBE</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>YES</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-Sample-RxLibrary/Pods-Sample-RxLibrary-prefix.pch</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_CFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_CPLUSPLUSFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-				<key>VALIDATE_PRODUCT</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Release</string>
-		</dict>
-		<key>80CDC153595F68DBEE1A68F7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3E7BCFC8E8B501FC5B0383F6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8108B7358A64888529BAFCD3</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>connected_channel.h</string>
-			<key>path</key>
-			<string>src/core/channel/connected_channel.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>811E3F932053EA8B786904ED</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>iomgr_posix.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/iomgr_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>812B45C4607FD84BDD27DE6F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F19A4D16767373F7873F5B73</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>815DAAD46D8257BF1DAA481F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>394296CD3FBF6441C7EDAADE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>816772F8253EB95CC7B38AE8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>426B8FA69F7F8DC09EC303BF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8173EF11CC5F5D77C0B510F3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3B7551FF2E890E0288CCFF7E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8175EEF52FD10F82A9B1C3C7</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>path</key>
-			<string>Pods-Sample-environment.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>817E0434460DA6B1BC731476</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>NSDictionary+GRPC.h</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/private/NSDictionary+GRPC.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>819C6C98F878B153B96962BA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7CD744B1ED1027A4C7849EAE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>81D793C05D7DEE293F174C8C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>5A244D6060420351A712F2A2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>82046C0E293D7DD34F604072</key>
-		<dict>
-			<key>fileRef</key>
-			<string>630630C2FEBAB1E0CF581ED9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8221005AD71A2E472245077E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>357D8C9988DD885668F2FBB1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8245D7352741D9B71A00227F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>62931C3BEE80AC36EF1C1D6F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>824C3D502C933197486E445C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>67AB9C4F5493800A859FABDC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>826656CDB84345D9B7AADA81</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B2E247D2109256EEBA4BC9F6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>82A9C721332B429EFCCBCABC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9207E6F582C115225797A69A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>82E2169838B02916C0E537A3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>145DC67262745588DD7393C7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>831C5EB71B797C592FFE5726</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8A4CE294B8B3F1F293B2BB20</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>832B21547238DC20024302B5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4EC5137EB2D52417F110AE61</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>834847CB2D9E3A423799E679</key>
-		<dict>
-			<key>explicitFileType</key>
-			<string>archive.ar</string>
-			<key>includeInIndex</key>
-			<string>0</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>path</key>
-			<string>libPods-Sample-gRPC.a</string>
-			<key>sourceTree</key>
-			<string>BUILT_PRODUCTS_DIR</string>
-		</dict>
-		<key>8359D1B2EF954827F01EAAAD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>592C2E4FEB50D9A8D5D5F297</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>836BB5DD3F8F3AC58643748E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>GRXWriteable.m</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/GRXWriteable.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>8395B12D2CD52EFFE24B629D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8108B7358A64888529BAFCD3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>839F46FAD13608ED49CAD3BE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>5822A294383B44D69AB62D69</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>840ECD1BBB2E6E0C33A3FF40</key>
-		<dict>
-			<key>fileRef</key>
-			<string>62D5DF47C43728A2F65C8612</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>842CA809080A7E042EC87FC4</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>pollset_windows.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/pollset_windows.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>84639C670D87B1605CDF6825</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A1380B22B4413997F1D7178D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>847694D8394A2B6887B6ECDE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CD3038A42DDA7AEB8DA259C2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>84B78EBDCA3109C97DDE7D8A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>99B287793D41F6BEE8147D5D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>84CA5442DDDC6A90684A830B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>alarm.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/alarm.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>84F83721C761967A2AFC6316</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BEC6379003DCEBB8729B0EC1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8518B5790A7605D761CDBF5F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>name</key>
-			<string>Pods-SampleTests-RxLibrary-Private.xcconfig</string>
-			<key>path</key>
-			<string>../Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary-Private.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>853B99048DEAA6BA41CC2B37</key>
-		<dict>
-			<key>fileRef</key>
-			<string>5EE3B6D1012B212265C1BB8C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8542018AA6FEDBF4F935FE62</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>bin_encoder.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/bin_encoder.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>858FE0760FBBC96E7ADE9FE4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E7BC0C7DDB495B1D29A3D309</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>85C29889C051DBC4C8256D32</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E77C5C56A04DB8BC5EB4E7F1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>85C81F2814D63626BCC2702B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>58B662EA4B19ABA90ADBBB6F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>85D6F5B4AE1B266E2DC5055E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>alloc.c</string>
-			<key>path</key>
-			<string>src/core/support/alloc.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>860AB2323499E0CD99F1FD3A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3770360C7C4E24EF561EDD00</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>861AE75A85F0E73C02BDA770</key>
-		<dict>
-			<key>fileRef</key>
-			<string>689FF7B5170019FC27CF8682</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>861D897EEDD6DE2936DD3C7F</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>8E8B137FEC094F5311952923</string>
-			</array>
-			<key>isa</key>
-			<string>PBXSourcesBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>86272741E64E0FD21E28911E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>credentials_posix.c</string>
-			<key>path</key>
-			<string>src/core/security/credentials_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>8644A327C3F768ED3DF43DBC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4FD344A4C37F355D47A7FFFE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>864792DC47D8685A6825FAC5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>46B78A6F01667D7B0FC98E17</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>865BD7C01B6B064547590849</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9E248AE4927FC2B338C5BD26</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8660BD5D9AD30CEE8070E879</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>socket_windows.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/socket_windows.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>86694F04BACF1D2F3D67BF91</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>ssl3.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/ssl3.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>8688B8920C01933C25D3EB9F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>name</key>
-			<string>Pods-SampleTests-OpenSSL-Private.xcconfig</string>
-			<key>path</key>
-			<string>../Pods-SampleTests-OpenSSL/Pods-SampleTests-OpenSSL-Private.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>86A6CC6B84C0B777F134B315</key>
-		<dict>
-			<key>fileRef</key>
-			<string>77B55EEAAE337991A39F497C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>86FD3452952E2F203454F00C</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>name</key>
-			<string>Pods-SampleTests-OpenSSL.xcconfig</string>
-			<key>path</key>
-			<string>../Pods-SampleTests-OpenSSL/Pods-SampleTests-OpenSSL.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>8715B25A0DE3CACC14BBD626</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>thd_win32.c</string>
-			<key>path</key>
-			<string>src/core/support/thd_win32.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>87351743F2826AD6D5FF3269</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>GRPCCall.m</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/GRPCCall.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>875508ECF6FCD3B66FBBADA7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9E2995626A53D35C33A1E880</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>87608FFD0BF559777DBB65AA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>236820A24949666DC4BEFCE9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>87B3EDBE61749E23ED153D69</key>
-		<dict>
-			<key>fileRef</key>
-			<string>22E568AA3E9C78AEA9BD62D2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>87DB11961CD607A570449DF6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>74BD7D89488C19B0692A54E1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>87DD1D90ECBA404067F5EE90</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3495EDA1753AF43A20FA6CA0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>87FABC286705B298558FB92D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AD884583F0A7FE161EBDDCEB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8836416F82CDC1B7A9BB1EA7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EF12D13A82E13B6B4B9F7B1E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8861AC9195B9A0AE8BE02F53</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6AF51495B3362C2BD08A0402</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>88A01A68E297ADFF4229FFE4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>90D51E97705F8ED52E08B452</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>88C9A13283038FA815BFA5C9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7C71802E69011B6C745E2BD0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>88D37F336B2D9AAE0B6FC44E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6AF51495B3362C2BD08A0402</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>88D67EC37DF042B27D94365E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>frame_data.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/frame_data.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>88F3023C5489C4917A7C74C6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>60B3FFF7224676E000FFC99F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>88F42A9686666533A8324AC4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>17B128836D599F09BCA81641</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8913A0830655A122B5D9C9BC</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>frame_window_update.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/frame_window_update.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>893179B2099EC48C698A43E5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DEC0127013FF7E2BE404F94A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>894D1EE01C658C3F8033DCAF</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>GRPCMethodName.h</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/GRPCMethodName.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>8971F458BBBF077C5043CA48</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EDA7C450AB879FFBCC923362</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>89DABF79DFDE395AF0FC7983</key>
-		<dict>
-			<key>fileRef</key>
-			<string>35B7B3CF4F701A5A496218D1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>89E1C78DF79D09C01BEB57D6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6CB7527D34B577A0608E122B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>89E2EEA76098486434C7121E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>chttp2_transport.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2_transport.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>89E5043AE8F6F64177A8160F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D07B947A06B7CDA82DF5378C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>89F2226343E1DDD80EC4FE03</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FDC6CC7E16BE18E45D8AFF9E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>89F731BCE042473E4B4AC2C0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EB4D5B08A336D5C42E28718D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>89F9F2F5E1139B63609AE0E6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FFA389620F44B4EAF5D26E26</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8A02EA52778C79CAB5333CB4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F21D1B56522DBE967A41A000</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8A07078DA38B5D8B17133D0C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7C25482D582A5D4E5DD54FCE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8A30A080A65CA525F242B11D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>cmdline.c</string>
-			<key>path</key>
-			<string>src/core/support/cmdline.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>8A358A585170373B06F1B944</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3F2A075199D540127B67DFAB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8A3FFA359AAF23E5D40C4625</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>cms.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/cms.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>8A41EEE9A1314DA0E0D0CDDF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B51324FB9685E791FBF732E6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8A4CE294B8B3F1F293B2BB20</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>fd_posix.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/fd_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>8A5FEA7AA696E055215AB97A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E975EBE61BC4688C5F7036F7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8A77A92BBF7D2DBB87D169F1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C8B869E1FB97EE7D5761D2E2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8A8A433981E87901C5F6A698</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>tls1.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/tls1.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>8A92829929077C02FC1CC12D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0B1FCC62895AC4E53CD44BA6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8AD72395996C333C79309F9D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>89E2EEA76098486434C7121E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8AE200846C40281679993E07</key>
-		<dict>
-			<key>fileRef</key>
-			<string>394296CD3FBF6441C7EDAADE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8AE2D34999AE254A280343AA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6F3724EBA46ADF2702ECF9D9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8B16C4C6B750EBDB84D4250A</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>objects.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/objects.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>8B1BFA61AF5AAEE70B844F5C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>223682FDADBBFC7CCE7AB8D1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8B3B37023FF9E8E73CC99322</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>hmac.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/hmac.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>8B3B920E132387A24E6485A5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AC23394D43B5B113928C948B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8B4F15415CF9347F68C5A545</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9280D9C818A79AD66D50A7F0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8B5AB7072FECAF4876BB4566</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9B19C806B4AFE8A83414EE19</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8B90BA8890B6CDDCD1AF9E53</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8913A0830655A122B5D9C9BC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8BA82365E8893A76F633998A</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>des_old.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/des_old.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>8BA93076DF9D72C54D5CC4F3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B4573EE9D7FF342E24C6B89F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8BE1EC9813A8C593519BB7CC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A1380B22B4413997F1D7178D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8BE21821E665BA2D4986D025</key>
-		<dict>
-			<key>fileRef</key>
-			<string>35834F8EFDF918F766424079</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8C1BBEAC1B5EDCCEABD4C63E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F3D3988DCB6A896529EE0FBB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8C51017EFB01682F11715864</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AE386E16943E96A0DC7068B6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8C9CAD95F444BEFA798AAA2B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DF5227880697E2E68AC060D3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8CA4AA75EBB3A46F7B81117D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>236820A24949666DC4BEFCE9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8CAF9AA785D10DDE677C4CEB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E79FE1F6E53A6A4575BE1B88</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8CDDE00C6F3075F7F5B5BF00</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C90346AE945DEC7DE5A020D9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8D7DA71EEC85D0C95235EF68</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>time_posix.c</string>
-			<key>path</key>
-			<string>src/core/support/time_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>8DD5F0FE1AB891A569BA4CCA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D356DE374B525E41FE09BB18</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8DE2FEF54A4DB08AB4D23FC8</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>krb5_asn.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/krb5_asn.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>8DE6573664A00D81395AB83C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>482CEB489ABA2F2345752A59</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8DE9D9D8876636E88CBF0074</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3495EDA1753AF43A20FA6CA0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8E740BA19823D74A7D9CC6CF</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>NSEnumerator+GRXUtil.m</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/NSEnumerator+GRXUtil.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>8E77610110664D7D316E6859</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6063F859BC59312B059CF91D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8E88B4467C34765BCCE1C255</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E8C8EF12A80456AFEBA0C4CE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8E8B137FEC094F5311952923</key>
-		<dict>
-			<key>fileRef</key>
-			<string>46CA1F0737ACC82A5C6142D4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8E92C6DB002C44F948207BBA</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>E89C11B4F888A8F5906D2262</string>
-			</array>
-			<key>isa</key>
-			<string>PBXSourcesBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>8EB083D4BC94E6C9CD4F011F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.script.sh</string>
-			<key>path</key>
-			<string>Pods-SampleTests-resources.sh</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>8ED9074DC03EBED358238D55</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7AA177C0AFC491F3C14C5AE6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8EF90CF24E8E58C2CBBE216C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>08C7C14F8FDDECE621D05299</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>8F2A5ECC396D1A11DBC3F020</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>camellia.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/camellia.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>8F65EAFA483D076564A9C4D5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3CA38C9500AC04DE0482CFDC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>8FBF7F6782C3B59DFC5D7E91</key>
-		<dict>
-			<key>fileRef</key>
-			<string>5B5980115B9F57F23C415785</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9001F14AB338113F598087D0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CC7DBCF5B4C830C34F6A42CA</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>900F3BE96F445E868C426425</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>atm_win32.h</string>
-			<key>path</key>
-			<string>include/grpc/support/atm_win32.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>90D51E97705F8ED52E08B452</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>GRXNSScalarEnumerator.m</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/private/GRXNSScalarEnumerator.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>912AD406A4A2BFE603F88986</key>
-		<dict>
-			<key>fileRef</key>
-			<string>255D1090014941559D1E8208</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>916A8345964DEAFB4DDF8D1F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>sync.h</string>
-			<key>path</key>
-			<string>include/grpc/support/sync.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>91A88D54C9689A2113DC0138</key>
-		<dict>
-			<key>fileRef</key>
-			<string>05B9CCD334DC99FB0BF50D47</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>91BBF730DE85752E739CF1DD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6BE65E7C42C30A9CC06C37CC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>91D39668B98F37C112A8B764</key>
-		<dict>
-			<key>fileRef</key>
-			<string>58EE7495552555A9FA26D6EC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>91D9331637BB25ED83E3315B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>grpc_security.h</string>
-			<key>path</key>
-			<string>include/grpc/grpc_security.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>91DC471E83D0AC8ABD0576EE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>082732821A301BE319A43D55</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>91E84383991B266D3EDDD743</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>24CDDC5BBA2BDB009EE79DA4</string>
-				<string>C3201014141F320289CA3D8A</string>
-				<string>B8F468E0514A545BA170FA5A</string>
-				<string>893179B2099EC48C698A43E5</string>
-				<string>2EB374AFB178557E283EB705</string>
-				<string>A25215D90717D64C8C586067</string>
-				<string>88D37F336B2D9AAE0B6FC44E</string>
-				<string>14BEBA34B7520B2443B79C60</string>
-				<string>45D73912F742D47D3A69CDB2</string>
-				<string>98994CBB4E366E4F37914265</string>
-			</array>
-			<key>isa</key>
-			<string>PBXHeadersBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>91F2DEEF628E5DF1F4A853BE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>19DC88FB14050D7CD7864D16</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9207E6F582C115225797A69A</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>message_compress.c</string>
-			<key>path</key>
-			<string>src/core/compression/message_compress.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>92087180D1834EEC0769E330</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>dtls1.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/dtls1.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>920B8A00DF3D672A7C197C77</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>A77A91108B021C305BFBF7CE</string>
-				<string>CC1ABB7DE0E820B6381CC7FC</string>
-				<string>252E38BCC9C7951594800E81</string>
-				<string>D1D8050640C12EB8E6434E95</string>
-				<string>A5FC1696AB300DBB05DE0DF4</string>
-				<string>9EC7C7896078372A62FF2746</string>
-				<string>69D9CFAF5BBB7F17B1E3D73F</string>
-				<string>2B7503E27A95E1EB267B5E07</string>
-				<string>6F99344551E6279E35FD08F7</string>
-				<string>9B7FC120251D3CC84542C66D</string>
-				<string>1F0744AF91DD80F43150691E</string>
-				<string>B268854E0D162340343833EA</string>
-				<string>BF05F1B34A30F977429A9F9B</string>
-				<string>501094B8BCD7F5D827ACDEFD</string>
-				<string>5F7A7C576417292D6E8EC3B3</string>
-				<string>2D1977CF27C7C78C7A95EC10</string>
-				<string>F50B90C1BA01A80E9C4CB298</string>
-				<string>060FC8529A11C241F2CFC5E0</string>
-				<string>7C2E713C77E0810004604D1D</string>
-				<string>C6F740E5573370F04275A7DA</string>
-				<string>2A9A0E7D3723EE77CE56F10C</string>
-				<string>D4472E3F37A39EF015330DCB</string>
-				<string>2E99AE7073DF58050D165405</string>
-				<string>511BF4B6B736572A3BFC20CD</string>
-				<string>4458DA3DF9B7A626495E26DC</string>
-				<string>31CC1E2FF4E37C0C046972B2</string>
-				<string>C97972638D710F4446D39E6F</string>
-				<string>7E3DC9508597F6CD6A62F51E</string>
-				<string>AA48B817E48D9B959ABF950F</string>
-				<string>7898506CBFEA253B559331DD</string>
-				<string>1BFA2C1670708A3FDCA849AD</string>
-				<string>F929C16C6978C3B172BA8976</string>
-				<string>89F731BCE042473E4B4AC2C0</string>
-				<string>DBAC7AC3458F6C79EADCC647</string>
-				<string>F1F8F4835011436120E309FC</string>
-				<string>BF0D385CA7D3FFF7B2FB2700</string>
-				<string>30781B6FDC7746382EA8FAB6</string>
-				<string>2D65D8EF63B095DF957B3CA5</string>
-				<string>61C9C646E1D68077ECA5F55C</string>
-				<string>CB24B6E9B05846FFFF9BAC93</string>
-				<string>815DAAD46D8257BF1DAA481F</string>
-				<string>81D793C05D7DEE293F174C8C</string>
-				<string>C0F66A72D3B60BC20D5FAB7B</string>
-				<string>92B8832576A50F8A90715BD4</string>
-				<string>F27DD9172CCF60EA48A9D24F</string>
-				<string>376CE283BC1815F79FBEA580</string>
-				<string>21BF57D149E2F080A966C226</string>
-				<string>51DA84AAC8731914040A7D12</string>
-				<string>EFFB90580D01B54E65176543</string>
-				<string>C2C45569DFCC4A87959EB6F8</string>
-				<string>7FAEFF9812D0403032571A9B</string>
-				<string>9EBF34BC5E21D4C58837D2D8</string>
-				<string>DFED113ABBEAC882934BBFC1</string>
-				<string>D30AAF3157C10EE10C4C5B92</string>
-				<string>B959FBF591A2ECA874431C1D</string>
-				<string>E91F65D8F03B3963E97AA412</string>
-				<string>CEFBABFC7FDA835A8895C103</string>
-				<string>2906ADB1783E546ED2C16D6C</string>
-				<string>3A25D0EE36B810217C7E0498</string>
-				<string>3AA922014F2EAF68FACB6EDB</string>
-				<string>3AA665531F952C3E179DCBE6</string>
-				<string>5DA81756CBDB0BA47308F08F</string>
-				<string>EF0A1149EF8A5DC86DDADA98</string>
-				<string>9B35874D87B7B2B310E2D1D0</string>
-				<string>23A18642F3FF9C3F82E8A4C2</string>
-				<string>DFD465B0A0AF3C6D94CDE581</string>
-				<string>44F69D97A9658B3BFB97FCEB</string>
-				<string>3E29735ACDA33E3316F68BEF</string>
-				<string>8F65EAFA483D076564A9C4D5</string>
-				<string>E043D5C19FBEAD0A9248545B</string>
-				<string>D043E487EEAF4C42DA3BE964</string>
-				<string>6A6D0174C36F094C22D36D4D</string>
-				<string>EB18A5E519B614F98845DDFD</string>
-				<string>4F0EA7D5816F204F93703766</string>
-				<string>2BF3FB22CD77FE306C424BA9</string>
-				<string>E79C81FC26858E71CEEDEA9B</string>
-				<string>9628538373C3ABE7A8AD2CCA</string>
-				<string>462259396D76315E55627A91</string>
-				<string>D977513CC0C2D53C095D7734</string>
-				<string>99533361C5A0BB6853799F4C</string>
-				<string>13797758B008859B698A8B0F</string>
-				<string>938D2861C29DEF67579B3CED</string>
-				<string>2823E976FE60E85BBB4ABA15</string>
-				<string>E876A6C28C305D05313228B7</string>
-				<string>EF79E092B6F33FBBFFDADAEB</string>
-				<string>3A28A85BE8521BCD09F48A08</string>
-				<string>A43C1BA97BF6D8B44F6F0308</string>
-				<string>9D119B0D8F52C4B54AEBFBD3</string>
-				<string>4C8990A586F5092024104FFA</string>
-				<string>87DD1D90ECBA404067F5EE90</string>
-				<string>F0CD95C2EAD0078BEEB214DD</string>
-				<string>53E5785D6807251EFBFD5B4D</string>
-				<string>22DECC39715F42B545CC5092</string>
-				<string>3C744A856D8C9D47E022CFFD</string>
-				<string>D8C6D1E9C1F88ADA9373CB19</string>
-				<string>1849A9E0893C762909367E5A</string>
-				<string>A287751F9CDF70CFBF029293</string>
-				<string>2409222888E41486090AFF8B</string>
-				<string>61A05D1FB5D07F63DBF41A6F</string>
-				<string>0438074CBCD6FF0D367DBFC2</string>
-				<string>63583B8C3A6A9B5220B32448</string>
-				<string>0BC3E1603E4A8EE1498755E3</string>
-				<string>F148D935163703E1A71B5211</string>
-				<string>666D70D220F299C4C25266BB</string>
-				<string>F60844C0DF7FC20C5D52B33C</string>
-				<string>DE62518571D474D6F5FBBDD5</string>
-				<string>D08EDF1D665D023BBA0D2497</string>
-				<string>3021924999C886E47BB643D2</string>
-				<string>AEF44D25130FD512384C6C59</string>
-				<string>5D30DA979EC0AA4D2F06938D</string>
-				<string>6E09BD8E523822024DCFD99E</string>
-				<string>5552C6D52A2193572031E18F</string>
-				<string>6F6868A8FD54B418A8144ECE</string>
-				<string>FD2023AD24320F96F30D6B10</string>
-				<string>A4733F2F5D168A40A4678F2C</string>
-				<string>76DE390DA5E144716FCE9750</string>
-				<string>1BAE68563D9071D0843994D4</string>
-				<string>AC52DAC2F03A65BCAE33D3B9</string>
-				<string>773715353961760112B70D1D</string>
-				<string>DC44076646DE7E5754BCCDF5</string>
-				<string>6C1FD3E240DB34DF3AA0C957</string>
-				<string>679A20A64E35DA8B2B30068F</string>
-				<string>2FF6527BCE880D11CAEA9120</string>
-				<string>11CD3A24FFE7D392586AE75F</string>
-				<string>E4133810CB117E30EABAAB07</string>
-				<string>254E3BF6152CA41DA8057596</string>
-				<string>A4614786DA3E95C22EE590C9</string>
-				<string>51BD382C1AE557C5AA76B332</string>
-				<string>5EA277C257310B56615985A4</string>
-				<string>797150103FE8B73C8C699933</string>
-				<string>89E1C78DF79D09C01BEB57D6</string>
-				<string>512EA6C1235EE98940728B6C</string>
-				<string>587435AC3184C380979FE720</string>
-				<string>C689032B57F5285CE7A38B84</string>
-				<string>D3A38FD1480AE59DFC4E4ADC</string>
-				<string>F6BF10E8C5299AAEFE385634</string>
-				<string>D9757ABBF6265018F15F201D</string>
-				<string>9446521F16AB9DAE3609558A</string>
-				<string>0032174F6A886E3F8276DF8A</string>
-				<string>56BE8CEDDEDDB2B5611E3F7E</string>
-				<string>F1759ECDCD2C0DAFEF255572</string>
-				<string>A70DDCBD828755B29F645B33</string>
-				<string>21812E5959B6F88D7D667885</string>
-				<string>B3EF9A4EB791478FC44366DE</string>
-				<string>9599012361C5915DAB54C06D</string>
-				<string>63EB911F0668A801C4E92F8A</string>
-			</array>
-			<key>isa</key>
-			<string>PBXHeadersBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>92358934A42A6703DEC6BA0B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>500AE03C874D997750B5836E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9237ABE0F366133F9413B336</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>Pods-SampleTests-gRPC-prefix.pch</string>
-			<key>path</key>
-			<string>../Pods-SampleTests-gRPC/Pods-SampleTests-gRPC-prefix.pch</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>9265E4744047BF8406063EF0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8715B25A0DE3CACC14BBD626</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>9280D9C818A79AD66D50A7F0</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>GRPCMethodName.m</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/GRPCMethodName.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>928CE56932F20758C9C6FD73</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>name</key>
-			<string>Pods-Sample-OpenSSL-Private.xcconfig</string>
-			<key>path</key>
-			<string>../Pods-Sample-OpenSSL/Pods-Sample-OpenSSL-Private.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>92ABC8770AB95C0981A56C4B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EB4D5B08A336D5C42E28718D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>92B8832576A50F8A90715BD4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CA63389D5D8D9AF7044B1551</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>930B9B65578ED4E13242B376</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4A594D1939C7AD71889FFD1D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>934CB9F465F6746EA1B5F039</key>
-		<dict>
-			<key>fileRef</key>
-			<string>592C2E4FEB50D9A8D5D5F297</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>9374E1206D186C113AE496DD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3FF59718D8279E1EFBC613A8</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>937F9ADAC8A717F4BD4DFCD9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>09C5C94835C932491C6D797A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>938D2861C29DEF67579B3CED</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2B40B07A6D0FE99745EE82F2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>93B61D551F875828DB26C24E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>98D504A8975304EC7E951FBB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>93FA70D0DCA210F25B87F7C6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8A30A080A65CA525F242B11D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>9446521F16AB9DAE3609558A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>58B662EA4B19ABA90ADBBB6F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>94B3BE6E9D96C1C64D075A3D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F4642401A54E132E9EFCB2EA</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>94C946E241776605C1728302</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8A8A433981E87901C5F6A698</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>94DB75B3684486D6B241D326</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6B670E75366F84FC704EE412</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>94DBACF5F8646DE3687EA89D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>GRPCCompletionQueue.h</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/private/GRPCCompletionQueue.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>94E07A810D4029588C061989</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A1187890FF30DC066C063A22</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>954E85CB80A3FE5A80022239</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EF5BF73B082FA5277F400D09</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>9578277167194D99EEA1D159</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D561FFCDA8946C531DE569BF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>959372ADA2AA68716B44E8EC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3061C7B10FA9E321217600A0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>9599012361C5915DAB54C06D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7015927CC6AFAE2A1C0EB34A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>95E92CA0D48214FF9CBAEE5E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BEA26311AB6D7A1968DFFE5D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>9628538373C3ABE7A8AD2CCA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EF12D13A82E13B6B4B9F7B1E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>964EE39911513DD28C095429</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A97716562F0D00563BACF91A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>965B77D271A8DA40952B05FB</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>NSError+GRPC.h</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/private/NSError+GRPC.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>96DF8107CFC358AF2393EA60</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7F872E2EAC068C8108225651</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>96EDDB65D155EF4F18258A48</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>http_filter.h</string>
-			<key>path</key>
-			<string>src/core/channel/http_filter.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>96F81799EABEE97EA855A9AA</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>7565989F81F47BCDD132699E</string>
-			</array>
-			<key>isa</key>
-			<string>PBXSourcesBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>96FA40B0A24DFD1A977EA48C</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>transport.c</string>
-			<key>path</key>
-			<string>src/core/transport/transport.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>97385E01E0518B4E89D823CE</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>alpn.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/alpn.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>9740CE8A2943145FA3F1A1BC</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>surface_trace.h</string>
-			<key>path</key>
-			<string>src/core/surface/surface_trace.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>976E9F36516F90E82231B755</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BB56FF1B10C90442EA0E9922</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>978048BEA83A85DCE4FBD455</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F479DEC52B8363BF3688AAFE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>97A5D3D5027A82D95617B09B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AD884583F0A7FE161EBDDCEB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>97DB14FE1E0A6A8C3BD6B023</key>
-		<dict>
-			<key>fileRef</key>
-			<string>080863E4AE3E6D3E39CAF640</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>98258D7A6CDABCF0EADC9F50</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6921582421293146CB69A657</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>98832F1AA62791BCECA5C960</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>base64.h</string>
-			<key>path</key>
-			<string>src/core/security/base64.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>98994CBB4E366E4F37914265</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AF8EC9542851957B39CCBBCD</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>989BDFD334A0E7681EB229F9</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>transport_security.c</string>
-			<key>path</key>
-			<string>src/core/tsi/transport_security.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>98D504A8975304EC7E951FBB</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>pqueue.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/pqueue.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>99533361C5A0BB6853799F4C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D451028DF94152C4822D977C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>997839BCB6FCF8646369F61C</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>pkcs7.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/pkcs7.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>997D0FDE896555A4EDD25DF5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0055F4110B7DF51C8F7D0DC3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>9995E79BCB6DEF68BDFE53AB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>033E9B255AF1FCC1058CB337</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>99AE681AC62D074FBB97AF0A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3061C7B10FA9E321217600A0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>99B287793D41F6BEE8147D5D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>cancellable.c</string>
-			<key>path</key>
-			<string>src/core/support/cancellable.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>99C1B279E8FFE738C373CE5C</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>transport_security.h</string>
-			<key>path</key>
-			<string>src/core/tsi/transport_security.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>99C2E00B823FF695DE1AF703</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>opensslconf.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/opensslconf.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>99C95EE3DF69765D8083B804</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C872112D1B148457B204ABBE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>99CDD912A0C4356D666A5873</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D451028DF94152C4822D977C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>99CFB370C1B8272A5232E251</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>fake_transport_security.h</string>
-			<key>path</key>
-			<string>src/core/tsi/fake_transport_security.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>9A05DC6635D33F7E57048ACD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D7619368410CA7CE988467C9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9A1B00C641DE00364049093D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>308BF23215B052808B4E700C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9A5061527A8C5EE35E2E4810</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>sockaddr.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/sockaddr.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>9AD978E8E1E959E446949C8C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A1CDA6321F1A6FF2F8828222</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>9AECFB9BA8B0B12C4BDE2BEA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>47237B827DD7403D472237E4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9B19C806B4AFE8A83414EE19</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>time_averaged_stats.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/time_averaged_stats.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>9B27123517CC21C323F7319B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EDA7C450AB879FFBCC923362</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9B35874D87B7B2B310E2D1D0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>082732821A301BE319A43D55</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9B395489E55934C02093FBB7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>811E3F932053EA8B786904ED</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>9B54EB6995D92C4AB9DE123E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>json_reader.c</string>
-			<key>path</key>
-			<string>src/core/json/json_reader.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>9B6939A5C53796C99A4F4986</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2EF03C938557266641037A73</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>9B7CB7EE182106E682381A8D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6B8BB7CA63E66D66C95EE7F0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9B7FC120251D3CC84542C66D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F3D3988DCB6A896529EE0FBB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9BADD77952D657D18AE3A86B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>592C2E4FEB50D9A8D5D5F297</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>9BCA3C5E1E11A295F38CAB7A</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>http2_errors.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/http2_errors.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>9C3207F46DFC1D3739F7FDEF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>90D51E97705F8ED52E08B452</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9C36EE09D8B5E2C381B3A625</key>
-		<dict>
-			<key>fileRef</key>
-			<string>36DC5DBBA81F58CBC6F12B69</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9C39C1CE82E8BC25BAB1841E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3CA38C9500AC04DE0482CFDC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9C4F9B2E32C34E146AA06A7B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>ts.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/ts.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>9C63F1FF34B1EC9DC4A2BEA1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>37569C3B8AC5433CF65B34F2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9C8009641C88B04CF81A8B73</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>json.c</string>
-			<key>path</key>
-			<string>src/core/json/json.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>9CA870B5860DE32D4F5982D2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>64EE4150A5FFF8C2DF1E1BC3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9CD37E6A52CE5FB20A4ED375</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7C25482D582A5D4E5DD54FCE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9CD70309E5CA5BF655A67D95</key>
-		<dict>
-			<key>fileRef</key>
-			<string>649DBF314EA59E30407979CB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9CEC869A37B26469E7A21C49</key>
-		<dict>
-			<key>fileRef</key>
-			<string>508860F9FE4C6C81958EAFEF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9D119B0D8F52C4B54AEBFBD3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1BDFB1B109564A8847DCC7E4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9D5008808325DDA0BF7147AC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BCB6B2D7B7F1FFDC74F231D9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9D54C44B692F10BD2B2C6018</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B457AA86A4E8558B26ABE2A2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9DD2ACD0CEC24A82EAE7D854</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3D761DFB0128E72F50E4B1BD</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>9DF0111DF6E617967588B108</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D600CB01889EC10BA9FE1D45</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9E248AE4927FC2B338C5BD26</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>dso.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/dso.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>9E2995626A53D35C33A1E880</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>alarm_heap.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/alarm_heap.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>9E31EA7FB9DCBDEB4A07DC3A</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>byte_buffer_reader.h</string>
-			<key>path</key>
-			<string>include/grpc/byte_buffer_reader.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>9E7883191CE933C260ED4842</key>
-		<dict>
-			<key>fileRef</key>
-			<string>34055CA9C85022326ED1CECE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9E8D16D535C5AF31871580C4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>78419FA9BB1CF508010CF41E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9EA92772E4BE82A404130B11</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.plist.xml</string>
-			<key>path</key>
-			<string>Pods-Sample-acknowledgements.plist</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>9EBF34BC5E21D4C58837D2D8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>06AAA04862A9ADFEE90D756D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9EC4107615B7C178804BE158</key>
-		<dict>
-			<key>fileRef</key>
-			<string>84CA5442DDDC6A90684A830B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>9EC7C7896078372A62FF2746</key>
-		<dict>
-			<key>fileRef</key>
-			<string>894D1EE01C658C3F8033DCAF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>9F9019CF97857676B40A69FA</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>frame_ping.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/frame_ping.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>A09A6BB7CAEF78845760BB83</key>
-		<dict>
-			<key>fileRef</key>
-			<string>20FA3472CA8E5FCF1F3A55D3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A0B47EA366747B7F6B89F332</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B76388DAE36733682FF681AB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A1187890FF30DC066C063A22</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>pollset_windows.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/pollset_windows.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>A1341BDC1DEB7D7A372974DD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>96FA40B0A24DFD1A977EA48C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A1380B22B4413997F1D7178D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>trace.c</string>
-			<key>path</key>
-			<string>src/core/debug/trace.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>A155D2D460809289D755B3BD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>80009AC97A88857C7E6B93FC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A1A5CBD42D19C0B5CFAB6B39</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>child_channel.c</string>
-			<key>path</key>
-			<string>src/core/channel/child_channel.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>A1CDA6321F1A6FF2F8828222</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>json_string.c</string>
-			<key>path</key>
-			<string>src/core/json/json_string.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>A1E08754C789AD81C1610C68</key>
-		<dict>
-			<key>fileRef</key>
-			<string>394296CD3FBF6441C7EDAADE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A207FE8279C852FD84A7DFC1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C08B1253D8582ECD0579BF07</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A21B73408E29016F2C5AE685</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0A1F18AA4FCD9DDA129D2780</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A24CCE81E4BD7EB9EC4EE049</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>md4.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/md4.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>A24D9C9B0A3B1531053B1316</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>idea.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/idea.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>A25215D90717D64C8C586067</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A86876ED4DB60AEE65ACDCD1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A287751F9CDF70CFBF029293</key>
-		<dict>
-			<key>fileRef</key>
-			<string>17B128836D599F09BCA81641</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A2967EEBDCCAED82D85A8046</key>
-		<dict>
-			<key>fileRef</key>
-			<string>98832F1AA62791BCECA5C960</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A29E429E34B19E53CF3AF4A0</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>lame_client.c</string>
-			<key>path</key>
-			<string>src/core/surface/lame_client.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>A2A4552CE70734B114D1C529</key>
-		<dict>
-			<key>fileRef</key>
-			<string>39EA3D5E6CE9C0F7469E0C7F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A2E9C202C1D1DB88E3C17A91</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9C8009641C88B04CF81A8B73</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A357F4C4B1A7C80AB2AAEA16</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DE01AD2E1DC6FE17ABF873E7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A35B1CC8355FBA53EA0B9C3F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B61F3F6429BDAFF0077745B0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A3732A9A73239ADA970C031A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>46B8E9F1A81F523E07C7F6A1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A3A875DFE4B935FD53D8BB99</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F5CD4D631C142B46A08A6581</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A3B768615FE3C5228DA90BF5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F59856CDE3A736AC06C74829</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A3BBA46E564544113DC90245</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6B670E75366F84FC704EE412</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A3C9715375F68A794366B7F6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>38F7BED6F24599DA7AE205AB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A3F617FD54C5A5641302AD0A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>451541B815BDBB7A51B8B558</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A3F9BDA1B1ACF64CF140F4FC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FE5E400FCDFE4E120E751BD9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A3FC71B40349DA86E41AC1E3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>26D5A00C5D363C2B88EB6022</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A41D67E92BEDF4DD049D9022</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0B47AE8C4E2CD1E850B4C8D2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A42ACDD15164C9316B47041B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1AC6D96ECC7AF34B3C524864</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A43C1BA97BF6D8B44F6F0308</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3B46D720BC96472A94497EC1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A4614786DA3E95C22EE590C9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>09DA8CAB0DA4A3BA2018E2C5</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A46D083615082877DD4179DE</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>algorithm.h</string>
-			<key>path</key>
-			<string>src/core/compression/algorithm.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>A46D5C849CB7443E1ED77E72</key>
-		<dict>
-			<key>fileRef</key>
-			<string>58EE7495552555A9FA26D6EC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A4733F2F5D168A40A4678F2C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>07CC03DD8D351A9A1476B417</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A4787804FC3F866FA96D4F51</key>
-		<dict>
-			<key>fileRef</key>
-			<string>080863E4AE3E6D3E39CAF640</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A50F1943C62B45328D8AE0DA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>67AB9C4F5493800A859FABDC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A518158007BD9A40A2EB705A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>80009AC97A88857C7E6B93FC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A570AF54AE58046B9A93CAA2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8F2A5ECC396D1A11DBC3F020</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A57DB1080194D46703479C42</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D7619368410CA7CE988467C9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A58F87A9B6D0B425C931384B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0C1E165416BFAA0147B21701</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A5F7528E80CAE6A2525B8FC6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0ADD9DE41E7F9C7C2603F957</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A5FC1696AB300DBB05DE0DF4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F5CD4D631C142B46A08A6581</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A6042770D77AE61CC21E098B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>path</key>
-			<string>Pods-OpenSSL-Private.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>A60C75376EA2B4669B3F1382</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6F07874169E0970EC859C33D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A6178F1B03C165E5A3E5D8DD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BC97B6FB429DB45B267E2154</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A65E247B45F47A230898FDA7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EABF904D0F76AC91C97DEC58</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A6D1059B92E9998B68ABE7B6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>33842D454E072994160EEC43</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A6D827D13A3B5C1082774993</key>
-		<dict>
-			<key>fileRef</key>
-			<string>33AF6670C47BFA4C07898B03</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A70DDCBD828755B29F645B33</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F3412D255B723D85AD5CA754</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A70FAAADAA233FEE69C952DA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8A4CE294B8B3F1F293B2BB20</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A726203871F624BF0A03995F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D600CB01889EC10BA9FE1D45</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A73D82BF733FDBB102429719</key>
-		<dict>
-			<key>isa</key>
-			<string>PBXTargetDependency</string>
-			<key>name</key>
-			<string>Pods-SampleTests-OpenSSL</string>
-			<key>target</key>
-			<string>E6BD399A8C9ADFC8662292C2</string>
-			<key>targetProxy</key>
-			<string>F7AD6AF53FA113FF20361376</string>
-		</dict>
-		<key>A75CB366CBC8CFD362E93FF3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3495EDA1753AF43A20FA6CA0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A77A91108B021C305BFBF7CE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FFBDA56CD6FADE996A409346</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A7A56D1A8B33BAE254E2B2B6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>50B4F4277CD01BF58FF97E36</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A7A6AFCCDFC6AD5AFA3187C5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7532E65A3BD1314F1A843707</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A7A7F8CF1C0206635710D58C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>99C2E00B823FF695DE1AF703</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A7C712CE20377B4371F7C459</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>hpack_parser.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/hpack_parser.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>A7D2AF3763172C0EF4919E3C</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>thd.h</string>
-			<key>path</key>
-			<string>include/grpc/support/thd.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>A7E52866E48BA7D7483939E6</key>
-		<dict>
-			<key>isa</key>
-			<string>PBXTargetDependency</string>
-			<key>name</key>
-			<string>Pods-SampleTests-gRPC</string>
-			<key>target</key>
-			<string>C8AAD4FFD18ED62CF23187F8</string>
-			<key>targetProxy</key>
-			<string>2B15A41FC87C156EA7B167AF</string>
-		</dict>
-		<key>A80BAF81F7F23BDD6B2BEE9E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>98D504A8975304EC7E951FBB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A82793569517B899F2AD70F6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F4642401A54E132E9EFCB2EA</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A8621302BB693C724D1205A6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BD14D76A2B42BF6F3C7901D9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A86876ED4DB60AEE65ACDCD1</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>GRXWriteable.h</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/GRXWriteable.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>A8B0058FA8600EBC190AC0C1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F7AD7CD61AC9BD0D63C5DA7A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A8B15C5EDAD898129263979A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>86272741E64E0FD21E28911E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A95BB2746AF97188B34F3D1E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>393E5BB299200BE615C1B696</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>A97716562F0D00563BACF91A</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>srtp.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/srtp.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>A9805591C68501A81714A399</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DCE6F838BF9A76E1E90F8F29</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>A99C3A0F6DB1DDFE12666578</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>tcp_server_posix.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/tcp_server_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>AA1454D20FA4AD9320F925C7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C4403E8EC433DE1BD059DFD9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>AA44C91B353FAF347EBA8C5B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>dsa.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/dsa.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>AA48B817E48D9B959ABF950F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6B8BB7CA63E66D66C95EE7F0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>AA62C2AE571D3FE82BD23627</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2986E2FF3687B7B130FE0BDC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>AA7AF3F1DD0FD4E9DE7BA7AF</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>pollset_kick.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/pollset_kick.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>AA80780FE4D215DA62413A67</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C8F8CA2778AFCC4F7C705215</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>AACA730E78FB3DE204B5B362</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>GRXNSBlockEnumerator.h</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/private/GRXNSBlockEnumerator.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>AB0BEB3FE8DB7BC2C4C725B8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>255D1090014941559D1E8208</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>AB19B24A8AE877DBE20FE7D5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4BDF1EE4E7927550DFBAACA3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>AB46A5D63FC34967E00B3187</key>
-		<dict>
-			<key>fileRef</key>
-			<string>364EAC466D0C65E8D8B58AC0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>AB66C0E5668558FC994CE3E4</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>name</key>
-			<string>Pods-SampleTests-gRPC.xcconfig</string>
-			<key>path</key>
-			<string>../Pods-SampleTests-gRPC/Pods-SampleTests-gRPC.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>ABABD0CDFD3E41EE2E942D9D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>census_rpc_stats.h</string>
-			<key>path</key>
-			<string>src/core/statistics/census_rpc_stats.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>ABEA5CDEAAE4D2AD657F534D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EE197DD087F97537B4CC1534</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>ABFD0CE1BBFC837F3F306870</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BB56FF1B10C90442EA0E9922</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>AC16D2F576455F6505380390</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>host_port.h</string>
-			<key>path</key>
-			<string>include/grpc/support/host_port.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>AC23394D43B5B113928C948B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>server.h</string>
-			<key>path</key>
-			<string>src/core/surface/server.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>AC286244342D3C63FF7672B7</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>3B6F380C78A39C32D27BCEA4</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>YES</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_CFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_CPLUSPLUSFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-				<key>VALIDATE_PRODUCT</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Release</string>
-		</dict>
-		<key>AC3D9619BD78A9BCCEE167B9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BC97B6FB429DB45B267E2154</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>AC4E032523F35AA9A9301C6A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7554996AD809A448DF1F241B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>AC52DAC2F03A65BCAE33D3B9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F1F27FF9817028212E7026A3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>AC75EBB38A56E3D30CB0627B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>NSData+GRPC.h</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/private/NSData+GRPC.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>ACF30FCBCB0BDAC960C39A0D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>900F3BE96F445E868C426425</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>AD34B306F6CB575CDF80D2A7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>46C2B7DEC51D57D29D5A4126</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>AD884583F0A7FE161EBDDCEB</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>google_default_credentials.c</string>
-			<key>path</key>
-			<string>src/core/security/google_default_credentials.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>AD8FEBB248822A96758C8C72</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7532E65A3BD1314F1A843707</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>ADFD53FA9A8E05973B205F80</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>hpack_table.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/hpack_table.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>AE377333752E99CE9E73E4CC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F19A4D16767373F7873F5B73</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>AE386E16943E96A0DC7068B6</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>client_channel.h</string>
-			<key>path</key>
-			<string>src/core/channel/client_channel.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>AED38FE2C4F4575D4FDD3633</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AA44C91B353FAF347EBA8C5B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>AEF44D25130FD512384C6C59</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EF219F2CB45B6C39AE422ACC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>AEF92069F717C5732D3F33E3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A46D083615082877DD4179DE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>AF158B5508A79109D8231CA0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>46FAF51D64801E7D472BB776</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>AF805C754B6C375BC4B44CBD</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text</string>
-			<key>path</key>
-			<string>Pods-SampleTests-acknowledgements.markdown</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>AF877A3134D2EC9A1105D720</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E999CD2C6C127C0CCEE5CA54</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>AF8EC9542851957B39CCBBCD</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>NSEnumerator+GRXUtil.h</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/NSEnumerator+GRXUtil.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>AF9D2A09F4F40646D3DD9311</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>548E31330CB1A55701776A14</string>
-				<string>B25EDD657ABBAE4C18020940</string>
-				<string>B50C9C349B29E89AE54A7AD8</string>
-				<string>B579B8FD3A6EDC3CBFFF0639</string>
-				<string>D254B4B50493A2793B8D5F41</string>
-				<string>0DA5C89672365E51AF903ACE</string>
-				<string>3104228A3269C95FBDE0D173</string>
-				<string>E6DCF1CA14AC0C58C638B0E9</string>
-				<string>FE4ECB5774641FD3B42585DC</string>
-				<string>036C64315C42154E1C63406D</string>
-				<string>875508ECF6FCD3B66FBBADA7</string>
-				<string>5FC82D35A9CF5FD2B85E3C5E</string>
-				<string>AEF92069F717C5732D3F33E3</string>
-				<string>9C36EE09D8B5E2C381B3A625</string>
-				<string>083EE303E6E7E18713E19BA9</string>
-				<string>B660D889997DBB8D971E3201</string>
-				<string>CE9B6BB1A936ADB3E9AEA64D</string>
-				<string>B20AF8F4E35F585C248CC5E8</string>
-				<string>ACF30FCBCB0BDAC960C39A0D</string>
-				<string>DB1C3D718B42BA3CDD909867</string>
-				<string>A2967EEBDCCAED82D85A8046</string>
-				<string>A60C75376EA2B4669B3F1382</string>
-				<string>FD5AE6B5DE4D5B6DA1F907FD</string>
-				<string>7FE68294E841BE71789B4168</string>
-				<string>21FA3BAB516587F1C0D23837</string>
-				<string>8A41EEE9A1314DA0E0D0CDDF</string>
-				<string>BB08282781B9480C351C2DAA</string>
-				<string>099376711EB32D098773F971</string>
-				<string>9B7CB7EE182106E682381A8D</string>
-				<string>215791AA05DBEABC3EA80F77</string>
-				<string>3F40A43637069556DC7FE0F4</string>
-				<string>8971F458BBBF077C5043CA48</string>
-				<string>92ABC8770AB95C0981A56C4B</string>
-				<string>CCC2BB9E6F251E094730D833</string>
-				<string>9CD37E6A52CE5FB20A4ED375</string>
-				<string>73F081AF7815C42D349B1EB1</string>
-				<string>3F56E210459D0BD2701A533D</string>
-				<string>AD8FEBB248822A96758C8C72</string>
-				<string>8C51017EFB01682F11715864</string>
-				<string>CB00D032A66E72612B2DACFE</string>
-				<string>8AE200846C40281679993E07</string>
-				<string>765B075B94A20A3AD784A698</string>
-				<string>8395B12D2CD52EFFE24B629D</string>
-				<string>C020E40C7523BDD0A558D0BE</string>
-				<string>0D93F65C8FC05FD271D5D768</string>
-				<string>FE8FD44B0A5702230C929453</string>
-				<string>6BF7AAF6FAC0C45508C8684F</string>
-				<string>069BC52FB776D90695CC8400</string>
-				<string>4F1662B8333A489ED09E9F10</string>
-				<string>4212A0092BB53EFCB9976A7C</string>
-				<string>BC08FFF196238C24C561EE1B</string>
-				<string>C1AB7E5E2EECE2D7C18ADE23</string>
-				<string>55DD6D9447E275AED59DD0CF</string>
-				<string>7FBE9079FE3A6D7FD20FA7CB</string>
-				<string>BD0238F6F53E06E7C799751D</string>
-				<string>DAA62209D30082B22008D41E</string>
-				<string>B5EF499B225B57D2EDAA0B89</string>
-				<string>CE02B12E1EDA3D1F1111C601</string>
-				<string>CCCDA0BD87F9BDEC710C9AB6</string>
-				<string>DF8E74E58D683D528FFFA615</string>
-				<string>20913EAEE15A9542E376AB37</string>
-				<string>07E10A39D047B95EC69DB5AF</string>
-				<string>18F2D878E0926C69EA0DB839</string>
-				<string>91DC471E83D0AC8ABD0576EE</string>
-				<string>BA8FDFF21EF11B8A8F3442E5</string>
-				<string>306803EF6E261D19E30B0491</string>
-				<string>E9429E877CDE50D84472AEF2</string>
-				<string>20108C36F574075708F59ACB</string>
-				<string>9C39C1CE82E8BC25BAB1841E</string>
-				<string>074436466C7F8A231C2A1111</string>
-				<string>0B92279AA0BC63F4C14C9E55</string>
-				<string>028BED32E6411075424FBFD0</string>
-				<string>20E96591DCA484AC1906F8BB</string>
-				<string>B5D89C4A0345EE58D82C2326</string>
-				<string>69D657B4D1185AE0E39992D4</string>
-				<string>6CD68A8818465318BD97A51A</string>
-				<string>8836416F82CDC1B7A9BB1EA7</string>
-				<string>A8621302BB693C724D1205A6</string>
-				<string>853B99048DEAA6BA41CC2B37</string>
-				<string>E4BDA0D8F9EDD080F5B3FAE4</string>
-				<string>567ECDE7788B4EB8E8C018AC</string>
-				<string>5D82EC9CD65D0EB146F7309F</string>
-				<string>7BEBC7042ABEB45E221A10F0</string>
-				<string>DF81A128B8765DA62E303CED</string>
-				<string>EC58B8839751527BD5CD1025</string>
-				<string>0037A820EFBF3B13F8379DCF</string>
-				<string>0EA451E14CDAB8045E4E4F4A</string>
-				<string>BD5E14E1089594C1432B3D45</string>
-				<string>4CACC2BF389CB649D3D4D329</string>
-				<string>8DE9D9D8876636E88CBF0074</string>
-				<string>8DE6573664A00D81395AB83C</string>
-				<string>EB1B535CE6ED0C872000AD01</string>
-				<string>AF877A3134D2EC9A1105D720</string>
-				<string>0578D7C4E1B95D30926AB6E5</string>
-				<string>04707602B9799798094CDF13</string>
-				<string>634919C4E72162262206810C</string>
-				<string>006672A63663395FD6F14F13</string>
-				<string>8FBF7F6782C3B59DFC5D7E91</string>
-				<string>1D84F8A33A3E54D6D52CA5CE</string>
-				<string>302A0A0BFFCCD9CE4813E689</string>
-				<string>489C042EE5EE716A215D0865</string>
-				<string>27FB5959A54E8187CDA4DBC3</string>
-				<string>61BA8FF5C7852BD984053003</string>
-				<string>9E7883191CE933C260ED4842</string>
-				<string>489B5F63F67ADBFADBBB7541</string>
-				<string>A65E247B45F47A230898FDA7</string>
-				<string>636D0C999212A58F964A46B5</string>
-				<string>5DC744EEA679A0C2D5576B2A</string>
-				<string>B853CB78FD5ADCC557697148</string>
-				<string>4CF933A2460B0F60700E893D</string>
-				<string>47188AB9C1A1FDA387FFED43</string>
-				<string>3B3BE2C143B978EBE7360287</string>
-				<string>70B3FBBF53F7FDE423D4CB2A</string>
-				<string>167C46EAB33F72A0A6FD4648</string>
-				<string>2B7E543FD4A515A4008CF1AA</string>
-				<string>5F0056D7EFB5B4CCEB0932D0</string>
-				<string>0A7599B61BA6110D36B4AE31</string>
-				<string>0F7E273DF3ED1451D8A5B9A5</string>
-				<string>87B3EDBE61749E23ED153D69</string>
-				<string>CF377807E247A054379EF010</string>
-				<string>BC8203FDDD966E70F2B3626B</string>
-				<string>D3B6BF2ACB17DF6C6116928F</string>
-				<string>DBC4DF56AAB09D92448F9E8D</string>
-				<string>EB7376B3F9A8D30DF4BAD5DD</string>
-				<string>075C02341A149CAE3A3AD275</string>
-				<string>F1D8E43FBC16B35A1891C86C</string>
-				<string>BC409AB700998F2470982FB0</string>
-				<string>716DFA83625085B80D20D865</string>
-				<string>C43493B9C2992B0F050436D0</string>
-				<string>4720F26A57F112A3C1EC2AC1</string>
-				<string>35C235A25B44FCE187FAA3EA</string>
-				<string>6B5851CC962D07E93C176995</string>
-				<string>71B15BB0388FD43112B80E8E</string>
-				<string>C56CD46CA0CDDCA3BDE8097A</string>
-				<string>8B5AB7072FECAF4876BB4566</string>
-				<string>10CD9126C8AB535E82FD38B2</string>
-				<string>35EB0B87EB97568DA49B8275</string>
-				<string>62246DDE1641EA3AB31A4AD5</string>
-				<string>9374E1206D186C113AE496DD</string>
-				<string>B9B13D8D168AFF041F14E3B3</string>
-				<string>B88C6D586A7B4B4E2E9B8CC4</string>
-				<string>489B0B19CE387A2571193370</string>
-				<string>7CF07C36E6664675E65A4BBF</string>
-				<string>C77E62ACCBF10641C2E49D6B</string>
-				<string>F6242540F2A46E2A4B6D14BE</string>
-				<string>5D457433C39CBF1CBB71D30D</string>
-			</array>
-			<key>isa</key>
-			<string>PBXHeadersBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>AFE74D0CDED63A4C876FD475</key>
-		<dict>
-			<key>fileRef</key>
-			<string>308BF23215B052808B4E700C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>AFFB941C48B8E3F5491B105D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4BDF1EE4E7927550DFBAACA3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>B04D930988C1964B7083AA13</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1AC6D96ECC7AF34B3C524864</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>B0953E84284D4CCAD89A8FA1</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>ssl_transport_security.h</string>
-			<key>path</key>
-			<string>src/core/tsi/ssl_transport_security.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B0F2082A9912AB626A1C9049</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text</string>
-			<key>path</key>
-			<string>Pods-acknowledgements.markdown</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B16F2028EAB67119ADEB8516</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BB56FF1B10C90442EA0E9922</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B1F6D3CD27B150EC2197A151</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>secure_server_create.c</string>
-			<key>path</key>
-			<string>src/core/surface/secure_server_create.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B20AF8F4E35F585C248CC5E8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0E4FAB5750FFE3A2E16B10A4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B20DB01CBF2848C3F32A611F</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>512E7BB911E7896D88034ED9</string>
-			</array>
-			<key>isa</key>
-			<string>PBXFrameworksBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>B25EDD657ABBAE4C18020940</key>
-		<dict>
-			<key>fileRef</key>
-			<string>12A345A0CFED500F6B775287</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B268854E0D162340343833EA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F56A8A024FEFFF1D2B980766</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B27A42723D792CC73BC91FC0</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>pem2.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/pem2.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B27A7D04EF0865AC8F7C63A8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D561FFCDA8946C531DE569BF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B28497C58B5E58D9B494C766</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8F2A5ECC396D1A11DBC3F020</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B2E247D2109256EEBA4BC9F6</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>path</key>
-			<string>Pods-Sample-gRPC-dummy.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B325D829C214C8B80B5D93D4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>997839BCB6FCF8646369F61C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B35F00EA0F43E499609BEF33</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>GRXMappingWriter.h</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/transformations/GRXMappingWriter.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B36B1044D0423D546E9F41AE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BB157902FBE43FDB4878F236</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>B39BAAB2D5DD2BF6802CCAF1</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>NSError+GRPC.m</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/private/NSError+GRPC.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B3E02FFCB91C6642373943D2</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>sockaddr_utils.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/sockaddr_utils.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B3EF9A4EB791478FC44366DE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B97492608B4721D2A584A459</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B4193103D3BBF8CF068C3E06</key>
-		<dict>
-			<key>fileRef</key>
-			<string>482CEB489ABA2F2345752A59</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B434C6A8C14B9445C030ED58</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DCB800C7DFD5A06206FBBD1E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>B44C9D9A66A61F9461F8E297</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C872112D1B148457B204ABBE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B4573EE9D7FF342E24C6B89F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>httpcli_security_context.h</string>
-			<key>path</key>
-			<string>src/core/httpcli/httpcli_security_context.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B457AA86A4E8558B26ABE2A2</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>GRPCDelegateWrapper.h</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/private/GRPCDelegateWrapper.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B4941F77B83515DEE73CFFAE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6CB7527D34B577A0608E122B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B4BB4D68927D5944369C09F0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>080863E4AE3E6D3E39CAF640</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>B4D6482C08BE4BFDB5D66056</key>
-		<dict>
-			<key>fileRef</key>
-			<string>689FF7B5170019FC27CF8682</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B50C9C349B29E89AE54A7AD8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>94DBACF5F8646DE3687EA89D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B50D70064A0015E3665DE395</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>7438AAB290E8E8C134357031</string>
-				<string>F2CDBC4114F494739221E5A5</string>
-				<string>B2E247D2109256EEBA4BC9F6</string>
-				<string>4E5D433C426169F69B7AB02C</string>
-				<string>AB66C0E5668558FC994CE3E4</string>
-				<string>387FEEC6D92C0E1CE9E0D224</string>
-				<string>42D2E844EAA078AEB5EE22D4</string>
-				<string>9237ABE0F366133F9413B336</string>
-				<string>1A0F5FA237687D2A013CD662</string>
-				<string>CD20AC061F19BD056952FAF9</string>
-				<string>33842D454E072994160EEC43</string>
-				<string>E6B7EE2E354E5D26692CF2EB</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>name</key>
-			<string>Support Files</string>
-			<key>path</key>
-			<string>src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-gRPC</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B51324FB9685E791FBF732E6</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>call.h</string>
-			<key>path</key>
-			<string>src/core/surface/call.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B51D85F360DB77029A83F9AE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F90E7A24B0681976E3AFF342</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B5304ABA050936E84432149A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>98D504A8975304EC7E951FBB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B53E8DBA4C83762338C51C63</key>
-		<dict>
-			<key>fileRef</key>
-			<string>60B3FFF7224676E000FFC99F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B573A657529809254F97BF49</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8715B25A0DE3CACC14BBD626</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>B579B8FD3A6EDC3CBFFF0639</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B457AA86A4E8558B26ABE2A2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B5840E57925E2437C0D31D8A</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>path</key>
-			<string>Pods-RxLibrary-prefix.pch</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B585BE4615E2AD5C8430226E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7CD2BC67F9A63F19E985242A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>B59BCC904E2E8FEAC96DC19E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D7619368410CA7CE988467C9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B5D89C4A0345EE58D82C2326</key>
-		<dict>
-			<key>fileRef</key>
-			<string>11F28F9FB55AE05B71E8C7D4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B5EF499B225B57D2EDAA0B89</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9F9019CF97857676B40A69FA</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B61F3F6429BDAFF0077745B0</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>ecdh.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/ecdh.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B62F259F4CAF915352371941</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>file_win32.c</string>
-			<key>path</key>
-			<string>src/core/support/file_win32.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B64D4E9631ED195D19131433</key>
-		<dict>
-			<key>fileRef</key>
-			<string>89E2EEA76098486434C7121E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>B65DE04C9C73EB40B0BAD0A4</key>
-		<dict>
-			<key>buildConfigurationList</key>
-			<string>2C4ADA14FCC290C6B12FC113</string>
-			<key>buildPhases</key>
-			<array>
-				<string>96F81799EABEE97EA855A9AA</string>
-				<string>E1D60882186803B4A3DFC0B4</string>
-				<string>F9237D67C2BCBA6DAB536B48</string>
-			</array>
-			<key>buildRules</key>
-			<array/>
-			<key>dependencies</key>
-			<array/>
-			<key>isa</key>
-			<string>PBXNativeTarget</string>
-			<key>name</key>
-			<string>Pods-Sample-OpenSSL</string>
-			<key>productName</key>
-			<string>Pods-Sample-OpenSSL</string>
-			<key>productReference</key>
-			<string>B9B345B6B131E631CB6A9554</string>
-			<key>productType</key>
-			<string>com.apple.product-type.library.static</string>
-		</dict>
-		<key>B660D889997DBB8D971E3201</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6DADFC4129105CA3F9C35CE2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B6B2F9DB036E33A98B8C47BB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2D404DC9121BDE0D46D9C311</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B6DBA8CB1D26F60F2F1A3A5B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>21BA344E73508DB706901EFA</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B6F405AEA36B32ABCD054EB0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2A18EA340EDBFDBBDB1D6EFF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>B733F1A82171F3389F2BE994</key>
-		<dict>
-			<key>fileRef</key>
-			<string>99B287793D41F6BEE8147D5D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>B76388DAE36733682FF681AB</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>cast.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/cast.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B7A88F69228CBDE4FCBD61B6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3770360C7C4E24EF561EDD00</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>B7B1804F55E90BCA57DDA6C1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AA7AF3F1DD0FD4E9DE7BA7AF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>B7C2E08CDF85E94A53AA70A2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>ADFD53FA9A8E05973B205F80</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B7C5D79C903F716073525AD4</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>445BD3199F9DF54D603082D2</string>
-			</array>
-			<key>isa</key>
-			<string>PBXFrameworksBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>B844B4614A938620F971B399</key>
-		<dict>
-			<key>fileRef</key>
-			<string>758610F4F170AD69EC353CA2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B853CB78FD5ADCC557697148</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EF219F2CB45B6C39AE422ACC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B87BC18FFBE23E84D2491ECF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6F3724EBA46ADF2702ECF9D9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>B88C6D586A7B4B4E2E9B8CC4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DF9DBB49E67087607553EBB4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B8B94E1FC7DD5F044B5F7D1B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C95F1381DCB9456BD725D0ED</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B8C14C0BA71068FDBA6E7A47</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BB157902FBE43FDB4878F236</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>B8DF9068117725B6C1CEE497</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>frame_goaway.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/frame_goaway.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B8F468E0514A545BA170FA5A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AACA730E78FB3DE204B5B362</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B916335D84E8FF35C6AD704C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8BA82365E8893A76F633998A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B959FBF591A2ECA874431C1D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>88D67EC37DF042B27D94365E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B97492608B4721D2A584A459</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>wakeup_fd_pipe.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/wakeup_fd_pipe.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>B98605ECA6C94E37B90AF42D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B61F3F6429BDAFF0077745B0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B9B13D8D168AFF041F14E3B3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>99C1B279E8FFE738C373CE5C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>B9B345B6B131E631CB6A9554</key>
-		<dict>
-			<key>explicitFileType</key>
-			<string>archive.ar</string>
-			<key>includeInIndex</key>
-			<string>0</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>path</key>
-			<string>libPods-Sample-OpenSSL.a</string>
-			<key>sourceTree</key>
-			<string>BUILT_PRODUCTS_DIR</string>
-		</dict>
-		<key>BA4782F1ECEEACD72F202A06</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>secure_endpoint.c</string>
-			<key>path</key>
-			<string>src/core/security/secure_endpoint.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>BA56A2199AF8BC3D12FC302B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>sockaddr_posix.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/sockaddr_posix.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>BA8FDFF21EF11B8A8F3442E5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>027FD40220A6CEE42890FCFB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>BA986944474FFA6A1E01A2A3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>46C2B7DEC51D57D29D5A4126</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>BAAE3717938AA63A71F509FD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4BED3946EC8B30746EDB3C17</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>BB08282781B9480C351C2DAA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>297EA9EEF986275291E56ED5</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>BB157902FBE43FDB4878F236</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>string.c</string>
-			<key>path</key>
-			<string>src/core/support/string.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>BB538A1A5D1C6757CC7FD94F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8F2A5ECC396D1A11DBC3F020</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>BB56FF1B10C90442EA0E9922</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>e_os2.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/e_os2.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>BB969021CE33D94A86350427</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A1A5CBD42D19C0B5CFAB6B39</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>BBD4C6EF072FA683FEAF46D0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C78D061C9F46F06C8334F4E4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>BC08FFF196238C24C561EE1B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1EE530AB0A91A2E4C5D3F6CF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>BC13BD16BB935D60ECAED57C</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>Pods-Sample-OpenSSL-dummy.m</string>
-			<key>path</key>
-			<string>../Pods-Sample-OpenSSL/Pods-Sample-OpenSSL-dummy.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>BC1AF464187013E907218476</key>
-		<dict>
-			<key>containerPortal</key>
-			<string>EF6CCB5D3B9A6AAB7B6B4A70</string>
-			<key>isa</key>
-			<string>PBXContainerItemProxy</string>
-			<key>proxyType</key>
-			<string>1</string>
-			<key>remoteGlobalIDString</key>
-			<string>D6D07C30809CD707CC0BF7A3</string>
-			<key>remoteInfo</key>
-			<string>Pods-Sample-RxLibrary</string>
-		</dict>
-		<key>BC354D9F0AD6180106057919</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6063F859BC59312B059CF91D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>BC409AB700998F2470982FB0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>09DA8CAB0DA4A3BA2018E2C5</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>BC5149815D3A7AC698ECA450</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0ADD9DE41E7F9C7C2603F957</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>BC8203FDDD966E70F2B3626B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>19DC88FB14050D7CD7864D16</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>BC97B6FB429DB45B267E2154</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>base64.c</string>
-			<key>path</key>
-			<string>src/core/security/base64.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>BCB6B2D7B7F1FFDC74F231D9</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>stream_encoder.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/stream_encoder.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>BCEE397F8F79855073448765</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7CD2BC67F9A63F19E985242A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>BD0238F6F53E06E7C799751D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>88D67EC37DF042B27D94365E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>BD14D76A2B42BF6F3C7901D9</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>init.h</string>
-			<key>path</key>
-			<string>src/core/surface/init.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>BD5E14E1089594C1432B3D45</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1BDFB1B109564A8847DCC7E4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>BDB8EB3783171ACD1A007A03</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A97716562F0D00563BACF91A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>BDEA784DF960F3A89447F559</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C7E59BD438F0F1ED32112050</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>BE1A18249F1E7AED0D3B9065</key>
-		<dict>
-			<key>fileRef</key>
-			<string>78AF39D8F892B7377F66B941</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>BE5CBB0C24097EEA6E542C6B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>Pods-SampleTests-OpenSSL-dummy.m</string>
-			<key>path</key>
-			<string>../Pods-SampleTests-OpenSSL/Pods-SampleTests-OpenSSL-dummy.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>BE68354DD4A348027B687873</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E7D1FFC956B8A56A55BA432B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>BEA26311AB6D7A1968DFFE5D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>client_setup.c</string>
-			<key>path</key>
-			<string>src/core/channel/client_setup.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>BEC6379003DCEBB8729B0EC1</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>Pods-SampleTests-RxLibrary-dummy.m</string>
-			<key>path</key>
-			<string>../Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary-dummy.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>BF05F1B34A30F977429A9F9B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A46D083615082877DD4179DE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>BF0D385CA7D3FFF7B2FB2700</key>
-		<dict>
-			<key>fileRef</key>
-			<string>35B7B3CF4F701A5A496218D1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>BF28337445324458A823286C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DEC0127013FF7E2BE404F94A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>BFD9F07A07691C64A2DFA99E</key>
-		<dict>
-			<key>containerPortal</key>
-			<string>EF6CCB5D3B9A6AAB7B6B4A70</string>
-			<key>isa</key>
-			<string>PBXContainerItemProxy</string>
-			<key>proxyType</key>
-			<string>1</string>
-			<key>remoteGlobalIDString</key>
-			<string>CF7B8538119C9381CEE1CB4E</string>
-			<key>remoteInfo</key>
-			<string>Pods-gRPC</string>
-		</dict>
-		<key>C020E40C7523BDD0A558D0BE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CA63389D5D8D9AF7044B1551</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C02ADD3539DAB85FD034AD51</key>
-		<dict>
-			<key>fileRef</key>
-			<string>36216819E061128E0D3F3B1B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C055683B6E4D03EF0FC36154</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BD14D76A2B42BF6F3C7901D9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C07D5183FD6E65DC4C204259</key>
-		<dict>
-			<key>fileRef</key>
-			<string>99CFB370C1B8272A5232E251</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C08B1253D8582ECD0579BF07</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>sha.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/sha.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C0AD0D08D1210D0F68A7293F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8BA82365E8893A76F633998A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C0C37E9C4E6296E474CA119E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>357D8C9988DD885668F2FBB1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C0F66A72D3B60BC20D5FAB7B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8108B7358A64888529BAFCD3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C106DDA18B26E91B9264A0A0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C33E2C3577461F009B35036F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C11C2B4F69EA864A46D8875F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A1A5CBD42D19C0B5CFAB6B39</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C13A1A1343B5BF54A3335EF3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>308BF23215B052808B4E700C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C1897F90EAC9B8356AB0C355</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0B47AE8C4E2CD1E850B4C8D2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C18F1E7E303D6620D67D711A</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>window_stats.h</string>
-			<key>path</key>
-			<string>src/core/statistics/window_stats.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C1AB7E5E2EECE2D7C18ADE23</key>
-		<dict>
-			<key>fileRef</key>
-			<string>06AAA04862A9ADFEE90D756D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C1AB9420EC401C5BB395F7CC</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>stream_op.h</string>
-			<key>path</key>
-			<string>src/core/transport/stream_op.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C1D43D26F97A1BA5A3D11ABE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C54A331859E953767BF5543B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C1DA6EBB9509F9D64E4B6B5D</key>
-		<dict>
-			<key>buildConfigurationList</key>
-			<string>55C507B8C6EF42805867A7CD</string>
-			<key>buildPhases</key>
-			<array>
-				<string>E478E020B2BE978EB0E7DC2C</string>
-				<string>B20DB01CBF2848C3F32A611F</string>
-			</array>
-			<key>buildRules</key>
-			<array/>
-			<key>dependencies</key>
-			<array>
-				<string>5A4783023067EB1DB947294C</string>
-				<string>C45261B1FC768A48C7052D5B</string>
-				<string>414115116BCB5AF86B921B18</string>
-			</array>
-			<key>isa</key>
-			<string>PBXNativeTarget</string>
-			<key>name</key>
-			<string>Pods</string>
-			<key>productName</key>
-			<string>Pods</string>
-			<key>productReference</key>
-			<string>FF071EE6A2FE57CD7089D1AB</string>
-			<key>productType</key>
-			<string>com.apple.product-type.library.static</string>
-		</dict>
-		<key>C1E9A6CD5E97856C5AE4477E</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>A6042770D77AE61CC21E098B</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>YES</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-OpenSSL/Pods-OpenSSL-prefix.pch</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_CFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_CPLUSPLUSFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-				<key>VALIDATE_PRODUCT</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Release</string>
-		</dict>
-		<key>C1ED7DBAC7463711EB5902CA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>393E5BB299200BE615C1B696</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C2139470A677EDEDCD96634D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8D7DA71EEC85D0C95235EF68</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C222B542A30DED64E4155E5F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>name</key>
-			<string>Pods-Sample-OpenSSL.xcconfig</string>
-			<key>path</key>
-			<string>../Pods-Sample-OpenSSL/Pods-Sample-OpenSSL.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C29646A41BED8580ED8CD1AF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EEE15CA8B94B9F0E60B27B4E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C2C45569DFCC4A87959EB6F8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>99CFB370C1B8272A5232E251</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C2E2E76471682B8102E870DE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C7EF667C6A815D05A0141437</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C2EAF6244C73D677D1A39615</key>
-		<dict>
-			<key>fileRef</key>
-			<string>223682FDADBBFC7CCE7AB8D1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C3201014141F320289CA3D8A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B35F00EA0F43E499609BEF33</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C331D346A894F3FCDEAA07D5</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>path</key>
-			<string>Pods-SampleTests.release.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C33E2C3577461F009B35036F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>env.h</string>
-			<key>path</key>
-			<string>src/core/support/env.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C3702A2AD3C1B547F077B11D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>842CA809080A7E042EC87FC4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C3A4593D5E1F396D396FD865</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EEE15CA8B94B9F0E60B27B4E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C3B1EF3961E761E443BE9108</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7DBE0B39468165252F95191A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C3E47797378796C59F443F1A</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>path</key>
-			<string>Pods-Sample.debug.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C3E5C53AC3B25153145C807A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A7D2AF3763172C0EF4919E3C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C3EE0A62C008F21FD53D281D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>httpcli.h</string>
-			<key>path</key>
-			<string>src/core/httpcli/httpcli.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C3FCC84C8D8CBAC2653214F7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D26066FE22267E3342FF740E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C43493B9C2992B0F050436D0</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4CF49E5FB787766D78AB97A6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C4371E31941BEFC099C5276B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>client_channel.c</string>
-			<key>path</key>
-			<string>src/core/channel/client_channel.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C4403E8EC433DE1BD059DFD9</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>call_details.c</string>
-			<key>path</key>
-			<string>src/core/surface/call_details.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C45261B1FC768A48C7052D5B</key>
-		<dict>
-			<key>isa</key>
-			<string>PBXTargetDependency</string>
-			<key>name</key>
-			<string>Pods-RxLibrary</string>
-			<key>target</key>
-			<string>5178199C95874904FB00D5C1</string>
-			<key>targetProxy</key>
-			<string>00A345202AE48DFB037FDBF2</string>
-		</dict>
-		<key>C46FF850FCB3DC9693B12237</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0BDF06AEFAF554EB6E9F2806</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C54A331859E953767BF5543B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>rand.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/rand.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C5610466549D4B577E63E392</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>engine.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/engine.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C56CD46CA0CDDCA3BDE8097A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7759BCE23EB7ACAF13F435C6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C5727C361A185A47C38DE74F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>credentials_win32.c</string>
-			<key>path</key>
-			<string>src/core/security/credentials_win32.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C574351F6DA0F4043D34D597</key>
-		<dict>
-			<key>fileRef</key>
-			<string>46FAF51D64801E7D472BB776</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C593D25CCCCCA63558292951</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D26066FE22267E3342FF740E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C5C31E10B791A59C03811FF1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>20FA3472CA8E5FCF1F3A55D3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C68806BFCDCADED1583F7D02</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0055F4110B7DF51C8F7D0DC3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C689032B57F5285CE7A38B84</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7759BCE23EB7ACAF13F435C6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C6F740E5573370F04275A7DA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F1ACC5FAB761447CA87BC69B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C6FD05362488EE2D35DD26C9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D26066FE22267E3342FF740E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C730EA10F6B99040F207E9D4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>36216819E061128E0D3F3B1B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C74189D6AFD3F538F697CDA9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7CD2BC67F9A63F19E985242A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C74EA80F2B0141BB09B8E37B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3075CAA736C46F8E83F3B9C9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C77295C9F39211FBA42C8065</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9A5061527A8C5EE35E2E4810</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C77E62ACCBF10641C2E49D6B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B97492608B4721D2A584A459</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C786CFC2F02E60FACE3D7828</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6FC651BF50A48D13DD20BC6B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C78D061C9F46F06C8334F4E4</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>rc2.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/rc2.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C7A79CCA557CD0E7FD46B25C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E7BC0C7DDB495B1D29A3D309</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C7CC75D7620AD6D0E4771494</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4CF49E5FB787766D78AB97A6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C7E59BD438F0F1ED32112050</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>census_log.c</string>
-			<key>path</key>
-			<string>src/core/statistics/census_log.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C7E7619F0059B8743B66A912</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7CD744B1ED1027A4C7849EAE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C7EF667C6A815D05A0141437</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>log_linux.c</string>
-			<key>path</key>
-			<string>src/core/support/log_linux.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C861662370F99B8D5130D4F4</key>
-		<dict>
-			<key>buildConfigurationList</key>
-			<string>5288C6D220DB80AEBBFC6F77</string>
-			<key>buildPhases</key>
-			<array>
-				<string>7D10EB224B07EE04E5AE8877</string>
-				<string>5C1D43548523CBB12D0556CF</string>
-				<string>AF9D2A09F4F40646D3DD9311</string>
-			</array>
-			<key>buildRules</key>
-			<array/>
-			<key>dependencies</key>
-			<array>
-				<string>F9FE5D33F721E424EF8AAEB0</string>
-				<string>F471F62EBE2C6598B961E8FE</string>
-			</array>
-			<key>isa</key>
-			<string>PBXNativeTarget</string>
-			<key>name</key>
-			<string>Pods-Sample-gRPC</string>
-			<key>productName</key>
-			<string>Pods-Sample-gRPC</string>
-			<key>productReference</key>
-			<string>834847CB2D9E3A423799E679</string>
-			<key>productType</key>
-			<string>com.apple.product-type.library.static</string>
-		</dict>
-		<key>C872112D1B148457B204ABBE</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>mdc2.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/mdc2.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C89CF0151F1149F2E7A3CA29</key>
-		<dict>
-			<key>fileRef</key>
-			<string>35834F8EFDF918F766424079</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C8A449C08910901EFB613892</key>
-		<dict>
-			<key>fileRef</key>
-			<string>630630C2FEBAB1E0CF581ED9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C8AAD4FFD18ED62CF23187F8</key>
-		<dict>
-			<key>buildConfigurationList</key>
-			<string>2187D95CC17440E347F0AA1E</string>
-			<key>buildPhases</key>
-			<array>
-				<string>D709C6116B404BCE1F78D6D9</string>
-				<string>45E895967C7477C1144B5514</string>
-				<string>335D3CD9708B50CF288CCBC2</string>
-			</array>
-			<key>buildRules</key>
-			<array/>
-			<key>dependencies</key>
-			<array>
-				<string>A73D82BF733FDBB102429719</string>
-				<string>4EF633BD20E4E82C86DC8733</string>
-			</array>
-			<key>isa</key>
-			<string>PBXNativeTarget</string>
-			<key>name</key>
-			<string>Pods-SampleTests-gRPC</string>
-			<key>productName</key>
-			<string>Pods-SampleTests-gRPC</string>
-			<key>productReference</key>
-			<string>4579FAC6DD2648BA6504C215</string>
-			<key>productType</key>
-			<string>com.apple.product-type.library.static</string>
-		</dict>
-		<key>C8B869E1FB97EE7D5761D2E2</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>env_win32.c</string>
-			<key>path</key>
-			<string>src/core/support/env_win32.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C8EDE7A9A32993B9675C3706</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8A3FFA359AAF23E5D40C4625</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C8F8CA2778AFCC4F7C705215</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>dh.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/dh.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C8FD3776765F96E5B1CAD950</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7D8B6EC4FE13EA3E130862A2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C90346AE945DEC7DE5A020D9</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>string_win32.c</string>
-			<key>path</key>
-			<string>src/core/support/string_win32.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C95F1381DCB9456BD725D0ED</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>ssl.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/ssl.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>C96C305819874FC8096A4A66</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A1380B22B4413997F1D7178D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>C97972638D710F4446D39E6F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>297EA9EEF986275291E56ED5</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>C9EA08E2846F2ED9FF6717FD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>90D51E97705F8ED52E08B452</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CA4148CC28BCF7B90B1CA692</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C3EE0A62C008F21FD53D281D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CA5BA54BD3D7B9741F0B301D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B39BAAB2D5DD2BF6802CCAF1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CA63389D5D8D9AF7044B1551</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>cpu.h</string>
-			<key>path</key>
-			<string>include/grpc/support/cpu.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>CA65B1878419143FE2644503</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>GRXImmediateWriter.m</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/GRXImmediateWriter.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>CA852A77EB431B988E863107</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8B3B37023FF9E8E73CC99322</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CAA36CDC6768501E59664D2C</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>algorithm.c</string>
-			<key>path</key>
-			<string>src/core/compression/algorithm.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>CAC75A48DD2F7936DAF32101</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7CD744B1ED1027A4C7849EAE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>CAC8D781D93FED36F2E8089C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>648AF9A08A47AF20C52B8B4F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>CACBA78F95D8D082EEC1A2DB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>98832F1AA62791BCECA5C960</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CB00D032A66E72612B2DACFE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F40D9B7EE9C803659F6B0F74</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CB24B6E9B05846FFFF9BAC93</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F40D9B7EE9C803659F6B0F74</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CB4A618E542B03D760C2481E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>pollset_multipoller_with_epoll.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/pollset_multipoller_with_epoll.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>CB64B312FE4E0FBFE3112A70</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B3E02FFCB91C6642373943D2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>CB928C7F06C03357E4BC0826</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1BD452BBED63DFB3CBAE94E8</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>CBDCB0898B7B431D1F8F3DB4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>39EA3D5E6CE9C0F7469E0C7F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CC1ABB7DE0E820B6381CC7FC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>12A345A0CFED500F6B775287</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CC29BEE7A8FFD567D3880637</key>
-		<dict>
-			<key>fileRef</key>
-			<string>61808120480AD703F7BE5A1F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CC7DBCF5B4C830C34F6A42CA</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>httpcli.c</string>
-			<key>path</key>
-			<string>src/core/httpcli/httpcli.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>CCC2BB9E6F251E094730D833</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0BA8F8429E95CB00593DD957</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CCCDA0BD87F9BDEC710C9AB6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3D1F28965FAB5FCF104F8E82</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CCF40176486A4BD0A7ACF6E6</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>wakeup_fd_nospecial.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/wakeup_fd_nospecial.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>CD20AC061F19BD056952FAF9</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>name</key>
-			<string>Pods-gRPC-Private.xcconfig</string>
-			<key>path</key>
-			<string>../Pods-gRPC/Pods-gRPC-Private.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>CD3038A42DDA7AEB8DA259C2</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>metadata_buffer.c</string>
-			<key>path</key>
-			<string>src/core/channel/metadata_buffer.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>CD32457FA0CFA81AF443BF94</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EDCA1F07FB400E1CE2406DDC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CD41AAD795A3857E29F6D065</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>sync_win32.h</string>
-			<key>path</key>
-			<string>include/grpc/support/sync_win32.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>CD4547BE008B024309641516</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7A2C0FE529F637D6478C9294</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CD578844906390B6BB470CB9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7C71802E69011B6C745E2BD0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>CD94E981A8CF1DCA4B29BE1A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>16B2EB8CF6E0DC64AAE6362D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CD97D3B2F241667C711BB9D2</key>
-		<dict>
-			<key>buildConfigurations</key>
-			<array>
-				<string>5FE7FCF33604DE346AB41C16</string>
-				<string>807401F7D2926EA95DCDAE9F</string>
-			</array>
-			<key>defaultConfigurationIsVisible</key>
-			<string>0</string>
-			<key>defaultConfigurationName</key>
-			<string>Release</string>
-			<key>isa</key>
-			<string>XCConfigurationList</string>
-		</dict>
-		<key>CD9A6BE2F6F670FD7EA634F3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>271500B0CF6170CB1AF47149</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>CDB44B4DCBC85D14A78E3A40</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D66C9178A237F3206AC28994</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>CDCB56535FC5D99F517C978D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>500AE03C874D997750B5836E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CDD7E1BDC247E908A09AC36E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4FD344A4C37F355D47A7FFFE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CE02B12E1EDA3D1F1111C601</key>
-		<dict>
-			<key>fileRef</key>
-			<string>364EAC466D0C65E8D8B58AC0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CE3D62DC8C488DCFED22A93A</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>2B0E9701D4627716BC20A373</string>
-			</array>
-			<key>isa</key>
-			<string>PBXSourcesBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>CE5DDE8010917A49C309D55E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7DBE0B39468165252F95191A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CE613B64A3AA1DB09D137B22</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>census_log.h</string>
-			<key>path</key>
-			<string>src/core/statistics/census_log.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>CE61EDC94355F84767BAC48E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>508860F9FE4C6C81958EAFEF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CE82950CBB27A547783F53AF</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>sockaddr_utils.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/sockaddr_utils.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>CE9B6BB1A936ADB3E9AEA64D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E60F729854F318259F7B413D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CEC19B24C4C48232AE58487D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>39EA3D5E6CE9C0F7469E0C7F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CEDA582BF46E30C88B454695</key>
-		<dict>
-			<key>fileRef</key>
-			<string>42D2E844EAA078AEB5EE22D4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CEE966E6DCB8B4C97CDA91A0</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>D4DB8CDE49AEF1953F6E0865</string>
-			</array>
-			<key>isa</key>
-			<string>PBXFrameworksBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>CEFBABFC7FDA835A8895C103</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9F9019CF97857676B40A69FA</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CEFBBF3E14854C9127C949B6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AE386E16943E96A0DC7068B6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CF1D573AD05F34862B43C0E7</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>tcp_server_windows.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/tcp_server_windows.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>CF377807E247A054379EF010</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BCB6B2D7B7F1FFDC74F231D9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>CF7B2329FB1B001A0010470A</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>path</key>
-			<string>Pods-OpenSSL.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>CF7B8538119C9381CEE1CB4E</key>
-		<dict>
-			<key>buildConfigurationList</key>
-			<string>EBE990120AA6D12DDF198D41</string>
-			<key>buildPhases</key>
-			<array>
-				<string>3B03624C2E98807A4A7FF943</string>
-				<string>53E32C79D5CFB75084D47BFB</string>
-				<string>920B8A00DF3D672A7C197C77</string>
-			</array>
-			<key>buildRules</key>
-			<array/>
-			<key>dependencies</key>
-			<array>
-				<string>6145BD33E1B257F00EDB3959</string>
-				<string>7161638CFE99778DE5CAF0C2</string>
-			</array>
-			<key>isa</key>
-			<string>PBXNativeTarget</string>
-			<key>name</key>
-			<string>Pods-gRPC</string>
-			<key>productName</key>
-			<string>Pods-gRPC</string>
-			<key>productReference</key>
-			<string>EC4D8212C1F54C418C5A9C12</string>
-			<key>productType</key>
-			<string>com.apple.product-type.library.static</string>
-		</dict>
-		<key>D043E487EEAF4C42DA3BE964</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9BCA3C5E1E11A295F38CAB7A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D052838662172FD36315F833</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>sockaddr_win32.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/sockaddr_win32.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>D07B947A06B7CDA82DF5378C</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>log.c</string>
-			<key>path</key>
-			<string>src/core/support/log.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>D08EDF1D665D023BBA0D2497</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0A1F18AA4FCD9DDA129D2780</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D0AACE8D5A3D9D055537ABF5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8E740BA19823D74A7D9CC6CF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D0B31A61AEA88B19BEBB02BC</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>088A2350EA439137EB7D9819</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>NO</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_DYNAMIC_NO_PIC</key>
-				<string>NO</string>
-				<key>GCC_OPTIMIZATION_LEVEL</key>
-				<string>0</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
-				<array>
-					<string>DEBUG=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
-				<string>NO</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Debug</string>
-		</dict>
-		<key>D0B9A6B1A8D6F071EFFC9731</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>24525C4BBB0AC12A3C992439</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>YES</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_CFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_CPLUSPLUSFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-				<key>VALIDATE_PRODUCT</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Release</string>
-		</dict>
-		<key>D0C66F5DB909EE551B31FF6B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2EF03C938557266641037A73</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>D12C2D35F8398770CD71A16E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C78D061C9F46F06C8334F4E4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D1A226C7461073448AF5F250</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6C4E2EB3CDCEED1D6C5709ED</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>D1D8050640C12EB8E6434E95</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B457AA86A4E8558B26ABE2A2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D254B4B50493A2793B8D5F41</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F5CD4D631C142B46A08A6581</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D26066FE22267E3342FF740E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>aes.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/aes.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>D26128D5B9290E994C5C56A6</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>AF805C754B6C375BC4B44CBD</string>
-				<string>06C677AD82D6A2D46938D5C0</string>
-				<string>375DE8DE567BEE25B14AF9F0</string>
-				<string>3556D28254F236B2F9A58211</string>
-				<string>8EB083D4BC94E6C9CD4F011F</string>
-				<string>088A2350EA439137EB7D9819</string>
-				<string>C331D346A894F3FCDEAA07D5</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>name</key>
-			<string>Pods-SampleTests</string>
-			<key>path</key>
-			<string>Target Support Files/Pods-SampleTests</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>D2DEB1B407725DEAC75C7A9A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4371CED1B1505B58D0DD40B6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D30AAF3157C10EE10C4C5B92</key>
-		<dict>
-			<key>fileRef</key>
-			<string>62931C3BEE80AC36EF1C1D6F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D356DE374B525E41FE09BB18</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>sync.c</string>
-			<key>path</key>
-			<string>src/core/support/sync.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>D367BF5004329D41346AFFF5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CCF40176486A4BD0A7ACF6E6</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>D370D2FD90916191B0BE4A7B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8E740BA19823D74A7D9CC6CF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D38F265C9E832B713B3A0724</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7BB1EB3259E3DC428BA9927B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>D3A38FD1480AE59DFC4E4ADC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9B19C806B4AFE8A83414EE19</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D3B6BF2ACB17DF6C6116928F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C1AB9420EC401C5BB395F7CC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D42504ACED768142CEF9F0E4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E5E3D8FF89E386FE61A3887F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D439D7286A59520842437B2E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3F2A075199D540127B67DFAB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D43F73B84D5FE0CE65C485F8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B3E02FFCB91C6642373943D2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>D440E97BEE15C83278F0BD54</key>
-		<dict>
-			<key>containerPortal</key>
-			<string>EF6CCB5D3B9A6AAB7B6B4A70</string>
-			<key>isa</key>
-			<string>PBXContainerItemProxy</string>
-			<key>proxyType</key>
-			<string>1</string>
-			<key>remoteGlobalIDString</key>
-			<string>B65DE04C9C73EB40B0BAD0A4</string>
-			<key>remoteInfo</key>
-			<string>Pods-Sample-OpenSSL</string>
-		</dict>
-		<key>D4472E3F37A39EF015330DCB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6F07874169E0970EC859C33D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D451028DF94152C4822D977C</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>iomgr.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/iomgr.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>D46DA4DAF36C9D71ED92C33E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>60B3FFF7224676E000FFC99F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D4DB8CDE49AEF1953F6E0865</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4FD344A4C37F355D47A7FFFE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D4F5E1AE044C187B810AD07F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0CE368F81A14F550EB5D707F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>D561FFCDA8946C531DE569BF</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>kssl.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/kssl.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>D582DE6B9B64C57EF99F5009</key>
-		<dict>
-			<key>fileRef</key>
-			<string>77B55EEAAE337991A39F497C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>D59A65CF09BBB18AC24DE8A4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C5610466549D4B577E63E392</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D5B02F9B59EE85513AE18E22</key>
-		<dict>
-			<key>fileRef</key>
-			<string>61C9F7E9F2B692ABC1E833C1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D5DDBAB2F6224BB33B9047F9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0E4FAB5750FFE3A2E16B10A4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D5EE6C4A25A583B033D84C2E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EF4C604AF8DFD93892271C18</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>D5F0408497E76FF2719543FF</key>
-		<dict>
-			<key>fileRef</key>
-			<string>69067E0159C82E4500EDD649</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D600CB01889EC10BA9FE1D45</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>x509v3.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/x509v3.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>D62A1CF80C5412356960D509</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text</string>
-			<key>path</key>
-			<string>Pods-Sample-acknowledgements.markdown</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>D65458F40FE9F9C5D1AEAFF2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>836BB5DD3F8F3AC58643748E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D66C9178A237F3206AC28994</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>census_rpc_stats.c</string>
-			<key>path</key>
-			<string>src/core/statistics/census_rpc_stats.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>D67E6845A33F3238B5E6992B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4FD344A4C37F355D47A7FFFE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D6BF25300F17FB13B1F5D6C7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A86876ED4DB60AEE65ACDCD1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D6D07C30809CD707CC0BF7A3</key>
-		<dict>
-			<key>buildConfigurationList</key>
-			<string>CD97D3B2F241667C711BB9D2</string>
-			<key>buildPhases</key>
-			<array>
-				<string>5CA35CF2DBB0FBCDE28CC9DA</string>
-				<string>B7C5D79C903F716073525AD4</string>
-				<string>91E84383991B266D3EDDD743</string>
-			</array>
-			<key>buildRules</key>
-			<array/>
-			<key>dependencies</key>
-			<array/>
-			<key>isa</key>
-			<string>PBXNativeTarget</string>
-			<key>name</key>
-			<string>Pods-Sample-RxLibrary</string>
-			<key>productName</key>
-			<string>Pods-Sample-RxLibrary</string>
-			<key>productReference</key>
-			<string>55C40ECD4A56F0F121C26335</string>
-			<key>productType</key>
-			<string>com.apple.product-type.library.static</string>
-		</dict>
-		<key>D6EB9981606955226C03A02F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>slice.c</string>
-			<key>path</key>
-			<string>src/core/support/slice.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>D6EBE4286348F9FC80642F74</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D356DE374B525E41FE09BB18</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>D709C6116B404BCE1F78D6D9</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>73F957500D7369AD5072A614</string>
-				<string>8A358A585170373B06F1B944</string>
-				<string>A3F617FD54C5A5641302AD0A</string>
-				<string>484605C45AF3DEFF8C53B5D8</string>
-				<string>E1A2E57C9170491172972963</string>
-				<string>13DC064E1697E2582E99EC94</string>
-				<string>9CEC869A37B26469E7A21C49</string>
-				<string>B6B2F9DB036E33A98B8C47BB</string>
-				<string>1DAF1CBE016CA0A8D7BBA6F3</string>
-				<string>CEDA582BF46E30C88B454695</string>
-				<string>232DD5AE3F69DD23F4FCACF6</string>
-				<string>2C3DF9A4F0B44FF3249679EC</string>
-				<string>14205681A376B5AE93DC9F83</string>
-				<string>0D2075C9C957E9276845CD6C</string>
-				<string>82046C0E293D7DD34F604072</string>
-				<string>0C864B9C1A92E5F37D3815A1</string>
-				<string>A6178F1B03C165E5A3E5D8DD</string>
-				<string>E4F53363EB8C01CE46AC1F9B</string>
-				<string>2DF440E3E55E28B15AA19A9E</string>
-				<string>3812629E97154598D8C4697E</string>
-				<string>F11A16E2FEA20E3A2DC5A831</string>
-				<string>8A92829929077C02FC1CC12D</string>
-				<string>AA1454D20FA4AD9320F925C7</string>
-				<string>65E183F344A62BE6CE92A1E4</string>
-				<string>84B78EBDCA3109C97DDE7D8A</string>
-				<string>D582DE6B9B64C57EF99F5009</string>
-				<string>E7B6CE2620FA7FC2F8D240B1</string>
-				<string>E25663EDF85A3FBD20E254F5</string>
-				<string>CDB44B4DCBC85D14A78E3A40</string>
-				<string>ED439DC23EC6B89B3E994C32</string>
-				<string>CB928C7F06C03357E4BC0826</string>
-				<string>FD97B1665343F702E97BEC63</string>
-				<string>F32A5D2960106FA4EF3ADBF6</string>
-				<string>23EEDEBEAEE7D6F8ADEF43EC</string>
-				<string>C11C2B4F69EA864A46D8875F</string>
-				<string>EDC172C0A05E04B721F76828</string>
-				<string>A09A6BB7CAEF78845760BB83</string>
-				<string>F1C76D8ACB40F0EA899A1858</string>
-				<string>95E92CA0D48214FF9CBAEE5E</string>
-				<string>1C0FA0D98A037BE68270FE79</string>
-				<string>88C9A13283038FA815BFA5C9</string>
-				<string>184DF0F2DC0A9733517F5103</string>
-				<string>4689EA5BBF79218E1F2D9AED</string>
-				<string>4BA4DA67CF58A65DCC85F5BA</string>
-				<string>7EC5471D8A069EC5545940CF</string>
-				<string>A41D67E92BEDF4DD049D9022</string>
-				<string>37237EF4375455451C706BBB</string>
-				<string>1DD0FCAB703C9B8C13B64731</string>
-				<string>E9840EB32857140D8050F509</string>
-				<string>FAA9E3C29F4A2D242CC501A9</string>
-				<string>959372ADA2AA68716B44E8EC</string>
-				<string>7679CDCB221DE1A2A30D932C</string>
-				<string>7E4C956749E3386C7DEB12A4</string>
-				<string>D8380A280C92217E2B79C1A1</string>
-				<string>C3A4593D5E1F396D396FD865</string>
-				<string>B6F405AEA36B32ABCD054EB0</string>
-				<string>1504400614F2E75956C85805</string>
-				<string>1BDC56986C60BC6C8AA7AD27</string>
-				<string>C74189D6AFD3F538F697CDA9</string>
-				<string>0ECB45695F3E06E052EAFFD5</string>
-				<string>6050F583B27019DDD533F1D7</string>
-				<string>2304C0FD095D75F7DF93DB6E</string>
-				<string>EDF2D3872945C79B91BC1B8B</string>
-				<string>0F65E3244BFCB2D5982EDAF6</string>
-				<string>7913EFBB226B7A0303E92053</string>
-				<string>D0C66F5DB909EE551B31FF6B</string>
-				<string>8B90BA8890B6CDDCD1AF9E53</string>
-				<string>4970427BF3C64B397D861394</string>
-				<string>97A5D3D5027A82D95617B09B</string>
-				<string>717C9A960B10C1D8B189FA34</string>
-				<string>73FF1675FBEAC57940D173D0</string>
-				<string>6F4608C9B857F575CBB3300F</string>
-				<string>1D69695B89A47D7F7A046BF2</string>
-				<string>04DDC349CD70A002C915916B</string>
-				<string>7B307E7187D641E851349DF7</string>
-				<string>2C9CC4C15DA55272AF0A3205</string>
-				<string>0EBFF7D8043D001D4FD2F113</string>
-				<string>221C783B74991EA9849679DE</string>
-				<string>0692F07B9E49D9CEB7CF8371</string>
-				<string>E1E3A6D7D9DD8181161F6AFD</string>
-				<string>DC30B6F917B72223A4EF530D</string>
-				<string>F310700D370B7139E12D8247</string>
-				<string>97DB14FE1E0A6A8C3BD6B023</string>
-				<string>298B9E1F4FE96441684C83A8</string>
-				<string>E62C591CD19B81C4387EE110</string>
-				<string>9B395489E55934C02093FBB7</string>
-				<string>78D59FA1BE988979B6761F14</string>
-				<string>A2E9C202C1D1DB88E3C17A91</string>
-				<string>FD5060A6862DA7C4047F84BE</string>
-				<string>76325E85DD3253DE073C5CCF</string>
-				<string>4418D2691A2D98931DE90DA9</string>
-				<string>4415C474C50A2855E6C5A15D</string>
-				<string>ED891EC7DF99F51AD66F7F82</string>
-				<string>89E5043AE8F6F64177A8160F</string>
-				<string>4C3B75A5C1D65AB011B20958</string>
-				<string>C2E2E76471682B8102E870DE</string>
-				<string>EA69DB94EA7D85FC0C48C051</string>
-				<string>B04D930988C1964B7083AA13</string>
-				<string>552D563BF45C786797882D69</string>
-				<string>E7A8C7EF9C1841AA643F178D</string>
-				<string>ED45F49B3CBEF5C19286CA9E</string>
-				<string>847694D8394A2B6887B6ECDE</string>
-				<string>624D819A6B2BA9AF422FE7BF</string>
-				<string>7D8F102F913D78DF3B2ED68C</string>
-				<string>91A88D54C9689A2113DC0138</string>
-				<string>F9803B6287D0284320DFD16C</string>
-				<string>F347DF82E786C5E815C4DD89</string>
-				<string>25EC7DF37F1307468A59F519</string>
-				<string>35235F9F07B924089DAF62B5</string>
-				<string>E005F2902310EA1CD48114C2</string>
-				<string>08BAE63DA1EE8E619E885024</string>
-				<string>934CB9F465F6746EA1B5F039</string>
-				<string>860AB2323499E0CD99F1FD3A</string>
-				<string>ED8B5DD2ABCED951FC891A56</string>
-				<string>F6B8979DC4C330D1E4D0B83A</string>
-				<string>6FA6D2AE05FD42F890C33795</string>
-				<string>2EBB008FD46AF37B43490E29</string>
-				<string>D1A226C7461073448AF5F250</string>
-				<string>954E85CB80A3FE5A80022239</string>
-				<string>2E43E26E9B94E7606C90F3BD</string>
-				<string>864792DC47D8685A6825FAC5</string>
-				<string>37F36D73CEB819EA976D6B43</string>
-				<string>D7F251EF0F5E0CBF7C15C569</string>
-				<string>2A0AF801A6284D9166A0B8AB</string>
-				<string>AC4E032523F35AA9A9301C6A</string>
-				<string>FFCAB0ED469478ED22DDFD25</string>
-				<string>54D41208DC5E0F2EBDB4A2E7</string>
-				<string>43219C6F459E3CDDA432F09A</string>
-				<string>CAC75A48DD2F7936DAF32101</string>
-				<string>2176505C7D5CF7B7BAE39048</string>
-				<string>5454389A44BDD445AC71C9C9</string>
-				<string>39FE8F8E9D9ADC7BBC28A67C</string>
-				<string>BE68354DD4A348027B687873</string>
-				<string>0BB26F19D4FBCD1013C81182</string>
-				<string>156006AC7B2BB9AE9C8F76DB</string>
-				<string>2FA5A790B1AF683BB0CBC9EC</string>
-				<string>FADF2F597ECCD5B0DF46F71C</string>
-				<string>D6EBE4286348F9FC80642F74</string>
-				<string>8EF90CF24E8E58C2CBBE216C</string>
-				<string>3F67AD5506C3AB2531E4FAED</string>
-				<string>A82793569517B899F2AD70F6</string>
-				<string>832B21547238DC20024302B5</string>
-				<string>731B72C765A260A8AED2B4AD</string>
-				<string>F7AB16E5C13F361D7A7BECCE</string>
-				<string>5DD24E2FFC5E58A6580D6DD6</string>
-				<string>2FE8F5BA8277F6EC569C40DA</string>
-				<string>6E18C5B1BA639D970AC2ADB3</string>
-				<string>B573A657529809254F97BF49</string>
-				<string>79BC090DC8C39AC2EC9E16C9</string>
-				<string>7DB53196F7B3078EA3DD8F84</string>
-				<string>C2139470A677EDEDCD96634D</string>
-				<string>3BED337CF586AD476974B023</string>
-				<string>824C3D502C933197486E445C</string>
-				<string>C96C305819874FC8096A4A66</string>
-				<string>A1341BDC1DEB7D7A372974DD</string>
-				<string>3BE528956BA4883697F93997</string>
-				<string>930B9B65578ED4E13242B376</string>
-				<string>1B0990BF14CAA7E337C67697</string>
-				<string>10EBA542D5C2DF4452500953</string>
-				<string>321FD9F46C9AEF1172C7673F</string>
-				<string>8CAF9AA785D10DDE677C4CEB</string>
-				<string>11DE021FAF3654F8F1B67574</string>
-			</array>
-			<key>isa</key>
-			<string>PBXSourcesBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>D73EE8993FF1562EDE456B08</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9E31EA7FB9DCBDEB4A07DC3A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D7619368410CA7CE988467C9</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>GRXWriter+Immediate.m</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/GRXWriter+Immediate.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>D7BF1CCAFDAB3091719BA7B5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>38E7954524258CAA18F1A421</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>D7BF8A0AC278F81DB34A2445</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DF5227880697E2E68AC060D3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>D7CB4A20B855DC7338EA7C38</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>endpoint.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/endpoint.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>D7D4DF8890E0FECEFD6A913F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1B4CE102C55280CFA2F5A216</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>D7F251EF0F5E0CBF7C15C569</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F35C20493437B1BA0212EA81</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>D8144293CB4B123533B56768</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7D2023720CB66FFC7E2C8A1E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D82E19DAAEFC7EA0DD7A149B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>trace.h</string>
-			<key>path</key>
-			<string>src/core/debug/trace.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>D8380A280C92217E2B79C1A1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6450C7404935D2BCA5C1BA45</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>D8718D298A042D6F9C7519C5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6FC651BF50A48D13DD20BC6B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>D8AB2B167BB2DF00DC4ACBEC</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>C331D346A894F3FCDEAA07D5</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>YES</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_CFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_CPLUSPLUSFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-				<key>VALIDATE_PRODUCT</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Release</string>
-		</dict>
-		<key>D8C6D1E9C1F88ADA9373CB19</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4D5F69A5F499ADA629DB6A82</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D8E95F46A8CCD36804EE6671</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8660BD5D9AD30CEE8070E879</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>D9347248FC3DF84931AF8B36</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>A6042770D77AE61CC21E098B</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>NO</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_DYNAMIC_NO_PIC</key>
-				<string>NO</string>
-				<key>GCC_OPTIMIZATION_LEVEL</key>
-				<string>0</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-OpenSSL/Pods-OpenSSL-prefix.pch</string>
-				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
-				<array>
-					<string>DEBUG=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
-				<string>NO</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Debug</string>
-		</dict>
-		<key>D956925C1B6710D96C7A5624</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4CBE9D1FEE4A0B6614579FED</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>D9757ABBF6265018F15F201D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D82E19DAAEFC7EA0DD7A149B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D977513CC0C2D53C095D7734</key>
-		<dict>
-			<key>fileRef</key>
-			<string>5EE3B6D1012B212265C1BB8C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D9891EADF45E9ACBCDA6A4C9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>5822A294383B44D69AB62D69</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D99750A8B713DBDFD2B7EC99</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>frame_rst_stream.c</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/frame_rst_stream.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>D9C7F42C1753AE8C749DBF4E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>916A8345964DEAFB4DDF8D1F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>D9E90FC23D314C3938387079</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>surface_trace.c</string>
-			<key>path</key>
-			<string>src/core/surface/surface_trace.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>DA05884BD9CA260488B8A356</key>
-		<dict>
-			<key>buildConfigurationList</key>
-			<string>4FE5240752E470D1C9E6BE02</string>
-			<key>buildPhases</key>
-			<array>
-				<string>861D897EEDD6DE2936DD3C7F</string>
-				<string>319F9405AEA5CB03870BC458</string>
-				<string>65B5B4BC857E9FBA09E95B52</string>
-			</array>
-			<key>buildRules</key>
-			<array/>
-			<key>dependencies</key>
-			<array/>
-			<key>isa</key>
-			<string>PBXNativeTarget</string>
-			<key>name</key>
-			<string>Pods-OpenSSL</string>
-			<key>productName</key>
-			<string>Pods-OpenSSL</string>
-			<key>productReference</key>
-			<string>46678974D7A8EA0CA9C91153</string>
-			<key>productType</key>
-			<string>com.apple.product-type.library.static</string>
-		</dict>
-		<key>DA0FD393E2348926C39D1941</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A24CCE81E4BD7EB9EC4EE049</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DA144B6EC7CDF502EEFCF5A9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>96EDDB65D155EF4F18258A48</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DAA62209D30082B22008D41E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B8DF9068117725B6C1CEE497</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DB0C66D2A5F00157E328075E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>modes.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/modes.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>DB11B2553A88A34E941C03B1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2A18EA340EDBFDBBDB1D6EFF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>DB1C3D718B42BA3CDD909867</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F1ACC5FAB761447CA87BC69B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DB343DAD68841B66AB8F4F16</key>
-		<dict>
-			<key>fileRef</key>
-			<string>99B287793D41F6BEE8147D5D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>DBAC7AC3458F6C79EADCC647</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0BA8F8429E95CB00593DD957</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DBB02942DC6D425BCF4EA482</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>F2CDBC4114F494739221E5A5</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>YES</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-Sample-gRPC/Pods-Sample-gRPC-prefix.pch</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_CFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_CPLUSPLUSFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-				<key>VALIDATE_PRODUCT</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Release</string>
-		</dict>
-		<key>DBC29C43D1775F41AAD9DB68</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>format_request.c</string>
-			<key>path</key>
-			<string>src/core/httpcli/format_request.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>DBC4DF56AAB09D92448F9E8D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DEDFB50008BE43CBB3004B50</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DC30B6F917B72223A4EF530D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>28B95C0C2707A55FEC37D8D1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>DC44076646DE7E5754BCCDF5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BCB6B2D7B7F1FFDC74F231D9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DC7516FB8708E4912E4CB837</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DCE6F838BF9A76E1E90F8F29</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>DCB800C7DFD5A06206FBBD1E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>endpoint_pair_posix.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/endpoint_pair_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>DCDAAFD44EE1C6B6D93DA6F7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>26D71D13BCCCE8C95C4A4AD2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DCE6F838BF9A76E1E90F8F29</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>channel_stack.c</string>
-			<key>path</key>
-			<string>src/core/channel/channel_stack.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>DCF982AB7309E23BD635309F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DFF8522D6E79FA378B09E2AF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DCFE6C610400285D9DBE9883</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AC16D2F576455F6505380390</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DD2B36F7666FC4A07AB6969F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>17FD73CC0F32C37DA1273B68</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DDB1C0781AC4F3A98D93B928</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2E7903344C81D180FB28D3B7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DDE76DB46D07831D3E5B09AA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>38E7954524258CAA18F1A421</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>DDE81534F0CD827F0E346296</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9E248AE4927FC2B338C5BD26</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DE01AD2E1DC6FE17ABF873E7</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>GRXWriter+Transformations.h</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/GRXWriter+Transformations.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>DE2503A5CD5A96019546C8AC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B35F00EA0F43E499609BEF33</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DE48398D09545395F18443EA</key>
-		<dict>
-			<key>fileRef</key>
-			<string>426B8FA69F7F8DC09EC303BF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>DE4C762B94ADCDEBD4CBCD39</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>byte_buffer_reader.c</string>
-			<key>path</key>
-			<string>src/core/surface/byte_buffer_reader.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>DE62518571D474D6F5FBBDD5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EABF904D0F76AC91C97DEC58</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DEC0127013FF7E2BE404F94A</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>GRXNSFastEnumerator.h</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/private/GRXNSFastEnumerator.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>DECE9544878E610FB6CF1CE7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>451541B815BDBB7A51B8B558</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DEDFB50008BE43CBB3004B50</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>string_win32.h</string>
-			<key>path</key>
-			<string>src/core/support/string_win32.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>DF00089A1C3B62C5E7CF03BE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F1F27FF9817028212E7026A3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DF1EAF04C9DE4F8A52A3D12A</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>793B98225026B04927554AEA</string>
-				<string>CEC19B24C4C48232AE58487D</string>
-				<string>F1589B444B6F98E2D054A7F8</string>
-				<string>F82992F1B7C0C03C0E14507F</string>
-				<string>C9EA08E2846F2ED9FF6717FD</string>
-				<string>D65458F40FE9F9C5D1AEAFF2</string>
-				<string>9A05DC6635D33F7E57048ACD</string>
-				<string>2CA483F817F2255BAD8C30D6</string>
-				<string>A155D2D460809289D755B3BD</string>
-				<string>04B65B5690EE8399472EF468</string>
-				<string>84F83721C761967A2AFC6316</string>
-			</array>
-			<key>isa</key>
-			<string>PBXSourcesBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>DF5227880697E2E68AC060D3</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>httpcli_security_context.c</string>
-			<key>path</key>
-			<string>src/core/httpcli/httpcli_security_context.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>DF55C80F0BF55E243ADCAA23</key>
-		<dict>
-			<key>fileRef</key>
-			<string>29B23B095A7B729F93AD45D5</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>DF79E5347EB087C4A477EA51</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8BA82365E8893A76F633998A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DF81A128B8765DA62E303CED</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0B198DD76D6A7D4B247F7448</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DF8E74E58D683D528FFFA615</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F8F69793DCC04A79F99DDB6C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DF9DBB49E67087607553EBB4</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>transport_security_interface.h</string>
-			<key>path</key>
-			<string>src/core/tsi/transport_security_interface.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>DFD3142F22B9BA43FB80FE88</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9C8009641C88B04CF81A8B73</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>DFD465B0A0AF3C6D94CDE581</key>
-		<dict>
-			<key>fileRef</key>
-			<string>37569C3B8AC5433CF65B34F2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DFED113ABBEAC882934BBFC1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4F90D0AFF745DCF57FABD55D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>DFF8522D6E79FA378B09E2AF</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>lhash.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/lhash.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>E005F2902310EA1CD48114C2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>842CA809080A7E042EC87FC4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E00C254AAEE7DF46540EDB56</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B39BAAB2D5DD2BF6802CCAF1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E043D5C19FBEAD0A9248545B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>ADFD53FA9A8E05973B205F80</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E04C321930BE419B9118F46A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>145DC67262745588DD7393C7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E0A3D8467CE38E0A791B9E2A</key>
-		<dict>
-			<key>containerPortal</key>
-			<string>EF6CCB5D3B9A6AAB7B6B4A70</string>
-			<key>isa</key>
-			<string>PBXContainerItemProxy</string>
-			<key>proxyType</key>
-			<string>1</string>
-			<key>remoteGlobalIDString</key>
-			<string>019EC915480E3C1C93519A28</string>
-			<key>remoteInfo</key>
-			<string>Pods-SampleTests-RxLibrary</string>
-		</dict>
-		<key>E182101C9EEB99CE8E0FFE06</key>
-		<dict>
-			<key>isa</key>
-			<string>PBXTargetDependency</string>
-			<key>name</key>
-			<string>Pods-Sample-gRPC</string>
-			<key>target</key>
-			<string>C861662370F99B8D5130D4F4</string>
-			<key>targetProxy</key>
-			<string>2D42C9F2C1FBBA7572EDD01E</string>
-		</dict>
-		<key>E1A2E57C9170491172972963</key>
-		<dict>
-			<key>fileRef</key>
-			<string>69067E0159C82E4500EDD649</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E1D60882186803B4A3DFC0B4</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>F84DBB47A65361B8FFA2AF76</string>
-			</array>
-			<key>isa</key>
-			<string>PBXFrameworksBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>E1E3A6D7D9DD8181161F6AFD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0055F4110B7DF51C8F7D0DC3</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E244800DE7ECF350EEB23912</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>1A7292699189E37B14D181B4</string>
-				<string>79425FC1F6976BF842091CB7</string>
-				<string>1AD8C730591AEE51C3338055</string>
-				<string>13022F3FE97A84183259DD81</string>
-				<string>E56E053831009D9AF6419236</string>
-				<string>1D78C51984852802AAF21B08</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>E25663EDF85A3FBD20E254F5</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C7E59BD438F0F1ED32112050</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E2C665E7DA085C5E66120795</key>
-		<dict>
-			<key>containerPortal</key>
-			<string>EF6CCB5D3B9A6AAB7B6B4A70</string>
-			<key>isa</key>
-			<string>PBXContainerItemProxy</string>
-			<key>proxyType</key>
-			<string>1</string>
-			<key>remoteGlobalIDString</key>
-			<string>5178199C95874904FB00D5C1</string>
-			<key>remoteInfo</key>
-			<string>Pods-RxLibrary</string>
-		</dict>
-		<key>E2F7C15B7051EC560A0C784D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3F2A075199D540127B67DFAB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E3CBB834ACC21DD968334F8E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D99750A8B713DBDFD2B7EC99</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E3DEC05211ECFC05CD100F9B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>295A13EFB64D8765156FB0C7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E3E4C05ADDDB4242AD752A04</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>noop_filter.c</string>
-			<key>path</key>
-			<string>src/core/channel/noop_filter.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>E40892AC07D82FBF26EDD351</key>
-		<dict>
-			<key>fileRef</key>
-			<string>17FD73CC0F32C37DA1273B68</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E4133810CB117E30EABAAB07</key>
-		<dict>
-			<key>fileRef</key>
-			<string>916A8345964DEAFB4DDF8D1F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E450AE9CDBD525C20BCB3507</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4A594D1939C7AD71889FFD1D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E478E020B2BE978EB0E7DC2C</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>14380149D2CAE5204C7EB620</string>
-			</array>
-			<key>isa</key>
-			<string>PBXSourcesBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>E4BDA0D8F9EDD080F5B3FAE4</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D451028DF94152C4822D977C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E4F53363EB8C01CE46AC1F9B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8542018AA6FEDBF4F935FE62</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E528D0430088FA7A99D87953</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9BCA3C5E1E11A295F38CAB7A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E56E053831009D9AF6419236</key>
-		<dict>
-			<key>children</key>
-			<array>
-				<string>FF071EE6A2FE57CD7089D1AB</string>
-				<string>46678974D7A8EA0CA9C91153</string>
-				<string>ED6EBFCF9B5856C8295B2621</string>
-				<string>02968FE6B78F9426E4ECF627</string>
-				<string>B9B345B6B131E631CB6A9554</string>
-				<string>55C40ECD4A56F0F121C26335</string>
-				<string>834847CB2D9E3A423799E679</string>
-				<string>7C69F11820431FDA95D6B376</string>
-				<string>469571A6093FE7D82CF45380</string>
-				<string>3F32E233D900771E0882C48C</string>
-				<string>4579FAC6DD2648BA6504C215</string>
-				<string>EC4D8212C1F54C418C5A9C12</string>
-			</array>
-			<key>isa</key>
-			<string>PBXGroup</string>
-			<key>name</key>
-			<string>Products</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>E59C8A5299D81913452A95CE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EDCA1F07FB400E1CE2406DDC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E59EBD56BEDB7A8B1D39AC74</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D7CB4A20B855DC7338EA7C38</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E5E3D8FF89E386FE61A3887F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>chttp2_transport.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2_transport.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>E5E47CD4E135E827A0892211</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E77C5C56A04DB8BC5EB4E7F1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E60F729854F318259F7B413D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>atm_gcc_atomic.h</string>
-			<key>path</key>
-			<string>include/grpc/support/atm_gcc_atomic.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>E614A9EB40C74815D9492143</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7F396A61A4C14A1C90DCC003</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E62C591CD19B81C4387EE110</key>
-		<dict>
-			<key>fileRef</key>
-			<string>295A13EFB64D8765156FB0C7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E641063DBDE5CAB35BFCB642</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>pem.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/pem.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>E65C5806EEB59892F1038AED</key>
-		<dict>
-			<key>fileRef</key>
-			<string>46B78A6F01667D7B0FC98E17</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E67D12231F5C1EEFFA502A57</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C90346AE945DEC7DE5A020D9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E695B10264E7465356D4FD6D</key>
-		<dict>
-			<key>containerPortal</key>
-			<string>EF6CCB5D3B9A6AAB7B6B4A70</string>
-			<key>isa</key>
-			<string>PBXContainerItemProxy</string>
-			<key>proxyType</key>
-			<string>1</string>
-			<key>remoteGlobalIDString</key>
-			<string>B65DE04C9C73EB40B0BAD0A4</string>
-			<key>remoteInfo</key>
-			<string>Pods-Sample-OpenSSL</string>
-		</dict>
-		<key>E6B7EE2E354E5D26692CF2EB</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>Pods-gRPC-prefix.pch</string>
-			<key>path</key>
-			<string>../Pods-gRPC/Pods-gRPC-prefix.pch</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>E6BA3DDEFA6996A5F7675AC2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4FD344A4C37F355D47A7FFFE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E6BD399A8C9ADFC8662292C2</key>
-		<dict>
-			<key>buildConfigurationList</key>
-			<string>EA29B37D6F4398A766728234</string>
-			<key>buildPhases</key>
-			<array>
-				<string>19CFBDA59D240B76372438CD</string>
-				<string>32F6ADA70A72325BA32DAF4B</string>
-				<string>770EF8A92E537873B37F1A97</string>
-			</array>
-			<key>buildRules</key>
-			<array/>
-			<key>dependencies</key>
-			<array/>
-			<key>isa</key>
-			<string>PBXNativeTarget</string>
-			<key>name</key>
-			<string>Pods-SampleTests-OpenSSL</string>
-			<key>productName</key>
-			<string>Pods-SampleTests-OpenSSL</string>
-			<key>productReference</key>
-			<string>469571A6093FE7D82CF45380</string>
-			<key>productType</key>
-			<string>com.apple.product-type.library.static</string>
-		</dict>
-		<key>E6D9448BE62BF145C8C4DCB6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4B370D7822739445ED511CD7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E6DCF1CA14AC0C58C638B0E9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>817E0434460DA6B1BC731476</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E70C13DC2788AE837C8763D1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7F396A61A4C14A1C90DCC003</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E77C5C56A04DB8BC5EB4E7F1</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>srp.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/srp.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>E79C81FC26858E71CEEDEA9B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B4573EE9D7FF342E24C6B89F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E79FE1F6E53A6A4575BE1B88</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>wakeup_fd_posix.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/wakeup_fd_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>E7A8C7EF9C1841AA643F178D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2C1D7C1261DB41B444560176</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E7B6CE2620FA7FC2F8D240B1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>09C5C94835C932491C6D797A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E7B77C082F981EF21B3C523B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4FD344A4C37F355D47A7FFFE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E7BC0C7DDB495B1D29A3D309</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>x509_vfy.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/x509_vfy.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>E7D1FFC956B8A56A55BA432B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>stream_op.c</string>
-			<key>path</key>
-			<string>src/core/transport/stream_op.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>E7F10BE09F4FB176D9ED20E6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EB7C915070654BB1EEAF664A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E868EF3CBB39DBAEEFE43C2E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8D7DA71EEC85D0C95235EF68</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E876A6C28C305D05313228B7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0B198DD76D6A7D4B247F7448</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E8825C55A518139C5DEC9C5A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E641063DBDE5CAB35BFCB642</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E89C11B4F888A8F5906D2262</key>
-		<dict>
-			<key>fileRef</key>
-			<string>532313D0D1293BE59BB1DF49</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E8AA156BA4A03A9073B19806</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AA7AF3F1DD0FD4E9DE7BA7AF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E8C2B2DA067A7CB92256FA9B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B62F259F4CAF915352371941</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E8C8EF12A80456AFEBA0C4CE</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>seed.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/seed.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>E8D94090C12307C06ADAD3E7</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>Pods-SampleTests-RxLibrary-prefix.pch</string>
-			<key>path</key>
-			<string>../Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary-prefix.pch</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>E91F65D8F03B3963E97AA412</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B8DF9068117725B6C1CEE497</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E9429E877CDE50D84472AEF2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2986E2FF3687B7B130FE0BDC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>E975EBE61BC4688C5F7036F7</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>conf_api.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/conf_api.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>E9840EB32857140D8050F509</key>
-		<dict>
-			<key>fileRef</key>
-			<string>15F3B9386551E7B27C6ABDE7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>E999CD2C6C127C0CCEE5CA54</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>metadata_buffer.h</string>
-			<key>path</key>
-			<string>src/core/channel/metadata_buffer.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>EA069FB60539F05F18E6ABB8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>85D6F5B4AE1B266E2DC5055E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>EA0D329F069571F7540BCD0D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>archive.ar</string>
-			<key>name</key>
-			<string>libcrypto.a</string>
-			<key>path</key>
-			<string>lib/libcrypto.a</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>EA1E287DD8525C80F280E4AC</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>http_server_filter.c</string>
-			<key>path</key>
-			<string>src/core/channel/http_server_filter.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>EA29B37D6F4398A766728234</key>
-		<dict>
-			<key>buildConfigurations</key>
-			<array>
-				<string>219A77D2AECBC384657EAAFE</string>
-				<string>F5E2A9CFD1482D20799277DD</string>
-			</array>
-			<key>defaultConfigurationIsVisible</key>
-			<string>0</string>
-			<key>defaultConfigurationName</key>
-			<string>Release</string>
-			<key>isa</key>
-			<string>XCConfigurationList</string>
-		</dict>
-		<key>EA69DB94EA7D85FC0C48C051</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F7AD7CD61AC9BD0D63C5DA7A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>EAA677E52893091E71EE80EB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3B7551FF2E890E0288CCFF7E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>EABF904D0F76AC91C97DEC58</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>secure_transport_setup.h</string>
-			<key>path</key>
-			<string>src/core/security/secure_transport_setup.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>EAEE508B3460A40554BA3026</key>
-		<dict>
-			<key>fileRef</key>
-			<string>672235DED2FD80A0C49993C9</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>EB18A5E519B614F98845DDFD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>96EDDB65D155EF4F18258A48</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>EB1B535CE6ED0C872000AD01</key>
-		<dict>
-			<key>fileRef</key>
-			<string>49E325B5F444ECFC9724C969</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>EB2208B799188A1774A09FB8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D561FFCDA8946C531DE569BF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>EB4D5B08A336D5C42E28718D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>channel.h</string>
-			<key>path</key>
-			<string>src/core/surface/channel.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>EB7376B3F9A8D30DF4BAD5DD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9740CE8A2943145FA3F1A1BC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>EB7C915070654BB1EEAF664A</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>pollset_kick_posix.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/pollset_kick_posix.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>EB99EC4D85B47B39D76828E9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1A25FE7D9ED5BE32FD124EBC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>EBE990120AA6D12DDF198D41</key>
-		<dict>
-			<key>buildConfigurations</key>
-			<array>
-				<string>7D6252CA5EC10ACDF5E55526</string>
-				<string>7A3E901E7AE5B92F9B432D73</string>
-			</array>
-			<key>defaultConfigurationIsVisible</key>
-			<string>0</string>
-			<key>defaultConfigurationName</key>
-			<string>Release</string>
-			<key>isa</key>
-			<string>XCConfigurationList</string>
-		</dict>
-		<key>EBFDDA03D21778DBE9E91909</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4FD344A4C37F355D47A7FFFE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>EC4D8212C1F54C418C5A9C12</key>
-		<dict>
-			<key>explicitFileType</key>
-			<string>archive.ar</string>
-			<key>includeInIndex</key>
-			<string>0</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>path</key>
-			<string>libPods-gRPC.a</string>
-			<key>sourceTree</key>
-			<string>BUILT_PRODUCTS_DIR</string>
-		</dict>
-		<key>EC58B8839751527BD5CD1025</key>
-		<dict>
-			<key>fileRef</key>
-			<string>78AF39D8F892B7377F66B941</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>EC8A9638D016FEE6ECAE07F9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8542018AA6FEDBF4F935FE62</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>EC921AE33B1F525DF1F7BEED</key>
-		<dict>
-			<key>fileRef</key>
-			<string>5B5980115B9F57F23C415785</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>ECC4A8B64D607946277B1655</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CB4A618E542B03D760C2481E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>ECE467216AE94759184A54C8</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>name</key>
-			<string>GRXNSFastEnumerator.m</string>
-			<key>path</key>
-			<string>src/objective-c/RxLibrary/private/GRXNSFastEnumerator.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>ED05D93177339314AADFF69F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>99C2E00B823FF695DE1AF703</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>ED439DC23EC6B89B3E994C32</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0528756D4D235146310082F0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>ED45F49B3CBEF5C19286CA9E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FFA26A980DF5CC0503459576</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>ED6EBFCF9B5856C8295B2621</key>
-		<dict>
-			<key>explicitFileType</key>
-			<string>archive.ar</string>
-			<key>includeInIndex</key>
-			<string>0</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>path</key>
-			<string>libPods-RxLibrary.a</string>
-			<key>sourceTree</key>
-			<string>BUILT_PRODUCTS_DIR</string>
-		</dict>
-		<key>ED707F407E7F124D0D7B6A09</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FFA26A980DF5CC0503459576</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>ED891EC7DF99F51AD66F7F82</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A29E429E34B19E53CF3AF4A0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>ED8B5DD2ABCED951FC891A56</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BA4782F1ECEEACD72F202A06</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>EDA7C450AB879FFBCC923362</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>census_tracing.h</string>
-			<key>path</key>
-			<string>src/core/statistics/census_tracing.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>EDC172C0A05E04B721F76828</key>
-		<dict>
-			<key>fileRef</key>
-			<string>89E2EEA76098486434C7121E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>EDCA1F07FB400E1CE2406DDC</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>blowfish.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/blowfish.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>EDF2D3872945C79B91BC1B8B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>38F7BED6F24599DA7AE205AB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>EDF353C0F6EB2CFC4685F8D8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2E26C689FCF39C8612D6E719</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>EE197DD087F97537B4CC1534</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>hash_table.c</string>
-			<key>path</key>
-			<string>src/core/statistics/hash_table.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>EE1F46588CE6C8690143006A</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>C3E47797378796C59F443F1A</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>NO</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_DYNAMIC_NO_PIC</key>
-				<string>NO</string>
-				<key>GCC_OPTIMIZATION_LEVEL</key>
-				<string>0</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
-				<array>
-					<string>DEBUG=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
-				<string>NO</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Debug</string>
-		</dict>
-		<key>EE75656CA1893E65459C546C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FDC6CC7E16BE18E45D8AFF9E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>EE76B32705241C7A7811E34C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D82E19DAAEFC7EA0DD7A149B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>EE89B7A093F1B774EE6D2B6F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0528756D4D235146310082F0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>EEA7B30423B861EDF4086443</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>path</key>
-			<string>Pods-environment.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>EEA7C6C3361511FBB6CA6AE6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0ADD9DE41E7F9C7C2603F957</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>EEE15CA8B94B9F0E60B27B4E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>factories.c</string>
-			<key>path</key>
-			<string>src/core/security/factories.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>EF0A1149EF8A5DC86DDADA98</key>
-		<dict>
-			<key>fileRef</key>
-			<string>91D9331637BB25ED83E3315B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>EF12D13A82E13B6B4B9F7B1E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>huffsyms.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/huffsyms.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>EF219F2CB45B6C39AE422ACC</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>slice.h</string>
-			<key>path</key>
-			<string>include/grpc/support/slice.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>EF4C604AF8DFD93892271C18</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>string_posix.c</string>
-			<key>path</key>
-			<string>src/core/support/string_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>EF5BF73B082FA5277F400D09</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>server_chttp2.c</string>
-			<key>path</key>
-			<string>src/core/surface/server_chttp2.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>EF6786B34AD929EE2D3DAA8A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>62D5DF47C43728A2F65C8612</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>EF6CCB5D3B9A6AAB7B6B4A70</key>
-		<dict>
-			<key>attributes</key>
-			<dict>
-				<key>LastUpgradeCheck</key>
-				<string>0510</string>
-			</dict>
-			<key>buildConfigurationList</key>
-			<string>4550EEC9CAC8DFC6E1702BF8</string>
-			<key>compatibilityVersion</key>
-			<string>Xcode 3.2</string>
-			<key>developmentRegion</key>
-			<string>English</string>
-			<key>hasScannedForEncodings</key>
-			<string>0</string>
-			<key>isa</key>
-			<string>PBXProject</string>
-			<key>knownRegions</key>
-			<array>
-				<string>en</string>
-			</array>
-			<key>mainGroup</key>
-			<string>E244800DE7ECF350EEB23912</string>
-			<key>productRefGroup</key>
-			<string>E56E053831009D9AF6419236</string>
-			<key>projectDirPath</key>
-			<string></string>
-			<key>projectReferences</key>
-			<array/>
-			<key>projectRoot</key>
-			<string></string>
-			<key>targets</key>
-			<array>
-				<string>C1DA6EBB9509F9D64E4B6B5D</string>
-				<string>DA05884BD9CA260488B8A356</string>
-				<string>5178199C95874904FB00D5C1</string>
-				<string>F93D8625D05B426CB9510C84</string>
-				<string>B65DE04C9C73EB40B0BAD0A4</string>
-				<string>D6D07C30809CD707CC0BF7A3</string>
-				<string>C861662370F99B8D5130D4F4</string>
-				<string>654F5897886B8BB7F5E26A0B</string>
-				<string>E6BD399A8C9ADFC8662292C2</string>
-				<string>019EC915480E3C1C93519A28</string>
-				<string>C8AAD4FFD18ED62CF23187F8</string>
-				<string>CF7B8538119C9381CEE1CB4E</string>
-			</array>
-		</dict>
-		<key>EF6DD7F5E115C1726A0BDF61</key>
-		<dict>
-			<key>fileRef</key>
-			<string>500AE03C874D997750B5836E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>EF79E092B6F33FBBFFDADAEB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>78AF39D8F892B7377F66B941</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>EF88F9C3AD9B7F0B0303E301</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>path</key>
-			<string>Pods-OpenSSL-prefix.pch</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>EFFB90580D01B54E65176543</key>
-		<dict>
-			<key>fileRef</key>
-			<string>689564C2E5A29FF77AF4FD64</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F012F22301089C2C0F4475A3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A24CCE81E4BD7EB9EC4EE049</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F0CD95C2EAD0078BEEB214DD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>482CEB489ABA2F2345752A59</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F106F666B5A108F1DD774AA3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E7BC0C7DDB495B1D29A3D309</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F11A16E2FEA20E3A2DC5A831</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DE4C762B94ADCDEBD4CBCD39</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F148D935163703E1A71B5211</key>
-		<dict>
-			<key>fileRef</key>
-			<string>61808120480AD703F7BE5A1F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F1589B444B6F98E2D054A7F8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>62D5DF47C43728A2F65C8612</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F1759ECDCD2C0DAFEF255572</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DF9DBB49E67087607553EBB4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F19A4D16767373F7873F5B73</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>evp.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/evp.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F1ACC5FAB761447CA87BC69B</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>auth.h</string>
-			<key>path</key>
-			<string>src/core/security/auth.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F1C76D8ACB40F0EA899A1858</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C4371E31941BEFC099C5276B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F1D8E43FBC16B35A1891C86C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2BC92A2D33B15B43988C5400</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F1E1B6BE98F23B0F3A51BE59</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4FD344A4C37F355D47A7FFFE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F1F27FF9817028212E7026A3</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>status.h</string>
-			<key>path</key>
-			<string>include/grpc/status.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F1F8F4835011436120E309FC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7C25482D582A5D4E5DD54FCE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F21D1B56522DBE967A41A000</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>ossl_typ.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/ossl_typ.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F2353633639C898F17028730</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D6EB9981606955226C03A02F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F24241103A7459839369AF90</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E60F729854F318259F7B413D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F27DD9172CCF60EA48A9D24F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>47237B827DD7403D472237E4</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F2A56F49466FCD1D5197B2C2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BEA26311AB6D7A1968DFFE5D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F2CDBC4114F494739221E5A5</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.xcconfig</string>
-			<key>path</key>
-			<string>Pods-Sample-gRPC-Private.xcconfig</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F2FAE654A4BC5802F6E5A965</key>
-		<dict>
-			<key>fileRef</key>
-			<string>082732821A301BE319A43D55</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F310700D370B7139E12D8247</key>
-		<dict>
-			<key>fileRef</key>
-			<string>46BB228586778F08C3205E0C</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F32A5D2960106FA4EF3ADBF6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0C1E165416BFAA0147B21701</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F3412D255B723D85AD5CA754</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>useful.h</string>
-			<key>path</key>
-			<string>include/grpc/support/useful.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F347DF82E786C5E815C4DD89</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CB4A618E542B03D760C2481E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F35C20493437B1BA0212EA81</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>slice_buffer.c</string>
-			<key>path</key>
-			<string>src/core/support/slice_buffer.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F36A39F0500441DE7C6BD5D7</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6B8BB7CA63E66D66C95EE7F0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F3D3988DCB6A896529EE0FBB</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>alarm.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/alarm.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F3E9B6E9A0F6B868F5F415C5</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>928CE56932F20758C9C6FD73</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>YES</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-Sample-OpenSSL/Pods-Sample-OpenSSL-prefix.pch</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_CFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_CPLUSPLUSFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-				<key>VALIDATE_PRODUCT</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Release</string>
-		</dict>
-		<key>F408DD08429818D7654D374B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F59856CDE3A736AC06C74829</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F40D9B7EE9C803659F6B0F74</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>client_setup.h</string>
-			<key>path</key>
-			<string>src/core/channel/client_setup.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F4356AEE89FF027A4BAEA0F6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>99C2E00B823FF695DE1AF703</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F4642401A54E132E9EFCB2EA</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>tcp_client_posix.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/tcp_client_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F471F62EBE2C6598B961E8FE</key>
-		<dict>
-			<key>isa</key>
-			<string>PBXTargetDependency</string>
-			<key>name</key>
-			<string>Pods-Sample-RxLibrary</string>
-			<key>target</key>
-			<string>D6D07C30809CD707CC0BF7A3</string>
-			<key>targetProxy</key>
-			<string>BC1AF464187013E907218476</string>
-		</dict>
-		<key>F479DEC52B8363BF3688AAFE</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>json.h</string>
-			<key>path</key>
-			<string>src/core/json/json.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F50B90C1BA01A80E9C4CB298</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E60F729854F318259F7B413D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F52B9B7DF1156C93A1B86673</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9E248AE4927FC2B338C5BD26</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F56A8A024FEFFF1D2B980766</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>alarm_internal.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/alarm_internal.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F59856CDE3A736AC06C74829</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>ocsp.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/ocsp.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F59F69E29642873D19E60C14</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C08B1253D8582ECD0579BF07</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F5BE1CCF93932868B03CD36D</key>
-		<dict>
-			<key>fileRef</key>
-			<string>67AB9C4F5493800A859FABDC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F5CD4D631C142B46A08A6581</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>GRPCMethodName+HTTP2Encoding.h</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/private/GRPCMethodName+HTTP2Encoding.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F5E2A9CFD1482D20799277DD</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>8688B8920C01933C25D3EB9F</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>YES</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-SampleTests-OpenSSL/Pods-SampleTests-OpenSSL-prefix.pch</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_CFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_CPLUSPLUSFLAGS</key>
-				<array>
-					<string>-DNS_BLOCK_ASSERTIONS=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-				<key>VALIDATE_PRODUCT</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Release</string>
-		</dict>
-		<key>F5EC782889E78C64F5FE925F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>byte_buffer.h</string>
-			<key>path</key>
-			<string>include/grpc/byte_buffer.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F60844C0DF7FC20C5D52B33C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FE8EAD42A7475EFCBFB8BA06</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F6242540F2A46E2A4B6D14BE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7015927CC6AFAE2A1C0EB34A</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F64EB18BE55590DAEC480DC8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>41D6177A52EDB173FAF337F0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F68B0726CA238CDFE0711EBE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7BB1EB3259E3DC428BA9927B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F68CC46338EDE530C4D5D55E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>C54A331859E953767BF5543B</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F6AA0415A2165CA301FBDED7</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>pollset_posix.h</string>
-			<key>path</key>
-			<string>src/core/iomgr/pollset_posix.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F6B8979DC4C330D1E4D0B83A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B1F6D3CD27B150EC2197A151</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F6BF10E8C5299AAEFE385634</key>
-		<dict>
-			<key>fileRef</key>
-			<string>FBECCE6A82E89B6FC889F695</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F7045F65305B4686C5B1F77F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>6C4E2EB3CDCEED1D6C5709ED</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F7147314809CD3100CD9DEBD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2A18EA340EDBFDBBDB1D6EFF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F7A71A6927720A7283CAC548</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9B54EB6995D92C4AB9DE123E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F7AB16E5C13F361D7A7BECCE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A99C3A0F6DB1DDFE12666578</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F7AD6AF53FA113FF20361376</key>
-		<dict>
-			<key>containerPortal</key>
-			<string>EF6CCB5D3B9A6AAB7B6B4A70</string>
-			<key>isa</key>
-			<string>PBXContainerItemProxy</string>
-			<key>proxyType</key>
-			<string>1</string>
-			<key>remoteGlobalIDString</key>
-			<string>E6BD399A8C9ADFC8662292C2</string>
-			<key>remoteInfo</key>
-			<string>Pods-SampleTests-OpenSSL</string>
-		</dict>
-		<key>F7AD7CD61AC9BD0D63C5DA7A</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>log_posix.c</string>
-			<key>path</key>
-			<string>src/core/support/log_posix.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F82992F1B7C0C03C0E14507F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>ECE467216AE94759184A54C8</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F84822BB0BC17146CC461A27</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3FF59718D8279E1EFBC613A8</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F84DBB47A65361B8FFA2AF76</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4FD344A4C37F355D47A7FFFE</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F8F69793DCC04A79F99DDB6C</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>frame_window_update.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/frame_window_update.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F90E7A24B0681976E3AFF342</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>rsa.h</string>
-			<key>path</key>
-			<string>opensslIncludes/openssl/rsa.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>F9237D67C2BCBA6DAB536B48</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>C593D25CCCCCA63558292951</string>
-				<string>01B9E1CC50B132B7319C5E7C</string>
-				<string>19EAD7B225767B0FE81D1B88</string>
-				<string>64E3D0DA052D217552821FCD</string>
-				<string>243132FB51D5E42FB295C5E0</string>
-				<string>210B5CC41DAF085857BC0870</string>
-				<string>4D8116104EC4ABC71E2F70B1</string>
-				<string>EEA7C6C3361511FBB6CA6AE6</string>
-				<string>B28497C58B5E58D9B494C766</string>
-				<string>A0B47EA366747B7F6B89F332</string>
-				<string>712C540B561A46983D53A00E</string>
-				<string>54C200B2CFBE6FCFE3154E80</string>
-				<string>DD2B36F7666FC4A07AB6969F</string>
-				<string>A3FC71B40349DA86E41AC1E3</string>
-				<string>8A5FEA7AA696E055215AB97A</string>
-				<string>DCDAAFD44EE1C6B6D93DA6F7</string>
-				<string>7061B51D6844C417D797E4BC</string>
-				<string>B916335D84E8FF35C6AD704C</string>
-				<string>3E5C42E09441B31D1157E2F6</string>
-				<string>AED38FE2C4F4575D4FDD3633</string>
-				<string>DDE81534F0CD827F0E346296</string>
-				<string>FB5F1F2E02B7ECFC92A556AB</string>
-				<string>ABFD0CE1BBFC837F3F306870</string>
-				<string>B6DBA8CB1D26F60F2F1A3A5B</string>
-				<string>5F25A6C443F24715271BEC55</string>
-				<string>A35B1CC8355FBA53EA0B9C3F</string>
-				<string>E04C321930BE419B9118F46A</string>
-				<string>3C6AE9EB25ACEE5EE96E66C2</string>
-				<string>2087F67F6B1EEC840708A802</string>
-				<string>812B45C4607FD84BDD27DE6F</string>
-				<string>75E06B9219E7A4C4B804D2E1</string>
-				<string>788751C7F8A6048D4D424568</string>
-				<string>19E26A868D15FFB6E8044284</string>
-				<string>9578277167194D99EEA1D159</string>
-				<string>042A85A3290882AB91494ACF</string>
-				<string>DA0FD393E2348926C39D1941</string>
-				<string>A3732A9A73239ADA970C031A</string>
-				<string>B44C9D9A66A61F9461F8E297</string>
-				<string>6A1C5C04EF8DD66F8D33C98D</string>
-				<string>8173EF11CC5F5D77C0B510F3</string>
-				<string>08257E715CF2CE95ACFE2007</string>
-				<string>64C4AAF18BAED0CC7CB13BE6</string>
-				<string>ED05D93177339314AADFF69F</string>
-				<string>2BDE7E0E48135B25519E04FA</string>
-				<string>4FC27A8C04B2E73406AAA087</string>
-				<string>E8825C55A518139C5DEC9C5A</string>
-				<string>FF1319106E6ADA67C6CD7E83</string>
-				<string>839F46FAD13608ED49CAD3BE</string>
-				<string>3602B71691FBEE9C8B185AEC</string>
-				<string>B5304ABA050936E84432149A</string>
-				<string>C1D43D26F97A1BA5A3D11ABE</string>
-				<string>D12C2D35F8398770CD71A16E</string>
-				<string>80CDC153595F68DBEE1A68F7</string>
-				<string>728AD0DDB766BF806572AA88</string>
-				<string>7427111E3AA498220C2B13D9</string>
-				<string>C2EAF6244C73D677D1A39615</string>
-				<string>483C551FEF24EEB614E9985E</string>
-				<string>7209353163FBAB88E0429370</string>
-				<string>E5E47CD4E135E827A0892211</string>
-				<string>BDB8EB3783171ACD1A007A03</string>
-				<string>42D91B850D56169824BFA0B1</string>
-				<string>259DD0ACEAACC5F7009B987A</string>
-				<string>CD94E981A8CF1DCA4B29BE1A</string>
-				<string>64A756445EA94EF4BBC3EC0B</string>
-				<string>691497F1A1B01B1F369D8E3C</string>
-				<string>912AD406A4A2BFE603F88986</string>
-				<string>94C946E241776605C1728302</string>
-				<string>0437454510A3EE82382338C4</string>
-				<string>32DA6EA2EB8A4321526C2779</string>
-				<string>0CC35844AE2950CB177AD248</string>
-				<string>92358934A42A6703DEC6BA0B</string>
-				<string>88F3023C5489C4917A7C74C6</string>
-				<string>9A1B00C641DE00364049093D</string>
-				<string>C7A79CCA557CD0E7FD46B25C</string>
-				<string>A726203871F624BF0A03995F</string>
-			</array>
-			<key>isa</key>
-			<string>PBXHeadersBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>F929C16C6978C3B172BA8976</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EDA7C450AB879FFBCC923362</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>F93D8625D05B426CB9510C84</key>
-		<dict>
-			<key>buildConfigurationList</key>
-			<string>1C70EC6FBD47CDFF70157C10</string>
-			<key>buildPhases</key>
-			<array>
-				<string>8E92C6DB002C44F948207BBA</string>
-				<string>FA6396861B969E0CE8B3CAAB</string>
-			</array>
-			<key>buildRules</key>
-			<array/>
-			<key>dependencies</key>
-			<array>
-				<string>533F1E05CFFF91CF7B87858D</string>
-				<string>300E6C685A5BD0FF9A2DD648</string>
-				<string>E182101C9EEB99CE8E0FFE06</string>
-			</array>
-			<key>isa</key>
-			<string>PBXNativeTarget</string>
-			<key>name</key>
-			<string>Pods-Sample</string>
-			<key>productName</key>
-			<string>Pods-Sample</string>
-			<key>productReference</key>
-			<string>02968FE6B78F9426E4ECF627</string>
-			<key>productType</key>
-			<string>com.apple.product-type.library.static</string>
-		</dict>
-		<key>F9455772A3E6654BA3B9C466</key>
-		<dict>
-			<key>fileRef</key>
-			<string>4A594D1939C7AD71889FFD1D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F973CE802397B117E2CF43B8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>BEA26311AB6D7A1968DFFE5D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F978E7D9EE163EF3E08525B1</key>
-		<dict>
-			<key>fileRef</key>
-			<string>0528756D4D235146310082F0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F9803B6287D0284320DFD16C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>AA7AF3F1DD0FD4E9DE7BA7AF</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F9E9CBB99C7EC8B787B44355</key>
-		<dict>
-			<key>fileRef</key>
-			<string>56992ABBA02D4488F6EB2153</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>F9FE5D33F721E424EF8AAEB0</key>
-		<dict>
-			<key>isa</key>
-			<string>PBXTargetDependency</string>
-			<key>name</key>
-			<string>Pods-Sample-OpenSSL</string>
-			<key>target</key>
-			<string>B65DE04C9C73EB40B0BAD0A4</string>
-			<key>targetProxy</key>
-			<string>E695B10264E7465356D4FD6D</string>
-		</dict>
-		<key>F9FF9B986B80F1AC443B1B4B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DBC29C43D1775F41AAD9DB68</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>FA163360AF2A7AF7A9582146</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EA1E287DD8525C80F280E4AC</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>FA6396861B969E0CE8B3CAAB</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>F1E1B6BE98F23B0F3A51BE59</string>
-			</array>
-			<key>isa</key>
-			<string>PBXFrameworksBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>FAA9E3C29F4A2D242CC501A9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>DCB800C7DFD5A06206FBBD1E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>FADDAE1852B4D3E38A5BE3C6</key>
-		<dict>
-			<key>fileRef</key>
-			<string>12A345A0CFED500F6B775287</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>FADF2F597ECCD5B0DF46F71C</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D9E90FC23D314C3938387079</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>FAF9B3C9B27BBC850D53A56F</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E975EBE61BC4688C5F7036F7</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>FB5F1F2E02B7ECFC92A556AB</key>
-		<dict>
-			<key>fileRef</key>
-			<string>92087180D1834EEC0769E330</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>FBC713821A3C7A2B139F60D2</key>
-		<dict>
-			<key>fileRef</key>
-			<string>2BC92A2D33B15B43988C5400</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>FBECCE6A82E89B6FC889F695</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>timeout_encoding.h</string>
-			<key>path</key>
-			<string>src/core/transport/chttp2/timeout_encoding.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>FBF96229A24D212CFC1D8764</key>
-		<dict>
-			<key>fileRef</key>
-			<string>255D1090014941559D1E8208</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>FC01BA1725BEE2C4022CDF14</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F4642401A54E132E9EFCB2EA</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>FC076E4C978DE9D6AE1DBD23</key>
-		<dict>
-			<key>fileRef</key>
-			<string>753448EC1331A4F22A884630</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>FCAC52A4C995C14111912FE9</key>
-		<dict>
-			<key>fileRef</key>
-			<string>E79FE1F6E53A6A4575BE1B88</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>FCD7BC4C67B084ACF9B45849</key>
-		<dict>
-			<key>fileRef</key>
-			<string>8660BD5D9AD30CEE8070E879</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>FD2023AD24320F96F30D6B10</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D052838662172FD36315F833</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>FD4056C1E72FA6046DC0DE4D</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>json_token.h</string>
-			<key>path</key>
-			<string>src/core/security/json_token.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>FD5060A6862DA7C4047F84BE</key>
-		<dict>
-			<key>fileRef</key>
-			<string>9B54EB6995D92C4AB9DE123E</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>FD5AE6B5DE4D5B6DA1F907FD</key>
-		<dict>
-			<key>fileRef</key>
-			<string>F5EC782889E78C64F5FE925F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>FD97B1665343F702E97BEC63</key>
-		<dict>
-			<key>fileRef</key>
-			<string>7D8B6EC4FE13EA3E130862A2</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>FD9C86975353452CCB67240A</key>
-		<dict>
-			<key>fileRef</key>
-			<string>3D6478130E0E220A851B312F</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>FDC59864DE8EE29B7AB15FDF</key>
-		<dict>
-			<key>isa</key>
-			<string>PBXTargetDependency</string>
-			<key>name</key>
-			<string>Pods-SampleTests-OpenSSL</string>
-			<key>target</key>
-			<string>E6BD399A8C9ADFC8662292C2</string>
-			<key>targetProxy</key>
-			<string>10793779B46E2CA07B8B328E</string>
-		</dict>
-		<key>FDC6CC7E16BE18E45D8AFF9E</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>histogram.c</string>
-			<key>path</key>
-			<string>src/core/support/histogram.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>FE090A4AB3DE384F91AF337E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>ABABD0CDFD3E41EE2E942D9D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>FE231D732AC34031F2FC10C2</key>
-		<dict>
-			<key>baseConfigurationReference</key>
-			<string>928CE56932F20758C9C6FD73</string>
-			<key>buildSettings</key>
-			<dict>
-				<key>ALWAYS_SEARCH_USER_PATHS</key>
-				<string>NO</string>
-				<key>COPY_PHASE_STRIP</key>
-				<string>NO</string>
-				<key>DSTROOT</key>
-				<string>/tmp/xcodeproj.dst</string>
-				<key>GCC_DYNAMIC_NO_PIC</key>
-				<string>NO</string>
-				<key>GCC_OPTIMIZATION_LEVEL</key>
-				<string>0</string>
-				<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
-				<string>YES</string>
-				<key>GCC_PREFIX_HEADER</key>
-				<string>Target Support Files/Pods-Sample-OpenSSL/Pods-Sample-OpenSSL-prefix.pch</string>
-				<key>GCC_PREPROCESSOR_DEFINITIONS</key>
-				<array>
-					<string>DEBUG=1</string>
-					<string>$(inherited)</string>
-				</array>
-				<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
-				<string>NO</string>
-				<key>INSTALL_PATH</key>
-				<string>$(BUILT_PRODUCTS_DIR)</string>
-				<key>IPHONEOS_DEPLOYMENT_TARGET</key>
-				<string>8.0</string>
-				<key>OTHER_LDFLAGS</key>
-				<string></string>
-				<key>OTHER_LIBTOOLFLAGS</key>
-				<string></string>
-				<key>PRODUCT_NAME</key>
-				<string>$(TARGET_NAME)</string>
-				<key>PUBLIC_HEADERS_FOLDER_PATH</key>
-				<string>$(TARGET_NAME)</string>
-				<key>SDKROOT</key>
-				<string>iphoneos</string>
-				<key>SKIP_INSTALL</key>
-				<string>YES</string>
-			</dict>
-			<key>isa</key>
-			<string>XCBuildConfiguration</string>
-			<key>name</key>
-			<string>Debug</string>
-		</dict>
-		<key>FE33C32D23CB14E3A8312C6F</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.objc</string>
-			<key>path</key>
-			<string>Pods-dummy.m</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>FE4ECB5774641FD3B42585DC</key>
-		<dict>
-			<key>fileRef</key>
-			<string>965B77D271A8DA40952B05FB</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>FE598A1FD58F4A066AD65636</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>byte_buffer_queue.h</string>
-			<key>path</key>
-			<string>src/core/surface/byte_buffer_queue.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>FE5E400FCDFE4E120E751BD9</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>tcp_windows.c</string>
-			<key>path</key>
-			<string>src/core/iomgr/tcp_windows.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>FE8EAD42A7475EFCBFB8BA06</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>secure_endpoint.h</string>
-			<key>path</key>
-			<string>src/core/security/secure_endpoint.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>FE8FD44B0A5702230C929453</key>
-		<dict>
-			<key>fileRef</key>
-			<string>D7CB4A20B855DC7338EA7C38</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>FEBFF776901D11CC0BE1656E</key>
-		<dict>
-			<key>fileRef</key>
-			<string>28B95C0C2707A55FEC37D8D1</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>FECDF2ABC23ACB9EDCC8537B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>EB4D5B08A336D5C42E28718D</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>FEFC65FEABCFD86D81F6E4B8</key>
-		<dict>
-			<key>fileRef</key>
-			<string>CC7DBCF5B4C830C34F6A42CA</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>FF071EE6A2FE57CD7089D1AB</key>
-		<dict>
-			<key>explicitFileType</key>
-			<string>archive.ar</string>
-			<key>includeInIndex</key>
-			<string>0</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>path</key>
-			<string>libPods.a</string>
-			<key>sourceTree</key>
-			<string>BUILT_PRODUCTS_DIR</string>
-		</dict>
-		<key>FF1319106E6ADA67C6CD7E83</key>
-		<dict>
-			<key>fileRef</key>
-			<string>B27A42723D792CC73BC91FC0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-		</dict>
-		<key>FF45FA8C70ECA06C36B3A958</key>
-		<dict>
-			<key>buildActionMask</key>
-			<string>2147483647</string>
-			<key>files</key>
-			<array>
-				<string>D67E6845A33F3238B5E6992B</string>
-			</array>
-			<key>isa</key>
-			<string>PBXFrameworksBuildPhase</string>
-			<key>runOnlyForDeploymentPostprocessing</key>
-			<string>0</string>
-		</dict>
-		<key>FF6E8B145B5B023F9A1239F3</key>
-		<dict>
-			<key>fileRef</key>
-			<string>1B4CE102C55280CFA2F5A216</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>FF9A1B272582D8ED50479416</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>text.script.sh</string>
-			<key>path</key>
-			<string>Pods-resources.sh</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>FFA26A980DF5CC0503459576</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>metadata_array.c</string>
-			<key>path</key>
-			<string>src/core/surface/metadata_array.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>FFA389620F44B4EAF5D26E26</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>name</key>
-			<string>server_create.c</string>
-			<key>path</key>
-			<string>src/core/surface/server_create.c</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>FFBDA56CD6FADE996A409346</key>
-		<dict>
-			<key>includeInIndex</key>
-			<string>1</string>
-			<key>isa</key>
-			<string>PBXFileReference</string>
-			<key>lastKnownFileType</key>
-			<string>sourcecode.c.h</string>
-			<key>name</key>
-			<string>GRPCCall.h</string>
-			<key>path</key>
-			<string>src/objective-c/GRPCClient/GRPCCall.h</string>
-			<key>sourceTree</key>
-			<string>&lt;group&gt;</string>
-		</dict>
-		<key>FFCAB0ED469478ED22DDFD25</key>
-		<dict>
-			<key>fileRef</key>
-			<string>50B4F4277CD01BF58FF97E36</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-		<key>FFDD797E31A4F9B35936B04B</key>
-		<dict>
-			<key>fileRef</key>
-			<string>A29E429E34B19E53CF3AF4A0</string>
-			<key>isa</key>
-			<string>PBXBuildFile</string>
-			<key>settings</key>
-			<dict>
-				<key>COMPILER_FLAGS</key>
-				<string>-fno-objc-arc</string>
-			</dict>
-		</dict>
-	</dict>
-	<key>rootObject</key>
-	<string>EF6CCB5D3B9A6AAB7B6B4A70</string>
-</dict>
-</plist>
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-GRPCClient/Pods-GRPCClient-Private.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-GRPCClient/Pods-GRPCClient-Private.xcconfig
deleted file mode 100644
index 27df354..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-GRPCClient/Pods-GRPCClient-Private.xcconfig
+++ /dev/null
@@ -1,5 +0,0 @@
-#include "Pods-GRPCClient.xcconfig"
-GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
-HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/GRPCClient" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GRPCClient" "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_LDFLAGS = -ObjC
-PODS_ROOT = ${SRCROOT}
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-GRPCClient/Pods-GRPCClient-dummy.m b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-GRPCClient/Pods-GRPCClient-dummy.m
deleted file mode 100644
index 8cac89b..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-GRPCClient/Pods-GRPCClient-dummy.m
+++ /dev/null
@@ -1,5 +0,0 @@
-#import <Foundation/Foundation.h>
-@interface PodsDummy_Pods_GRPCClient : NSObject
-@end
-@implementation PodsDummy_Pods_GRPCClient
-@end
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-GRPCClient/Pods-GRPCClient-prefix.pch b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-GRPCClient/Pods-GRPCClient-prefix.pch
deleted file mode 100644
index 95cf11d..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-GRPCClient/Pods-GRPCClient-prefix.pch
+++ /dev/null
@@ -1,5 +0,0 @@
-#ifdef __OBJC__
-#import <UIKit/UIKit.h>
-#endif
-
-#import "Pods-environment.h"
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-GRPCClient/Pods-GRPCClient.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-GRPCClient/Pods-GRPCClient.xcconfig
deleted file mode 100644
index e69de29..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-GRPCClient/Pods-GRPCClient.xcconfig
+++ /dev/null
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-RxLibrary/Pods-RxLibrary-Private.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-RxLibrary/Pods-RxLibrary-Private.xcconfig
deleted file mode 100644
index a1c3897..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-RxLibrary/Pods-RxLibrary-Private.xcconfig
+++ /dev/null
@@ -1,5 +0,0 @@
-#include "Pods-RxLibrary.xcconfig"
-GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
-HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/RxLibrary" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GRPCClient" "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_LDFLAGS = -ObjC
-PODS_ROOT = ${SRCROOT}
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-RxLibrary/Pods-RxLibrary-dummy.m b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-RxLibrary/Pods-RxLibrary-dummy.m
deleted file mode 100644
index 79e1460..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-RxLibrary/Pods-RxLibrary-dummy.m
+++ /dev/null
@@ -1,5 +0,0 @@
-#import <Foundation/Foundation.h>
-@interface PodsDummy_Pods_RxLibrary : NSObject
-@end
-@implementation PodsDummy_Pods_RxLibrary
-@end
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-RxLibrary/Pods-RxLibrary-prefix.pch b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-RxLibrary/Pods-RxLibrary-prefix.pch
deleted file mode 100644
index 95cf11d..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-RxLibrary/Pods-RxLibrary-prefix.pch
+++ /dev/null
@@ -1,5 +0,0 @@
-#ifdef __OBJC__
-#import <UIKit/UIKit.h>
-#endif
-
-#import "Pods-environment.h"
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-RxLibrary/Pods-RxLibrary.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-RxLibrary/Pods-RxLibrary.xcconfig
deleted file mode 100644
index e69de29..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-RxLibrary/Pods-RxLibrary.xcconfig
+++ /dev/null
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-GRPCClient/Pods-Sample-GRPCClient-Private.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-GRPCClient/Pods-Sample-GRPCClient-Private.xcconfig
deleted file mode 100644
index e23f7be..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-GRPCClient/Pods-Sample-GRPCClient-Private.xcconfig
+++ /dev/null
@@ -1,5 +0,0 @@
-#include "Pods-Sample-GRPCClient.xcconfig"
-GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
-HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/GRPCClient" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GRPCClient" "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_LDFLAGS = -ObjC
-PODS_ROOT = ${SRCROOT}
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-GRPCClient/Pods-Sample-GRPCClient-dummy.m b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-GRPCClient/Pods-Sample-GRPCClient-dummy.m
deleted file mode 100644
index 2bf2682..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-GRPCClient/Pods-Sample-GRPCClient-dummy.m
+++ /dev/null
@@ -1,5 +0,0 @@
-#import <Foundation/Foundation.h>
-@interface PodsDummy_Pods_Sample_GRPCClient : NSObject
-@end
-@implementation PodsDummy_Pods_Sample_GRPCClient
-@end
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-GRPCClient/Pods-Sample-GRPCClient-prefix.pch b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-GRPCClient/Pods-Sample-GRPCClient-prefix.pch
deleted file mode 100644
index 0e807f6..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-GRPCClient/Pods-Sample-GRPCClient-prefix.pch
+++ /dev/null
@@ -1,5 +0,0 @@
-#ifdef __OBJC__
-#import <UIKit/UIKit.h>
-#endif
-
-#import "Pods-Sample-environment.h"
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-GRPCClient/Pods-Sample-GRPCClient.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-GRPCClient/Pods-Sample-GRPCClient.xcconfig
deleted file mode 100644
index e69de29..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-GRPCClient/Pods-Sample-GRPCClient.xcconfig
+++ /dev/null
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-RxLibrary/Pods-Sample-RxLibrary-Private.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-RxLibrary/Pods-Sample-RxLibrary-Private.xcconfig
deleted file mode 100644
index 023a22e..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-RxLibrary/Pods-Sample-RxLibrary-Private.xcconfig
+++ /dev/null
@@ -1,5 +0,0 @@
-#include "Pods-Sample-RxLibrary.xcconfig"
-GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
-HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/RxLibrary" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GRPCClient" "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_LDFLAGS = -ObjC
-PODS_ROOT = ${SRCROOT}
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-RxLibrary/Pods-Sample-RxLibrary-dummy.m b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-RxLibrary/Pods-Sample-RxLibrary-dummy.m
deleted file mode 100644
index c81b57b..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-RxLibrary/Pods-Sample-RxLibrary-dummy.m
+++ /dev/null
@@ -1,5 +0,0 @@
-#import <Foundation/Foundation.h>
-@interface PodsDummy_Pods_Sample_RxLibrary : NSObject
-@end
-@implementation PodsDummy_Pods_Sample_RxLibrary
-@end
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-RxLibrary/Pods-Sample-RxLibrary-prefix.pch b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-RxLibrary/Pods-Sample-RxLibrary-prefix.pch
deleted file mode 100644
index 0e807f6..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-RxLibrary/Pods-Sample-RxLibrary-prefix.pch
+++ /dev/null
@@ -1,5 +0,0 @@
-#ifdef __OBJC__
-#import <UIKit/UIKit.h>
-#endif
-
-#import "Pods-Sample-environment.h"
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-RxLibrary/Pods-Sample-RxLibrary.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-RxLibrary/Pods-Sample-RxLibrary.xcconfig
deleted file mode 100644
index e69de29..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample-RxLibrary/Pods-Sample-RxLibrary.xcconfig
+++ /dev/null
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample-acknowledgements.markdown b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample-acknowledgements.markdown
deleted file mode 100644
index 255149a..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample-acknowledgements.markdown
+++ /dev/null
@@ -1,3 +0,0 @@
-# Acknowledgements
-This application makes use of the following third party libraries:
-Generated by CocoaPods - http://cocoapods.org
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample-acknowledgements.plist b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample-acknowledgements.plist
deleted file mode 100644
index e4edebe..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample-acknowledgements.plist
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
-	<key>PreferenceSpecifiers</key>
-	<array>
-		<dict>
-			<key>FooterText</key>
-			<string>This application makes use of the following third party libraries:</string>
-			<key>Title</key>
-			<string>Acknowledgements</string>
-			<key>Type</key>
-			<string>PSGroupSpecifier</string>
-		</dict>
-		<dict>
-			<key>FooterText</key>
-			<string>Generated by CocoaPods - http://cocoapods.org</string>
-			<key>Title</key>
-			<string></string>
-			<key>Type</key>
-			<string>PSGroupSpecifier</string>
-		</dict>
-	</array>
-	<key>StringsTable</key>
-	<string>Acknowledgements</string>
-	<key>Title</key>
-	<string>Acknowledgements</string>
-</dict>
-</plist>
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample-dummy.m b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample-dummy.m
deleted file mode 100644
index b5ca68a..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample-dummy.m
+++ /dev/null
@@ -1,5 +0,0 @@
-#import <Foundation/Foundation.h>
-@interface PodsDummy_Pods_Sample : NSObject
-@end
-@implementation PodsDummy_Pods_Sample
-@end
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample-environment.h b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample-environment.h
deleted file mode 100644
index d0acfc7..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample-environment.h
+++ /dev/null
@@ -1,20 +0,0 @@
-
-// To check if a library is compiled with CocoaPods you
-// can use the `COCOAPODS` macro definition which is
-// defined in the xcconfigs so it is available in
-// headers also when they are imported in the client
-// project.
-
-
-// GRPCClient
-#define COCOAPODS_POD_AVAILABLE_GRPCClient
-#define COCOAPODS_VERSION_MAJOR_GRPCClient 0
-#define COCOAPODS_VERSION_MINOR_GRPCClient 0
-#define COCOAPODS_VERSION_PATCH_GRPCClient 1
-
-// RxLibrary
-#define COCOAPODS_POD_AVAILABLE_RxLibrary
-#define COCOAPODS_VERSION_MAJOR_RxLibrary 0
-#define COCOAPODS_VERSION_MINOR_RxLibrary 0
-#define COCOAPODS_VERSION_PATCH_RxLibrary 1
-
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample-resources.sh b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample-resources.sh
deleted file mode 100755
index e149064..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample-resources.sh
+++ /dev/null
@@ -1,74 +0,0 @@
-#!/bin/sh
-set -e
-
-mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
-
-RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt
-> "$RESOURCES_TO_COPY"
-
-install_resource()
-{
-  case $1 in
-    *.storyboard)
-      echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}"
-      ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}"
-      ;;
-    *.xib)
-        echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}"
-      ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}"
-      ;;
-    *.framework)
-      echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
-      mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
-      echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
-      rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
-      ;;
-    *.xcdatamodel)
-      echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\""
-      xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom"
-      ;;
-    *.xcdatamodeld)
-      echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\""
-      xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd"
-      ;;
-    *.xcmappingmodel)
-      echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\""
-      xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm"
-      ;;
-    *.xcassets)
-      ;;
-    /*)
-      echo "$1"
-      echo "$1" >> "$RESOURCES_TO_COPY"
-      ;;
-    *)
-      echo "${PODS_ROOT}/$1"
-      echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY"
-      ;;
-  esac
-}
-
-rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
-if [[ "${ACTION}" == "install" ]]; then
-  rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
-fi
-rm -f "$RESOURCES_TO_COPY"
-
-if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ]
-then
-  case "${TARGETED_DEVICE_FAMILY}" in
-    1,2)
-      TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone"
-      ;;
-    1)
-      TARGET_DEVICE_ARGS="--target-device iphone"
-      ;;
-    2)
-      TARGET_DEVICE_ARGS="--target-device ipad"
-      ;;
-    *)
-      TARGET_DEVICE_ARGS="--target-device mac"
-      ;;
-  esac
-  find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
-fi
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample.debug.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample.debug.xcconfig
deleted file mode 100644
index 06aa64c..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample.debug.xcconfig
+++ /dev/null
@@ -1,6 +0,0 @@
-GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
-HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GRPCClient" "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/GRPCClient" -isystem "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_LDFLAGS = -ObjC -l"Pods-Sample-GRPCClient" -l"Pods-Sample-RxLibrary"
-OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS)
-PODS_ROOT = ${SRCROOT}/Pods
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample.release.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample.release.xcconfig
deleted file mode 100644
index 06aa64c..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-Sample/Pods-Sample.release.xcconfig
+++ /dev/null
@@ -1,6 +0,0 @@
-GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
-HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GRPCClient" "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/GRPCClient" -isystem "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_LDFLAGS = -ObjC -l"Pods-Sample-GRPCClient" -l"Pods-Sample-RxLibrary"
-OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS)
-PODS_ROOT = ${SRCROOT}/Pods
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-GRPCClient/Pods-SampleTests-GRPCClient-Private.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-GRPCClient/Pods-SampleTests-GRPCClient-Private.xcconfig
deleted file mode 100644
index 01e25c4..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-GRPCClient/Pods-SampleTests-GRPCClient-Private.xcconfig
+++ /dev/null
@@ -1,5 +0,0 @@
-#include "Pods-SampleTests-GRPCClient.xcconfig"
-GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
-HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/GRPCClient" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GRPCClient" "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_LDFLAGS = -ObjC
-PODS_ROOT = ${SRCROOT}
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-GRPCClient/Pods-SampleTests-GRPCClient-dummy.m b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-GRPCClient/Pods-SampleTests-GRPCClient-dummy.m
deleted file mode 100644
index 7ecd57a..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-GRPCClient/Pods-SampleTests-GRPCClient-dummy.m
+++ /dev/null
@@ -1,5 +0,0 @@
-#import <Foundation/Foundation.h>
-@interface PodsDummy_Pods_SampleTests_GRPCClient : NSObject
-@end
-@implementation PodsDummy_Pods_SampleTests_GRPCClient
-@end
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-GRPCClient/Pods-SampleTests-GRPCClient-prefix.pch b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-GRPCClient/Pods-SampleTests-GRPCClient-prefix.pch
deleted file mode 100644
index abd5651..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-GRPCClient/Pods-SampleTests-GRPCClient-prefix.pch
+++ /dev/null
@@ -1,5 +0,0 @@
-#ifdef __OBJC__
-#import <UIKit/UIKit.h>
-#endif
-
-#import "Pods-SampleTests-environment.h"
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-GRPCClient/Pods-SampleTests-GRPCClient.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-GRPCClient/Pods-SampleTests-GRPCClient.xcconfig
deleted file mode 100644
index e69de29..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-GRPCClient/Pods-SampleTests-GRPCClient.xcconfig
+++ /dev/null
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary-Private.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary-Private.xcconfig
deleted file mode 100644
index 67069ba..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary-Private.xcconfig
+++ /dev/null
@@ -1,5 +0,0 @@
-#include "Pods-SampleTests-RxLibrary.xcconfig"
-GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
-HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/RxLibrary" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GRPCClient" "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_LDFLAGS = -ObjC
-PODS_ROOT = ${SRCROOT}
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary-dummy.m b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary-dummy.m
deleted file mode 100644
index d57aef1..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary-dummy.m
+++ /dev/null
@@ -1,5 +0,0 @@
-#import <Foundation/Foundation.h>
-@interface PodsDummy_Pods_SampleTests_RxLibrary : NSObject
-@end
-@implementation PodsDummy_Pods_SampleTests_RxLibrary
-@end
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary-prefix.pch b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary-prefix.pch
deleted file mode 100644
index abd5651..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary-prefix.pch
+++ /dev/null
@@ -1,5 +0,0 @@
-#ifdef __OBJC__
-#import <UIKit/UIKit.h>
-#endif
-
-#import "Pods-SampleTests-environment.h"
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary.xcconfig
deleted file mode 100644
index e69de29..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests-RxLibrary/Pods-SampleTests-RxLibrary.xcconfig
+++ /dev/null
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests-acknowledgements.markdown b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests-acknowledgements.markdown
deleted file mode 100644
index 255149a..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests-acknowledgements.markdown
+++ /dev/null
@@ -1,3 +0,0 @@
-# Acknowledgements
-This application makes use of the following third party libraries:
-Generated by CocoaPods - http://cocoapods.org
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests-acknowledgements.plist b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests-acknowledgements.plist
deleted file mode 100644
index e4edebe..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests-acknowledgements.plist
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
-	<key>PreferenceSpecifiers</key>
-	<array>
-		<dict>
-			<key>FooterText</key>
-			<string>This application makes use of the following third party libraries:</string>
-			<key>Title</key>
-			<string>Acknowledgements</string>
-			<key>Type</key>
-			<string>PSGroupSpecifier</string>
-		</dict>
-		<dict>
-			<key>FooterText</key>
-			<string>Generated by CocoaPods - http://cocoapods.org</string>
-			<key>Title</key>
-			<string></string>
-			<key>Type</key>
-			<string>PSGroupSpecifier</string>
-		</dict>
-	</array>
-	<key>StringsTable</key>
-	<string>Acknowledgements</string>
-	<key>Title</key>
-	<string>Acknowledgements</string>
-</dict>
-</plist>
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests-dummy.m b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests-dummy.m
deleted file mode 100644
index 01b4ad7..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests-dummy.m
+++ /dev/null
@@ -1,5 +0,0 @@
-#import <Foundation/Foundation.h>
-@interface PodsDummy_Pods_SampleTests : NSObject
-@end
-@implementation PodsDummy_Pods_SampleTests
-@end
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests-environment.h b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests-environment.h
deleted file mode 100644
index d0acfc7..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests-environment.h
+++ /dev/null
@@ -1,20 +0,0 @@
-
-// To check if a library is compiled with CocoaPods you
-// can use the `COCOAPODS` macro definition which is
-// defined in the xcconfigs so it is available in
-// headers also when they are imported in the client
-// project.
-
-
-// GRPCClient
-#define COCOAPODS_POD_AVAILABLE_GRPCClient
-#define COCOAPODS_VERSION_MAJOR_GRPCClient 0
-#define COCOAPODS_VERSION_MINOR_GRPCClient 0
-#define COCOAPODS_VERSION_PATCH_GRPCClient 1
-
-// RxLibrary
-#define COCOAPODS_POD_AVAILABLE_RxLibrary
-#define COCOAPODS_VERSION_MAJOR_RxLibrary 0
-#define COCOAPODS_VERSION_MINOR_RxLibrary 0
-#define COCOAPODS_VERSION_PATCH_RxLibrary 1
-
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests-resources.sh b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests-resources.sh
deleted file mode 100755
index e149064..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests-resources.sh
+++ /dev/null
@@ -1,74 +0,0 @@
-#!/bin/sh
-set -e
-
-mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
-
-RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt
-> "$RESOURCES_TO_COPY"
-
-install_resource()
-{
-  case $1 in
-    *.storyboard)
-      echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}"
-      ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}"
-      ;;
-    *.xib)
-        echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}"
-      ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}"
-      ;;
-    *.framework)
-      echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
-      mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
-      echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
-      rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
-      ;;
-    *.xcdatamodel)
-      echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\""
-      xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom"
-      ;;
-    *.xcdatamodeld)
-      echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\""
-      xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd"
-      ;;
-    *.xcmappingmodel)
-      echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\""
-      xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm"
-      ;;
-    *.xcassets)
-      ;;
-    /*)
-      echo "$1"
-      echo "$1" >> "$RESOURCES_TO_COPY"
-      ;;
-    *)
-      echo "${PODS_ROOT}/$1"
-      echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY"
-      ;;
-  esac
-}
-
-rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
-if [[ "${ACTION}" == "install" ]]; then
-  rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
-fi
-rm -f "$RESOURCES_TO_COPY"
-
-if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ]
-then
-  case "${TARGETED_DEVICE_FAMILY}" in
-    1,2)
-      TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone"
-      ;;
-    1)
-      TARGET_DEVICE_ARGS="--target-device iphone"
-      ;;
-    2)
-      TARGET_DEVICE_ARGS="--target-device ipad"
-      ;;
-    *)
-      TARGET_DEVICE_ARGS="--target-device mac"
-      ;;
-  esac
-  find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
-fi
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests.debug.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests.debug.xcconfig
deleted file mode 100644
index 892541c..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests.debug.xcconfig
+++ /dev/null
@@ -1,6 +0,0 @@
-GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
-HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GRPCClient" "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/GRPCClient" -isystem "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_LDFLAGS = -ObjC -l"Pods-SampleTests-GRPCClient" -l"Pods-SampleTests-RxLibrary"
-OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS)
-PODS_ROOT = ${SRCROOT}/Pods
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests.release.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests.release.xcconfig
deleted file mode 100644
index 892541c..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods-SampleTests/Pods-SampleTests.release.xcconfig
+++ /dev/null
@@ -1,6 +0,0 @@
-GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
-HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GRPCClient" "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/GRPCClient" -isystem "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_LDFLAGS = -ObjC -l"Pods-SampleTests-GRPCClient" -l"Pods-SampleTests-RxLibrary"
-OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS)
-PODS_ROOT = ${SRCROOT}/Pods
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown
deleted file mode 100644
index 255149a..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown
+++ /dev/null
@@ -1,3 +0,0 @@
-# Acknowledgements
-This application makes use of the following third party libraries:
-Generated by CocoaPods - http://cocoapods.org
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods-acknowledgements.plist b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods-acknowledgements.plist
deleted file mode 100644
index e4edebe..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods-acknowledgements.plist
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
-	<key>PreferenceSpecifiers</key>
-	<array>
-		<dict>
-			<key>FooterText</key>
-			<string>This application makes use of the following third party libraries:</string>
-			<key>Title</key>
-			<string>Acknowledgements</string>
-			<key>Type</key>
-			<string>PSGroupSpecifier</string>
-		</dict>
-		<dict>
-			<key>FooterText</key>
-			<string>Generated by CocoaPods - http://cocoapods.org</string>
-			<key>Title</key>
-			<string></string>
-			<key>Type</key>
-			<string>PSGroupSpecifier</string>
-		</dict>
-	</array>
-	<key>StringsTable</key>
-	<string>Acknowledgements</string>
-	<key>Title</key>
-	<string>Acknowledgements</string>
-</dict>
-</plist>
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods-dummy.m b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods-dummy.m
deleted file mode 100644
index ade64bd..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods-dummy.m
+++ /dev/null
@@ -1,5 +0,0 @@
-#import <Foundation/Foundation.h>
-@interface PodsDummy_Pods : NSObject
-@end
-@implementation PodsDummy_Pods
-@end
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods-environment.h b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods-environment.h
deleted file mode 100644
index d0acfc7..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods-environment.h
+++ /dev/null
@@ -1,20 +0,0 @@
-
-// To check if a library is compiled with CocoaPods you
-// can use the `COCOAPODS` macro definition which is
-// defined in the xcconfigs so it is available in
-// headers also when they are imported in the client
-// project.
-
-
-// GRPCClient
-#define COCOAPODS_POD_AVAILABLE_GRPCClient
-#define COCOAPODS_VERSION_MAJOR_GRPCClient 0
-#define COCOAPODS_VERSION_MINOR_GRPCClient 0
-#define COCOAPODS_VERSION_PATCH_GRPCClient 1
-
-// RxLibrary
-#define COCOAPODS_POD_AVAILABLE_RxLibrary
-#define COCOAPODS_VERSION_MAJOR_RxLibrary 0
-#define COCOAPODS_VERSION_MINOR_RxLibrary 0
-#define COCOAPODS_VERSION_PATCH_RxLibrary 1
-
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods-resources.sh b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods-resources.sh
deleted file mode 100755
index e149064..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods-resources.sh
+++ /dev/null
@@ -1,74 +0,0 @@
-#!/bin/sh
-set -e
-
-mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
-
-RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt
-> "$RESOURCES_TO_COPY"
-
-install_resource()
-{
-  case $1 in
-    *.storyboard)
-      echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}"
-      ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}"
-      ;;
-    *.xib)
-        echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}"
-      ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}"
-      ;;
-    *.framework)
-      echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
-      mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
-      echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
-      rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
-      ;;
-    *.xcdatamodel)
-      echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\""
-      xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom"
-      ;;
-    *.xcdatamodeld)
-      echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\""
-      xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd"
-      ;;
-    *.xcmappingmodel)
-      echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\""
-      xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm"
-      ;;
-    *.xcassets)
-      ;;
-    /*)
-      echo "$1"
-      echo "$1" >> "$RESOURCES_TO_COPY"
-      ;;
-    *)
-      echo "${PODS_ROOT}/$1"
-      echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY"
-      ;;
-  esac
-}
-
-rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
-if [[ "${ACTION}" == "install" ]]; then
-  rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
-fi
-rm -f "$RESOURCES_TO_COPY"
-
-if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ]
-then
-  case "${TARGETED_DEVICE_FAMILY}" in
-    1,2)
-      TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone"
-      ;;
-    1)
-      TARGET_DEVICE_ARGS="--target-device iphone"
-      ;;
-    2)
-      TARGET_DEVICE_ARGS="--target-device ipad"
-      ;;
-    *)
-      TARGET_DEVICE_ARGS="--target-device mac"
-      ;;
-  esac
-  find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
-fi
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods.debug.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods.debug.xcconfig
deleted file mode 100644
index e9fafcc..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods.debug.xcconfig
+++ /dev/null
@@ -1,6 +0,0 @@
-GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
-HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GRPCClient" "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/GRPCClient" -isystem "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_LDFLAGS = -ObjC -l"Pods-GRPCClient" -l"Pods-RxLibrary"
-OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS)
-PODS_ROOT = ${SRCROOT}/Pods
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods.release.xcconfig b/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods.release.xcconfig
deleted file mode 100644
index e9fafcc..0000000
--- a/src/objective-c/examples/Sample/Pods/Target Support Files/Pods/Pods.release.xcconfig
+++ /dev/null
@@ -1,6 +0,0 @@
-GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
-HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GRPCClient" "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/GRPCClient" -isystem "${PODS_ROOT}/Headers/Public/RxLibrary"
-OTHER_LDFLAGS = -ObjC -l"Pods-GRPCClient" -l"Pods-RxLibrary"
-OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS)
-PODS_ROOT = ${SRCROOT}/Pods
\ No newline at end of file
diff --git a/src/objective-c/examples/Sample/README.md b/src/objective-c/examples/Sample/README.md
index 45ba544..716241b 100644
--- a/src/objective-c/examples/Sample/README.md
+++ b/src/objective-c/examples/Sample/README.md
@@ -1,2 +1 @@
-When contributing changes to this sample, use Cocoapods to manage the workspace
-file and everything under the Pods directory.
\ No newline at end of file
+This sample app requires the use of Cocoapods. After installing Cocoapods, run `pod install` in this directory to recreate its dependencies. (This will compile OpenSSL, which takes some time).
diff --git a/src/objective-c/examples/Sample/Sample.xcworkspace/contents.xcworkspacedata b/src/objective-c/examples/Sample/Sample.xcworkspace/contents.xcworkspacedata
deleted file mode 100644
index 7b5a2f3..0000000
--- a/src/objective-c/examples/Sample/Sample.xcworkspace/contents.xcworkspacedata
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<Workspace
-   version = "1.0">
-   <FileRef
-      location = "group:Sample.xcodeproj">
-   </FileRef>
-   <FileRef
-      location = "group:Pods/Pods.xcodeproj">
-   </FileRef>
-</Workspace>
diff --git a/src/objective-c/examples/Sample/SampleTests/RemoteProtoTests.m b/src/objective-c/examples/Sample/SampleTests/RemoteProtoTests.m
index 6c5de81..2ef6a6e 100644
--- a/src/objective-c/examples/Sample/SampleTests/RemoteProtoTests.m
+++ b/src/objective-c/examples/Sample/SampleTests/RemoteProtoTests.m
@@ -34,6 +34,7 @@
 #import <UIKit/UIKit.h>
 #import <XCTest/XCTest.h>
 
+#import <gRPC/GRXWriter+Immediate.h>
 #import <RemoteTest/Messages.pb.h>
 #import <RemoteTest/Test.pb.h>
 
@@ -48,43 +49,85 @@
   _service = [[RMTTestService alloc] initWithHost:@"grpc-test.sandbox.google.com"];
 }
 
-- (void)testEmptyRPC {
-  __weak XCTestExpectation *noRPCError = [self expectationWithDescription:@"RPC succeeded."];
-  __weak XCTestExpectation *responded = [self expectationWithDescription:@"Response received."];
+// Tests as described here: https://github.com/grpc/grpc/blob/master/doc/interop-test-descriptions.md
 
-  [_service emptyCallWithRequest:[RMTEmpty defaultInstance]
-                         handler:^(RMTEmpty *response, NSError *error) {
+- (void)testEmptyUnaryRPC {
+  __weak XCTestExpectation *expectation = [self expectationWithDescription:@"EmptyUnary"];
+
+  RMTEmpty *request = [RMTEmpty defaultInstance];
+
+  [_service emptyCallWithRequest:request handler:^(RMTEmpty *response, NSError *error) {
     XCTAssertNil(error, @"Finished with unexpected error: %@", error);
-    [noRPCError fulfill];
-    XCTAssertNotNil(response, @"nil response received.");
-    [responded fulfill];
+
+    id expectedResponse = [RMTEmpty defaultInstance];
+    XCTAssertEqualObjects(response, expectedResponse);
+
+    [expectation fulfill];
   }];
 
   [self waitForExpectationsWithTimeout:2. handler:nil];
 }
 
-- (void)testSimpleProtoRPC {
-  __weak XCTestExpectation *noRPCError = [self expectationWithDescription:@"RPC succeeded."];
-  __weak XCTestExpectation *responded = [self expectationWithDescription:@"Response received."];
-  __weak XCTestExpectation *validResponse = [self expectationWithDescription:@"Valid response."];
+- (void)testLargeUnaryRPC {
+  __weak XCTestExpectation *expectation = [self expectationWithDescription:@"EmptyUnary"];
 
   RMTSimpleRequest *request = [[[[[[RMTSimpleRequestBuilder alloc] init]
-                                  setResponseSize:100]
-                                 setFillUsername:YES]
-                                setFillOauthScope:YES]
+                                  setResponseType:RMTPayloadTypeCompressable]
+                                 setResponseSize:314159]
+                                setPayloadBuilder:[[[RMTPayloadBuilder alloc] init]
+                                             setBody:[NSMutableData dataWithLength:271828]]]
                                build];
+
   [_service unaryCallWithRequest:request handler:^(RMTSimpleResponse *response, NSError *error) {
     XCTAssertNil(error, @"Finished with unexpected error: %@", error);
-    [noRPCError fulfill];
-    XCTAssertNotNil(response, @"nil response received.");
-    [responded fulfill];
-    // We expect empty strings, not nil:
-    XCTAssertNotNil(response.username, @"Response's username is nil.");
-    XCTAssertNotNil(response.oauthScope, @"Response's OAuth scope is nil.");
-    [validResponse fulfill];
+
+    id expectedResponse = [[[[RMTSimpleResponseBuilder alloc] init]
+                            setPayloadBuilder:[[[[RMTPayloadBuilder alloc] init]
+                                                setType:RMTPayloadTypeCompressable]
+                                               setBody:[NSMutableData dataWithLength:314159]]]
+                           build];
+    XCTAssertEqualObjects(response, expectedResponse);
+
+    [expectation fulfill];
   }];
 
-  [self waitForExpectationsWithTimeout:2. handler:nil];
+  [self waitForExpectationsWithTimeout:4. handler:nil];
+}
+
+- (void)testClientStreamingRPC {
+  __weak XCTestExpectation *expectation = [self expectationWithDescription:@"EmptyUnary"];
+
+  id request1 = [[[[RMTStreamingInputCallRequestBuilder alloc] init]
+                  setPayloadBuilder:[[[RMTPayloadBuilder alloc] init]
+                                     setBody:[NSMutableData dataWithLength:27182]]]
+                 build];
+  id request2 = [[[[RMTStreamingInputCallRequestBuilder alloc] init]
+                  setPayloadBuilder:[[[RMTPayloadBuilder alloc] init]
+                                     setBody:[NSMutableData dataWithLength:8]]]
+                 build];
+  id request3 = [[[[RMTStreamingInputCallRequestBuilder alloc] init]
+                  setPayloadBuilder:[[[RMTPayloadBuilder alloc] init]
+                                     setBody:[NSMutableData dataWithLength:1828]]]
+                 build];
+  id request4 = [[[[RMTStreamingInputCallRequestBuilder alloc] init]
+                  setPayloadBuilder:[[[RMTPayloadBuilder alloc] init]
+                                     setBody:[NSMutableData dataWithLength:45904]]]
+                 build];
+  id<GRXWriter> writer = [GRXWriter writerWithContainer:@[request1, request2, request3, request4]];
+
+  [_service streamingInputCallWithRequestsWriter:writer
+                                         handler:^(RMTStreamingInputCallResponse *response, NSError *error) {
+    XCTAssertNil(error, @"Finished with unexpected error: %@", error);
+
+    id expectedResponse = [[[[RMTStreamingInputCallResponseBuilder alloc] init]
+                            setAggregatedPayloadSize:74922]
+                           build];
+    XCTAssertEqualObjects(response, expectedResponse);
+
+    [expectation fulfill];
+  }];
+
+  [self waitForExpectationsWithTimeout:4. handler:nil];
 }
 
 @end
diff --git a/templates/Makefile.template b/templates/Makefile.template
index 9ca55f4..e51af39 100644
--- a/templates/Makefile.template
+++ b/templates/Makefile.template
@@ -362,8 +362,8 @@
 ZLIB_CHECK_CMD = $(CC) $(CFLAGS) $(CPPFLAGS) -o $(TMPOUT) test/build/zlib.c -lz $(LDFLAGS)
 PERFTOOLS_CHECK_CMD = $(CC) $(CFLAGS) $(CPPFLAGS) -o $(TMPOUT) test/build/perftools.c -lprofiler $(LDFLAGS)
 PROTOBUF_CHECK_CMD = $(CXX) $(CXXFLAGS) $(CPPFLAGS) -o $(TMPOUT) test/build/protobuf.cc -lprotobuf $(LDFLAGS)
-PROTOC_CMD = which protoc > /dev/null
-PROTOC_CHECK_CMD = protoc --version | grep -q libprotoc.3
+PROTOC_CHECK_CMD = which protoc > /dev/null
+PROTOC_CHECK_VERSION_CMD = protoc --version | grep -q libprotoc.3
 
 ifeq ($(OPENSSL_REQUIRES_DL),true)
 OPENSSL_ALPN_CHECK_CMD += -ldl
@@ -389,9 +389,9 @@
 HAS_SYSTEM_PROTOBUF = false
 endif
 
-HAS_PROTOC = $(shell $(PROTOC_CMD) 2> /dev/null && echo true || echo false)
+HAS_PROTOC = $(shell $(PROTOC_CHECK_CMD) 2> /dev/null && echo true || echo false)
 ifeq ($(HAS_PROTOC),true)
-HAS_VALID_PROTOC = $(shell $(PROTOC_CHECK_CMD) 2> /dev/null && echo true || echo false)
+HAS_VALID_PROTOC = $(shell $(PROTOC_CHECK_VERSION_CMD) 2> /dev/null && echo true || echo false)
 else
 HAS_VALID_PROTOC = false
 endif
@@ -587,7 +587,7 @@
 	$(ZLIB_CHECK_CMD) || true
 	$(PERFTOOLS_CHECK_CMD) || true
 	$(PROTOBUF_CHECK_CMD) || true
-	$(PROTOC_CHECK_CMD) || true
+	$(PROTOC_CHECK_VERSION_CMD) || true
 
 $(LIBDIR)/$(CONFIG)/zlib/libz.a:
 	$(E) "[MAKE]    Building zlib"
@@ -1208,18 +1208,11 @@
 % if lib.get('secure', 'check') == 'yes' or lib.get('secure', 'check') == 'check':
 endif
 % endif
-
 % for src in lib.src:
-% if not proto_re.match(src):
-$(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o: \
-% for src2 in lib.src:
-% if proto_re.match(src2):
-    ${proto_to_cc(src2)}\
+% if not proto_re.match(src) and any(proto_re.match(src2) for src2 in lib.src):
+$(OBJDIR)/$(CONFIG)/${os.path.splitext(src)[0]}.o: ${' '.join(proto_to_cc(src2) for src2 in lib.src if proto_re.match(src2))}
 % endif
 % endfor
-% endif
-
-% endfor
 </%def>
 
 <%def name="maketarget(tgt)">
diff --git a/templates/vsprojects/grpc.sln.template b/templates/vsprojects/grpc.sln.template
index 883efd5..7465852 100644
--- a/templates/vsprojects/grpc.sln.template
+++ b/templates/vsprojects/grpc.sln.template
@@ -26,14 +26,20 @@
 Global
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution
 		Debug|Win32 = Debug|Win32
+		Debug|x64 = Debug|x64
 		Release|Win32 = Release|Win32
+		Release|x64 = Release|x64
 	EndGlobalSection
 	GlobalSection(ProjectConfigurationPlatforms) = postSolution
 % for project in vsprojects:
 		${project.vs_project_guid}.Debug|Win32.ActiveCfg = Debug|Win32
 		${project.vs_project_guid}.Debug|Win32.Build.0 = Debug|Win32
+		${project.vs_project_guid}.Debug|x64.ActiveCfg = Debug|x64
+		${project.vs_project_guid}.Debug|x64.Build.0 = Debug|x64
 		${project.vs_project_guid}.Release|Win32.ActiveCfg = Release|Win32
 		${project.vs_project_guid}.Release|Win32.Build.0 = Release|Win32
+		${project.vs_project_guid}.Release|x64.ActiveCfg = Release|x64
+		${project.vs_project_guid}.Release|x64.Build.0 = Release|x64
 % endfor
 	EndGlobalSection
 	GlobalSection(SolutionProperties) = preSolution
diff --git a/templates/vsprojects/vcxproj_defs.include b/templates/vsprojects/vcxproj_defs.include
index 062a3b0..af215d6 100644
--- a/templates/vsprojects/vcxproj_defs.include
+++ b/templates/vsprojects/vcxproj_defs.include
@@ -13,10 +13,18 @@
       <Configuration>Debug</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug|x64">
+      <Configuration>Debug</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
     <ProjectConfiguration Include="Release|Win32">
       <Configuration>Release</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|x64">
+      <Configuration>Release</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
   </ItemGroup>
   <PropertyGroup Label="Globals">
     <ProjectGuid>${project_guid if project_guid else project.vs_project_guid}</ProjectGuid>
@@ -36,12 +44,23 @@
     <UseDebugLibraries>true</UseDebugLibraries>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
+    <ConfigurationType>${configuration_type}</ConfigurationType>
+    <UseDebugLibraries>true</UseDebugLibraries>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
     <ConfigurationType>${configuration_type}</ConfigurationType>
     <UseDebugLibraries>false</UseDebugLibraries>
     <WholeProgramOptimization>true</WholeProgramOptimization>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+    <ConfigurationType>${configuration_type}</ConfigurationType>
+    <UseDebugLibraries>false</UseDebugLibraries>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
   <ImportGroup Label="ExtensionSettings">
   </ImportGroup>
@@ -52,6 +71,13 @@
     <Import Project="..\${prop}.props" />
     % endfor
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+    % for prop in additional_props:
+    <Import Project="..\${prop}.props" />
+    % endfor
+  </ImportGroup>
   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     <Import Project="..\global.props" />
@@ -59,13 +85,26 @@
     <Import Project="..\${prop}.props" />
     % endfor
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+    % for prop in additional_props:
+    <Import Project="..\${prop}.props" />
+    % endfor
+  </ImportGroup>
   <PropertyGroup Label="UserMacros" />
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <TargetName>${name}</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <TargetName>${name}</TargetName>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <TargetName>${name}</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <TargetName>${name}</TargetName>
+  </PropertyGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <ClCompile>
       <PrecompiledHeader>NotUsing</PrecompiledHeader>
@@ -79,6 +118,19 @@
       <GenerateDebugInformation>true</GenerateDebugInformation>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <ClCompile>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <Optimization>Disabled</Optimization>
+      <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>${get_subsystem(project.is_library)}</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <ClCompile>
       <WarningLevel>Level3</WarningLevel>
@@ -96,6 +148,23 @@
       <OptimizeReferences>true</OptimizeReferences>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <ClCompile>
+      <WarningLevel>Level3</WarningLevel>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <Optimization>MaxSpeed</Optimization>
+      <FunctionLevelLinking>true</FunctionLevelLinking>
+      <IntrinsicFunctions>true</IntrinsicFunctions>
+      <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>${get_subsystem(project.is_library)}</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <OptimizeReferences>true</OptimizeReferences>
+    </Link>
+  </ItemDefinitionGroup>
   % if project.get('public_headers',[]):
   <ItemGroup>
     % for public_header in project.public_headers:
diff --git a/test/core/end2end/gen_build_json.py b/test/core/end2end/gen_build_json.py
index b4a45ea..9b7db41 100755
--- a/test/core/end2end/gen_build_json.py
+++ b/test/core/end2end/gen_build_json.py
@@ -46,60 +46,60 @@
     'chttp2_socket_pair_one_byte_at_a_time': False,
 }
 
+# maps tests names to whether they run fine or not (aka, not flaky)
+END2END_TESTS = {
+    'bad_hostname': True,
+    'cancel_after_accept': False,
+    'cancel_after_accept_and_writes_closed': True,
+    'cancel_after_invoke': True,
+    'cancel_before_invoke': True,
+    'cancel_in_a_vacuum': True,
+    'census_simple_request': True,
+    'disappearing_server': True,
+    'early_server_shutdown_finishes_inflight_calls': True,
+    'early_server_shutdown_finishes_tags': True,
+    'empty_batch': True,
+    'graceful_server_shutdown': True,
+    'invoke_large_request': False,
+    'max_concurrent_streams': True,
+    'no_op': True,
+    'ping_pong_streaming': True,
+    'request_response_with_binary_metadata_and_payload': True,
+    'request_response_with_metadata_and_payload': True,
+    'request_response_with_payload': True,
+    'request_with_large_metadata': True,
+    'request_with_payload': True,
+    'simple_delayed_request': True,
+    'simple_request': True,
+    'registered_call': True,
+    'thread_stress': True,
+    'writes_done_hangs_with_pending_read': True,
 
-END2END_TESTS = [
-    'bad_hostname',
-    'cancel_after_accept',
-    'cancel_after_accept_and_writes_closed',
-    'cancel_after_invoke',
-    'cancel_before_invoke',
-    'cancel_in_a_vacuum',
-    'census_simple_request',
-    'disappearing_server',
-    'early_server_shutdown_finishes_inflight_calls',
-    'early_server_shutdown_finishes_tags',
-    'empty_batch',
-    'graceful_server_shutdown',
-    'invoke_large_request',
-    'max_concurrent_streams',
-    'no_op',
-    'ping_pong_streaming',
-    'request_response_with_binary_metadata_and_payload',
-    'request_response_with_metadata_and_payload',
-    'request_response_with_payload',
-    'request_with_large_metadata',
-    'request_with_payload',
-    'simple_delayed_request',
-    'simple_request',
-    'registered_call',
-    'thread_stress',
-    'writes_done_hangs_with_pending_read',
-
-    'cancel_after_accept_legacy',
-    'cancel_after_accept_and_writes_closed_legacy',
-    'cancel_after_invoke_legacy',
-    'cancel_before_invoke_legacy',
-    'cancel_in_a_vacuum_legacy',
-    'census_simple_request_legacy',
-    'disappearing_server_legacy',
-    'early_server_shutdown_finishes_inflight_calls_legacy',
-    'early_server_shutdown_finishes_tags_legacy',
-    'graceful_server_shutdown_legacy',
-    'invoke_large_request_legacy',
-    'max_concurrent_streams_legacy',
-    'no_op_legacy',
-    'ping_pong_streaming_legacy',
-    'request_response_with_binary_metadata_and_payload_legacy',
-    'request_response_with_metadata_and_payload_legacy',
-    'request_response_with_payload_legacy',
-    'request_response_with_trailing_metadata_and_payload_legacy',
-    'request_with_large_metadata_legacy',
-    'request_with_payload_legacy',
-    'simple_delayed_request_legacy',
-    'simple_request_legacy',
-    'thread_stress_legacy',
-    'writes_done_hangs_with_pending_read_legacy',
-]
+    'cancel_after_accept_legacy': False,
+    'cancel_after_accept_and_writes_closed_legacy': True,
+    'cancel_after_invoke_legacy': True,
+    'cancel_before_invoke_legacy': True,
+    'cancel_in_a_vacuum_legacy': True,
+    'census_simple_request_legacy': True,
+    'disappearing_server_legacy': True,
+    'early_server_shutdown_finishes_inflight_calls_legacy': True,
+    'early_server_shutdown_finishes_tags_legacy': True,
+    'graceful_server_shutdown_legacy': True,
+    'invoke_large_request_legacy': False,
+    'max_concurrent_streams_legacy': True,
+    'no_op_legacy': True,
+    'ping_pong_streaming_legacy': True,
+    'request_response_with_binary_metadata_and_payload_legacy': True,
+    'request_response_with_metadata_and_payload_legacy': True,
+    'request_response_with_payload_legacy': True,
+    'request_response_with_trailing_metadata_and_payload_legacy': True,
+    'request_with_large_metadata_legacy': True,
+    'request_with_payload_legacy': True,
+    'simple_delayed_request_legacy': True,
+    'simple_request_legacy': True,
+    'thread_stress_legacy': True,
+    'writes_done_hangs_with_pending_read_legacy': True,
+}
 
 
 def main():
@@ -122,7 +122,7 @@
               'src': ['test/core/end2end/tests/%s.c' % t],
               'headers': ['test/core/end2end/tests/cancel_test_helpers.h']
           }
-          for t in sorted(END2END_TESTS)] + [
+          for t in sorted(END2END_TESTS.keys())] + [
           {
               'name': 'end2end_certs',
               'build': 'private',
@@ -140,7 +140,7 @@
               'build': 'test',
               'language': 'c',
               'src': [],
-              'flaky': 'invoke_large_request' in t,
+              'flaky': not END2END_TESTS[t],
               'deps': [
                   'end2end_fixture_%s' % f,
                   'end2end_test_%s' % t,
@@ -152,7 +152,7 @@
               ]
           }
       for f in sorted(END2END_FIXTURES.keys())
-      for t in sorted(END2END_TESTS)] + [
+      for t in sorted(END2END_TESTS.keys())] + [
           {
               'name': '%s_%s_unsecure_test' % (f, t),
               'build': 'test',
@@ -170,7 +170,7 @@
               ]
           }
       for f in sorted(END2END_FIXTURES.keys()) if not END2END_FIXTURES[f]
-      for t in sorted(END2END_TESTS)]}
+      for t in sorted(END2END_TESTS.keys())]}
   print simplejson.dumps(json, sort_keys=True, indent=2 * ' ')
 
 
diff --git a/test/core/iomgr/tcp_posix_test.c b/test/core/iomgr/tcp_posix_test.c
index 59e525a..40abed5 100644
--- a/test/core/iomgr/tcp_posix_test.c
+++ b/test/core/iomgr/tcp_posix_test.c
@@ -40,6 +40,7 @@
 #include <sys/socket.h>
 #include <unistd.h>
 
+#include <grpc/grpc.h>
 #include <grpc/support/alloc.h>
 #include <grpc/support/log.h>
 #include <grpc/support/time.h>
@@ -140,11 +141,12 @@
                     grpc_endpoint_cb_status error) {
   struct read_socket_state *state = (struct read_socket_state *)user_data;
   ssize_t read_bytes;
-  int current_data = 0;
+  int current_data;
 
   GPR_ASSERT(error == GRPC_ENDPOINT_CB_OK);
 
   gpr_mu_lock(&state->mu);
+  current_data = state->read_bytes % 256;
   read_bytes = count_and_unref_slices(slices, nslices, &current_data);
   state->read_bytes += read_bytes;
   gpr_log(GPR_INFO, "Read %d bytes of %d", read_bytes,
@@ -483,10 +485,10 @@
 
 int main(int argc, char **argv) {
   grpc_test_init(argc, argv);
-  grpc_iomgr_init();
+  grpc_init();
   run_tests();
   grpc_endpoint_tests(configs[0]);
-  grpc_iomgr_shutdown();
+  grpc_shutdown();
 
   return 0;
 }
diff --git a/test/core/util/port_windows.c b/test/core/util/port_windows.c
index 17058c3..fc52150 100644
--- a/test/core/util/port_windows.c
+++ b/test/core/util/port_windows.c
@@ -57,7 +57,7 @@
 
   GPR_ASSERT(*port >= 0);
   GPR_ASSERT(*port <= 65535);
-  if (fd < 0) {
+  if (INVALID_SOCKET == fd) {
     gpr_log(GPR_ERROR, "socket() failed: %s", strerror(errno));
     return 0;
   }
diff --git a/test/cpp/client/credentials_test.cc b/test/cpp/client/credentials_test.cc
index 24251f2..6840418 100644
--- a/test/cpp/client/credentials_test.cc
+++ b/test/cpp/client/credentials_test.cc
@@ -47,7 +47,7 @@
 
 TEST_F(CredentialsTest, InvalidServiceAccountCreds) {
   std::unique_ptr<Credentials> bad1 =
-      ServiceAccountCredentials("", "", std::chrono::seconds(1));
+      ServiceAccountCredentials("", "", 1);
   EXPECT_EQ(nullptr, bad1.get());
 }
 
@@ -56,8 +56,6 @@
 
 int main(int argc, char** argv) {
   ::testing::InitGoogleTest(&argc, argv);
-  grpc_init();
   int ret = RUN_ALL_TESTS();
-  grpc_shutdown();
   return ret;
 }
diff --git a/test/cpp/end2end/async_end2end_test.cc b/test/cpp/end2end/async_end2end_test.cc
index dd294d9..6c0dfad 100644
--- a/test/cpp/end2end/async_end2end_test.cc
+++ b/test/cpp/end2end/async_end2end_test.cc
@@ -31,13 +31,12 @@
  *
  */
 
-#include <chrono>
 #include <memory>
 
+#include "test/core/util/port.h"
 #include "test/core/util/test_config.h"
 #include "test/cpp/util/echo_duplicate.grpc.pb.h"
 #include "test/cpp/util/echo.grpc.pb.h"
-#include "src/cpp/util/time.h"
 #include <grpc++/async_unary_call.h>
 #include <grpc++/channel_arguments.h>
 #include <grpc++/channel_interface.h>
@@ -50,7 +49,7 @@
 #include <grpc++/server_credentials.h>
 #include <grpc++/status.h>
 #include <grpc++/stream.h>
-#include "test/core/util/port.h"
+#include <grpc++/time.h>
 #include <gtest/gtest.h>
 
 #include <grpc/grpc.h>
@@ -595,9 +594,6 @@
 
 int main(int argc, char** argv) {
   grpc_test_init(argc, argv);
-  grpc_init();
   ::testing::InitGoogleTest(&argc, argv);
-  int result = RUN_ALL_TESTS();
-  grpc_shutdown();
-  return result;
+  return RUN_ALL_TESTS();
 }
diff --git a/test/cpp/end2end/end2end_test.cc b/test/cpp/end2end/end2end_test.cc
index 2d3b405..5e89490 100644
--- a/test/cpp/end2end/end2end_test.cc
+++ b/test/cpp/end2end/end2end_test.cc
@@ -31,13 +31,12 @@
  *
  */
 
-#include <chrono>
 #include <thread>
 
+#include "test/core/util/port.h"
 #include "test/core/util/test_config.h"
 #include "test/cpp/util/echo_duplicate.grpc.pb.h"
 #include "test/cpp/util/echo.grpc.pb.h"
-#include "src/cpp/util/time.h"
 #include "src/cpp/server/thread_pool.h"
 #include <grpc++/channel_arguments.h>
 #include <grpc++/channel_interface.h>
@@ -50,7 +49,7 @@
 #include <grpc++/server_credentials.h>
 #include <grpc++/status.h>
 #include <grpc++/stream.h>
-#include "test/core/util/port.h"
+#include <grpc++/time.h>
 #include <gtest/gtest.h>
 
 #include <grpc/grpc.h>
@@ -72,8 +71,8 @@
                        EchoResponse* response) {
   if (request->has_param() && request->param().echo_deadline()) {
     gpr_timespec deadline = gpr_inf_future;
-    if (context->absolute_deadline() != system_clock::time_point::max()) {
-      Timepoint2Timespec(context->absolute_deadline(), &deadline);
+    if (context->deadline() != system_clock::time_point::max()) {
+      Timepoint2Timespec(context->deadline(), &deadline);
     }
     response->mutable_param()->set_request_deadline(deadline.tv_sec);
   }
@@ -245,7 +244,7 @@
   ClientContext context;
   std::chrono::system_clock::time_point deadline =
       std::chrono::system_clock::now() + std::chrono::microseconds(10);
-  context.set_absolute_deadline(deadline);
+  context.set_deadline(deadline);
   Status s = stub_->Echo(&context, request, &response);
   EXPECT_EQ(StatusCode::DEADLINE_EXCEEDED, s.code());
 }
@@ -260,7 +259,7 @@
   ClientContext context;
   std::chrono::system_clock::time_point deadline =
       std::chrono::system_clock::now() + std::chrono::hours(1);
-  context.set_absolute_deadline(deadline);
+  context.set_deadline(deadline);
   Status s = stub_->Echo(&context, request, &response);
   EXPECT_EQ(response.message(), request.message());
   EXPECT_TRUE(s.IsOk());
@@ -277,7 +276,7 @@
   ClientContext context;
   std::chrono::system_clock::time_point deadline =
       std::chrono::system_clock::now() + std::chrono::seconds(100);
-  context.set_absolute_deadline(deadline);
+  context.set_deadline(deadline);
   Status s = stub_->Echo(&context, request, &response);
   EXPECT_EQ(response.message(), request.message());
   EXPECT_TRUE(s.IsOk());
@@ -428,7 +427,7 @@
 // rpc and stream should fail on bad credentials.
 TEST_F(End2endTest, BadCredentials) {
   std::unique_ptr<Credentials> bad_creds =
-      ServiceAccountCredentials("", "", std::chrono::seconds(1));
+      ServiceAccountCredentials("", "", 1);
   EXPECT_EQ(nullptr, bad_creds.get());
   std::shared_ptr<ChannelInterface> channel =
       CreateChannel(server_address_.str(), bad_creds, ChannelArguments());
@@ -491,6 +490,27 @@
   EXPECT_TRUE(s.details().empty());
 }
 
+// Client cancels request stream after sending two messages
+TEST_F(End2endTest, ClientCancelsRequestStream) {
+  ResetStub();
+  EchoRequest request;
+  EchoResponse response;
+  ClientContext context;
+  request.set_message("hello");
+
+  auto stream = stub_->RequestStream(&context, &response);
+  EXPECT_TRUE(stream->Write(request));
+  EXPECT_TRUE(stream->Write(request));
+  
+  context.TryCancel();
+
+  Status s = stream->Finish();
+  EXPECT_EQ(grpc::StatusCode::CANCELLED, s.code());
+  
+  EXPECT_EQ(response.message(), "");
+
+}
+
 // Client cancels server stream after sending some messages
 TEST_F(End2endTest, ClientCancelsResponseStream) {
   ResetStub();
@@ -562,9 +582,6 @@
 
 int main(int argc, char** argv) {
   grpc_test_init(argc, argv);
-  grpc_init();
   ::testing::InitGoogleTest(&argc, argv);
-  int result = RUN_ALL_TESTS();
-  grpc_shutdown();
-  return result;
+  return RUN_ALL_TESTS();
 }
diff --git a/test/cpp/end2end/generic_end2end_test.cc b/test/cpp/end2end/generic_end2end_test.cc
index 584d4bc..103f613 100644
--- a/test/cpp/end2end/generic_end2end_test.cc
+++ b/test/cpp/end2end/generic_end2end_test.cc
@@ -31,11 +31,9 @@
  *
  */
 
-#include <chrono>
 #include <memory>
 
 #include "src/cpp/proto/proto_utils.h"
-#include "src/cpp/util/time.h"
 #include "test/core/util/port.h"
 #include "test/core/util/test_config.h"
 #include "test/cpp/util/echo.grpc.pb.h"
@@ -55,6 +53,7 @@
 #include <grpc++/slice.h>
 #include <grpc++/status.h>
 #include <grpc++/stream.h>
+#include <grpc++/time.h>
 #include <gtest/gtest.h>
 
 #include <grpc/grpc.h>
@@ -280,9 +279,6 @@
 
 int main(int argc, char** argv) {
   grpc_test_init(argc, argv);
-  grpc_init();
   ::testing::InitGoogleTest(&argc, argv);
-  int result = RUN_ALL_TESTS();
-  grpc_shutdown();
-  return result;
+  return RUN_ALL_TESTS();
 }
diff --git a/test/cpp/interop/client.cc b/test/cpp/interop/client.cc
index fc59907..65ce2e9 100644
--- a/test/cpp/interop/client.cc
+++ b/test/cpp/interop/client.cc
@@ -78,8 +78,6 @@
 using grpc::testing::GetServiceAccountJsonKey;
 
 int main(int argc, char** argv) {
-  grpc_init();
-
   grpc::testing::InitTest(&argc, &argv, true);
 
   int ret = 0;
@@ -138,8 +136,6 @@
         FLAGS_test_case.c_str());
     ret = 1;
   }
-  client.Reset(nullptr);
 
-  grpc_shutdown();
   return ret;
 }
diff --git a/test/cpp/interop/client_helper.cc b/test/cpp/interop/client_helper.cc
index b4d5b88..a1dea38 100644
--- a/test/cpp/interop/client_helper.cc
+++ b/test/cpp/interop/client_helper.cc
@@ -85,8 +85,9 @@
     std::unique_ptr<Credentials> creds;
     GPR_ASSERT(FLAGS_enable_ssl);
     grpc::string json_key = GetServiceAccountJsonKey();
+    std::chrono::seconds token_lifetime = std::chrono::hours(1);
     creds = ServiceAccountCredentials(json_key, FLAGS_oauth_scope,
-                                      std::chrono::hours(1));
+                                      token_lifetime.count());
     return CreateTestChannel(host_port, FLAGS_server_host_override,
                              FLAGS_enable_ssl, FLAGS_use_prod_roots, creds);
   } else if (test_case == "compute_engine_creds") {
@@ -99,7 +100,8 @@
     std::unique_ptr<Credentials> creds;
     GPR_ASSERT(FLAGS_enable_ssl);
     grpc::string json_key = GetServiceAccountJsonKey();
-    creds = JWTCredentials(json_key, std::chrono::hours(1));
+    std::chrono::seconds token_lifetime = std::chrono::hours(1);
+    creds = JWTCredentials(json_key, token_lifetime.count());
     return CreateTestChannel(host_port, FLAGS_server_host_override,
                              FLAGS_enable_ssl, FLAGS_use_prod_roots, creds);
   } else {
diff --git a/test/cpp/interop/server.cc b/test/cpp/interop/server.cc
index 7888102..22b8910 100644
--- a/test/cpp/interop/server.cc
+++ b/test/cpp/interop/server.cc
@@ -218,13 +218,11 @@
 static void sigint_handler(int x) { got_sigint = true; }
 
 int main(int argc, char** argv) {
-  grpc_init();
   grpc::testing::InitTest(&argc, &argv, true);
   signal(SIGINT, sigint_handler);
 
   GPR_ASSERT(FLAGS_port != 0);
   RunServer();
 
-  grpc_shutdown();
   return 0;
 }
diff --git a/test/cpp/qps/client_sync.cc b/test/cpp/qps/client_sync.cc
index aea5a0f..5dd64d0 100644
--- a/test/cpp/qps/client_sync.cc
+++ b/test/cpp/qps/client_sync.cc
@@ -105,6 +105,7 @@
     StartThreads(num_threads_);
   }
   ~SynchronousStreamingClient() {
+    EndThreads();
     if (stream_) {
       SimpleResponse response;
       stream_->WritesDone();
diff --git a/test/cpp/qps/qps_driver.cc b/test/cpp/qps/qps_driver.cc
index 0669ccf..93b1247 100644
--- a/test/cpp/qps/qps_driver.cc
+++ b/test/cpp/qps/qps_driver.cc
@@ -69,7 +69,6 @@
 using grpc::testing::ResourceUsage;
 
 int main(int argc, char** argv) {
-  grpc_init();
   grpc::testing::InitTest(&argc, &argv, true);
 
   RpcType rpc_type;
@@ -104,6 +103,5 @@
   ReportLatency(result);
   ReportTimes(result);
 
-  grpc_shutdown();
   return 0;
 }
diff --git a/test/cpp/qps/smoke_test.cc b/test/cpp/qps/smoke_test.cc
index 9531913..2c60a99 100644
--- a/test/cpp/qps/smoke_test.cc
+++ b/test/cpp/qps/smoke_test.cc
@@ -33,6 +33,8 @@
 
 #include <grpc/support/log.h>
 
+#include <signal.h>
+
 #include "test/cpp/qps/driver.h"
 #include "test/cpp/qps/report.h"
 
@@ -136,14 +138,12 @@
 }  // namespace grpc
 
 int main(int argc, char** argv) {
-  grpc_init();
-
+  signal(SIGPIPE, SIG_IGN);
   using namespace grpc::testing;
   RunSynchronousStreamingPingPong();
   RunSynchronousUnaryPingPong();
   RunAsyncUnaryPingPong();
   RunQPS();
 
-  grpc_shutdown();
   return 0;
 }
diff --git a/test/cpp/qps/worker.cc b/test/cpp/qps/worker.cc
index 896a85c..281c617 100644
--- a/test/cpp/qps/worker.cc
+++ b/test/cpp/qps/worker.cc
@@ -64,13 +64,11 @@
 }  // namespace grpc
 
 int main(int argc, char** argv) {
-  grpc_init();
   grpc::testing::InitTest(&argc, &argv, true);
 
   signal(SIGINT, sigint_handler);
 
   grpc::testing::RunServer();
-
-  grpc_shutdown();
+  
   return 0;
 }
diff --git a/test/cpp/util/cli_call_test.cc b/test/cpp/util/cli_call_test.cc
index 32ef392..457a5e7 100644
--- a/test/cpp/util/cli_call_test.cc
+++ b/test/cpp/util/cli_call_test.cc
@@ -123,9 +123,6 @@
 
 int main(int argc, char** argv) {
   grpc_test_init(argc, argv);
-  grpc_init();
   ::testing::InitGoogleTest(&argc, argv);
-  int result = RUN_ALL_TESTS();
-  grpc_shutdown();
-  return result;
+  return RUN_ALL_TESTS();
 }
diff --git a/test/cpp/util/grpc_cli.cc b/test/cpp/util/grpc_cli.cc
index ee9f275..d71a7a0 100644
--- a/test/cpp/util/grpc_cli.cc
+++ b/test/cpp/util/grpc_cli.cc
@@ -79,8 +79,6 @@
               "Path to output file to write serialized response.");
 
 int main(int argc, char** argv) {
-  grpc_init();
-
   grpc::testing::InitTest(&argc, &argv, true);
 
   if (argc < 4 || grpc::string(argv[1]) != "call") {
@@ -127,7 +125,5 @@
     output_file << response;
   }
 
-  channel.reset();
-  grpc_shutdown();
   return 0;
 }
diff --git a/test/cpp/util/time_test.cc b/test/cpp/util/time_test.cc
index 4641fdb..a3cfb1c 100644
--- a/test/cpp/util/time_test.cc
+++ b/test/cpp/util/time_test.cc
@@ -31,11 +31,8 @@
  *
  */
 
-#include "src/cpp/util/time.h"
-
-#include <chrono>
-
 #include <grpc/support/time.h>
+#include <grpc++/time.h>
 #include <gtest/gtest.h>
 
 using std::chrono::duration_cast;
diff --git a/tools/dockerfile/grpc_php_base/Dockerfile b/tools/dockerfile/grpc_php_base/Dockerfile
index c49d3fe..23e95ba 100644
--- a/tools/dockerfile/grpc_php_base/Dockerfile
+++ b/tools/dockerfile/grpc_php_base/Dockerfile
@@ -58,7 +58,6 @@
     libyaml-dev \
     make \
     patch \
-    procps \
     php5-common \
     php5-cli \
     php5-dev \
diff --git a/tools/gce_setup/grpc_docker.sh b/tools/gce_setup/grpc_docker.sh
index 6b6ed7e..8b5d5ea 100755
--- a/tools/gce_setup/grpc_docker.sh
+++ b/tools/gce_setup/grpc_docker.sh
@@ -504,7 +504,7 @@
 
   [[ -n $1 ]] && {  # client_type
     case $1 in
-      cxx|go|java|node|php|python|ruby)
+      cxx|go|java|node|php|python|ruby|csharp_mono)
         grpc_gen_test_cmd+="_gen_$1_cmd"
         declare -F $grpc_gen_test_cmd >> /dev/null || {
           echo "-f: test_func for $1 => $grpc_gen_test_cmd is not defined" 1>&2
@@ -1401,6 +1401,37 @@
   echo $the_cmd
 }
 
+# constructs the full dockerized csharp-mono service_account auth interop test cmd.
+#
+# call-seq:
+#   flags= .... # generic flags to include the command
+#   cmd=$($grpc_gen_test_cmd $flags)
+grpc_cloud_prod_auth_service_account_creds_gen_csharp_mono_cmd() {
+  local workdir_flag="-w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug"
+  local env_flag="-e SSL_CERT_FILE=/cacerts/roots.pem "
+  env_flag+="-e GOOGLE_APPLICATION_CREDENTIALS=/service_account/stubbyCloudTestingTest-7dd63462c60c.json "
+  local cmd_prefix="sudo docker run $workdir_flag $env_flag grpc/csharp_mono";
+  local test_script="mono Grpc.IntegrationTesting.Client.exe --use_tls=true";
+  local gfe_flags=$(_grpc_prod_gfe_flags);
+  local the_cmd="$cmd_prefix $test_script $gfe_flags $@";
+  echo $the_cmd
+}
+
+# constructs the full dockerized csharp-mono gce auth interop test cmd.
+#
+# call-seq:
+#   flags= .... # generic flags to include the command
+#   cmd=$($grpc_gen_test_cmd $flags)
+grpc_cloud_prod_auth_compute_engine_creds_gen_csharp_mono_cmd() {
+  local workdir_flag="-w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug"
+  local env_flag="-e SSL_CERT_FILE=/cacerts/roots.pem "
+  local cmd_prefix="sudo docker run $workdir_flag $env_flag grpc/csharp_mono";
+  local test_script="mono Grpc.IntegrationTesting.Client.exe --use_tls=true";
+  local gfe_flags=$(_grpc_prod_gfe_flags)
+  local the_cmd="$cmd_prefix $test_script $gfe_flags $@";
+  echo $the_cmd
+}
+
 # outputs the flags passed to gfe tests
 _grpc_prod_gfe_flags() {
   echo " --server_port=443 --server_host=grpc-test.sandbox.google.com --server_host_override=grpc-test.sandbox.google.com"
diff --git a/tools/run_tests/build_csharp.sh b/tools/run_tests/build_csharp.sh
index 8227ad3..eae7bd5 100755
--- a/tools/run_tests/build_csharp.sh
+++ b/tools/run_tests/build_csharp.sh
@@ -30,9 +30,21 @@
 
 set -ex
 
+if [ "$CONFIG" = "dbg" ]
+then
+  MSBUILD_CONFIG="Debug"
+else
+  MSBUILD_CONFIG="Release"
+fi
+
 # change to gRPC repo root
 cd $(dirname $0)/../..
 
 root=`pwd`
 
-xbuild src/csharp/Grpc.sln
+if [ -n "$NUGET" ]
+then
+  $NUGET restore src/csharp/Grpc.sln
+fi
+
+xbuild /p:Configuration=$MSBUILD_CONFIG src/csharp/Grpc.sln
diff --git a/tools/run_tests/run_csharp.sh b/tools/run_tests/run_csharp.sh
index d10a41a..752e83e 100755
--- a/tools/run_tests/run_csharp.sh
+++ b/tools/run_tests/run_csharp.sh
@@ -30,17 +30,22 @@
 
 set -ex
 
+CONFIG=${CONFIG:-opt}
+
+if [ "$CONFIG" = "dbg" ]
+then
+  MSBUILD_CONFIG="Debug"
+else
+  MSBUILD_CONFIG="Release"
+fi
+
 # change to gRPC repo root
 cd $(dirname $0)/../..
 
 root=`pwd`
 cd src/csharp
 
-# TODO: All the tests run pretty fast. In the future, we might need to teach
-# run_tests.py about separate tests to make them run in parallel.
-for assembly_name in Grpc.Core.Tests Grpc.Examples.Tests Grpc.IntegrationTesting
-do
-  LD_LIBRARY_PATH=$root/libs/dbg nunit-console -labels $assembly_name/bin/Debug/$assembly_name.dll
-done
+export LD_LIBRARY_PATH=$root/libs/$CONFIG
+nunit-console -labels "$1/bin/$MSBUILD_CONFIG/$1.dll"
 
 
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index 5165983..50fdec7 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -61,7 +61,7 @@
     self.environ = environ
     self.environ['CONFIG'] = config
 
-  def job_spec(self, cmdline, hash_targets):
+  def job_spec(self, cmdline, hash_targets, shortname=None):
     """Construct a jobset.JobSpec for a test under this config
 
        Args:
@@ -74,6 +74,7 @@
                           be listed
     """
     return jobset.JobSpec(cmdline=cmdline,
+                          shortname=shortname,
                           environ=self.environ,
                           hash_targets=hash_targets
                               if self.allow_hashing else None)
@@ -218,9 +219,13 @@
 
 
 class CSharpLanguage(object):
-
   def test_specs(self, config, travis):
-    return [config.job_spec('tools/run_tests/run_csharp.sh', None)]
+    assemblies = ['Grpc.Core.Tests',
+                  'Grpc.Examples.Tests',
+                  'Grpc.IntegrationTesting']
+    return [config.job_spec(['tools/run_tests/run_csharp.sh', assembly],
+            None, shortname=assembly)
+            for assembly in assemblies ]
 
   def make_targets(self):
     return ['grpc_csharp_ext']
diff --git a/tools/run_tests/tests.json b/tools/run_tests/tests.json
index ad994e9..68b22d7 100644
--- a/tools/run_tests/tests.json
+++ b/tools/run_tests/tests.json
@@ -65,7 +65,7 @@
     ]
   }, 
   {
-    "flaky": false, 
+    "flaky": true, 
     "language": "c", 
     "name": "census_statistics_multiple_writers_test", 
     "platforms": [
@@ -74,7 +74,7 @@
     ]
   }, 
   {
-    "flaky": false, 
+    "flaky": true, 
     "language": "c", 
     "name": "census_statistics_performance_test", 
     "platforms": [
@@ -83,7 +83,7 @@
     ]
   }, 
   {
-    "flaky": false, 
+    "flaky": true, 
     "language": "c", 
     "name": "census_statistics_quick_test", 
     "platforms": [
@@ -703,7 +703,7 @@
     ]
   }, 
   {
-    "flaky": false, 
+    "flaky": true, 
     "language": "c", 
     "name": "chttp2_fake_security_cancel_after_accept_test", 
     "platforms": [
@@ -730,7 +730,7 @@
     ]
   }, 
   {
-    "flaky": false, 
+    "flaky": true, 
     "language": "c", 
     "name": "chttp2_fake_security_cancel_after_accept_legacy_test", 
     "platforms": [
@@ -1153,7 +1153,7 @@
     ]
   }, 
   {
-    "flaky": false, 
+    "flaky": true, 
     "language": "c", 
     "name": "chttp2_fullstack_cancel_after_accept_test", 
     "platforms": [
@@ -1180,7 +1180,7 @@
     ]
   }, 
   {
-    "flaky": false, 
+    "flaky": true, 
     "language": "c", 
     "name": "chttp2_fullstack_cancel_after_accept_legacy_test", 
     "platforms": [
@@ -1603,7 +1603,7 @@
     ]
   }, 
   {
-    "flaky": false, 
+    "flaky": true, 
     "language": "c", 
     "name": "chttp2_fullstack_uds_cancel_after_accept_test", 
     "platforms": [
@@ -1630,7 +1630,7 @@
     ]
   }, 
   {
-    "flaky": false, 
+    "flaky": true, 
     "language": "c", 
     "name": "chttp2_fullstack_uds_cancel_after_accept_legacy_test", 
     "platforms": [
@@ -2053,7 +2053,7 @@
     ]
   }, 
   {
-    "flaky": false, 
+    "flaky": true, 
     "language": "c", 
     "name": "chttp2_simple_ssl_fullstack_cancel_after_accept_test", 
     "platforms": [
@@ -2080,7 +2080,7 @@
     ]
   }, 
   {
-    "flaky": false, 
+    "flaky": true, 
     "language": "c", 
     "name": "chttp2_simple_ssl_fullstack_cancel_after_accept_legacy_test", 
     "platforms": [
@@ -2503,7 +2503,7 @@
     ]
   }, 
   {
-    "flaky": false, 
+    "flaky": true, 
     "language": "c", 
     "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test", 
     "platforms": [
@@ -2530,7 +2530,7 @@
     ]
   }, 
   {
-    "flaky": false, 
+    "flaky": true, 
     "language": "c", 
     "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_legacy_test", 
     "platforms": [
@@ -2953,7 +2953,7 @@
     ]
   }, 
   {
-    "flaky": false, 
+    "flaky": true, 
     "language": "c", 
     "name": "chttp2_socket_pair_cancel_after_accept_test", 
     "platforms": [
@@ -2980,7 +2980,7 @@
     ]
   }, 
   {
-    "flaky": false, 
+    "flaky": true, 
     "language": "c", 
     "name": "chttp2_socket_pair_cancel_after_accept_legacy_test", 
     "platforms": [
@@ -3403,7 +3403,7 @@
     ]
   }, 
   {
-    "flaky": false, 
+    "flaky": true, 
     "language": "c", 
     "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test", 
     "platforms": [
@@ -3430,7 +3430,7 @@
     ]
   }, 
   {
-    "flaky": false, 
+    "flaky": true, 
     "language": "c", 
     "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_legacy_test", 
     "platforms": [
diff --git a/vsprojects/gpr/gpr.vcxproj b/vsprojects/gpr/gpr.vcxproj
index 11240f4..e42c656 100644
--- a/vsprojects/gpr/gpr.vcxproj
+++ b/vsprojects/gpr/gpr.vcxproj
@@ -5,10 +5,18 @@
       <Configuration>Debug</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug|x64">
+      <Configuration>Debug</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
     <ProjectConfiguration Include="Release|Win32">
       <Configuration>Release</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|x64">
+      <Configuration>Release</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
   </ItemGroup>
   <PropertyGroup Label="Globals">
     <ProjectGuid>{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}</ProjectGuid>
@@ -28,12 +36,23 @@
     <UseDebugLibraries>true</UseDebugLibraries>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>true</UseDebugLibraries>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
     <ConfigurationType>StaticLibrary</ConfigurationType>
     <UseDebugLibraries>false</UseDebugLibraries>
     <WholeProgramOptimization>true</WholeProgramOptimization>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>false</UseDebugLibraries>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
   <ImportGroup Label="ExtensionSettings">
   </ImportGroup>
@@ -41,17 +60,31 @@
     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     <Import Project="..\global.props" />
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+  </ImportGroup>
   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     <Import Project="..\global.props" />
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+  </ImportGroup>
   <PropertyGroup Label="UserMacros" />
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <TargetName>gpr</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <TargetName>gpr</TargetName>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <TargetName>gpr</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <TargetName>gpr</TargetName>
+  </PropertyGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <ClCompile>
       <PrecompiledHeader>NotUsing</PrecompiledHeader>
@@ -65,6 +98,19 @@
       <GenerateDebugInformation>true</GenerateDebugInformation>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <ClCompile>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <Optimization>Disabled</Optimization>
+      <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <ClCompile>
       <WarningLevel>Level3</WarningLevel>
@@ -82,6 +128,23 @@
       <OptimizeReferences>true</OptimizeReferences>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <ClCompile>
+      <WarningLevel>Level3</WarningLevel>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <Optimization>MaxSpeed</Optimization>
+      <FunctionLevelLinking>true</FunctionLevelLinking>
+      <IntrinsicFunctions>true</IntrinsicFunctions>
+      <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <OptimizeReferences>true</OptimizeReferences>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemGroup>
     <ClInclude Include="..\..\include\grpc\support\alloc.h" />
     <ClInclude Include="..\..\include\grpc\support\atm.h" />
diff --git a/vsprojects/gpr_test_util/gpr_test_util.vcxproj b/vsprojects/gpr_test_util/gpr_test_util.vcxproj
index c156fda..504a2cd 100644
--- a/vsprojects/gpr_test_util/gpr_test_util.vcxproj
+++ b/vsprojects/gpr_test_util/gpr_test_util.vcxproj
@@ -5,10 +5,18 @@
       <Configuration>Debug</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug|x64">
+      <Configuration>Debug</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
     <ProjectConfiguration Include="Release|Win32">
       <Configuration>Release</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|x64">
+      <Configuration>Release</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
   </ItemGroup>
   <PropertyGroup Label="Globals">
     <ProjectGuid>{EAB0A629-17A9-44DB-B5FF-E91A721FE037}</ProjectGuid>
@@ -28,12 +36,23 @@
     <UseDebugLibraries>true</UseDebugLibraries>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>true</UseDebugLibraries>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
     <ConfigurationType>StaticLibrary</ConfigurationType>
     <UseDebugLibraries>false</UseDebugLibraries>
     <WholeProgramOptimization>true</WholeProgramOptimization>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>false</UseDebugLibraries>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
   <ImportGroup Label="ExtensionSettings">
   </ImportGroup>
@@ -41,17 +60,31 @@
     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     <Import Project="..\global.props" />
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+  </ImportGroup>
   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     <Import Project="..\global.props" />
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+  </ImportGroup>
   <PropertyGroup Label="UserMacros" />
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <TargetName>gpr_test_util</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <TargetName>gpr_test_util</TargetName>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <TargetName>gpr_test_util</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <TargetName>gpr_test_util</TargetName>
+  </PropertyGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <ClCompile>
       <PrecompiledHeader>NotUsing</PrecompiledHeader>
@@ -65,6 +98,19 @@
       <GenerateDebugInformation>true</GenerateDebugInformation>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <ClCompile>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <Optimization>Disabled</Optimization>
+      <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <ClCompile>
       <WarningLevel>Level3</WarningLevel>
@@ -82,6 +128,23 @@
       <OptimizeReferences>true</OptimizeReferences>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <ClCompile>
+      <WarningLevel>Level3</WarningLevel>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <Optimization>MaxSpeed</Optimization>
+      <FunctionLevelLinking>true</FunctionLevelLinking>
+      <IntrinsicFunctions>true</IntrinsicFunctions>
+      <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <OptimizeReferences>true</OptimizeReferences>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemGroup>
     <ClInclude Include="..\..\test\core\util\test_config.h" />
   </ItemGroup>
diff --git a/vsprojects/grpc++/grpc++.vcxproj b/vsprojects/grpc++/grpc++.vcxproj
index 38eca1a..46b4a4c 100644
--- a/vsprojects/grpc++/grpc++.vcxproj
+++ b/vsprojects/grpc++/grpc++.vcxproj
@@ -5,10 +5,18 @@
       <Configuration>Debug</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug|x64">
+      <Configuration>Debug</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
     <ProjectConfiguration Include="Release|Win32">
       <Configuration>Release</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|x64">
+      <Configuration>Release</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
   </ItemGroup>
   <PropertyGroup Label="Globals">
     <ProjectGuid>{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}</ProjectGuid>
@@ -28,12 +36,23 @@
     <UseDebugLibraries>true</UseDebugLibraries>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>true</UseDebugLibraries>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
     <ConfigurationType>StaticLibrary</ConfigurationType>
     <UseDebugLibraries>false</UseDebugLibraries>
     <WholeProgramOptimization>true</WholeProgramOptimization>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>false</UseDebugLibraries>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
   <ImportGroup Label="ExtensionSettings">
   </ImportGroup>
@@ -41,17 +60,31 @@
     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     <Import Project="..\global.props" />
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+  </ImportGroup>
   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     <Import Project="..\global.props" />
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+  </ImportGroup>
   <PropertyGroup Label="UserMacros" />
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <TargetName>grpc++</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <TargetName>grpc++</TargetName>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <TargetName>grpc++</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <TargetName>grpc++</TargetName>
+  </PropertyGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <ClCompile>
       <PrecompiledHeader>NotUsing</PrecompiledHeader>
@@ -65,6 +98,19 @@
       <GenerateDebugInformation>true</GenerateDebugInformation>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <ClCompile>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <Optimization>Disabled</Optimization>
+      <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <ClCompile>
       <WarningLevel>Level3</WarningLevel>
@@ -82,6 +128,23 @@
       <OptimizeReferences>true</OptimizeReferences>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <ClCompile>
+      <WarningLevel>Level3</WarningLevel>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <Optimization>MaxSpeed</Optimization>
+      <FunctionLevelLinking>true</FunctionLevelLinking>
+      <IntrinsicFunctions>true</IntrinsicFunctions>
+      <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <OptimizeReferences>true</OptimizeReferences>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemGroup>
     <ClInclude Include="..\..\include\grpc++\async_generic_service.h" />
     <ClInclude Include="..\..\include\grpc++\async_unary_call.h" />
@@ -96,6 +159,7 @@
     <ClInclude Include="..\..\include\grpc++\generic_stub.h" />
     <ClInclude Include="..\..\include\grpc++\impl\call.h" />
     <ClInclude Include="..\..\include\grpc++\impl\client_unary_call.h" />
+    <ClInclude Include="..\..\include\grpc++\impl\grpc_library.h" />
     <ClInclude Include="..\..\include\grpc++\impl\internal_stub.h" />
     <ClInclude Include="..\..\include\grpc++\impl\rpc_method.h" />
     <ClInclude Include="..\..\include\grpc++\impl\rpc_service_method.h" />
@@ -115,6 +179,7 @@
     <ClInclude Include="..\..\include\grpc++\status_code_enum.h" />
     <ClInclude Include="..\..\include\grpc++\stream.h" />
     <ClInclude Include="..\..\include\grpc++\thread_pool_interface.h" />
+    <ClInclude Include="..\..\include\grpc++\time.h" />
   </ItemGroup>
   <ItemGroup>
     <ClInclude Include="..\..\src\cpp\client\secure_credentials.h" />
@@ -122,7 +187,6 @@
     <ClInclude Include="..\..\src\cpp\client\channel.h" />
     <ClInclude Include="..\..\src\cpp\proto\proto_utils.h" />
     <ClInclude Include="..\..\src\cpp\server\thread_pool.h" />
-    <ClInclude Include="..\..\src\cpp\util\time.h" />
   </ItemGroup>
   <ItemGroup>
     <ClCompile Include="..\..\src\cpp\client\secure_credentials.cc">
diff --git a/vsprojects/grpc++/grpc++.vcxproj.filters b/vsprojects/grpc++/grpc++.vcxproj.filters
index 6466a0f..d5eeb71 100644
--- a/vsprojects/grpc++/grpc++.vcxproj.filters
+++ b/vsprojects/grpc++/grpc++.vcxproj.filters
@@ -120,6 +120,9 @@
     <ClInclude Include="..\..\include\grpc++\impl\client_unary_call.h">
       <Filter>include\grpc++\impl</Filter>
     </ClInclude>
+    <ClInclude Include="..\..\include\grpc++\impl\grpc_library.h">
+      <Filter>include\grpc++\impl</Filter>
+    </ClInclude>
     <ClInclude Include="..\..\include\grpc++\impl\internal_stub.h">
       <Filter>include\grpc++\impl</Filter>
     </ClInclude>
@@ -177,6 +180,9 @@
     <ClInclude Include="..\..\include\grpc++\thread_pool_interface.h">
       <Filter>include\grpc++</Filter>
     </ClInclude>
+    <ClInclude Include="..\..\include\grpc++\time.h">
+      <Filter>include\grpc++</Filter>
+    </ClInclude>
   </ItemGroup>
   <ItemGroup>
     <ClInclude Include="..\..\src\cpp\client\secure_credentials.h">
@@ -194,9 +200,6 @@
     <ClInclude Include="..\..\src\cpp\server\thread_pool.h">
       <Filter>src\cpp\server</Filter>
     </ClInclude>
-    <ClInclude Include="..\..\src\cpp\util\time.h">
-      <Filter>src\cpp\util</Filter>
-    </ClInclude>
   </ItemGroup>
 
   <ItemGroup>
diff --git a/vsprojects/grpc.sln b/vsprojects/grpc.sln
index 1f286f5..b978eb3 100644
--- a/vsprojects/grpc.sln
+++ b/vsprojects/grpc.sln
@@ -49,41 +49,75 @@
 Global
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution
 		Debug|Win32 = Debug|Win32
+		Debug|x64 = Debug|x64
 		Release|Win32 = Release|Win32
+		Release|x64 = Release|x64
 	EndGlobalSection
 	GlobalSection(ProjectConfigurationPlatforms) = postSolution
 		{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug|Win32.ActiveCfg = Debug|Win32
 		{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug|Win32.Build.0 = Debug|Win32
+		{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug|x64.ActiveCfg = Debug|x64
+		{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Debug|x64.Build.0 = Debug|x64
 		{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release|Win32.ActiveCfg = Release|Win32
 		{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release|Win32.Build.0 = Release|Win32
+		{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release|x64.ActiveCfg = Release|x64
+		{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}.Release|x64.Build.0 = Release|x64
 		{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Debug|Win32.ActiveCfg = Debug|Win32
 		{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Debug|Win32.Build.0 = Debug|Win32
+		{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Debug|x64.ActiveCfg = Debug|x64
+		{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Debug|x64.Build.0 = Debug|x64
 		{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Release|Win32.ActiveCfg = Release|Win32
 		{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Release|Win32.Build.0 = Release|Win32
+		{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Release|x64.ActiveCfg = Release|x64
+		{EAB0A629-17A9-44DB-B5FF-E91A721FE037}.Release|x64.Build.0 = Release|x64
 		{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug|Win32.ActiveCfg = Debug|Win32
 		{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug|Win32.Build.0 = Debug|Win32
+		{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug|x64.ActiveCfg = Debug|x64
+		{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Debug|x64.Build.0 = Debug|x64
 		{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release|Win32.ActiveCfg = Release|Win32
 		{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release|Win32.Build.0 = Release|Win32
+		{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release|x64.ActiveCfg = Release|x64
+		{29D16885-7228-4C31-81ED-5F9187C7F2A9}.Release|x64.Build.0 = Release|x64
 		{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Debug|Win32.ActiveCfg = Debug|Win32
 		{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Debug|Win32.Build.0 = Debug|Win32
+		{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Debug|x64.ActiveCfg = Debug|x64
+		{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Debug|x64.Build.0 = Debug|x64
 		{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Release|Win32.ActiveCfg = Release|Win32
 		{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Release|Win32.Build.0 = Release|Win32
+		{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Release|x64.ActiveCfg = Release|x64
+		{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}.Release|x64.Build.0 = Release|x64
 		{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Debug|Win32.ActiveCfg = Debug|Win32
 		{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Debug|Win32.Build.0 = Debug|Win32
+		{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Debug|x64.ActiveCfg = Debug|x64
+		{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Debug|x64.Build.0 = Debug|x64
 		{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Release|Win32.ActiveCfg = Release|Win32
 		{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Release|Win32.Build.0 = Release|Win32
+		{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Release|x64.ActiveCfg = Release|x64
+		{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}.Release|x64.Build.0 = Release|x64
 		{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Debug|Win32.ActiveCfg = Debug|Win32
 		{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Debug|Win32.Build.0 = Debug|Win32
+		{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Debug|x64.ActiveCfg = Debug|x64
+		{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Debug|x64.Build.0 = Debug|x64
 		{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Release|Win32.ActiveCfg = Release|Win32
 		{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Release|Win32.Build.0 = Release|Win32
+		{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Release|x64.ActiveCfg = Release|x64
+		{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}.Release|x64.Build.0 = Release|x64
 		{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Debug|Win32.ActiveCfg = Debug|Win32
 		{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Debug|Win32.Build.0 = Debug|Win32
+		{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Debug|x64.ActiveCfg = Debug|x64
+		{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Debug|x64.Build.0 = Debug|x64
 		{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Release|Win32.ActiveCfg = Release|Win32
 		{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Release|Win32.Build.0 = Release|Win32
+		{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Release|x64.ActiveCfg = Release|x64
+		{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}.Release|x64.Build.0 = Release|x64
 		{D64C6D63-4458-4A88-AB38-35678384A7E4}.Debug|Win32.ActiveCfg = Debug|Win32
 		{D64C6D63-4458-4A88-AB38-35678384A7E4}.Debug|Win32.Build.0 = Debug|Win32
+		{D64C6D63-4458-4A88-AB38-35678384A7E4}.Debug|x64.ActiveCfg = Debug|x64
+		{D64C6D63-4458-4A88-AB38-35678384A7E4}.Debug|x64.Build.0 = Debug|x64
 		{D64C6D63-4458-4A88-AB38-35678384A7E4}.Release|Win32.ActiveCfg = Release|Win32
 		{D64C6D63-4458-4A88-AB38-35678384A7E4}.Release|Win32.Build.0 = Release|Win32
+		{D64C6D63-4458-4A88-AB38-35678384A7E4}.Release|x64.ActiveCfg = Release|x64
+		{D64C6D63-4458-4A88-AB38-35678384A7E4}.Release|x64.Build.0 = Release|x64
 	EndGlobalSection
 	GlobalSection(SolutionProperties) = preSolution
 		HideSolutionNode = FALSE
diff --git a/vsprojects/grpc/grpc.vcxproj b/vsprojects/grpc/grpc.vcxproj
index fc7744f..9fa63ae 100644
--- a/vsprojects/grpc/grpc.vcxproj
+++ b/vsprojects/grpc/grpc.vcxproj
@@ -6,10 +6,18 @@
       <Configuration>Debug</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug|x64">
+      <Configuration>Debug</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
     <ProjectConfiguration Include="Release|Win32">
       <Configuration>Release</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|x64">
+      <Configuration>Release</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
   </ItemGroup>
   <PropertyGroup Label="Globals">
     <ProjectGuid>{29D16885-7228-4C31-81ED-5F9187C7F2A9}</ProjectGuid>
@@ -29,12 +37,23 @@
     <UseDebugLibraries>true</UseDebugLibraries>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>true</UseDebugLibraries>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
     <ConfigurationType>StaticLibrary</ConfigurationType>
     <UseDebugLibraries>false</UseDebugLibraries>
     <WholeProgramOptimization>true</WholeProgramOptimization>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>false</UseDebugLibraries>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
   <ImportGroup Label="ExtensionSettings">
   </ImportGroup>
@@ -42,17 +61,31 @@
     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     <Import Project="..\global.props" />
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+  </ImportGroup>
   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     <Import Project="..\global.props" />
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+  </ImportGroup>
   <PropertyGroup Label="UserMacros" />
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <TargetName>grpc</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <TargetName>grpc</TargetName>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <TargetName>grpc</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <TargetName>grpc</TargetName>
+  </PropertyGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <ClCompile>
       <PrecompiledHeader>NotUsing</PrecompiledHeader>
@@ -66,6 +99,19 @@
       <GenerateDebugInformation>true</GenerateDebugInformation>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <ClCompile>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <Optimization>Disabled</Optimization>
+      <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <ClCompile>
       <WarningLevel>Level3</WarningLevel>
@@ -83,6 +129,23 @@
       <OptimizeReferences>true</OptimizeReferences>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <ClCompile>
+      <WarningLevel>Level3</WarningLevel>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <Optimization>MaxSpeed</Optimization>
+      <FunctionLevelLinking>true</FunctionLevelLinking>
+      <IntrinsicFunctions>true</IntrinsicFunctions>
+      <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <OptimizeReferences>true</OptimizeReferences>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemGroup>
     <ClInclude Include="..\..\include\grpc\grpc_security.h" />
     <ClInclude Include="..\..\include\grpc\byte_buffer.h" />
diff --git a/vsprojects/grpc_csharp_ext/grpc_csharp_ext.vcxproj b/vsprojects/grpc_csharp_ext/grpc_csharp_ext.vcxproj
index 2adb4a5..0ed2ebb 100644
--- a/vsprojects/grpc_csharp_ext/grpc_csharp_ext.vcxproj
+++ b/vsprojects/grpc_csharp_ext/grpc_csharp_ext.vcxproj
@@ -6,10 +6,18 @@
       <Configuration>Debug</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug|x64">
+      <Configuration>Debug</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
     <ProjectConfiguration Include="Release|Win32">
       <Configuration>Release</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|x64">
+      <Configuration>Release</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
   </ItemGroup>
   <PropertyGroup Label="Globals">
     <ProjectGuid>{D64C6D63-4458-4A88-AB38-35678384A7E4}</ProjectGuid>
@@ -29,12 +37,23 @@
     <UseDebugLibraries>true</UseDebugLibraries>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
+    <ConfigurationType>DynamicLibrary</ConfigurationType>
+    <UseDebugLibraries>true</UseDebugLibraries>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
     <ConfigurationType>DynamicLibrary</ConfigurationType>
     <UseDebugLibraries>false</UseDebugLibraries>
     <WholeProgramOptimization>true</WholeProgramOptimization>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+    <ConfigurationType>DynamicLibrary</ConfigurationType>
+    <UseDebugLibraries>false</UseDebugLibraries>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
   <ImportGroup Label="ExtensionSettings">
   </ImportGroup>
@@ -43,18 +62,34 @@
     <Import Project="..\global.props" />
     <Import Project="..\winsock.props" />
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+    <Import Project="..\winsock.props" />
+  </ImportGroup>
   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     <Import Project="..\global.props" />
     <Import Project="..\winsock.props" />
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+    <Import Project="..\winsock.props" />
+  </ImportGroup>
   <PropertyGroup Label="UserMacros" />
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <TargetName>grpc_csharp_ext</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <TargetName>grpc_csharp_ext</TargetName>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <TargetName>grpc_csharp_ext</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <TargetName>grpc_csharp_ext</TargetName>
+  </PropertyGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <ClCompile>
       <PrecompiledHeader>NotUsing</PrecompiledHeader>
@@ -68,6 +103,19 @@
       <GenerateDebugInformation>true</GenerateDebugInformation>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <ClCompile>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <Optimization>Disabled</Optimization>
+      <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <ClCompile>
       <WarningLevel>Level3</WarningLevel>
@@ -85,6 +133,23 @@
       <OptimizeReferences>true</OptimizeReferences>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <ClCompile>
+      <WarningLevel>Level3</WarningLevel>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <Optimization>MaxSpeed</Optimization>
+      <FunctionLevelLinking>true</FunctionLevelLinking>
+      <IntrinsicFunctions>true</IntrinsicFunctions>
+      <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <OptimizeReferences>true</OptimizeReferences>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemGroup>
     <ClCompile Include="..\..\src\csharp\ext\grpc_csharp_ext.c">
     </ClCompile>
diff --git a/vsprojects/grpc_test_util/grpc_test_util.vcxproj b/vsprojects/grpc_test_util/grpc_test_util.vcxproj
index 18ed2f2..4198703 100644
--- a/vsprojects/grpc_test_util/grpc_test_util.vcxproj
+++ b/vsprojects/grpc_test_util/grpc_test_util.vcxproj
@@ -5,10 +5,18 @@
       <Configuration>Debug</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug|x64">
+      <Configuration>Debug</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
     <ProjectConfiguration Include="Release|Win32">
       <Configuration>Release</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|x64">
+      <Configuration>Release</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
   </ItemGroup>
   <PropertyGroup Label="Globals">
     <ProjectGuid>{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}</ProjectGuid>
@@ -28,12 +36,23 @@
     <UseDebugLibraries>true</UseDebugLibraries>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>true</UseDebugLibraries>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
     <ConfigurationType>StaticLibrary</ConfigurationType>
     <UseDebugLibraries>false</UseDebugLibraries>
     <WholeProgramOptimization>true</WholeProgramOptimization>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>false</UseDebugLibraries>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
   <ImportGroup Label="ExtensionSettings">
   </ImportGroup>
@@ -41,17 +60,31 @@
     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     <Import Project="..\global.props" />
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+  </ImportGroup>
   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     <Import Project="..\global.props" />
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+  </ImportGroup>
   <PropertyGroup Label="UserMacros" />
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <TargetName>grpc_test_util</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <TargetName>grpc_test_util</TargetName>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <TargetName>grpc_test_util</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <TargetName>grpc_test_util</TargetName>
+  </PropertyGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <ClCompile>
       <PrecompiledHeader>NotUsing</PrecompiledHeader>
@@ -65,6 +98,19 @@
       <GenerateDebugInformation>true</GenerateDebugInformation>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <ClCompile>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <Optimization>Disabled</Optimization>
+      <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <ClCompile>
       <WarningLevel>Level3</WarningLevel>
@@ -82,6 +128,23 @@
       <OptimizeReferences>true</OptimizeReferences>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <ClCompile>
+      <WarningLevel>Level3</WarningLevel>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <Optimization>MaxSpeed</Optimization>
+      <FunctionLevelLinking>true</FunctionLevelLinking>
+      <IntrinsicFunctions>true</IntrinsicFunctions>
+      <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <OptimizeReferences>true</OptimizeReferences>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemGroup>
     <ClCompile Include="..\..\test\core\end2end\data\server1_cert.c">
     </ClCompile>
diff --git a/vsprojects/grpc_test_util_unsecure/grpc_test_util_unsecure.vcxproj b/vsprojects/grpc_test_util_unsecure/grpc_test_util_unsecure.vcxproj
index d429409..f73f2dd 100644
--- a/vsprojects/grpc_test_util_unsecure/grpc_test_util_unsecure.vcxproj
+++ b/vsprojects/grpc_test_util_unsecure/grpc_test_util_unsecure.vcxproj
@@ -5,10 +5,18 @@
       <Configuration>Debug</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug|x64">
+      <Configuration>Debug</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
     <ProjectConfiguration Include="Release|Win32">
       <Configuration>Release</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|x64">
+      <Configuration>Release</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
   </ItemGroup>
   <PropertyGroup Label="Globals">
     <ProjectGuid>{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}</ProjectGuid>
@@ -28,12 +36,23 @@
     <UseDebugLibraries>true</UseDebugLibraries>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>true</UseDebugLibraries>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
     <ConfigurationType>StaticLibrary</ConfigurationType>
     <UseDebugLibraries>false</UseDebugLibraries>
     <WholeProgramOptimization>true</WholeProgramOptimization>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>false</UseDebugLibraries>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
   <ImportGroup Label="ExtensionSettings">
   </ImportGroup>
@@ -41,17 +60,31 @@
     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     <Import Project="..\global.props" />
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+  </ImportGroup>
   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     <Import Project="..\global.props" />
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+  </ImportGroup>
   <PropertyGroup Label="UserMacros" />
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <TargetName>grpc_test_util_unsecure</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <TargetName>grpc_test_util_unsecure</TargetName>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <TargetName>grpc_test_util_unsecure</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <TargetName>grpc_test_util_unsecure</TargetName>
+  </PropertyGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <ClCompile>
       <PrecompiledHeader>NotUsing</PrecompiledHeader>
@@ -65,6 +98,19 @@
       <GenerateDebugInformation>true</GenerateDebugInformation>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <ClCompile>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <Optimization>Disabled</Optimization>
+      <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <ClCompile>
       <WarningLevel>Level3</WarningLevel>
@@ -82,6 +128,23 @@
       <OptimizeReferences>true</OptimizeReferences>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <ClCompile>
+      <WarningLevel>Level3</WarningLevel>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <Optimization>MaxSpeed</Optimization>
+      <FunctionLevelLinking>true</FunctionLevelLinking>
+      <IntrinsicFunctions>true</IntrinsicFunctions>
+      <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <OptimizeReferences>true</OptimizeReferences>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemGroup>
     <ClCompile Include="..\..\test\core\end2end\cq_verifier.c">
     </ClCompile>
diff --git a/vsprojects/grpc_unsecure/grpc_unsecure.vcxproj b/vsprojects/grpc_unsecure/grpc_unsecure.vcxproj
index 670b109..c755323 100644
--- a/vsprojects/grpc_unsecure/grpc_unsecure.vcxproj
+++ b/vsprojects/grpc_unsecure/grpc_unsecure.vcxproj
@@ -5,10 +5,18 @@
       <Configuration>Debug</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug|x64">
+      <Configuration>Debug</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
     <ProjectConfiguration Include="Release|Win32">
       <Configuration>Release</Configuration>
       <Platform>Win32</Platform>
     </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|x64">
+      <Configuration>Release</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
   </ItemGroup>
   <PropertyGroup Label="Globals">
     <ProjectGuid>{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}</ProjectGuid>
@@ -28,12 +36,23 @@
     <UseDebugLibraries>true</UseDebugLibraries>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>true</UseDebugLibraries>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
     <ConfigurationType>StaticLibrary</ConfigurationType>
     <UseDebugLibraries>false</UseDebugLibraries>
     <WholeProgramOptimization>true</WholeProgramOptimization>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <UseDebugLibraries>false</UseDebugLibraries>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <CharacterSet>Unicode</CharacterSet>
+  </PropertyGroup>
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
   <ImportGroup Label="ExtensionSettings">
   </ImportGroup>
@@ -41,17 +60,31 @@
     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     <Import Project="..\global.props" />
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+  </ImportGroup>
   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     <Import Project="..\global.props" />
   </ImportGroup>
+  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="..\global.props" />
+  </ImportGroup>
   <PropertyGroup Label="UserMacros" />
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <TargetName>grpc_unsecure</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <TargetName>grpc_unsecure</TargetName>
+  </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <TargetName>grpc_unsecure</TargetName>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <TargetName>grpc_unsecure</TargetName>
+  </PropertyGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <ClCompile>
       <PrecompiledHeader>NotUsing</PrecompiledHeader>
@@ -65,6 +98,19 @@
       <GenerateDebugInformation>true</GenerateDebugInformation>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <ClCompile>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <Optimization>Disabled</Optimization>
+      <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <ClCompile>
       <WarningLevel>Level3</WarningLevel>
@@ -82,6 +128,23 @@
       <OptimizeReferences>true</OptimizeReferences>
     </Link>
   </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <ClCompile>
+      <WarningLevel>Level3</WarningLevel>
+      <PrecompiledHeader>NotUsing</PrecompiledHeader>
+      <Optimization>MaxSpeed</Optimization>
+      <FunctionLevelLinking>true</FunctionLevelLinking>
+      <IntrinsicFunctions>true</IntrinsicFunctions>
+      <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <SDLCheck>true</SDLCheck>
+    </ClCompile>
+    <Link>
+      <SubSystem>Windows</SubSystem>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <OptimizeReferences>true</OptimizeReferences>
+    </Link>
+  </ItemDefinitionGroup>
   <ItemGroup>
     <ClInclude Include="..\..\include\grpc\byte_buffer.h" />
     <ClInclude Include="..\..\include\grpc\byte_buffer_reader.h" />