[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Using raw to post data



   I see the following differences
   user-agent
   content-length
   expect:100-continue
   The content-length or 110 vs. 113 is where I'd start..
   That seems to imply that your XML is not the same.
   I wouldn't expect the user agent to be a factor, unless the service
   you're talking is weird and doesn't want to see that.� A quick check
   of HTTP API leads me to believe that there's currently no way to turn
   that off.
   The expect:100-continue is problematic.� If the service is handcoded
   to require it, you're going to have to make changed to HTTP API in
   order to support it.
   You might try turning it off in your C# program and see if the service
   fails as it's on by default
HttpWebRequest httpReq = GetHttpWebRequestForPost();
httpReq.ServicePoint.Expect100Continue = false;

   from
   [1]https://stackoverflow.com/questions/879120/supporting-the-expect-100
   -continue-header-with-asp-net-mvc
   Charles

   On Fri, Mar 6, 2015 at 1:28 PM, Michael Ryan <[2]michaelrtr@xxxxxxxxx>
   wrote:

     � �Ok...here's a wireshark of both a bad (coming from the IBMi)
     and a good
     � �(coming from my PC) transaction:
     � �Inline image 1
     � �Inline image 2
     � �What am I missing?
     � �On Wed, Mar 4, 2015 at 8:42 AM, Michael Ryan
     <[1][3]michaelrtr@xxxxxxxxx>
     � �wrote:
     � �Ignore that last message. I changed it to https in an attempt
     to flail
     � �at a solution, and forgot I had changed it.
     � �Back to my previously reported problem.
     � �On Wed, Mar 4, 2015 at 8:23 AM, Michael Ryan
     <[2][4]michaelrtr@xxxxxxxxx>
     � �wrote:
     � �What!? Now I'm getting this:
     � �(GSKit) Peer not recognized or badly formatted message
     received.
     � �Why would this start popping up?
     � �On Tue, Mar 3, 2015 at 2:15 PM, Scott Klement
     <[3][5]sk@xxxxxxxxxxxxxxxx>
     � �wrote:
     � � �The error on comm_read() is occurring because the session
     has been
     � � �disconnected.�  (Whether intentionally or not I don't
     know...)�  �I
     � � �don't really think a trace (wireshark or otherwise) is going
     to be
     � � �very helpful, here.
     � � �What's helpful is knowing exactly what the "working" version
     is
     � � �sending so we can try to replicate it with HTTPAPI.
     � � �On 3/3/2015 11:43 AM, Michael Ryan wrote:
     � � ��  �  Thanks Scott. I should be able to set up a span port
     tomorrow
     � � �and get
     � � ��  �  the IBMi, a PC, and the device so I can trace all
     the traffic
     � � �to and
     � � ��  �  from the device.
     � � ��  �  I know HTTPAPI gets an error at comm_read, but it
     certainly
     � � �could be
     � � ��  �  something that happens prior to that. I do see
     Communication
     � � �Error
     � � ��  �  flash on the device screen quickly, so I'm not
     invoking
     � � �something
     � � ��  �  correctly.
     � � ��  �  On Tue, Mar 3, 2015 at 12:33 PM, Scott Klement
     � � �<[1][4][6]sk@xxxxxxxxxxxxxxxx>
     � � ��  �  wrote:
     � � ��  �  �  Mike,
     � � ��  �  �  The wireshark trace from the PC might be
     useful.��     � � �(Don't need one
     � � ��  �  �  from the IBM i, the HTTPAPI debug file should
     have
     � � �everything
     � � ��  �  �  needed, there.)
     � � ��  �  �  -SK
     � � ��  �  �  On 3/3/2015 11:02 AM, Michael Ryan wrote:
     � � ��  �  �  ��  ��  I have the source for this code,
     so I'll have
     � � �to dig through
     � � ��  �  �  and see
     � � ��  �  �  ��  ��  what it provides.
     � � ��  �  �  ��  ��  I may be able to circle in a
     developer at the
     � � �vendor.
     � � ��  �  �  ��  ��  I *do* have a Wireshark trace that
     they sent
     � � �me, and one that
     � � ��  �  �  I
     � � ��  �  �  ��  ��  generated from my PC (which was
     successful).
     � � ��  �  �  ��  ��  I also have an IBMi trace (done
     with TRCCNN)
     � � �that's showing
     � � ��  �  �  the HTTP
     � � ��  �  �  ��  ��  headers and the XML payload.
     � � ��  �  �  ��  ��  On Tue, Mar 3, 2015 at 11:52 AM,
     Scott Klement
     � � ��  �  �  <[1][2][5][7]sk@xxxxxxxxxxxxxxxx>

   � ��  �  ��  ��  wrote:
   � ��  �  ��  ��  ��  Mike,
   � ��  �  ��  ��  ��  Did they give you the values of these
   � �variables?
   � ��  �  ��  ��  ��  xmlInput = request.Text;
   � ��  �  ��  ��  ��  url.Text
   � ��  �  ��  ��  ��  httpRequest.ContentType =
   contentType.Text;
   � ��  �  ��  ��  On 3/3/2015 10:24 AM, Michael Ryan wrote:
   � ��  �  ��  ��  ���  ���  This is how it's being
   done in C#.
   � �Does this shed any
   � ��  �  light?
   � ��  �  ��  ��  thanks!
   � ��  �  ��  ��  ���  ���  ����
   ����  ����   � �� � private string
   � ��  �  httpPost()
   � ��  �  ��  ��  ���  ���  � � � � � �
   ����   � �{
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ���
   � ��  �  HttpWebRequest
   � ��  �  ��  ��  httpRequest;
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ���
   � ��  �  HttpWebResponse
   � ��  �  ��  ��  httpResponse;
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ���
   � ��  �  Stream
   � ��  �  ��  ��  httpPostStream;
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ���
   � ��  �  BinaryReader
   � ��  �  ��  ��  httpResponseStream;
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ���
   � ��  �  Byte[] postBytes;
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ���
   � ��  �  string xmlInput;
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ���
   � ��  �  Byte[] response;
   � ��  �  ��  ��  ���  ���  �
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ��
   � ��  �  ��  ��  ServicePointManager.SecurityProtocol =
   � ��  �  ��  ��  ���  ���
   SecurityProtocolType.Ssl3;
   � ��  �  ��  ��  ���  ���  �
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� �
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� � �
   � ��  �  xmlInput =
   � ��  �  ��  ��  request.Text;//.Replace("\r",
   � ��  �  ��  ��  ���  ���  "\r\n") + '\n' + '\r';
   � ��  �  ��  ��  ���  ���  �
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ���
   � ��  �  httpRequest =
   � ��  �  ��  ��  ���  ���   � �(HttpWebRequest)WebRequest.CreateDefault(new
   � ��  �  Uri(url.Text));
   � ��  �  ��  ��  ���  ���  � � � �
   � ��  �  ��  ��  ���  ���  �
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ��
   � ��  �  ��  ��  httpRequest.KeepAlive = persist.Checked;
   � ��  �  ��  ��  ���  ���  �
   � ��  �  ��  ��  ���  ���  �
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ���
   � ��  �  httpRequest.Method
   � ��  �  ��  ��  = "POST";
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� �
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� � �
   � ��  �  ��  ��  httpRequest.Proxy.Credentials =
   � ��  �  ��  ��  ���  ���   � �System.Net.CredentialCache.DefaultCredentials;
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ���
   � ��  �  postBytes =
   � ��  �  ��  ��  Encoding.UTF8.GetBytes(xmlInput);
   � ��  �  ��  ��  ���  ���  �
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ��
   � ��  �  ��  ��  httpRequest.ContentLength =
   postBytes.Length;
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ��
   � ��  �  ��  ��  httpRequest.ContentType = contentType.Text;
   � ��  �  ��  ��  ���  ���  �
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ���
   � ��  �  httpPostStream =
   � ��  �  ��  ��  httpRequest.GetRequestStream();
   � ��  �  ��  ��  ���  ���  �
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ��
   � ��  �  ��  ��  httpPostStream.Write(postBytes, 0,
   � ��  �  ��  ��  ���  ���  postBytes.Length);
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� � �
   � ��  �  ��  ��  httpPostStream.Close();
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ���
   � ��  �  httpResponse =
   � ��  �  ��  ��  ���  ���   � �(HttpWebResponse)httpRequest.GetResponse();
   � ��  �  ��  ��  ���  ���  �
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ���
   � ��  �  httpResponseStream
   � ��  �  ��  ��  = new
   � ��  �  ��  ��  ���  ���   � �BinaryReader(httpResponse.GetResponseStream(),
   � ��  �  Encoding.ASCII);
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ����  int
   � ��  �  lengthToRead =
   � ��  �  ��  ��  int.Parse(packetLength.Text);
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ����  if
   � ��  �  (lengthToRead ==
   � ��  �  ��  ��  0)
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� � � �
   � ��  �  � ��
   � ��  �  ��  ��  lengthToRead =
   � ��  �  ��  ��  ���  ���
   (Int32)httpResponse.ContentLength;
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ���
   � ��  �  response =
   � ��  �  ��  ��  ���  ���   � �httpResponseStream.ReadBytes(lengthToRead);
   � ��  �  ��  ��  ���  ���  � � � � � �
   � � �
   � �� ���
   � ��  �  return
   � ��  �  ��  ��  ���  ���   � �System.Text.Encoding.ASCII.GetString(response);
   � ��  �  ��  ��  ���  ���  � � � � � �
   ����   � �}
   � ��  �  ��  ��  ���  ���  On Tue, Mar 3, 2015 at
   10:49 AM,
   � �Charles Wilt
   � � ��  �  �  ��  ��  ��  ���  ���
   � � �<[1][2][3][6][8]charles.wilt@xxxxxxxxx> wrote:
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �� As Paul points out,
   � � ��  �  �  wireshark by itself can only
   � � ��  �  �  ��  ��  ��  capture data
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   to/from
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �� your PC.
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �� You might be able to
   � � ��  �  �  reconfigure your network
   � � ��  �  �  ��  ��  ��  switch to
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   duplicate
   � � �other
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �� traffic to your PC.
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �� However, easier just to
   � � ��  �  �  start a comm trace on
   � � ��  �  �  ��  ��  ��  your IBM i to
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   capture the
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �� packets it is sending.
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �� Charles
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �� On Tue, Mar 3, 2015 at 9:26
   � � ��  �  �  AM, Michael Ryan
   � � ��  �  �  ��  ��  ��  ���  ���  ���
     � � �<[1][2][3][4][7][9]michaelrtr@xxxxxxxxx>

   � ��  �  ��  ��  ��  ���  ���  ���
   ����  �
   � �wrote:
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � �����  �
   � ��  �  Ok...I'm using Wireshark to
   � ��  �  ��  ��  ��  capture the packets, but I
   � ��  �  ��  ��  ��  ���  ���  ���  seem to
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � be
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � �����  � having
   � ��  �  problems. There's a
   � ��  �  ��  ��  ��  test program that runs on
   � ��  �  ��  ��  ��  ���  ���  ���  my PC.
   I'm
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � able to
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � �����  �
   � ��  �  capture and display the
   � ��  �  ��  ��  ��  packets between my PC and the
   � ��  �  ��  ��  ��  ���  ���  ���  device.
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � That
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � �����  �
   � ��  �  process works, and the packets
   � ��  �  ��  ��  ��  are what I expect.�
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � �����  � I'm
   � ��  �  having a problem
   � ��  �  ��  ��  ��  specifying two different hosts
   � ��  �  ��  ��  ��  ���  ���  ���  (the
   IBMi
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � and the
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � �����  �
   � ��  �  device) for either capturing
   � ��  �  ��  ��  ��  just those packets
   � ��  �  ��  ��  ��  ���  ���  ���
   (capture
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � filter) or
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � �����  �
   � ��  �  displaying just those packets
   � ��  �  ��  ��  ��  (display filter). Any
   � ��  �  ��  ��  ��  ���  ���  ���  ideas?
   What
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � do I
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � �����  � need
   � ��  �  to specify for capture
   � ��  �  ��  ��  ��  and/or display filters to
   � ��  �  ��  ��  ��  ���  ���  ���  see all
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � the
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � �����  �
   � ��  �  packets on the network that
   � ��  �  ��  ��  ��  are between these two IP
   � ��  �  ��  ��  ��  ���  ���  ���
   addresses?
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � �����  �
   � ��  �  Thanks!
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � �����  � On
   � ��  �  Mon, Mar 2, 2015 at 2:14
   � ��  �  ��  ��  ��  PM, Michael Ryan
   � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � �����  �

     � � ��  �  �  <[1][2][3][4][5][8][10]michaelrtr@xxxxxxxxx>
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � �����  �
     � � ��  �  �  wrote:
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � �����  � All
     � � ��  �  �  good thoughts Mike. I plan
     � � ��  �  �  ��  ��  ��  on getting the traces
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  tomorrow
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � with
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � �����  �
     � � ��  �  �  Wireshark. I'll share what I
     � � ��  �  �  ��  ��  ��  get in hopes you all can
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  help!
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � Thanks!
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � �����  � On
     � � ��  �  �  Mon, Mar 2, 2015 at 2:01
     � � ��  �  �  ��  ��  ��  PM, Mike Krebs
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � �����  �
     � ��  �  ��  ��  ��
     <[2][3][4][5][6][9][11]mkrebs@xxxxxxxxxxxxxxxxxx>

   � �wrote:
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � ����
   � ��  �  �����  � Do you have the C#
   � ��  �  ��  ��  ��  code running? Or are you using
   � ��  �  ��  ��  ��  ���  ���  ���  it as
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � template to
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � ����
   � ��  �  �����  � work from? If you
   � ��  �  ��  ��  ��  have working code and are not
   � ��  �  ��  ��  ��  ���  ���  ���  sure of
   the
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � ����
   � ��  �  �����  � parameters, then
   � ��  �  ��  ��  ��  wireshark is probably a good
   � ��  �  ��  ��  ��  ���  ���  ���   � �idea.������  If it
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � is just
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � ����
   � ��  �  �����  � a template, share the
   � ��  �  ��  ��  ��  C# code if you can and one
   � ��  �  ��  ��  ��  ���  ���  ���  of the
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � ����
   � ��  �  �����  � multi-lingual
   � ��  �  ��  ��  ��  programmers will help interpret.
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � ����
   � ��  �  �����  � Considering it
   � ��  �  ��  ��  ��  appears to be some sort of error
   � ��  �  ��  ��  ��  ���  ���  ���  with
   the
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � ����
   � ��  �  �����  � communication, I
   � ��  �  ��  ��  ��  would go back to the "am I
   � ��  �  ��  ��  ��  ���  ���  ���  hitting
   a valid
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � url?"
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � ����
   � ��  �  �����  � question. And that,
   � ��  �  ��  ��  ��  the wireshark will help with.
   � ��  �  ��  ��  ��  ���  ���  ���  You
   should
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � clearly
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � ����
   � ��  �  �����  � see the POST
   � ��  �  ��  ��  ��  information being sent in the
   � ��  �  ��  ��  ��  ���  ���  ���
   wireshark.
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � ����
   � ��  �  �����  � Since appears to be a
   � ��  �  ��  ��  ��  credit/debit system, I
   � ��  �  ��  ��  ��  ���  ���  ���  assume
   the data
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � itself
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � ����
   � ��  �  �����  � is going to be
   � ��  �  ��  ��  ��  encrypted by TLS in the wireshark.
   � ��  �  ��  ��  ��  ���  ���  ���  So,
   that
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � is not
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � ����
   � ��  �  �����  � going to be much
   � ��  �  ��  ��  ��  help.
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � ����
   � ��  �  �����  � Should your URL be
   � ��  �  ��  ��  ��  https:?
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � ����
   � ��  �  �����  � -----Original
   � ��  �  ��  ��  ��  Message-----
   � ��  �  ��  ��  ��  ���  ���  ���
   ����   � �����  � ����
   � ��  �  �����  � From:
   � ��  �  �  ��  ��  ��  ���  ���  ��

     � � ��  �  �
     [3][4][5][6][7][10][12]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � ����
     � � ��  �  �  �����  �
     � � ��  �  �  ��  ��  ��  ���  ���  ��
     � � ��  �  �     � �     �[mailto:[4][5][6][7][8][11][13]ftpapi-bounces@lists.scottklement.c
     om]

   � � ��  �  �  ��  ��  ��  On
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � Behalf Of
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � ����
   � � ��  �  �  �����  � Michael Ryan
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � ����
   � � ��  �  �  �����  � Sent: Monday, March
   � � ��  �  �  ��  ��  ��  2, 2015 11:07 AM
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � ����
   � � ��  �  �  �����  � To: HTTPAPI and
   � � ��  �  �  ��  ��  ��  FTPAPI Projects
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � ����
   � � ��  �  �  �����  � Subject: Re: Using
   � � ��  �  �  ��  ��  ��  raw to post data
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  Ok...I'm getting a -1 here in
   � � ��  �  �  ��  ��  ��  recvresp:
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  eval������  ����
   � � ��  �  �  ��  ��  ��  ������  wwRec =
   comm_lineread(
   � � �peComm
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  ������  ����
   � � ��  �  �  ��  ��  ��  ������
   ������   � � �������  �����
   � � ��  �  �  ����
   � � ��  �  �  ��  ��  ��  ������
   ������   � � �������  ���
   � � ��  �  �  ��  ��  ��  ���  ���  ���   � � �������  �����
   � � ��  �  �  ������  ������  � :
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � wwPos
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  ������  ����
   � � ��  �  �  ��  ��  ��  ������
   ������   � � �������  �����
   � � ��  �  �  ����
   � � ��  �  �  ��  ��  ��  ������
   ������   � � �������  ���
   � � ��  �  �  ��  ��  ��  ���  ���  ���   � � �������  �����
   � � ��  �  �  ������  ������  � :
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � wwLeft
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  ������  ����
   � � ��  �  �  ��  ��  ��  ������
   ������   � � �������  �����
   � � ��  �  �  ����
   � � ��  �  �  ��  ��  ��  ������
   ������   � � �������  ���
   � � ��  �  �  ��  ��  ��  ���  ���  ���   � � �������  �����
   � � ��  �  �  ������  ������  � :
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � peTimeout )
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  � It
   � � ��  �  �  then throws the
   � � ��  �  �  ��  ��  ��  'recvresp(): end with err
   message.
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  Wireshark is my option?
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  Thanks...
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  � On
   � � ��  �  �  Fri, Feb 27, 2015 at 4:30
   � � ��  �  �  ��  ��  ��  PM, Charles Wilt
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  ��  ��  ��
     � � �<[5][6][7][8][9][12][14]charles.wilt@xxxxxxxxx>

   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  wrote:
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  >������  ������  The
   � � ��  �  �  ��  ��  ��  C# code might be helpful...
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  >������  ������  I'd
   � � ��  �  �  ��  ��  ��  guess if it's doing a HTTP
   post, you'll
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   be able to
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � use HTTP
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  API...
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  >������  ������  The
   � � ��  �  �  ��  ��  ��  wireshark capture certainly
   will.
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  >������  ����
   � � ��  �  �  ��  ��  ��  Charles
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  >������  ������  On
   � � ��  �  �  ��  ��  ��  Fri, Feb 27, 2015 at 3:37 PM,
   Michael
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   Ryan
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  ��  ��  ��
     � � �<[1][6][7][8][9][10][13][15]michaelrtr@xxxxxxxxx>

   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  >������  ����
   � � ��  �  �  ��  ��  ��  wrote:
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  � >
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  >������  ����
   � � ��  �  �  ��  ��  ��  ������
   �������   � � �� I think you're right.
   � � ��  �  �  I just
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   asked them for
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � what is
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  actually
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  >������  ����
   � � ��  �  �  ��  ��  ��  ������  sent and
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  >������  ����
   � � ��  �  �  ��  ��  ��  ������
   �������   � � �� received by the
   � � ��  �  �  device, and
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   they gave me
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � some C# code
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  (with
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  >������  ����
   � � ��  �  �  ��  ��  ��  ������  does do an
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  >������  ����
   � � ��  �  �  ��  ��  ��  ������
   �������   � � �� HTTP POST) and the
   � � ��  �  �  XML.
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  � >
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  � >
   � � ��  �  �  References
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  � >
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  >������  ������  1.
   � � ��  �  �  ��  ��  ��
     � � �mailto:[7][8][9][10][11][14][16]michaelrtr@xxxxxxxxx

   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  � >
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  � >
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �
   � � ��  �  �  ��  ��  ��  ���  ���  �
   � � ��  �  �  ��  ��  �
   � � ��  �  �   � �   �------------------------------------------------------------------
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � ----
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � ����
   � � ��  �  �  �����  � > - This is the
   � � ��  �  �  ��  ��  ��  FTPAPI mailing
   list.������  To
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   unsubscribe,
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � please go to:
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  � >
   � � ��  �  �  ��  ��  ��  ���  ���  �
   � � ��  �  �  ��  ��  �
   � � ��  �  �
     � �     �[8][9][10][11][12][15][17]http://www.scottklement.com/mailman/list
     info/f

   � � �tpap
   � � ��  �  �  i
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  � >
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �
   � � ��  �  �  ��  ��  ��  ���  ���  �
   � � ��  �  �  ��  ��  �
   � � ��  �  �   � �   �------------------------------------------------------------------
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � ----
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  � > -
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  � >
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  � >
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �
   � � ��  �  �  ��  ��  ��  ���  ���  �
   � � ��  �  �  ��  ��  �
   � � ��  �  �   � �   �------------------------------------------------------------------
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � -----
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  This is the FTPAPI mailing
   � � ��  �  �  ��  ��  ��  list.������  To
   unsubscribe,
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   please go
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � to:
   � � ��  �  �  ��  ��  ��  ���  ���  ���
   ����   � � �����  � �����  �
   � � ��  �  �  ��  ��  ��  ���  ���  �
   � � ��  �  �  ��  ��  �
   � � ��  �  �
     � �     �[9][10][11][12][13][16][18]http://www.scottklement.com/mailman/lis
     tinfo/
     � � �ftpa
     � � ��  �  �  pi
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � �
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � �
     � � ��  �  �  ��  ��  ��  ���  ���  �
     � � ��  �  �  ��  ��  �
     � � ��  �  �     � �     �------------------------------------------------------------------
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � -----
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � References
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � �����  � 1.
     � � ��  �  �  ��  ��  ��     � � �mailto:[11][12][13][14][17][19]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � �����  � 2.
     � � ��  �  �  ��  ��  ��     � � �mailto:[12][13][14][15][18][20]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � �����  � 3.
     � � ��  �  �  ��  ��  ��  ���  ���  ��
     � � ��  �  �     � �     �mailto:[13][14][15][16][19][21]ftpapi-bounces@lists.scottklement.c
     om
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � �����  � 4.
     � � ��  �  �  ��  ��  ��  ���  ���  ��
     � � ��  �  �     � �     �mailto:[14][15][16][17][20][22]ftpapi-bounces@lists.scottklement.c
     om
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � �����  � 5.
     � � ��  �  �  ��  ��  ��     � � �mailto:[15][16][17][18][21][23]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � �����  � 6.
     � � ��  �  �  ��  ��  ��     � � �mailto:[16][17][18][19][22][24]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � �����  � 7.
     � � ��  �  �  ��  ��  ��     � � �mailto:[17][18][19][20][23][25]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � �����  � 8.
     � � ��  �  �  ��  ��  ��  ���  ���  �
     � � ��  �  �  ��  ��  �
     � � ��  �  �     � �     �[18][19][20][21][24][26]http://www.scottklement.com/mailman/listin
     fo/ftp
     � � �api
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � �����  � 9.
     � � ��  �  �  ��  ��  ��  ���  ���  �
     � � ��  �  �  ��  ��  �
     � � ��  �  �     � �     �[19][20][21][22][25][27]http://www.scottklement.com/mailman/listin
     fo/ftp
     � � �api
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � ��
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  �
     � � ��  �  �  ��  ��  �
     � � ��  �  �     � �     �------------------------------------------------------------------
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  --
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � ---
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � This is the FTPAPI
     � � ��  �  �  mailing list.�����  To
     � � ��  �  �  ��  ��  ��  unsubscribe, please
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  go to:
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  �
     � � ��  �  �  ��  ��  �
     � � ��  �  �     � �     �[20][21][22][23][26][28]http://www.scottklement.com/mailman/listin
     fo/ftp
     � � �api
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � ��
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  �
     � � ��  �  �  ��  ��  �
     � � ��  �  �     � �     �------------------------------------------------------------------
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  --
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �����  � ---
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  References
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �� 1.
     � � ��  �  �  mailto:[22][23][24][27][29]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �� 2.
     � � ��  �  �  mailto:[23][24][25][28][30]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �� 3.
     � � ��  �  �
     mailto:[24][25][26][29][31]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �� 4.
     � � ��  �  �  ��  ��  ��     � �     �mailto:[25][26][27][30][32]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �� 5.
     � � ��  �  �  ��  ��  ��     � �     �mailto:[26][27][28][31][33]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �� 6.
     � � ��  �  �
     mailto:[27][28][29][32][34]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �� 7.
     � � ��  �  �  mailto:[28][29][30][33][35]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �� 8.
     � � ��  �  �  mailto:[29][30][31][34][36]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �� 9.
     � � ��  �  �  ��  ��  �
     � � ��  �  �     � �     �[30][31][32][35][37]http://www.scottklement.com/mailman/listinfo/f
     tpapi
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �10.
     � � ��  �  �  ��  ��  �
     � � ��  �  �     � �     �[31][32][33][36][38]http://www.scottklement.com/mailman/listinfo/f
     tpapi
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �11.
     � � ��  �  �  mailto:[32][33][34][37][39]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �12.
     � � ��  �  �
     mailto:[33][34][35][38][40]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �13.
     � � ��  �  �  ��  ��  ��     � �     �mailto:[34][35][36][39][41]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �14.
     � � ��  �  �  ��  ��  ��     � �     �mailto:[35][36][37][40][42]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �15.
     � � ��  �  �
     mailto:[36][37][38][41][43]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �16.
     � � ��  �  �  mailto:[37][38][39][42][44]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �17.
     � � ��  �  �  mailto:[38][39][40][43][45]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �18.
     � � ��  �  �  ��  ��  �
     � � ��  �  �     � �     �[39][40][41][44][46]http://www.scottklement.com/mailman/listinfo/f
     tpapi
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �19.
     � � ��  �  �  ��  ��  �
     � � ��  �  �     � �     �[40][41][42][45][47]http://www.scottklement.com/mailman/listinfo/f
     tpapi
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ����     � � �20.
     � � ��  �  �  ��  ��  �
     � � ��  �  �     � �     �[41][42][43][46][48]http://www.scottklement.com/mailman/listinfo/f
     tpapi
     � � ��  �  �  ��  ��  ��  ���  ���  �
     � � ��  �  �  ��  ��  �
     � � ��  �  �     � �     �------------------------------------------------------------------
     --
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ---
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  This is the
     � � �FTPAPI mailing list.���
     � � ��  �  �  To unsubscribe,
     � � ��  �  �  ��  ��  ��  please go to:
     � � ��  �  �  ��  ��  ��  ���  ���  ��
     � � ��  �  �     � �     �[42][43][44][47][49]http://www.scottklement.com/mailman/listinfo/f
     tpapi
     � � ��  �  �  ��  ��  ��  ���  ���  �
     � � ��  �  �  ��  ��  �
     � � ��  �  �     � �     �------------------------------------------------------------------
     --
     � � ��  �  �  ��  ��  ��  ���  ���
     ���  ---
     � � ��  �  �  ��  ��  ��  References
     � � ��  �  �  ��  ��  ��  ���  ���  1.
     � � �mailto:[44][45][48][50]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���  2.
     � � �mailto:[45][46][49][51]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���  3.
     � � �mailto:[46][47][50][52]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���  4.
     � � �mailto:[47][48][51][53]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���  5.
     � � ��  �  �
     mailto:[48][49][52][54]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���  6.
     � � ��  �  �
     mailto:[49][50][53][55]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���  7.
     � � �mailto:[50][51][54][56]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���  8.
     � � �mailto:[51][52][55][57]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  ���  9.
     � � �mailto:[52][53][56][58]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 10.
     � � ��  �  �     � �     �[53][54][57][59]http://www.scottklement.com/mailman/listinfo/ftpap
     i
     � � ��  �  �  ��  ��  ��  ���  � 11.
     � � ��  �  �     � �     �[54][55][58][60]http://www.scottklement.com/mailman/listinfo/ftpap
     i
     � � ��  �  �  ��  ��  ��  ���  � 12.
     � � �mailto:[55][56][59][61]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 13.
     � � �mailto:[56][57][60][62]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 14.
     � � ��  �  �
     mailto:[57][58][61][63]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 15.
     � � ��  �  �
     mailto:[58][59][62][64]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 16.
     � � �mailto:[59][60][63][65]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 17.
     � � �mailto:[60][61][64][66]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 18.
     � � �mailto:[61][62][65][67]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 19.
     � � ��  �  �     � �     �[62][63][66][68]http://www.scottklement.com/mailman/listinfo/ftpap
     i
     � � ��  �  �  ��  ��  ��  ���  � 20.
     � � ��  �  �     � �     �[63][64][67][69]http://www.scottklement.com/mailman/listinfo/ftpap
     i
     � � ��  �  �  ��  ��  ��  ���  � 21.
     � � ��  �  �     � �     �[64][65][68][70]http://www.scottklement.com/mailman/listinfo/ftpap
     i
     � � ��  �  �  ��  ��  ��  ���  � 22.
     � � �mailto:[65][66][69][71]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 23.
     � � �mailto:[66][67][70][72]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 24.
     � � �mailto:[67][68][71][73]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 25.
     � � ��  �  �
     mailto:[68][69][72][74]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 26.
     � � ��  �  �
     mailto:[69][70][73][75]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 27.
     � � �mailto:[70][71][74][76]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 28.
     � � �mailto:[71][72][75][77]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 29.
     � � �mailto:[72][73][76][78]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 30.
     � � ��  �  �     � �     �[73][74][77][79]http://www.scottklement.com/mailman/listinfo/ftpap
     i
     � � ��  �  �  ��  ��  ��  ���  � 31.
     � � ��  �  �     � �     �[74][75][78][80]http://www.scottklement.com/mailman/listinfo/ftpap
     i
     � � ��  �  �  ��  ��  ��  ���  � 32.
     � � �mailto:[75][76][79][81]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 33.
     � � �mailto:[76][77][80][82]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 34.
     � � ��  �  �
     mailto:[77][78][81][83]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 35.
     � � ��  �  �
     mailto:[78][79][82][84]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 36.
     � � �mailto:[79][80][83][85]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 37.
     � � �mailto:[80][81][84][86]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 38.
     � � �mailto:[81][82][85][87]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  ��  ���  � 39.
     � � ��  �  �     � �     �[82][83][86][88]http://www.scottklement.com/mailman/listinfo/ftpap
     i
     � � ��  �  �  ��  ��  ��  ���  � 40.
     � � ��  �  �     � �     �[83][84][87][89]http://www.scottklement.com/mailman/listinfo/ftpap
     i
     � � ��  �  �  ��  ��  ��  ���  � 41.
     � � ��  �  �     � �     �[84][85][88][90]http://www.scottklement.com/mailman/listinfo/ftpap
     i
     � � ��  �  �  ��  ��  ��  ���  � 42.
     � � ��  �  �     � �     �[85][86][89][91]http://www.scottklement.com/mailman/listinfo/ftpap
     i
     � � ��  �  �  ��  ��  �
     � � ��  �  �     � �     �------------------------------------------------------------------
     --
     � � ��  �  �  ��  ��  ��  ---
     � � ��  �  �  ��  ��  ��  This is the FTPAPI mailing
     list.���     � � �To unsubscribe,
     � � ��  �  �  please go to:
     � � ��  �  �  ��  ��  ��     � �     �[86][87][90][92]http://www.scottklement.com/mailman/listinfo/ftpap
     i
     � � ��  �  �  ��  ��  �
     � � ��  �  �     � �     �------------------------------------------------------------------
     --
     � � ��  �  �  ��  ��  ��  ---
     � � ��  �  �  ��  �
     � � ��  �  �     � �     �------------------------------------------------------------------
     --
     � � ��  �  �  ---
     � � ��  �  �  ��  ��  This is the FTPAPI mailing
     list.���  To
     � � �unsubscribe, please
     � � ��  �  �  go to:
     � � ��  �  �  ��  ��     � �     �[87][88][91][93]http://www.scottklement.com/mailman/listinfo/ftpap
     i
     � � ��  �  �  ��  �
     � � ��  �  �     � �     �------------------------------------------------------------------
     --
     � � ��  �  �  ---
     � � ��  �  �  References
     � � ��  �  �  ��  ��  1.
     mailto:[89][92][94]sk@xxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  2.
     mailto:[90][93][95]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  ��  3.
     mailto:[91][94][96]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  4.
     mailto:[92][95][97]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  ��  5.
     mailto:[93][96][98]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  6.
     � � �mailto:[94][97][99]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  7.
     � � �mailto:[95][98][100]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  ��  8.
     mailto:[96][99][101]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  ��  9.
     mailto:[97][100][102]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 10.
     mailto:[98][101][103]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 11.
     � �     �[99][102][104]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 12.
     � �     �[100][103][105]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 13.
     mailto:[101][104][106]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 14.
     mailto:[102][105][107]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 15.
     � � �mailto:[103][106][108]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 16.
     � � �mailto:[104][107][109]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 17.
     mailto:[105][108][110]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  � 18.
     mailto:[106][109][111]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 19.
     mailto:[107][110][112]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 20.
     � �     �[108][111][113]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 21.
     � �     �[109][112][114]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 22.
     � �     �[110][113][115]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 23.
     mailto:[111][114][116]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 24.
     mailto:[112][115][117]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 25.
     mailto:[113][116][118]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 26.
     � � �mailto:[114][117][119]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 27.
     � � �mailto:[115][118][120]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 28.
     mailto:[116][119][121]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  � 29.
     mailto:[117][120][122]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 30.
     mailto:[118][121][123]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 31.
     � �     �[119][122][124]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 32.
     � �     �[120][123][125]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 33.
     mailto:[121][124][126]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 34.
     mailto:[122][125][127]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 35.
     � � �mailto:[123][126][128]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 36.
     � � �mailto:[124][127][129]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 37.
     mailto:[125][128][130]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  � 38.
     mailto:[126][129][131]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 39.
     mailto:[127][130][132]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 40.
     � �     �[128][131][133]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 41.
     � �     �[129][132][134]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 42.
     � �     �[130][133][135]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 43.
     � �     �[131][134][136]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 44.
     mailto:[132][135][137]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  � 45.
     mailto:[133][136][138]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 46.
     mailto:[134][137][139]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 47.
     mailto:[135][138][140]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 48.
     � � �mailto:[136][139][141]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 49.
     � � �mailto:[137][140][142]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 50.
     mailto:[138][141][143]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  � 51.
     mailto:[139][142][144]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 52.
     mailto:[140][143][145]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 53.
     � �     �[141][144][146]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 54.
     � �     �[142][145][147]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 55.
     mailto:[143][146][148]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 56.
     mailto:[144][147][149]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 57.
     � � �mailto:[145][148][150]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 58.
     � � �mailto:[146][149][151]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 59.
     mailto:[147][150][152]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  � 60.
     mailto:[148][151][153]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 61.
     mailto:[149][152][154]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 62.
     � �     �[150][153][155]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 63.
     � �     �[151][154][156]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 64.
     � �     �[152][155][157]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 65.
     mailto:[153][156][158]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 66.
     mailto:[154][157][159]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 67.
     mailto:[155][158][160]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 68.
     � � �mailto:[156][159][161]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 69.
     � � �mailto:[157][160][162]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 70.
     mailto:[158][161][163]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  � 71.
     mailto:[159][162][164]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 72.
     mailto:[160][163][165]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 73.
     � �     �[161][164][166]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 74.
     � �     �[162][165][167]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 75.
     mailto:[163][166][168]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 76.
     mailto:[164][167][169]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 77.
     � � �mailto:[165][168][170]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 78.
     � � �mailto:[166][169][171]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  �  ��  � 79.
     mailto:[167][170][172]charles.wilt@xxxxxxxxx
     � � ��  �  �  ��  � 80.
     mailto:[168][171][173]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 81.
     mailto:[169][172][174]michaelrtr@xxxxxxxxx
     � � ��  �  �  ��  � 82.
     � �     �[170][173][175]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 83.
     � �     �[171][174][176]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 84.
     � �     �[172][175][177]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 85.
     � �     �[173][176][178]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 86.
     � �     �[174][177][179]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �  ��  � 87.
     � �     �[175][178][180]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �     � �     �------------------------------------------------------------------
     --
     � � ��  �  �  ---
     � � ��  �  �  This is the FTPAPI mailing list.��  To
     unsubscribe,
     � � �please go to:
     � � ��  �  �     � �     �[176][179][181]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �  �     � �     �------------------------------------------------------------------
     --
     � � ��  �  �  ---
     � � ��  �     � �     �------------------------------------------------------------------
     --
     � � �---
     � � ��  �  This is the FTPAPI mailing list.��  To
     unsubscribe, please
     � � �go to:
     � � ��  �
     [177][180][182]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �     � �     �------------------------------------------------------------------
     --
     � � �---
     � � �References
     � � ��  �  1. mailto:[181][183]sk@xxxxxxxxxxxxxxxx
     � � ��  �  2. mailto:[182][184]sk@xxxxxxxxxxxxxxxx
     � � ��  �  3. mailto:[183][185]charles.wilt@xxxxxxxxx
     � � ��  �  4. mailto:[184][186]michaelrtr@xxxxxxxxx
     � � ��  �  5. mailto:[185][187]michaelrtr@xxxxxxxxx
     � � ��  �  6. mailto:[186][188]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �  7.
     mailto:[187][189]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  8.
     mailto:[188][190]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �  9. mailto:[189][191]charles.wilt@xxxxxxxxx
     � � ��  �10. mailto:[190][192]michaelrtr@xxxxxxxxx
     � � ��  �11. mailto:[191][193]michaelrtr@xxxxxxxxx
     � � ��  �12.
     [192][194]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �13.
     [193][195]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �14. mailto:[194][196]michaelrtr@xxxxxxxxx
     � � ��  �15. mailto:[195][197]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �16.
     mailto:[196][198]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �17.
     mailto:[197][199]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �18. mailto:[198][200]charles.wilt@xxxxxxxxx
     � � ��  �19. mailto:[199][201]michaelrtr@xxxxxxxxx
     � � ��  �20. mailto:[200][202]michaelrtr@xxxxxxxxx
     � � ��  �21.
     [201][203]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �22.
     [202][204]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �23.
     [203][205]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �24. mailto:[204][206]michaelrtr@xxxxxxxxx
     � � ��  �25. mailto:[205][207]michaelrtr@xxxxxxxxx
     � � ��  �26. mailto:[206][208]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �27.
     mailto:[207][209]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �28.
     mailto:[208][210]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �29. mailto:[209][211]charles.wilt@xxxxxxxxx
     � � ��  �30. mailto:[210][212]michaelrtr@xxxxxxxxx
     � � ��  �31. mailto:[211][213]michaelrtr@xxxxxxxxx
     � � ��  �32.
     [212][214]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �33.
     [213][215]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �34. mailto:[214][216]michaelrtr@xxxxxxxxx
     � � ��  �35. mailto:[215][217]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �36.
     mailto:[216][218]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �37.
     mailto:[217][219]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �38. mailto:[218][220]charles.wilt@xxxxxxxxx
     � � ��  �39. mailto:[219][221]michaelrtr@xxxxxxxxx
     � � ��  �40. mailto:[220][222]michaelrtr@xxxxxxxxx
     � � ��  �41.
     [221][223]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �42.
     [222][224]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �43.
     [223][225]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �44.
     [224][226]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �45. mailto:[225][227]charles.wilt@xxxxxxxxx
     � � ��  �46. mailto:[226][228]michaelrtr@xxxxxxxxx
     � � ��  �47. mailto:[227][229]michaelrtr@xxxxxxxxx
     � � ��  �48. mailto:[228][230]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �49.
     mailto:[229][231]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �50.
     mailto:[230][232]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �51. mailto:[231][233]charles.wilt@xxxxxxxxx
     � � ��  �52. mailto:[232][234]michaelrtr@xxxxxxxxx
     � � ��  �53. mailto:[233][235]michaelrtr@xxxxxxxxx
     � � ��  �54.
     [234][236]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �55.
     [235][237]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �56. mailto:[236][238]michaelrtr@xxxxxxxxx
     � � ��  �57. mailto:[237][239]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �58.
     mailto:[238][240]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �59.
     mailto:[239][241]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �60. mailto:[240][242]charles.wilt@xxxxxxxxx
     � � ��  �61. mailto:[241][243]michaelrtr@xxxxxxxxx
     � � ��  �62. mailto:[242][244]michaelrtr@xxxxxxxxx
     � � ��  �63.
     [243][245]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �64.
     [244][246]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �65.
     [245][247]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �66. mailto:[246][248]michaelrtr@xxxxxxxxx
     � � ��  �67. mailto:[247][249]michaelrtr@xxxxxxxxx
     � � ��  �68. mailto:[248][250]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �69.
     mailto:[249][251]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �70.
     mailto:[250][252]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �71. mailto:[251][253]charles.wilt@xxxxxxxxx
     � � ��  �72. mailto:[252][254]michaelrtr@xxxxxxxxx
     � � ��  �73. mailto:[253][255]michaelrtr@xxxxxxxxx
     � � ��  �74.
     [254][256]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �75.
     [255][257]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �76. mailto:[256][258]michaelrtr@xxxxxxxxx
     � � ��  �77. mailto:[257][259]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �78.
     mailto:[258][260]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �79.
     mailto:[259][261]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �80. mailto:[260][262]charles.wilt@xxxxxxxxx
     � � ��  �81. mailto:[261][263]michaelrtr@xxxxxxxxx
     � � ��  �82. mailto:[262][264]michaelrtr@xxxxxxxxx
     � � ��  �83.
     [263][265]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �84.
     [264][266]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �85.
     [265][267]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �86.
     [266][268]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �87.
     [267][269]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �88.
     [268][270]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  �89. mailto:[269][271]sk@xxxxxxxxxxxxxxxx
     � � ��  �90. mailto:[270][272]charles.wilt@xxxxxxxxx
     � � ��  �91. mailto:[271][273]michaelrtr@xxxxxxxxx
     � � ��  �92. mailto:[272][274]michaelrtr@xxxxxxxxx
     � � ��  �93. mailto:[273][275]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  �94.
     mailto:[274][276]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �95.
     mailto:[275][277]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  �96. mailto:[276][278]charles.wilt@xxxxxxxxx
     � � ��  �97. mailto:[277][279]michaelrtr@xxxxxxxxx
     � � ��  �98. mailto:[278][280]michaelrtr@xxxxxxxxx
     � � ��  �99.
     [279][281]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  100.
     [280][282]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  101. mailto:[281][283]michaelrtr@xxxxxxxxx
     � � ��  102. mailto:[282][284]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  103.
     mailto:[283][285]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  104.
     mailto:[284][286]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  105. mailto:[285][287]charles.wilt@xxxxxxxxx
     � � ��  106. mailto:[286][288]michaelrtr@xxxxxxxxx
     � � ��  107. mailto:[287][289]michaelrtr@xxxxxxxxx
     � � ��  108.
     [288][290]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  109.
     [289][291]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  110.
     [290][292]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  111. mailto:[291][293]michaelrtr@xxxxxxxxx
     � � ��  112. mailto:[292][294]michaelrtr@xxxxxxxxx
     � � ��  113. mailto:[293][295]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  114.
     mailto:[294][296]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  115.
     mailto:[295][297]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  116. mailto:[296][298]charles.wilt@xxxxxxxxx
     � � ��  117. mailto:[297][299]michaelrtr@xxxxxxxxx
     � � ��  118. mailto:[298][300]michaelrtr@xxxxxxxxx
     � � ��  119.
     [299][301]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  120.
     [300][302]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  121. mailto:[301][303]michaelrtr@xxxxxxxxx
     � � ��  122. mailto:[302][304]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  123.
     mailto:[303][305]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  124.
     mailto:[304][306]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  125. mailto:[305][307]charles.wilt@xxxxxxxxx
     � � ��  126. mailto:[306][308]michaelrtr@xxxxxxxxx
     � � ��  127. mailto:[307][309]michaelrtr@xxxxxxxxx
     � � ��  128.
     [308][310]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  129.
     [309][311]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  130.
     [310][312]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  131.
     [311][313]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  132. mailto:[312][314]charles.wilt@xxxxxxxxx
     � � ��  133. mailto:[313][315]michaelrtr@xxxxxxxxx
     � � ��  134. mailto:[314][316]michaelrtr@xxxxxxxxx
     � � ��  135. mailto:[315][317]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  136.
     mailto:[316][318]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  137.
     mailto:[317][319]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  138. mailto:[318][320]charles.wilt@xxxxxxxxx
     � � ��  139. mailto:[319][321]michaelrtr@xxxxxxxxx
     � � ��  140. mailto:[320][322]michaelrtr@xxxxxxxxx
     � � ��  141.
     [321][323]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  142.
     [322][324]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  143. mailto:[323][325]michaelrtr@xxxxxxxxx
     � � ��  144. mailto:[324][326]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  145.
     mailto:[325][327]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  146.
     mailto:[326][328]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  147. mailto:[327][329]charles.wilt@xxxxxxxxx
     � � ��  148. mailto:[328][330]michaelrtr@xxxxxxxxx
     � � ��  149. mailto:[329][331]michaelrtr@xxxxxxxxx
     � � ��  150.
     [330][332]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  151.
     [331][333]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  152.
     [332][334]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  153. mailto:[333][335]michaelrtr@xxxxxxxxx
     � � ��  154. mailto:[334][336]michaelrtr@xxxxxxxxx
     � � ��  155. mailto:[335][337]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  156.
     mailto:[336][338]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  157.
     mailto:[337][339]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  158. mailto:[338][340]charles.wilt@xxxxxxxxx
     � � ��  159. mailto:[339][341]michaelrtr@xxxxxxxxx
     � � ��  160. mailto:[340][342]michaelrtr@xxxxxxxxx
     � � ��  161.
     [341][343]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  162.
     [342][344]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  163. mailto:[343][345]michaelrtr@xxxxxxxxx
     � � ��  164. mailto:[344][346]mkrebs@xxxxxxxxxxxxxxxxxx
     � � ��  165.
     mailto:[345][347]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  166.
     mailto:[346][348]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � � ��  167. mailto:[347][349]charles.wilt@xxxxxxxxx
     � � ��  168. mailto:[348][350]michaelrtr@xxxxxxxxx
     � � ��  169. mailto:[349][351]michaelrtr@xxxxxxxxx
     � � ��  170.
     [350][352]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  171.
     [351][353]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  172.
     [352][354]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  173.
     [353][355]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  174.
     [354][356]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  175.
     [355][357]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  176.
     [356][358]http://www.scottklement.com/mailman/listinfo/ftpapi
     � � ��  177.
     [357][359]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �     �------------------------------------------------------------------
     --
     � � �---
     � � �This is the FTPAPI mailing list.�  To unsubscribe, please
     go to:
     � �     �[358][360]http://www.scottklement.com/mailman/listinfo/ftpapi
     � �     �------------------------------------------------------------------
     --
     � � �---
     �     �------------------------------------------------------------------
     -----
     � �This is the FTPAPI mailing list.�  To unsubscribe, please go
     to:
     � �[359][361]http://www.scottklement.com/mailman/listinfo/ftpapi
     �     �------------------------------------------------------------------
     -----
     References
     � �1. mailto:[362]michaelrtr@xxxxxxxxx
     � �2. mailto:[363]michaelrtr@xxxxxxxxx
     � �3. mailto:[364]sk@xxxxxxxxxxxxxxxx
     � �4. mailto:[365]sk@xxxxxxxxxxxxxxxx
     � �5. mailto:[366]sk@xxxxxxxxxxxxxxxx
     � �6. mailto:[367]charles.wilt@xxxxxxxxx
     � �7. mailto:[368]michaelrtr@xxxxxxxxx
     � �8. mailto:[369]michaelrtr@xxxxxxxxx
     � �9. mailto:[370]mkrebs@xxxxxxxxxxxxxxxxxx
     � 10. mailto:[371]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 11. mailto:[372]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 12. mailto:[373]charles.wilt@xxxxxxxxx
     � 13. mailto:[374]michaelrtr@xxxxxxxxx
     � 14. mailto:[375]michaelrtr@xxxxxxxxx
     � 15. [376]http://www.scottklement.com/mailman/listinfo/ftpap
     � 16. [377]http://www.scottklement.com/mailman/listinfo/ftpa
     � 17. mailto:[378]michaelrtr@xxxxxxxxx
     � 18. mailto:[379]mkrebs@xxxxxxxxxxxxxxxxxx
     � 19. mailto:[380]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 20. mailto:[381]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 21. mailto:[382]charles.wilt@xxxxxxxxx
     � 22. mailto:[383]michaelrtr@xxxxxxxxx
     � 23. mailto:[384]michaelrtr@xxxxxxxxx
     � 24. [385]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 25. [386]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 26. [387]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 27. mailto:[388]michaelrtr@xxxxxxxxx
     � 28. mailto:[389]michaelrtr@xxxxxxxxx
     � 29. mailto:[390]mkrebs@xxxxxxxxxxxxxxxxxx
     � 30. mailto:[391]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 31. mailto:[392]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 32. mailto:[393]charles.wilt@xxxxxxxxx
     � 33. mailto:[394]michaelrtr@xxxxxxxxx
     � 34. mailto:[395]michaelrtr@xxxxxxxxx
     � 35. [396]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 36. [397]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 37. mailto:[398]michaelrtr@xxxxxxxxx
     � 38. mailto:[399]mkrebs@xxxxxxxxxxxxxxxxxx
     � 39. mailto:[400]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 40. mailto:[401]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 41. mailto:[402]charles.wilt@xxxxxxxxx
     � 42. mailto:[403]michaelrtr@xxxxxxxxx
     � 43. mailto:[404]michaelrtr@xxxxxxxxx
     � 44. [405]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 45. [406]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 46. [407]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 47. [408]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 48. mailto:[409]charles.wilt@xxxxxxxxx
     � 49. mailto:[410]michaelrtr@xxxxxxxxx
     � 50. mailto:[411]michaelrtr@xxxxxxxxx
     � 51. mailto:[412]mkrebs@xxxxxxxxxxxxxxxxxx
     � 52. mailto:[413]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 53. mailto:[414]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 54. mailto:[415]charles.wilt@xxxxxxxxx
     � 55. mailto:[416]michaelrtr@xxxxxxxxx
     � 56. mailto:[417]michaelrtr@xxxxxxxxx
     � 57. [418]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 58. [419]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 59. mailto:[420]michaelrtr@xxxxxxxxx
     � 60. mailto:[421]mkrebs@xxxxxxxxxxxxxxxxxx
     � 61. mailto:[422]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 62. mailto:[423]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 63. mailto:[424]charles.wilt@xxxxxxxxx
     � 64. mailto:[425]michaelrtr@xxxxxxxxx
     � 65. mailto:[426]michaelrtr@xxxxxxxxx
     � 66. [427]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 67. [428]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 68. [429]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 69. mailto:[430]michaelrtr@xxxxxxxxx
     � 70. mailto:[431]michaelrtr@xxxxxxxxx
     � 71. mailto:[432]mkrebs@xxxxxxxxxxxxxxxxxx
     � 72. mailto:[433]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 73. mailto:[434]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 74. mailto:[435]charles.wilt@xxxxxxxxx
     � 75. mailto:[436]michaelrtr@xxxxxxxxx
     � 76. mailto:[437]michaelrtr@xxxxxxxxx
     � 77. [438]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 78. [439]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 79. mailto:[440]michaelrtr@xxxxxxxxx
     � 80. mailto:[441]mkrebs@xxxxxxxxxxxxxxxxxx
     � 81. mailto:[442]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 82. mailto:[443]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 83. mailto:[444]charles.wilt@xxxxxxxxx
     � 84. mailto:[445]michaelrtr@xxxxxxxxx
     � 85. mailto:[446]michaelrtr@xxxxxxxxx
     � 86. [447]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 87. [448]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 88. [449]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 89. [450]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 90. [451]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 91. [452]http://www.scottklement.com/mailman/listinfo/ftpapi
     � 92. mailto:[453]sk@xxxxxxxxxxxxxxxx
     � 93. mailto:[454]charles.wilt@xxxxxxxxx
     � 94. mailto:[455]michaelrtr@xxxxxxxxx
     � 95. mailto:[456]michaelrtr@xxxxxxxxx
     � 96. mailto:[457]mkrebs@xxxxxxxxxxxxxxxxxx
     � 97. mailto:[458]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 98. mailto:[459]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     � 99. mailto:[460]charles.wilt@xxxxxxxxx
     �100. mailto:[461]michaelrtr@xxxxxxxxx
     �101. mailto:[462]michaelrtr@xxxxxxxxx
     �102. [463]http://www.scottklement.com/mailman/listinfo/ftpapi
     �103. [464]http://www.scottklement.com/mailman/listinfo/ftpapi
     �104. mailto:[465]michaelrtr@xxxxxxxxx
     �105. mailto:[466]mkrebs@xxxxxxxxxxxxxxxxxx
     �106. mailto:[467]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �107. mailto:[468]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �108. mailto:[469]charles.wilt@xxxxxxxxx
     �109. mailto:[470]michaelrtr@xxxxxxxxx
     �110. mailto:[471]michaelrtr@xxxxxxxxx
     �111. [472]http://www.scottklement.com/mailman/listinfo/ftpapi
     �112. [473]http://www.scottklement.com/mailman/listinfo/ftpapi
     �113. [474]http://www.scottklement.com/mailman/listinfo/ftpapi
     �114. mailto:[475]michaelrtr@xxxxxxxxx
     �115. mailto:[476]michaelrtr@xxxxxxxxx
     �116. mailto:[477]mkrebs@xxxxxxxxxxxxxxxxxx
     �117. mailto:[478]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �118. mailto:[479]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �119. mailto:[480]charles.wilt@xxxxxxxxx
     �120. mailto:[481]michaelrtr@xxxxxxxxx
     �121. mailto:[482]michaelrtr@xxxxxxxxx
     �122. [483]http://www.scottklement.com/mailman/listinfo/ftpapi
     �123. [484]http://www.scottklement.com/mailman/listinfo/ftpapi
     �124. mailto:[485]michaelrtr@xxxxxxxxx
     �125. mailto:[486]mkrebs@xxxxxxxxxxxxxxxxxx
     �126. mailto:[487]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �127. mailto:[488]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �128. mailto:[489]charles.wilt@xxxxxxxxx
     �129. mailto:[490]michaelrtr@xxxxxxxxx
     �130. mailto:[491]michaelrtr@xxxxxxxxx
     �131. [492]http://www.scottklement.com/mailman/listinfo/ftpapi
     �132. [493]http://www.scottklement.com/mailman/listinfo/ftpapi
     �133. [494]http://www.scottklement.com/mailman/listinfo/ftpapi
     �134. [495]http://www.scottklement.com/mailman/listinfo/ftpapi
     �135. mailto:[496]charles.wilt@xxxxxxxxx
     �136. mailto:[497]michaelrtr@xxxxxxxxx
     �137. mailto:[498]michaelrtr@xxxxxxxxx
     �138. mailto:[499]mkrebs@xxxxxxxxxxxxxxxxxx
     �139. mailto:[500]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �140. mailto:[501]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �141. mailto:[502]charles.wilt@xxxxxxxxx
     �142. mailto:[503]michaelrtr@xxxxxxxxx
     �143. mailto:[504]michaelrtr@xxxxxxxxx
     �144. [505]http://www.scottklement.com/mailman/listinfo/ftpapi
     �145. [506]http://www.scottklement.com/mailman/listinfo/ftpapi
     �146. mailto:[507]michaelrtr@xxxxxxxxx
     �147. mailto:[508]mkrebs@xxxxxxxxxxxxxxxxxx
     �148. mailto:[509]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �149. mailto:[510]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �150. mailto:[511]charles.wilt@xxxxxxxxx
     �151. mailto:[512]michaelrtr@xxxxxxxxx
     �152. mailto:[513]michaelrtr@xxxxxxxxx
     �153. [514]http://www.scottklement.com/mailman/listinfo/ftpapi
     �154. [515]http://www.scottklement.com/mailman/listinfo/ftpapi
     �155. [516]http://www.scottklement.com/mailman/listinfo/ftpapi
     �156. mailto:[517]michaelrtr@xxxxxxxxx
     �157. mailto:[518]michaelrtr@xxxxxxxxx
     �158. mailto:[519]mkrebs@xxxxxxxxxxxxxxxxxx
     �159. mailto:[520]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �160. mailto:[521]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �161. mailto:[522]charles.wilt@xxxxxxxxx
     �162. mailto:[523]michaelrtr@xxxxxxxxx
     �163. mailto:[524]michaelrtr@xxxxxxxxx
     �164. [525]http://www.scottklement.com/mailman/listinfo/ftpapi
     �165. [526]http://www.scottklement.com/mailman/listinfo/ftpapi
     �166. mailto:[527]michaelrtr@xxxxxxxxx
     �167. mailto:[528]mkrebs@xxxxxxxxxxxxxxxxxx
     �168. mailto:[529]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �169. mailto:[530]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �170. mailto:[531]charles.wilt@xxxxxxxxx
     �171. mailto:[532]michaelrtr@xxxxxxxxx
     �172. mailto:[533]michaelrtr@xxxxxxxxx
     �173. [534]http://www.scottklement.com/mailman/listinfo/ftpapi
     �174. [535]http://www.scottklement.com/mailman/listinfo/ftpapi
     �175. [536]http://www.scottklement.com/mailman/listinfo/ftpapi
     �176. [537]http://www.scottklement.com/mailman/listinfo/ftpapi
     �177. [538]http://www.scottklement.com/mailman/listinfo/ftpapi
     �178. [539]http://www.scottklement.com/mailman/listinfo/ftpapi
     �179. [540]http://www.scottklement.com/mailman/listinfo/ftpapi
     �180. [541]http://www.scottklement.com/mailman/listinfo/ftpapi
     �181. mailto:[542]sk@xxxxxxxxxxxxxxxx
     �182. mailto:[543]sk@xxxxxxxxxxxxxxxx
     �183. mailto:[544]charles.wilt@xxxxxxxxx
     �184. mailto:[545]michaelrtr@xxxxxxxxx
     �185. mailto:[546]michaelrtr@xxxxxxxxx
     �186. mailto:[547]mkrebs@xxxxxxxxxxxxxxxxxx
     �187. mailto:[548]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �188. mailto:[549]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �189. mailto:[550]charles.wilt@xxxxxxxxx
     �190. mailto:[551]michaelrtr@xxxxxxxxx
     �191. mailto:[552]michaelrtr@xxxxxxxxx
     �192. [553]http://www.scottklement.com/mailman/listinfo/ftpapi
     �193. [554]http://www.scottklement.com/mailman/listinfo/ftpapi
     �194. mailto:[555]michaelrtr@xxxxxxxxx
     �195. mailto:[556]mkrebs@xxxxxxxxxxxxxxxxxx
     �196. mailto:[557]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �197. mailto:[558]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �198. mailto:[559]charles.wilt@xxxxxxxxx
     �199. mailto:[560]michaelrtr@xxxxxxxxx
     �200. mailto:[561]michaelrtr@xxxxxxxxx
     �201. [562]http://www.scottklement.com/mailman/listinfo/ftpapi
     �202. [563]http://www.scottklement.com/mailman/listinfo/ftpapi
     �203. [564]http://www.scottklement.com/mailman/listinfo/ftpapi
     �204. mailto:[565]michaelrtr@xxxxxxxxx
     �205. mailto:[566]michaelrtr@xxxxxxxxx
     �206. mailto:[567]mkrebs@xxxxxxxxxxxxxxxxxx
     �207. mailto:[568]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �208. mailto:[569]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �209. mailto:[570]charles.wilt@xxxxxxxxx
     �210. mailto:[571]michaelrtr@xxxxxxxxx
     �211. mailto:[572]michaelrtr@xxxxxxxxx
     �212. [573]http://www.scottklement.com/mailman/listinfo/ftpapi
     �213. [574]http://www.scottklement.com/mailman/listinfo/ftpapi
     �214. mailto:[575]michaelrtr@xxxxxxxxx
     �215. mailto:[576]mkrebs@xxxxxxxxxxxxxxxxxx
     �216. mailto:[577]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �217. mailto:[578]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �218. mailto:[579]charles.wilt@xxxxxxxxx
     �219. mailto:[580]michaelrtr@xxxxxxxxx
     �220. mailto:[581]michaelrtr@xxxxxxxxx
     �221. [582]http://www.scottklement.com/mailman/listinfo/ftpapi
     �222. [583]http://www.scottklement.com/mailman/listinfo/ftpapi
     �223. [584]http://www.scottklement.com/mailman/listinfo/ftpapi
     �224. [585]http://www.scottklement.com/mailman/listinfo/ftpapi
     �225. mailto:[586]charles.wilt@xxxxxxxxx
     �226. mailto:[587]michaelrtr@xxxxxxxxx
     �227. mailto:[588]michaelrtr@xxxxxxxxx
     �228. mailto:[589]mkrebs@xxxxxxxxxxxxxxxxxx
     �229. mailto:[590]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �230. mailto:[591]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �231. mailto:[592]charles.wilt@xxxxxxxxx
     �232. mailto:[593]michaelrtr@xxxxxxxxx
     �233. mailto:[594]michaelrtr@xxxxxxxxx
     �234. [595]http://www.scottklement.com/mailman/listinfo/ftpapi
     �235. [596]http://www.scottklement.com/mailman/listinfo/ftpapi
     �236. mailto:[597]michaelrtr@xxxxxxxxx
     �237. mailto:[598]mkrebs@xxxxxxxxxxxxxxxxxx
     �238. mailto:[599]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �239. mailto:[600]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �240. mailto:[601]charles.wilt@xxxxxxxxx
     �241. mailto:[602]michaelrtr@xxxxxxxxx
     �242. mailto:[603]michaelrtr@xxxxxxxxx
     �243. [604]http://www.scottklement.com/mailman/listinfo/ftpapi
     �244. [605]http://www.scottklement.com/mailman/listinfo/ftpapi
     �245. [606]http://www.scottklement.com/mailman/listinfo/ftpapi
     �246. mailto:[607]michaelrtr@xxxxxxxxx
     �247. mailto:[608]michaelrtr@xxxxxxxxx
     �248. mailto:[609]mkrebs@xxxxxxxxxxxxxxxxxx
     �249. mailto:[610]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �250. mailto:[611]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �251. mailto:[612]charles.wilt@xxxxxxxxx
     �252. mailto:[613]michaelrtr@xxxxxxxxx
     �253. mailto:[614]michaelrtr@xxxxxxxxx
     �254. [615]http://www.scottklement.com/mailman/listinfo/ftpapi
     �255. [616]http://www.scottklement.com/mailman/listinfo/ftpapi
     �256. mailto:[617]michaelrtr@xxxxxxxxx
     �257. mailto:[618]mkrebs@xxxxxxxxxxxxxxxxxx
     �258. mailto:[619]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �259. mailto:[620]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �260. mailto:[621]charles.wilt@xxxxxxxxx
     �261. mailto:[622]michaelrtr@xxxxxxxxx
     �262. mailto:[623]michaelrtr@xxxxxxxxx
     �263. [624]http://www.scottklement.com/mailman/listinfo/ftpapi
     �264. [625]http://www.scottklement.com/mailman/listinfo/ftpapi
     �265. [626]http://www.scottklement.com/mailman/listinfo/ftpapi
     �266. [627]http://www.scottklement.com/mailman/listinfo/ftpapi
     �267. [628]http://www.scottklement.com/mailman/listinfo/ftpapi
     �268. [629]http://www.scottklement.com/mailman/listinfo/ftpapi
     �269. mailto:[630]sk@xxxxxxxxxxxxxxxx
     �270. mailto:[631]charles.wilt@xxxxxxxxx
     �271. mailto:[632]michaelrtr@xxxxxxxxx
     �272. mailto:[633]michaelrtr@xxxxxxxxx
     �273. mailto:[634]mkrebs@xxxxxxxxxxxxxxxxxx
     �274. mailto:[635]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �275. mailto:[636]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �276. mailto:[637]charles.wilt@xxxxxxxxx
     �277. mailto:[638]michaelrtr@xxxxxxxxx
     �278. mailto:[639]michaelrtr@xxxxxxxxx
     �279. [640]http://www.scottklement.com/mailman/listinfo/ftpapi
     �280. [641]http://www.scottklement.com/mailman/listinfo/ftpapi
     �281. mailto:[642]michaelrtr@xxxxxxxxx
     �282. mailto:[643]mkrebs@xxxxxxxxxxxxxxxxxx
     �283. mailto:[644]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �284. mailto:[645]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �285. mailto:[646]charles.wilt@xxxxxxxxx
     �286. mailto:[647]michaelrtr@xxxxxxxxx
     �287. mailto:[648]michaelrtr@xxxxxxxxx
     �288. [649]http://www.scottklement.com/mailman/listinfo/ftpapi
     �289. [650]http://www.scottklement.com/mailman/listinfo/ftpapi
     �290. [651]http://www.scottklement.com/mailman/listinfo/ftpapi
     �291. mailto:[652]michaelrtr@xxxxxxxxx
     �292. mailto:[653]michaelrtr@xxxxxxxxx
     �293. mailto:[654]mkrebs@xxxxxxxxxxxxxxxxxx
     �294. mailto:[655]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �295. mailto:[656]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �296. mailto:[657]charles.wilt@xxxxxxxxx
     �297. mailto:[658]michaelrtr@xxxxxxxxx
     �298. mailto:[659]michaelrtr@xxxxxxxxx
     �299. [660]http://www.scottklement.com/mailman/listinfo/ftpapi
     �300. [661]http://www.scottklement.com/mailman/listinfo/ftpapi
     �301. mailto:[662]michaelrtr@xxxxxxxxx
     �302. mailto:[663]mkrebs@xxxxxxxxxxxxxxxxxx
     �303. mailto:[664]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �304. mailto:[665]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �305. mailto:[666]charles.wilt@xxxxxxxxx
     �306. mailto:[667]michaelrtr@xxxxxxxxx
     �307. mailto:[668]michaelrtr@xxxxxxxxx
     �308. [669]http://www.scottklement.com/mailman/listinfo/ftpapi
     �309. [670]http://www.scottklement.com/mailman/listinfo/ftpapi
     �310. [671]http://www.scottklement.com/mailman/listinfo/ftpapi
     �311. [672]http://www.scottklement.com/mailman/listinfo/ftpapi
     �312. mailto:[673]charles.wilt@xxxxxxxxx
     �313. mailto:[674]michaelrtr@xxxxxxxxx
     �314. mailto:[675]michaelrtr@xxxxxxxxx
     �315. mailto:[676]mkrebs@xxxxxxxxxxxxxxxxxx
     �316. mailto:[677]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �317. mailto:[678]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �318. mailto:[679]charles.wilt@xxxxxxxxx
     �319. mailto:[680]michaelrtr@xxxxxxxxx
     �320. mailto:[681]michaelrtr@xxxxxxxxx
     �321. [682]http://www.scottklement.com/mailman/listinfo/ftpapi
     �322. [683]http://www.scottklement.com/mailman/listinfo/ftpapi
     �323. mailto:[684]michaelrtr@xxxxxxxxx
     �324. mailto:[685]mkrebs@xxxxxxxxxxxxxxxxxx
     �325. mailto:[686]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �326. mailto:[687]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �327. mailto:[688]charles.wilt@xxxxxxxxx
     �328. mailto:[689]michaelrtr@xxxxxxxxx
     �329. mailto:[690]michaelrtr@xxxxxxxxx
     �330. [691]http://www.scottklement.com/mailman/listinfo/ftpapi
     �331. [692]http://www.scottklement.com/mailman/listinfo/ftpapi
     �332. [693]http://www.scottklement.com/mailman/listinfo/ftpapi
     �333. mailto:[694]michaelrtr@xxxxxxxxx
     �334. mailto:[695]michaelrtr@xxxxxxxxx
     �335. mailto:[696]mkrebs@xxxxxxxxxxxxxxxxxx
     �336. mailto:[697]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �337. mailto:[698]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �338. mailto:[699]charles.wilt@xxxxxxxxx
     �339. mailto:[700]michaelrtr@xxxxxxxxx
     �340. mailto:[701]michaelrtr@xxxxxxxxx
     �341. [702]http://www.scottklement.com/mailman/listinfo/ftpapi
     �342. [703]http://www.scottklement.com/mailman/listinfo/ftpapi
     �343. mailto:[704]michaelrtr@xxxxxxxxx
     �344. mailto:[705]mkrebs@xxxxxxxxxxxxxxxxxx
     �345. mailto:[706]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �346. mailto:[707]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     �347. mailto:[708]charles.wilt@xxxxxxxxx
     �348. mailto:[709]michaelrtr@xxxxxxxxx
     �349. mailto:[710]michaelrtr@xxxxxxxxx
     �350. [711]http://www.scottklement.com/mailman/listinfo/ftpapi
     �351. [712]http://www.scottklement.com/mailman/listinfo/ftpapi
     �352. [713]http://www.scottklement.com/mailman/listinfo/ftpapi
     �353. [714]http://www.scottklement.com/mailman/listinfo/ftpapi
     �354. [715]http://www.scottklement.com/mailman/listinfo/ftpapi
     �355. [716]http://www.scottklement.com/mailman/listinfo/ftpapi
     �356. [717]http://www.scottklement.com/mailman/listinfo/ftpapi
     �357. [718]http://www.scottklement.com/mailman/listinfo/ftpapi
     �358. [719]http://www.scottklement.com/mailman/listinfo/ftpapi
     �359. [720]http://www.scottklement.com/mailman/listinfo/ftpapi
     --------------------------------------------------------------------
     ---
     This is the FTPAPI mailing list.� To unsubscribe, please go to:
     [721]http://www.scottklement.com/mailman/listinfo/ftpapi
     --------------------------------------------------------------------
     ---

References

   1. https://stackoverflow.com/questions/879120/supporting-the-expect-100-continue-header-with-asp-net-mvc
   2. mailto:michaelrtr@xxxxxxxxx
   3. mailto:michaelrtr@xxxxxxxxx
   4. mailto:michaelrtr@xxxxxxxxx
   5. mailto:sk@xxxxxxxxxxxxxxxx
   6. mailto:sk@xxxxxxxxxxxxxxxx
   7. mailto:sk@xxxxxxxxxxxxxxxx
   8. mailto:charles.wilt@xxxxxxxxx
   9. mailto:michaelrtr@xxxxxxxxx
  10. mailto:michaelrtr@xxxxxxxxx
  11. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
  12. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  13. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  14. mailto:charles.wilt@xxxxxxxxx
  15. mailto:michaelrtr@xxxxxxxxx
  16. mailto:michaelrtr@xxxxxxxxx
  17. http://www.scottklement.com/mailman/listinfo/f
  18. http://www.scottklement.com/mailman/listinfo/
  19. mailto:michaelrtr@xxxxxxxxx
  20. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
  21. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  22. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  23. mailto:charles.wilt@xxxxxxxxx
  24. mailto:michaelrtr@xxxxxxxxx
  25. mailto:michaelrtr@xxxxxxxxx
  26. http://www.scottklement.com/mailman/listinfo/ftp
  27. http://www.scottklement.com/mailman/listinfo/ftp
  28. http://www.scottklement.com/mailman/listinfo/ftp
  29. mailto:michaelrtr@xxxxxxxxx
  30. mailto:michaelrtr@xxxxxxxxx
  31. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
  32. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  33. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  34. mailto:charles.wilt@xxxxxxxxx
  35. mailto:michaelrtr@xxxxxxxxx
  36. mailto:michaelrtr@xxxxxxxxx
  37. http://www.scottklement.com/mailman/listinfo/ftpapi
  38. http://www.scottklement.com/mailman/listinfo/ftpapi
  39. mailto:michaelrtr@xxxxxxxxx
  40. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
  41. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  42. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  43. mailto:charles.wilt@xxxxxxxxx
  44. mailto:michaelrtr@xxxxxxxxx
  45. mailto:michaelrtr@xxxxxxxxx
  46. http://www.scottklement.com/mailman/listinfo/ftpapi
  47. http://www.scottklement.com/mailman/listinfo/ftpapi
  48. http://www.scottklement.com/mailman/listinfo/ftpapi
  49. http://www.scottklement.com/mailman/listinfo/ftpapi
  50. mailto:charles.wilt@xxxxxxxxx
  51. mailto:michaelrtr@xxxxxxxxx
  52. mailto:michaelrtr@xxxxxxxxx
  53. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
  54. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  55. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  56. mailto:charles.wilt@xxxxxxxxx
  57. mailto:michaelrtr@xxxxxxxxx
  58. mailto:michaelrtr@xxxxxxxxx
  59. http://www.scottklement.com/mailman/listinfo/ftpapi
  60. http://www.scottklement.com/mailman/listinfo/ftpapi
  61. mailto:michaelrtr@xxxxxxxxx
  62. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
  63. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  64. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  65. mailto:charles.wilt@xxxxxxxxx
  66. mailto:michaelrtr@xxxxxxxxx
  67. mailto:michaelrtr@xxxxxxxxx
  68. http://www.scottklement.com/mailman/listinfo/ftpapi
  69. http://www.scottklement.com/mailman/listinfo/ftpapi
  70. http://www.scottklement.com/mailman/listinfo/ftpapi
  71. mailto:michaelrtr@xxxxxxxxx
  72. mailto:michaelrtr@xxxxxxxxx
  73. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
  74. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  75. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  76. mailto:charles.wilt@xxxxxxxxx
  77. mailto:michaelrtr@xxxxxxxxx
  78. mailto:michaelrtr@xxxxxxxxx
  79. http://www.scottklement.com/mailman/listinfo/ftpapi
  80. http://www.scottklement.com/mailman/listinfo/ftpapi
  81. mailto:michaelrtr@xxxxxxxxx
  82. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
  83. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  84. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  85. mailto:charles.wilt@xxxxxxxxx
  86. mailto:michaelrtr@xxxxxxxxx
  87. mailto:michaelrtr@xxxxxxxxx
  88. http://www.scottklement.com/mailman/listinfo/ftpapi
  89. http://www.scottklement.com/mailman/listinfo/ftpapi
  90. http://www.scottklement.com/mailman/listinfo/ftpapi
  91. http://www.scottklement.com/mailman/listinfo/ftpapi
  92. http://www.scottklement.com/mailman/listinfo/ftpapi
  93. http://www.scottklement.com/mailman/listinfo/ftpapi
  94. mailto:sk@xxxxxxxxxxxxxxxx
  95. mailto:charles.wilt@xxxxxxxxx
  96. mailto:michaelrtr@xxxxxxxxx
  97. mailto:michaelrtr@xxxxxxxxx
  98. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
  99. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 100. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 101. mailto:charles.wilt@xxxxxxxxx
 102. mailto:michaelrtr@xxxxxxxxx
 103. mailto:michaelrtr@xxxxxxxxx
 104. http://www.scottklement.com/mailman/listinfo/ftpapi
 105. http://www.scottklement.com/mailman/listinfo/ftpapi
 106. mailto:michaelrtr@xxxxxxxxx
 107. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 108. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 109. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 110. mailto:charles.wilt@xxxxxxxxx
 111. mailto:michaelrtr@xxxxxxxxx
 112. mailto:michaelrtr@xxxxxxxxx
 113. http://www.scottklement.com/mailman/listinfo/ftpapi
 114. http://www.scottklement.com/mailman/listinfo/ftpapi
 115. http://www.scottklement.com/mailman/listinfo/ftpapi
 116. mailto:michaelrtr@xxxxxxxxx
 117. mailto:michaelrtr@xxxxxxxxx
 118. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 119. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 120. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 121. mailto:charles.wilt@xxxxxxxxx
 122. mailto:michaelrtr@xxxxxxxxx
 123. mailto:michaelrtr@xxxxxxxxx
 124. http://www.scottklement.com/mailman/listinfo/ftpapi
 125. http://www.scottklement.com/mailman/listinfo/ftpapi
 126. mailto:michaelrtr@xxxxxxxxx
 127. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 128. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 129. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 130. mailto:charles.wilt@xxxxxxxxx
 131. mailto:michaelrtr@xxxxxxxxx
 132. mailto:michaelrtr@xxxxxxxxx
 133. http://www.scottklement.com/mailman/listinfo/ftpapi
 134. http://www.scottklement.com/mailman/listinfo/ftpapi
 135. http://www.scottklement.com/mailman/listinfo/ftpapi
 136. http://www.scottklement.com/mailman/listinfo/ftpapi
 137. mailto:charles.wilt@xxxxxxxxx
 138. mailto:michaelrtr@xxxxxxxxx
 139. mailto:michaelrtr@xxxxxxxxx
 140. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 141. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 142. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 143. mailto:charles.wilt@xxxxxxxxx
 144. mailto:michaelrtr@xxxxxxxxx
 145. mailto:michaelrtr@xxxxxxxxx
 146. http://www.scottklement.com/mailman/listinfo/ftpapi
 147. http://www.scottklement.com/mailman/listinfo/ftpapi
 148. mailto:michaelrtr@xxxxxxxxx
 149. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 150. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 151. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 152. mailto:charles.wilt@xxxxxxxxx
 153. mailto:michaelrtr@xxxxxxxxx
 154. mailto:michaelrtr@xxxxxxxxx
 155. http://www.scottklement.com/mailman/listinfo/ftpapi
 156. http://www.scottklement.com/mailman/listinfo/ftpapi
 157. http://www.scottklement.com/mailman/listinfo/ftpapi
 158. mailto:michaelrtr@xxxxxxxxx
 159. mailto:michaelrtr@xxxxxxxxx
 160. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 161. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 162. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 163. mailto:charles.wilt@xxxxxxxxx
 164. mailto:michaelrtr@xxxxxxxxx
 165. mailto:michaelrtr@xxxxxxxxx
 166. http://www.scottklement.com/mailman/listinfo/ftpapi
 167. http://www.scottklement.com/mailman/listinfo/ftpapi
 168. mailto:michaelrtr@xxxxxxxxx
 169. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 170. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 171. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 172. mailto:charles.wilt@xxxxxxxxx
 173. mailto:michaelrtr@xxxxxxxxx
 174. mailto:michaelrtr@xxxxxxxxx
 175. http://www.scottklement.com/mailman/listinfo/ftpapi
 176. http://www.scottklement.com/mailman/listinfo/ftpapi
 177. http://www.scottklement.com/mailman/listinfo/ftpapi
 178. http://www.scottklement.com/mailman/listinfo/ftpapi
 179. http://www.scottklement.com/mailman/listinfo/ftpapi
 180. http://www.scottklement.com/mailman/listinfo/ftpapi
 181. http://www.scottklement.com/mailman/listinfo/ftpapi
 182. http://www.scottklement.com/mailman/listinfo/ftpapi
 183. mailto:sk@xxxxxxxxxxxxxxxx
 184. mailto:sk@xxxxxxxxxxxxxxxx
 185. mailto:charles.wilt@xxxxxxxxx
 186. mailto:michaelrtr@xxxxxxxxx
 187. mailto:michaelrtr@xxxxxxxxx
 188. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 189. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 190. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 191. mailto:charles.wilt@xxxxxxxxx
 192. mailto:michaelrtr@xxxxxxxxx
 193. mailto:michaelrtr@xxxxxxxxx
 194. http://www.scottklement.com/mailman/listinfo/ftpapi
 195. http://www.scottklement.com/mailman/listinfo/ftpapi
 196. mailto:michaelrtr@xxxxxxxxx
 197. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 198. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 199. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 200. mailto:charles.wilt@xxxxxxxxx
 201. mailto:michaelrtr@xxxxxxxxx
 202. mailto:michaelrtr@xxxxxxxxx
 203. http://www.scottklement.com/mailman/listinfo/ftpapi
 204. http://www.scottklement.com/mailman/listinfo/ftpapi
 205. http://www.scottklement.com/mailman/listinfo/ftpapi
 206. mailto:michaelrtr@xxxxxxxxx
 207. mailto:michaelrtr@xxxxxxxxx
 208. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 209. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 210. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 211. mailto:charles.wilt@xxxxxxxxx
 212. mailto:michaelrtr@xxxxxxxxx
 213. mailto:michaelrtr@xxxxxxxxx
 214. http://www.scottklement.com/mailman/listinfo/ftpapi
 215. http://www.scottklement.com/mailman/listinfo/ftpapi
 216. mailto:michaelrtr@xxxxxxxxx
 217. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 218. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 219. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 220. mailto:charles.wilt@xxxxxxxxx
 221. mailto:michaelrtr@xxxxxxxxx
 222. mailto:michaelrtr@xxxxxxxxx
 223. http://www.scottklement.com/mailman/listinfo/ftpapi
 224. http://www.scottklement.com/mailman/listinfo/ftpapi
 225. http://www.scottklement.com/mailman/listinfo/ftpapi
 226. http://www.scottklement.com/mailman/listinfo/ftpapi
 227. mailto:charles.wilt@xxxxxxxxx
 228. mailto:michaelrtr@xxxxxxxxx
 229. mailto:michaelrtr@xxxxxxxxx
 230. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 231. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 232. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 233. mailto:charles.wilt@xxxxxxxxx
 234. mailto:michaelrtr@xxxxxxxxx
 235. mailto:michaelrtr@xxxxxxxxx
 236. http://www.scottklement.com/mailman/listinfo/ftpapi
 237. http://www.scottklement.com/mailman/listinfo/ftpapi
 238. mailto:michaelrtr@xxxxxxxxx
 239. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 240. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 241. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 242. mailto:charles.wilt@xxxxxxxxx
 243. mailto:michaelrtr@xxxxxxxxx
 244. mailto:michaelrtr@xxxxxxxxx
 245. http://www.scottklement.com/mailman/listinfo/ftpapi
 246. http://www.scottklement.com/mailman/listinfo/ftpapi
 247. http://www.scottklement.com/mailman/listinfo/ftpapi
 248. mailto:michaelrtr@xxxxxxxxx
 249. mailto:michaelrtr@xxxxxxxxx
 250. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 251. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 252. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 253. mailto:charles.wilt@xxxxxxxxx
 254. mailto:michaelrtr@xxxxxxxxx
 255. mailto:michaelrtr@xxxxxxxxx
 256. http://www.scottklement.com/mailman/listinfo/ftpapi
 257. http://www.scottklement.com/mailman/listinfo/ftpapi
 258. mailto:michaelrtr@xxxxxxxxx
 259. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 260. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 261. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 262. mailto:charles.wilt@xxxxxxxxx
 263. mailto:michaelrtr@xxxxxxxxx
 264. mailto:michaelrtr@xxxxxxxxx
 265. http://www.scottklement.com/mailman/listinfo/ftpapi
 266. http://www.scottklement.com/mailman/listinfo/ftpapi
 267. http://www.scottklement.com/mailman/listinfo/ftpapi
 268. http://www.scottklement.com/mailman/listinfo/ftpapi
 269. http://www.scottklement.com/mailman/listinfo/ftpapi
 270. http://www.scottklement.com/mailman/listinfo/ftpapi
 271. mailto:sk@xxxxxxxxxxxxxxxx
 272. mailto:charles.wilt@xxxxxxxxx
 273. mailto:michaelrtr@xxxxxxxxx
 274. mailto:michaelrtr@xxxxxxxxx
 275. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 276. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 277. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 278. mailto:charles.wilt@xxxxxxxxx
 279. mailto:michaelrtr@xxxxxxxxx
 280. mailto:michaelrtr@xxxxxxxxx
 281. http://www.scottklement.com/mailman/listinfo/ftpapi
 282. http://www.scottklement.com/mailman/listinfo/ftpapi
 283. mailto:michaelrtr@xxxxxxxxx
 284. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 285. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 286. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 287. mailto:charles.wilt@xxxxxxxxx
 288. mailto:michaelrtr@xxxxxxxxx
 289. mailto:michaelrtr@xxxxxxxxx
 290. http://www.scottklement.com/mailman/listinfo/ftpapi
 291. http://www.scottklement.com/mailman/listinfo/ftpapi
 292. http://www.scottklement.com/mailman/listinfo/ftpapi
 293. mailto:michaelrtr@xxxxxxxxx
 294. mailto:michaelrtr@xxxxxxxxx
 295. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 296. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 297. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 298. mailto:charles.wilt@xxxxxxxxx
 299. mailto:michaelrtr@xxxxxxxxx
 300. mailto:michaelrtr@xxxxxxxxx
 301. http://www.scottklement.com/mailman/listinfo/ftpapi
 302. http://www.scottklement.com/mailman/listinfo/ftpapi
 303. mailto:michaelrtr@xxxxxxxxx
 304. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 305. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 306. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 307. mailto:charles.wilt@xxxxxxxxx
 308. mailto:michaelrtr@xxxxxxxxx
 309. mailto:michaelrtr@xxxxxxxxx
 310. http://www.scottklement.com/mailman/listinfo/ftpapi
 311. http://www.scottklement.com/mailman/listinfo/ftpapi
 312. http://www.scottklement.com/mailman/listinfo/ftpapi
 313. http://www.scottklement.com/mailman/listinfo/ftpapi
 314. mailto:charles.wilt@xxxxxxxxx
 315. mailto:michaelrtr@xxxxxxxxx
 316. mailto:michaelrtr@xxxxxxxxx
 317. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 318. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 319. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 320. mailto:charles.wilt@xxxxxxxxx
 321. mailto:michaelrtr@xxxxxxxxx
 322. mailto:michaelrtr@xxxxxxxxx
 323. http://www.scottklement.com/mailman/listinfo/ftpapi
 324. http://www.scottklement.com/mailman/listinfo/ftpapi
 325. mailto:michaelrtr@xxxxxxxxx
 326. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 327. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 328. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 329. mailto:charles.wilt@xxxxxxxxx
 330. mailto:michaelrtr@xxxxxxxxx
 331. mailto:michaelrtr@xxxxxxxxx
 332. http://www.scottklement.com/mailman/listinfo/ftpapi
 333. http://www.scottklement.com/mailman/listinfo/ftpapi
 334. http://www.scottklement.com/mailman/listinfo/ftpapi
 335. mailto:michaelrtr@xxxxxxxxx
 336. mailto:michaelrtr@xxxxxxxxx
 337. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 338. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 339. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 340. mailto:charles.wilt@xxxxxxxxx
 341. mailto:michaelrtr@xxxxxxxxx
 342. mailto:michaelrtr@xxxxxxxxx
 343. http://www.scottklement.com/mailman/listinfo/ftpapi
 344. http://www.scottklement.com/mailman/listinfo/ftpapi
 345. mailto:michaelrtr@xxxxxxxxx
 346. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 347. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 348. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 349. mailto:charles.wilt@xxxxxxxxx
 350. mailto:michaelrtr@xxxxxxxxx
 351. mailto:michaelrtr@xxxxxxxxx
 352. http://www.scottklement.com/mailman/listinfo/ftpapi
 353. http://www.scottklement.com/mailman/listinfo/ftpapi
 354. http://www.scottklement.com/mailman/listinfo/ftpapi
 355. http://www.scottklement.com/mailman/listinfo/ftpapi
 356. http://www.scottklement.com/mailman/listinfo/ftpapi
 357. http://www.scottklement.com/mailman/listinfo/ftpapi
 358. http://www.scottklement.com/mailman/listinfo/ftpapi
 359. http://www.scottklement.com/mailman/listinfo/ftpapi
 360. http://www.scottklement.com/mailman/listinfo/ftpapi
 361. http://www.scottklement.com/mailman/listinfo/ftpapi
 362. mailto:michaelrtr@xxxxxxxxx
 363. mailto:michaelrtr@xxxxxxxxx
 364. mailto:sk@xxxxxxxxxxxxxxxx
 365. mailto:sk@xxxxxxxxxxxxxxxx
 366. mailto:sk@xxxxxxxxxxxxxxxx
 367. mailto:charles.wilt@xxxxxxxxx
 368. mailto:michaelrtr@xxxxxxxxx
 369. mailto:michaelrtr@xxxxxxxxx
 370. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 371. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 372. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 373. mailto:charles.wilt@xxxxxxxxx
 374. mailto:michaelrtr@xxxxxxxxx
 375. mailto:michaelrtr@xxxxxxxxx
 376. http://www.scottklement.com/mailman/listinfo/ftpap
 377. http://www.scottklement.com/mailman/listinfo/ftpa
 378. mailto:michaelrtr@xxxxxxxxx
 379. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 380. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 381. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 382. mailto:charles.wilt@xxxxxxxxx
 383. mailto:michaelrtr@xxxxxxxxx
 384. mailto:michaelrtr@xxxxxxxxx
 385. http://www.scottklement.com/mailman/listinfo/ftpapi
 386. http://www.scottklement.com/mailman/listinfo/ftpapi
 387. http://www.scottklement.com/mailman/listinfo/ftpapi
 388. mailto:michaelrtr@xxxxxxxxx
 389. mailto:michaelrtr@xxxxxxxxx
 390. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 391. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 392. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 393. mailto:charles.wilt@xxxxxxxxx
 394. mailto:michaelrtr@xxxxxxxxx
 395. mailto:michaelrtr@xxxxxxxxx
 396. http://www.scottklement.com/mailman/listinfo/ftpapi
 397. http://www.scottklement.com/mailman/listinfo/ftpapi
 398. mailto:michaelrtr@xxxxxxxxx
 399. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 400. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 401. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 402. mailto:charles.wilt@xxxxxxxxx
 403. mailto:michaelrtr@xxxxxxxxx
 404. mailto:michaelrtr@xxxxxxxxx
 405. http://www.scottklement.com/mailman/listinfo/ftpapi
 406. http://www.scottklement.com/mailman/listinfo/ftpapi
 407. http://www.scottklement.com/mailman/listinfo/ftpapi
 408. http://www.scottklement.com/mailman/listinfo/ftpapi
 409. mailto:charles.wilt@xxxxxxxxx
 410. mailto:michaelrtr@xxxxxxxxx
 411. mailto:michaelrtr@xxxxxxxxx
 412. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 413. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 414. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 415. mailto:charles.wilt@xxxxxxxxx
 416. mailto:michaelrtr@xxxxxxxxx
 417. mailto:michaelrtr@xxxxxxxxx
 418. http://www.scottklement.com/mailman/listinfo/ftpapi
 419. http://www.scottklement.com/mailman/listinfo/ftpapi
 420. mailto:michaelrtr@xxxxxxxxx
 421. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 422. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 423. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 424. mailto:charles.wilt@xxxxxxxxx
 425. mailto:michaelrtr@xxxxxxxxx
 426. mailto:michaelrtr@xxxxxxxxx
 427. http://www.scottklement.com/mailman/listinfo/ftpapi
 428. http://www.scottklement.com/mailman/listinfo/ftpapi
 429. http://www.scottklement.com/mailman/listinfo/ftpapi
 430. mailto:michaelrtr@xxxxxxxxx
 431. mailto:michaelrtr@xxxxxxxxx
 432. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 433. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 434. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 435. mailto:charles.wilt@xxxxxxxxx
 436. mailto:michaelrtr@xxxxxxxxx
 437. mailto:michaelrtr@xxxxxxxxx
 438. http://www.scottklement.com/mailman/listinfo/ftpapi
 439. http://www.scottklement.com/mailman/listinfo/ftpapi
 440. mailto:michaelrtr@xxxxxxxxx
 441. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 442. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 443. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 444. mailto:charles.wilt@xxxxxxxxx
 445. mailto:michaelrtr@xxxxxxxxx
 446. mailto:michaelrtr@xxxxxxxxx
 447. http://www.scottklement.com/mailman/listinfo/ftpapi
 448. http://www.scottklement.com/mailman/listinfo/ftpapi
 449. http://www.scottklement.com/mailman/listinfo/ftpapi
 450. http://www.scottklement.com/mailman/listinfo/ftpapi
 451. http://www.scottklement.com/mailman/listinfo/ftpapi
 452. http://www.scottklement.com/mailman/listinfo/ftpapi
 453. mailto:sk@xxxxxxxxxxxxxxxx
 454. mailto:charles.wilt@xxxxxxxxx
 455. mailto:michaelrtr@xxxxxxxxx
 456. mailto:michaelrtr@xxxxxxxxx
 457. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 458. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 459. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 460. mailto:charles.wilt@xxxxxxxxx
 461. mailto:michaelrtr@xxxxxxxxx
 462. mailto:michaelrtr@xxxxxxxxx
 463. http://www.scottklement.com/mailman/listinfo/ftpapi
 464. http://www.scottklement.com/mailman/listinfo/ftpapi
 465. mailto:michaelrtr@xxxxxxxxx
 466. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 467. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 468. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 469. mailto:charles.wilt@xxxxxxxxx
 470. mailto:michaelrtr@xxxxxxxxx
 471. mailto:michaelrtr@xxxxxxxxx
 472. http://www.scottklement.com/mailman/listinfo/ftpapi
 473. http://www.scottklement.com/mailman/listinfo/ftpapi
 474. http://www.scottklement.com/mailman/listinfo/ftpapi
 475. mailto:michaelrtr@xxxxxxxxx
 476. mailto:michaelrtr@xxxxxxxxx
 477. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 478. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 479. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 480. mailto:charles.wilt@xxxxxxxxx
 481. mailto:michaelrtr@xxxxxxxxx
 482. mailto:michaelrtr@xxxxxxxxx
 483. http://www.scottklement.com/mailman/listinfo/ftpapi
 484. http://www.scottklement.com/mailman/listinfo/ftpapi
 485. mailto:michaelrtr@xxxxxxxxx
 486. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 487. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 488. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 489. mailto:charles.wilt@xxxxxxxxx
 490. mailto:michaelrtr@xxxxxxxxx
 491. mailto:michaelrtr@xxxxxxxxx
 492. http://www.scottklement.com/mailman/listinfo/ftpapi
 493. http://www.scottklement.com/mailman/listinfo/ftpapi
 494. http://www.scottklement.com/mailman/listinfo/ftpapi
 495. http://www.scottklement.com/mailman/listinfo/ftpapi
 496. mailto:charles.wilt@xxxxxxxxx
 497. mailto:michaelrtr@xxxxxxxxx
 498. mailto:michaelrtr@xxxxxxxxx
 499. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 500. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 501. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 502. mailto:charles.wilt@xxxxxxxxx
 503. mailto:michaelrtr@xxxxxxxxx
 504. mailto:michaelrtr@xxxxxxxxx
 505. http://www.scottklement.com/mailman/listinfo/ftpapi
 506. http://www.scottklement.com/mailman/listinfo/ftpapi
 507. mailto:michaelrtr@xxxxxxxxx
 508. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 509. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 510. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 511. mailto:charles.wilt@xxxxxxxxx
 512. mailto:michaelrtr@xxxxxxxxx
 513. mailto:michaelrtr@xxxxxxxxx
 514. http://www.scottklement.com/mailman/listinfo/ftpapi
 515. http://www.scottklement.com/mailman/listinfo/ftpapi
 516. http://www.scottklement.com/mailman/listinfo/ftpapi
 517. mailto:michaelrtr@xxxxxxxxx
 518. mailto:michaelrtr@xxxxxxxxx
 519. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 520. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 521. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 522. mailto:charles.wilt@xxxxxxxxx
 523. mailto:michaelrtr@xxxxxxxxx
 524. mailto:michaelrtr@xxxxxxxxx
 525. http://www.scottklement.com/mailman/listinfo/ftpapi
 526. http://www.scottklement.com/mailman/listinfo/ftpapi
 527. mailto:michaelrtr@xxxxxxxxx
 528. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 529. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 530. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 531. mailto:charles.wilt@xxxxxxxxx
 532. mailto:michaelrtr@xxxxxxxxx
 533. mailto:michaelrtr@xxxxxxxxx
 534. http://www.scottklement.com/mailman/listinfo/ftpapi
 535. http://www.scottklement.com/mailman/listinfo/ftpapi
 536. http://www.scottklement.com/mailman/listinfo/ftpapi
 537. http://www.scottklement.com/mailman/listinfo/ftpapi
 538. http://www.scottklement.com/mailman/listinfo/ftpapi
 539. http://www.scottklement.com/mailman/listinfo/ftpapi
 540. http://www.scottklement.com/mailman/listinfo/ftpapi
 541. http://www.scottklement.com/mailman/listinfo/ftpapi
 542. mailto:sk@xxxxxxxxxxxxxxxx
 543. mailto:sk@xxxxxxxxxxxxxxxx
 544. mailto:charles.wilt@xxxxxxxxx
 545. mailto:michaelrtr@xxxxxxxxx
 546. mailto:michaelrtr@xxxxxxxxx
 547. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 548. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 549. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 550. mailto:charles.wilt@xxxxxxxxx
 551. mailto:michaelrtr@xxxxxxxxx
 552. mailto:michaelrtr@xxxxxxxxx
 553. http://www.scottklement.com/mailman/listinfo/ftpapi
 554. http://www.scottklement.com/mailman/listinfo/ftpapi
 555. mailto:michaelrtr@xxxxxxxxx
 556. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 557. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 558. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 559. mailto:charles.wilt@xxxxxxxxx
 560. mailto:michaelrtr@xxxxxxxxx
 561. mailto:michaelrtr@xxxxxxxxx
 562. http://www.scottklement.com/mailman/listinfo/ftpapi
 563. http://www.scottklement.com/mailman/listinfo/ftpapi
 564. http://www.scottklement.com/mailman/listinfo/ftpapi
 565. mailto:michaelrtr@xxxxxxxxx
 566. mailto:michaelrtr@xxxxxxxxx
 567. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 568. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 569. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 570. mailto:charles.wilt@xxxxxxxxx
 571. mailto:michaelrtr@xxxxxxxxx
 572. mailto:michaelrtr@xxxxxxxxx
 573. http://www.scottklement.com/mailman/listinfo/ftpapi
 574. http://www.scottklement.com/mailman/listinfo/ftpapi
 575. mailto:michaelrtr@xxxxxxxxx
 576. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 577. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 578. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 579. mailto:charles.wilt@xxxxxxxxx
 580. mailto:michaelrtr@xxxxxxxxx
 581. mailto:michaelrtr@xxxxxxxxx
 582. http://www.scottklement.com/mailman/listinfo/ftpapi
 583. http://www.scottklement.com/mailman/listinfo/ftpapi
 584. http://www.scottklement.com/mailman/listinfo/ftpapi
 585. http://www.scottklement.com/mailman/listinfo/ftpapi
 586. mailto:charles.wilt@xxxxxxxxx
 587. mailto:michaelrtr@xxxxxxxxx
 588. mailto:michaelrtr@xxxxxxxxx
 589. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 590. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 591. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 592. mailto:charles.wilt@xxxxxxxxx
 593. mailto:michaelrtr@xxxxxxxxx
 594. mailto:michaelrtr@xxxxxxxxx
 595. http://www.scottklement.com/mailman/listinfo/ftpapi
 596. http://www.scottklement.com/mailman/listinfo/ftpapi
 597. mailto:michaelrtr@xxxxxxxxx
 598. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 599. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 600. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 601. mailto:charles.wilt@xxxxxxxxx
 602. mailto:michaelrtr@xxxxxxxxx
 603. mailto:michaelrtr@xxxxxxxxx
 604. http://www.scottklement.com/mailman/listinfo/ftpapi
 605. http://www.scottklement.com/mailman/listinfo/ftpapi
 606. http://www.scottklement.com/mailman/listinfo/ftpapi
 607. mailto:michaelrtr@xxxxxxxxx
 608. mailto:michaelrtr@xxxxxxxxx
 609. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 610. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 611. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 612. mailto:charles.wilt@xxxxxxxxx
 613. mailto:michaelrtr@xxxxxxxxx
 614. mailto:michaelrtr@xxxxxxxxx
 615. http://www.scottklement.com/mailman/listinfo/ftpapi
 616. http://www.scottklement.com/mailman/listinfo/ftpapi
 617. mailto:michaelrtr@xxxxxxxxx
 618. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 619. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 620. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 621. mailto:charles.wilt@xxxxxxxxx
 622. mailto:michaelrtr@xxxxxxxxx
 623. mailto:michaelrtr@xxxxxxxxx
 624. http://www.scottklement.com/mailman/listinfo/ftpapi
 625. http://www.scottklement.com/mailman/listinfo/ftpapi
 626. http://www.scottklement.com/mailman/listinfo/ftpapi
 627. http://www.scottklement.com/mailman/listinfo/ftpapi
 628. http://www.scottklement.com/mailman/listinfo/ftpapi
 629. http://www.scottklement.com/mailman/listinfo/ftpapi
 630. mailto:sk@xxxxxxxxxxxxxxxx
 631. mailto:charles.wilt@xxxxxxxxx
 632. mailto:michaelrtr@xxxxxxxxx
 633. mailto:michaelrtr@xxxxxxxxx
 634. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 635. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 636. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 637. mailto:charles.wilt@xxxxxxxxx
 638. mailto:michaelrtr@xxxxxxxxx
 639. mailto:michaelrtr@xxxxxxxxx
 640. http://www.scottklement.com/mailman/listinfo/ftpapi
 641. http://www.scottklement.com/mailman/listinfo/ftpapi
 642. mailto:michaelrtr@xxxxxxxxx
 643. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 644. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 645. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 646. mailto:charles.wilt@xxxxxxxxx
 647. mailto:michaelrtr@xxxxxxxxx
 648. mailto:michaelrtr@xxxxxxxxx
 649. http://www.scottklement.com/mailman/listinfo/ftpapi
 650. http://www.scottklement.com/mailman/listinfo/ftpapi
 651. http://www.scottklement.com/mailman/listinfo/ftpapi
 652. mailto:michaelrtr@xxxxxxxxx
 653. mailto:michaelrtr@xxxxxxxxx
 654. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 655. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 656. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 657. mailto:charles.wilt@xxxxxxxxx
 658. mailto:michaelrtr@xxxxxxxxx
 659. mailto:michaelrtr@xxxxxxxxx
 660. http://www.scottklement.com/mailman/listinfo/ftpapi
 661. http://www.scottklement.com/mailman/listinfo/ftpapi
 662. mailto:michaelrtr@xxxxxxxxx
 663. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 664. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 665. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 666. mailto:charles.wilt@xxxxxxxxx
 667. mailto:michaelrtr@xxxxxxxxx
 668. mailto:michaelrtr@xxxxxxxxx
 669. http://www.scottklement.com/mailman/listinfo/ftpapi
 670. http://www.scottklement.com/mailman/listinfo/ftpapi
 671. http://www.scottklement.com/mailman/listinfo/ftpapi
 672. http://www.scottklement.com/mailman/listinfo/ftpapi
 673. mailto:charles.wilt@xxxxxxxxx
 674. mailto:michaelrtr@xxxxxxxxx
 675. mailto:michaelrtr@xxxxxxxxx
 676. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 677. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 678. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 679. mailto:charles.wilt@xxxxxxxxx
 680. mailto:michaelrtr@xxxxxxxxx
 681. mailto:michaelrtr@xxxxxxxxx
 682. http://www.scottklement.com/mailman/listinfo/ftpapi
 683. http://www.scottklement.com/mailman/listinfo/ftpapi
 684. mailto:michaelrtr@xxxxxxxxx
 685. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 686. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 687. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 688. mailto:charles.wilt@xxxxxxxxx
 689. mailto:michaelrtr@xxxxxxxxx
 690. mailto:michaelrtr@xxxxxxxxx
 691. http://www.scottklement.com/mailman/listinfo/ftpapi
 692. http://www.scottklement.com/mailman/listinfo/ftpapi
 693. http://www.scottklement.com/mailman/listinfo/ftpapi
 694. mailto:michaelrtr@xxxxxxxxx
 695. mailto:michaelrtr@xxxxxxxxx
 696. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 697. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 698. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 699. mailto:charles.wilt@xxxxxxxxx
 700. mailto:michaelrtr@xxxxxxxxx
 701. mailto:michaelrtr@xxxxxxxxx
 702. http://www.scottklement.com/mailman/listinfo/ftpapi
 703. http://www.scottklement.com/mailman/listinfo/ftpapi
 704. mailto:michaelrtr@xxxxxxxxx
 705. mailto:mkrebs@xxxxxxxxxxxxxxxxxx
 706. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 707. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 708. mailto:charles.wilt@xxxxxxxxx
 709. mailto:michaelrtr@xxxxxxxxx
 710. mailto:michaelrtr@xxxxxxxxx
 711. http://www.scottklement.com/mailman/listinfo/ftpapi
 712. http://www.scottklement.com/mailman/listinfo/ftpapi
 713. http://www.scottklement.com/mailman/listinfo/ftpapi
 714. http://www.scottklement.com/mailman/listinfo/ftpapi
 715. http://www.scottklement.com/mailman/listinfo/ftpapi
 716. http://www.scottklement.com/mailman/listinfo/ftpapi
 717. http://www.scottklement.com/mailman/listinfo/ftpapi
 718. http://www.scottklement.com/mailman/listinfo/ftpapi
 719. http://www.scottklement.com/mailman/listinfo/ftpapi
 720. http://www.scottklement.com/mailman/listinfo/ftpapi
 721. http://www.scottklement.com/mailman/listinfo/ftpapi
-----------------------------------------------------------------------
This is the FTPAPI mailing list.  To unsubscribe, please go to:
http://www.scottklement.com/mailman/listinfo/ftpapi
-----------------------------------------------------------------------